/* =============================================
   KATEGORIE.CSS – Category & Product Detail Pages
   Premium Heritage Design System
   ============================================= */

/* =============================================
   BREADCRUMB NAVIGATION
   ============================================= */
.breadcrumb-section {
  padding: 1.25rem 0;
  background: var(--warm-white);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
}

.breadcrumb-nav li a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s var(--ease-smooth);
}

.breadcrumb-nav li a:hover {
  color: var(--gold-dark);
}

.breadcrumb-nav .breadcrumb-separator {
  color: var(--border);
  font-size: 0.75rem;
}

.breadcrumb-nav li.active {
  color: var(--ink);
  font-weight: 600;
}

/* =============================================
   CATEGORY HERO
   ============================================= */
.category-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.category-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Navy gradient overlay from bottom */
.category-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 38, 64, 0.85) 0%,
    rgba(15, 38, 64, 0.4) 40%,
    rgba(15, 38, 64, 0.15) 100%
  );
  z-index: 1;
}

.category-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem 5rem;
  max-width: 700px;
}

.category-hero-content .section-kicker {
  color: var(--gold-light);
  justify-content: center;
  margin-bottom: 1rem;
}

.category-hero-content .section-kicker::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.category-hero-content h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 0.3s var(--ease-out) forwards;
}

.category-hero-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 0.5s var(--ease-out) forwards;
}

/* Bezier wave at bottom of hero */
.category-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.category-hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 50px;
}

/* =============================================
   CATEGORY INTRO TEXT
   ============================================= */
.category-intro {
  padding: 3rem 0 2rem;
  background: var(--cream);
}

.category-intro p {
  font-size: 1.15rem;
  color: var(--ink-light);
  max-width: 800px;
  line-height: 1.9;
}

/* =============================================
   PRODUCT GRID – Category Page
   ============================================= */
.product-grid-section {
  padding: 2rem 0 5rem;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product Card (Grid Version) */
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.6s var(--ease-out);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  color: inherit;
}

.product-card:hover::before {
  opacity: 1;
}

/* Card Image */
.product-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

/* Card Body */
.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}

.product-card-body h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-family: 'DM Sans', sans-serif;
}

.product-card-body .product-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.product-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.5s var(--ease-out), color 0.3s ease;
}

.product-card:hover .product-card-link {
  gap: 0.6rem;
  color: var(--gold-dark);
}

/* Placeholder card (no image) */
.product-card-img.placeholder {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img.placeholder i {
  font-size: 3rem;
  color: var(--border);
}

/* =============================================
   CTA SECTION – Category page bottom
   ============================================= */
.category-cta {
  padding: 4rem 0;
  background: var(--warm-white);
  text-align: center;
}

.category-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-cta p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-section {
  padding: 3rem 0 5rem;
  background: var(--cream);
}

/* Product detail image */
.product-detail-img {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  /*aspect-ratio: 1 / 1;*/
}

.product-detail-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product detail info */
.product-detail-info {
  padding-left: 1.5rem;
}

.product-detail-info .brand-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.product-detail-info h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Specs table (legacy) */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--border-light);
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.product-specs li .spec-label {
  color: var(--muted);
  font-weight: 500;
}

.product-specs li .spec-value {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* Zutaten & Allergene */
.product-ingredients {
  margin-bottom: 2rem;
}

.product-ingredients h2 {
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}

.ingredients-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1rem;
}

.ingredients-text strong {
  font-weight: 700;
  color: var(--primary-dark, #0F2640);
}

.allergen-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-allergen {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border-radius: 2rem;
  background: rgba(200, 153, 63, 0.12);
  color: var(--accent-gold-dark, #A67D2E);
  border: 1px solid rgba(200, 153, 63, 0.25);
  transition: all 0.3s ease;
}

.badge-allergen:hover {
  background: rgba(200, 153, 63, 0.2);
  border-color: rgba(200, 153, 63, 0.4);
}

.badge-allergen.badge-traces {
  background: rgba(27, 58, 92, 0.06);
  color: var(--muted);
  border-color: var(--border-light);
}

.badge-allergen.badge-traces:hover {
  background: rgba(27, 58, 92, 0.1);
}

.product-ingredients .divider-soft {
  height: 1px;
  background: var(--border-light);
}

.product-ingredients h3 {
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.nutrition-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.85rem;
  background: var(--warm-white, #FEFCF8);
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.nutrition-label {
  color: var(--muted);
  font-weight: 500;
}

.nutrition-value {
  font-weight: 600;
  color: var(--ink);
}

/* Action buttons */
.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Description block */
.product-description {
  padding: 3rem 0;
  background: var(--cream);
}

.product-description h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.product-description p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-light);
  max-width: 800px;
}

/* Similar products section */
.similar-products {
  padding: 4rem 0;
  background: var(--warm-white);
}

.similar-products .section-header {
  margin-bottom: 2.5rem;
}

.similar-products .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 900px;
}

/* =============================================
   RESPONSIVE – Category & Detail
   ============================================= */
@media (max-width: 991.98px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .category-hero {
    height: 50vh;
    min-height: 350px;
  }

  .category-hero-content h1 {
    font-size: 2.75rem;
  }

  .product-detail-info {
    padding-left: 0;
    margin-top: 2rem;
  }

  .product-detail-info h1 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .category-hero {
    height: 45vh;
    min-height: 300px;
  }

  .category-hero-content h1 {
    font-size: 2.25rem;
  }

  .category-hero-content p {
    font-size: 0.95rem;
  }

  .product-detail-img {
    aspect-ratio: auto;
    padding: 1.5rem;
  }

  .product-detail-info h1 {
    font-size: 1.75rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .category-hero {
    height: 40vh;
    min-height: 260px;
  }

  .category-hero-content {
    padding: 2rem 1rem 4rem;
  }

  .category-hero-content h1 {
    font-size: 1.85rem;
  }

  .product-card-body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .product-card-img {
    padding: 1rem;
  }

  .category-cta h3 {
    font-size: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .category-hero-content h1,
  .category-hero-content p {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .product-card,
  .product-card-img img {
    transition: none;
  }
}

/* =============================================
   NUTRITION FACTS TABLE – Premium Heritage
   ============================================= */
.nutrition-facts-section {
  /*padding: 3.5rem 0 4.5rem;*/
  background: var(--warm-white);
  position: relative;
}

/*.nutrition-facts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}*/

.nutrition-facts-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.nutrition-facts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.nutrition-facts-head .section-kicker {
  margin-bottom: 0.5rem;
}

.nutrition-facts-head h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.portion-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid rgba(200, 153, 63, 0.3);
  border-radius: 999px;
  white-space: nowrap;
}

.portion-chip i {
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.nutrition-table-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.nutrition-facts-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  margin: 0;
}

.nutrition-facts-table thead th {
  background: linear-gradient(135deg, #0F2640 0%, #1B3A5C 100%);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  padding: 1.1rem 1.25rem;
  text-align: right;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
  vertical-align: middle;
}

.nutrition-facts-table thead th:first-child {
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.nutrition-facts-table thead th small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.nutrition-facts-table tbody tr {
  transition: background 0.25s ease;
}

.nutrition-facts-table tbody tr + tr {
  border-top: 1px solid var(--border-light);
}

.nutrition-facts-table tbody tr:hover {
  background: var(--cream);
}

.nutrition-facts-table tbody tr.group-top {
  border-top: 1px solid rgba(27, 58, 92, 0.15);
}

.nutrition-facts-table td {
  padding: 0.95rem 1.25rem;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  vertical-align: middle;
}

.nutrition-facts-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.nutrition-facts-table tr.nutri-main td:first-child {
  font-weight: 700;
  color: var(--primary);
}

.nutrition-facts-table tr.sub-row td {
  color: var(--muted);
  font-weight: 500;
  background: rgba(255, 249, 240, 0.45);
}

.nutrition-facts-table tr.sub-row td:first-child {
  padding-left: 2.75rem;
  position: relative;
  font-style: italic;
  font-size: 0.88rem;
  font-weight: 400;
}

.nutrition-facts-table tr.sub-row td:first-child::before {
  content: '';
  position: absolute;
  left: 1.4rem;
  top: 50%;
  width: 0.8rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.ri-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.75rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid rgba(200, 153, 63, 0.3);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

.nutrition-facts-table tr.sub-row .ri-badge {
  background: rgba(27, 58, 92, 0.05);
  color: var(--muted);
  border-color: var(--border-light);
}

.nutrition-facts-foot {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.nutrition-facts-foot i {
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.nutrition-facts-foot strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .nutrition-facts-head h3 {
    font-size: 1.65rem;
  }

  .nutrition-facts-table {
    font-size: 0.88rem;
  }

  .nutrition-facts-table thead th,
  .nutrition-facts-table td {
    padding: 0.75rem 0.85rem;
  }

  .nutrition-facts-table thead th {
    font-size: 0.65rem;
  }

  .nutrition-facts-table tr.sub-row td:first-child {
    padding-left: 2rem;
  }

  .nutrition-facts-table tr.sub-row td:first-child::before {
    left: 0.85rem;
    width: 0.6rem;
  }

  .ri-badge {
    min-width: 2.75rem;
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 479.98px) {
  .nutrition-facts-table thead th:nth-child(3),
  .nutrition-facts-table td:nth-child(3) {
    display: none;
  }
}

.similar-products .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 900px;
}

/* =============================================
   PRODUCT ACCORDION – Premium Heritage
   ============================================= */
.product-accordion {
  --bs-accordion-color: var(--ink);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--border-light);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 1rem;
  --bs-accordion-inner-border-radius: 1rem;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--primary);
  --bs-accordion-btn-bg: var(--warm-white, #FEFCF8);
  --bs-accordion-btn-focus-border-color: var(--accent-gold, #C8993F);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(200, 153, 63, 0.18);
  --bs-accordion-active-color: var(--primary-dark, #0F2640);
  --bs-accordion-active-bg: rgba(200, 153, 63, 0.08);
  margin-bottom: 2rem;
}

.product-accordion .accordion-item {
  border-radius: 1rem !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(15, 38, 64, 0.04);
}

.product-accordion .accordion-item:last-of-type {
  margin-bottom: 0;
}

.product-accordion .accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}

.product-accordion .accordion-button i.bi {
  color: var(--accent-gold, #C8993F);
  font-size: 1.15rem;
  margin-right: 0.7rem;
  line-height: 1;
}

.product-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-dark, #0F2640);
  background: linear-gradient(90deg, rgba(200, 153, 63, 0.12), rgba(255, 249, 240, 0.9));
  box-shadow: inset 0 -1px 0 var(--border-light);
}

.product-accordion .accordion-button:not(.collapsed) i.bi {
  color: var(--accent-gold-dark, #A67D2E);
}

.product-accordion .accordion-button:focus {
  border-color: var(--accent-gold, #C8993F);
  box-shadow: 0 0 0 0.2rem rgba(200, 153, 63, 0.18);
}

.product-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8993F'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: transform 0.3s var(--ease-smooth);
}

.product-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A67D2E'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.product-accordion .accordion-body {
  padding: 1.25rem 1.5rem 1.5rem;
  background: #fff;
}

.product-accordion .accordion-body .ingredients-text {
  margin-bottom: 0.9rem;
}

.product-accordion .accordion-body .portion-chip {
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
}

.product-accordion .nutrition-table-card {
  box-shadow: none;
  border-radius: 0.75rem;
  overflow-x: auto;
}

.product-accordion .nutrition-facts-table {
  font-size: 0.85rem;
}

.product-accordion .nutrition-facts-table thead th,
.product-accordion .nutrition-facts-table td {
  padding: 0.65rem 0.75rem;
}

.product-accordion .nutrition-facts-table thead th {
  font-size: 0.62rem;
}

.product-accordion .ri-badge {
  min-width: 2.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
}

.product-accordion .nutrition-facts-foot {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
}

@media (max-width: 991.98px) {
  .product-accordion .accordion-button {
    font-size: 0.96rem;
    padding: 0.9rem 1rem;
  }

  .product-accordion .accordion-body {
    padding: 1rem 1.1rem 1.15rem;
  }
}

/* =============================================
   RESPONSIVE – Category & Detail
   ============================================= */