/* ─── VARIABLES ──────────────────────────────────────────── */
@font-face {
  font-family: 'Gliker';
  src: url('/fonts/gliker-regular.woff2') format('woff2'),
       url('/fonts/gliker-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --jummies-cream:   #faf7f2;
  --jummies-red:     #b32020;
  --jummies-green:   #4a7c3f;
  --jummies-dark:    #1a1a1a;
  --jummies-muted:   #6b7280;
  --jummies-mint-bg: #d1fae5;
  --jummies-mint-tx: #065f46;
  --jummies-radius:  14px;
  --font-display: 'Gliker', system-ui, sans-serif;
  --font-sans:    'Lato', system-ui, sans-serif;
}

/* ─── BASE ───────────────────────────────────────────────── */
body { font-family: var(--font-sans); color: var(--jummies-dark); background-color: #faf7f2; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.jummies-nav {
  background-color: #faf7f2 !important;
}
.jummies-nav .navbar-brand {
  padding: 0;
  line-height: 1;
}
.jummies-nav .nav-link {
  font-size: 21px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--jummies-dark) !important;
  padding-inline: 0.85rem;
}
.jummies-nav .nav-link:hover { color: var(--jummies-red) !important; }

/* ─── HERO ───────────────────────────────────────────────── */
.jummies-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: #2d1a0e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.jummies-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.jummies-hero .container {
  position: relative;
  z-index: 2;
}

.jummies-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.jummies-hero__badge {
  display: inline-block;
  background: rgba(193, 127, 77, 0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.jummies-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.jummies-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SEARCH BAR ─────────────────────────────────────────── */
.jummies-search-bar {
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.jummies-search-bar input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--jummies-dark);
  min-width: 0;
}

.jummies-search-bar input[type="search"]::placeholder {
  color: #9ca3af;
}

.jummies-search-bar button {
  background: #C17F4D;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: background 0.15s;
}

.jummies-search-bar button:hover {
  background: #a86c3c;
}

/* ─── CATEGORIE SLIDER ───────────────────────────────────── */
.jummies-categorie-slider-section {
  padding: 2rem 0;
}

.jummies-categorie-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.5rem 1rem;
  scrollbar-width: none;
}
.jummies-categorie-slider::-webkit-scrollbar { display: none; }

.jummies-categorie-slider__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  color: inherit;
  width: 260px;
}
.jummies-categorie-slider__item:hover .jummies-categorie-slider__img {
  transform: scale(1.05);
}

.jummies-categorie-slider__img-wrap {
  width: 250px;
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  margin: 0 auto 0.6rem;
}

.jummies-categorie-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
  display: block;
}

.jummies-categorie-slider__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: #f3f4f6;
}

.jummies-categorie-slider__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  display: block;
  line-height: 1.3;
}

/* ─── CATEGORY FILTERS ───────────────────────────────────── */
.jummies-filters {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.1rem 0;
  background: #fff;
}

.jummies-filter-btn {
  border: 1.5px solid #d1d5db;
  background: transparent;
  color: var(--jummies-dark);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: var(--font-sans);
}
.jummies-filter-btn:hover,
.jummies-filter-btn.active {
  background: var(--jummies-dark);
  color: #fff;
  border-color: var(--jummies-dark);
}

/* ─── RECIPE CARDS ───────────────────────────────────────── */
.jummies-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
  transition: transform 0.2s;
}

.jummies-card:hover {
  transform: scale(1.03);
}

.jummies-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.jummies-card:hover img {
  opacity: 0.85;
}

.jummies-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: #2d1a0e;
}

.jummies-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  pointer-events: none;
}

.jummies-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.25rem 1.25rem;
  z-index: 2;
}

.jummies-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.jummies-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.85rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
}

.jummies-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.jummies-card__meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.9;
}

.jummies-card__featured-ribbon {
  position: absolute;
  top: -6px;
  right: 40px;
  z-index: 3;
  width: 54px;
  height: 72px;
  background: #b32020;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.35);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
  cursor: default;
}

.jummies-card__featured-ribbon svg {
  display: none;
}

.jummies-cards--compact .jummies-card {
  aspect-ratio: 4 / 3;
}

/* ─── CONTENT SECTION ────────────────────────────────────── */
.jummies-content { background: #faf7f2; padding: 3rem 0 4rem; }

.jummies-section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ─── SIDEBAR WIDGETS ────────────────────────────────────── */
.jummies-widget {
  border: 1.5px solid #e5e7eb;
  border-radius: var(--jummies-radius);
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.jummies-widget__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.6rem;
}

.jummies-weekmenu-list { list-style: none; padding: 0; margin: 0; }
.jummies-weekmenu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.jummies-weekmenu-list li:last-child { border-bottom: none; }
.jummies-weekmenu-list .day-label {
  font-weight: 600;
  color: var(--jummies-muted);
  min-width: 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  flex-shrink: 0;
}

.jummies-tips-list { list-style: none; padding: 0; margin: 0; }
.jummies-tips-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
}
.jummies-tips-list li:last-child { border-bottom: none; }
.jummies-tips-list li::before {
  content: '•';
  position: absolute;
  left: 0.3rem;
  color: var(--jummies-red);
  font-size: 1rem;
  line-height: 1.6;
}

/* ─── RECIPE DETAIL ──────────────────────────────────────── */
.jummies-breadcrumb {
  background: #faf7f2;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.7rem 0;
  font-size: 0.825rem;
  color: var(--jummies-muted);
}
.jummies-breadcrumb a {
  color: var(--jummies-muted);
  text-decoration: none;
}
.jummies-breadcrumb a:hover { color: var(--jummies-dark); }
.jummies-breadcrumb span { color: var(--jummies-muted); margin: 0 0.4rem; }

.jummies-recipe-hero {
  background: var(--jummies-cream);
  padding: 3rem 0 2.5rem;
}
.jummies-recipe-hero__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jummies-mint-tx);
  background: var(--jummies-mint-bg);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.jummies-recipe-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--jummies-dark);
  margin-bottom: 1rem;
}
.jummies-recipe-hero__desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.jummies-recipe-hero__image {
  background: var(--jummies-red);
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}
.jummies-recipe-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.jummies-meta-bar {
  background: #faf7f2;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem 0;
}
.jummies-meta-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.jummies-meta-bar__item {
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid #e5e7eb;
}
.jummies-meta-bar__item:last-child { border-right: none; }
.jummies-meta-bar__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jummies-dark);
  display: block;
  line-height: 1.2;
}
.jummies-meta-bar__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jummies-muted);
  display: block;
  margin-top: 0.25rem;
}

.jummies-recipe-body { background: #faf7f2; padding: 3rem 0 4rem; }

.jummies-instructions-html ol {
  padding-left: 0;
  list-style: none;
  counter-reset: step-counter;
}
.jummies-instructions-html ol > li {
  counter-increment: step-counter;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
  font-size: 0.925rem;
  color: #374151;
  line-height: 1.65;
}
.jummies-instructions-html ol > li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--jummies-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.jummies-instructions-html ul > li {
  font-size: 0.925rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.jummies-instructions-html p {
  font-size: 0.925rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.jummies-instructions-html strong { color: var(--jummies-dark); }
.jummies-instructions-html blockquote {
  background: var(--jummies-cream);
  border-left: 3px solid #f5daad;
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1.1rem;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.875rem;
  color: #f5daad;
  line-height: 1.5;
  font-style: normal;
}

.jummies-ingredients-html { font-size: 0.875rem; color: #374151; line-height: 1.9; }
.jummies-ingredients-html ul { padding-left: 1.25rem; margin: 0; }
.jummies-ingredients-html li { margin-bottom: 0.15rem; }
.jummies-ingredients-html p  { margin-bottom: 0.4rem; }

.jummies-servings-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.jummies-servings-bar__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.jummies-servings-bar__count {
  min-width: 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}
.jummies-servings-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  transition: color 0.15s;
}
.jummies-servings-btn:hover:not(:disabled) { color: #111827; }
.jummies-servings-btn:disabled { opacity: 0.3; cursor: default; }

.jummies-ing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.jummies-ing-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #374151;
}
.jummies-ing-list__item:last-child { border-bottom: none; }
.jummies-ing-list__check {
  color: #3b9ed0;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.jummies-ing-list__amount {
  min-width: 5rem;
  color: #111827;
  white-space: nowrap;
}
.jummies-ing-list__name { flex: 1; }

.jummies-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jummies-dark);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.jummies-shop-btn:hover {
  border-color: var(--jummies-red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: var(--jummies-red);
}

.jummies-extra-info {
  background: #fef9f0;
  border: 1.5px solid #fde8c8;
  border-radius: var(--jummies-radius);
  padding: 1.25rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #374151;
}
.jummies-extra-info h2,
.jummies-extra-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jummies-related { background: var(--jummies-cream); padding: 3rem 0; }
.jummies-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.jummies-related__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0;
}
.jummies-related__all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jummies-red);
  text-decoration: none;
}
.jummies-related__all:hover { text-decoration: underline; color: var(--jummies-red); }

.jummies-nutrition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jummies-nutrition-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.jummies-nutrition-list li:last-child { border-bottom: none; }
.jummies-nutrition-list__label { color: #6b7280; }
.jummies-nutrition-list__value { font-weight: 600; color: #1f2937; }

.jummies-star-picker { display: flex; gap: 0.25rem; }
.jummies-star {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #d1d5db;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.1s, transform 0.1s;
}
.jummies-star:hover,
.jummies-star.active { color: #f59e0b; }
.jummies-star:hover { transform: scale(1.15); }

.jummies-step-btn {
  background: var(--jummies-red, #b32020);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.jummies-step-btn:hover { background: #8b1616; }
.jummies-step-btn:disabled { opacity: 0.6; cursor: default; }

.jummies-step-mode ol > li { display: none !important; }
.jummies-step-mode ol > li.step-active {
  display: flex !important;
  background: #fffbf5;
  border: 2px solid var(--jummies-red, #b32020);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}
.jummies-step-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.jummies-step-nav__btn {
  background: #1f2937;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.jummies-step-nav__btn:disabled { opacity: 0.35; cursor: default; }
.jummies-step-nav__counter {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}
.jummies-step-nav__exit {
  margin-left: auto;
  background: #6b7280;
}

/* ─── CHEF FAVORIETEN ────────────────────────────────────── */
.chef-featured-block {
  padding: 5rem 2rem;
}
.chef-featured-title {
  text-align: center;
  font-family: var(--font-display, serif);
  font-size: clamp(1.875rem, 3.75vw, 2.625rem);
  font-weight: 700;
  color: #1a1a1a;
  padding: 1.5rem 2rem;
  margin: 0;
}
.chef-featured-single {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding-bottom: calc(0.9rem + 32px + 0.9rem);
}

.featured-card {
  display: flex;
  align-items: stretch;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.featured-card-image {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.featured-card-image__square {
  position: relative;
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.featured-card-image__square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.featured-card:hover .featured-card-image__square img {
  transform: scale(1.04);
}
.featured-card-image__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: #2d1a0e;
}

.featured-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.25rem 2.75rem 2rem;
}
.featured-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.featured-card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7c5f3f;
  background: #f5ede0;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  align-self: flex-start;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

.featured-card-desc {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

.featured-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  font-size: 0.78rem;
  color: #6b7280;
}
.featured-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.featured-card-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.65rem 1.5rem;
  background: #b32020;
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
  margin-top: auto;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  transition: background 0.15s;
}
.featured-card-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.featured-card:hover .featured-card-cta::after {
  opacity: 1;
}

.chef-featured-swiper {
  position: relative;
  border-radius: 14px;
  overflow: visible !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #fff;
}

.chef-swiper-prev,
.chef-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.chef-swiper-prev { left: 0rem; }
.chef-swiper-next { right: 0rem; }
.chef-swiper-prev svg,
.chef-swiper-next svg {
  width: 28px;
  height: 28px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.chef-swiper-prev:hover svg,
.chef-swiper-next:hover svg {
  stroke: #b32020;
}
.chef-featured-swiper .featured-card {
  box-shadow: none;
  border-radius: 0;
}
.chef-featured-swiper .swiper-slide {
  height: auto;
}

.chef-swiper-pagination {
  position: static !important;
  display: flex !important;
  justify-content: center;
  gap: 5px;
  width: 100% !important;
  padding: 1.5rem 0;
}
.chef-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}
.chef-swiper-pagination .swiper-pagination-bullet-active {
  background: #C17F4D;
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .featured-card {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    min-height: unset;
  }
  .featured-card-content {
    padding: 1.5rem 1.25rem;
    text-align: center;
    align-items: center;
  }
  .featured-card-category {
    align-self: center;
  }
  .featured-card-cta {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }
  .chef-swiper-prev,
  .chef-swiper-next {
    display: none;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.jummies-footer {
  display: block;
  width: 100%;
  background-color: #c4956a;
  color: #fff;
}

.jummies-footer-columns {
  padding: 3rem 0 2rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
  color: #fff;
}

.footer-col-content {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

.footer-col-content a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.footer-col-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.jummies-footer-bar {
  border-top: 1px solid rgba(255,255,255,.25);
  padding: .85rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .jummies-hero { padding: 2.5rem 0 2rem; }
  .jummies-hero__image-box { min-height: 220px; margin-top: 2rem; font-size: 4rem; }
  .jummies-hero__heading { font-size: 1.85rem; }

  .jummies-recipe-hero { padding: 2rem 0 1.5rem; }
  .jummies-recipe-hero__image { min-height: 220px; font-size: 4rem; margin-bottom: 1.5rem; }
  .jummies-meta-bar__item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    width: 50%;
  }
  .jummies-meta-bar__item:nth-child(even) { border-left: 1px solid #e5e7eb; }
}
