﻿:root {
  --bg: #f5f0e8;
  --bg-soft: #fbf7f0;
  --surface-solid: #fffdfa;
  --text: #1a2e1a;
  --muted: #687266;
  --line: rgba(26, 46, 26, 0.12);
  --gold: #c9a84c;
  --gold-deep: #a78532;
  --green-mid: #2d4a2d;
  --green-light: #3a5a3a;
  --dark: #132113;
  --shadow: 0 24px 60px rgba(17, 27, 17, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding: 5rem 0;
}

.label {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--gold-deep);
}

.btn--ghost,
.btn--ghost-light {
  border: 1px solid currentColor;
}

.btn--ghost {
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--text);
  color: #fff;
}

.btn--ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.announce-bar {
  position: relative;
  z-index: 20;
  padding: 0.8rem 1rem;
  background:
    linear-gradient(135deg, rgba(19, 33, 19, 0.95), rgba(45, 74, 45, 0.92)),
    #132113;
  color: #f8f2e9;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announce-bar span {
  margin-inline: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero-shell {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-image: url('assets/campaign/kze_products_range.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shell::before {
  background:
    linear-gradient(90deg, rgba(7, 18, 9, 0.85) 0%, rgba(10, 24, 12, 0.62) 38%, rgba(11, 24, 13, 0.42) 64%, rgba(8, 19, 10, 0.64) 100%),
    linear-gradient(180deg, rgba(12, 26, 14, 0.18) 0%, rgba(9, 20, 11, 0.56) 100%);
  z-index: 0;
}

.hero-shell::after {
  background: radial-gradient(circle at top right, rgba(255, 233, 177, 0.22), transparent 30%);
  z-index: 0;
}

.header {
  position: relative;
  z-index: 5;
  padding-top: 1rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 108px;
  padding-inline: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(26, 46, 26, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(9, 18, 10, 0.08);
}

.header__logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.header__logo-image,
.footer__logo-image {
  flex: 0 0 auto;
  object-fit: contain;
}

.header__logo-image--header {
  width: 168px;
  height: 86px;
}

.footer__logo-image--footer {
  width: 124px;
  height: 124px;
  padding: 0.35rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.footer__logo-image {
  object-fit: contain;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav-link,
.header__cart {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header__nav-link:hover,
.header__cart:hover {
  color: var(--gold-deep);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.header__cart svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.header__cart-label {
  display: none;
}

.header__burger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
  background: rgba(26, 46, 26, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.header__burger:hover {
  transform: translateY(-1px);
  background: rgba(26, 46, 26, 0.1);
  box-shadow: 0 10px 22px rgba(9, 18, 10, 0.08);
}

.header__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.header__mobile-nav {
  display: none;
  margin: 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(26, 46, 26, 0.12);
  border-radius: 24px;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  transform-origin: top center;
}

.header__mobile-nav.is-open {
  display: grid;
  gap: 0.8rem;
  animation: kze-fade-up 320ms var(--ease) both;
}

.header__mobile-link {
  padding: 0.75rem 0.25rem;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(26, 46, 26, 0.08);
}

.header__mobile-link:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 860px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(clamp(560px, 78vh, 860px) - 110px);
  padding-top: 2rem;
  padding-bottom: 5.75rem;
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  margin-bottom: 1.1rem;
  color: #eed58e;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__headline {
  margin-bottom: 1.3rem;
  color: #fff;
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  font-weight: 400;
  line-height: 0.98;
}

.hero__headline em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero__subline {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-band {
  position: relative;
  z-index: 4;
  margin-top: -3.6rem;
  padding-bottom: 1rem;
}

.proof-band__grid {
  display: grid;
  gap: 1rem;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid rgba(26, 46, 26, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 133, 50, 0.95), rgba(58, 90, 58, 0.65));
}

.proof-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 239, 226, 0.96));
}

.proof-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(251, 249, 242, 0.98), rgba(239, 244, 236, 0.96));
}

.proof-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(243, 238, 227, 0.96));
}

.proof-card__value {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.proof-card__title {
  margin-bottom: 0.45rem;
  font-size: 1.6rem;
}

.conversion-strip {
  padding: 1.4rem 0 0.5rem;
}

.conversion-strip__inner {
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem;
  border: 1px solid rgba(26, 46, 26, 0.1);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(248, 241, 231, 0.94));
  box-shadow: 0 18px 45px rgba(21, 17, 12, 0.05);
}

.conversion-strip__copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.conversion-strip__copy p {
  max-width: 46rem;
}

.conversion-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header--left {
  margin-inline: 0;
  text-align: left;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.collection-grid,
.product-grid,
.results-grid,
.reviews-grid,
.footer__top {
  display: grid;
  gap: 1.25rem;
}

.collection-card,
.product-card,
.result-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-solid);
  box-shadow: 0 18px 45px rgba(21, 17, 12, 0.05);
}

.collection-card {
  padding: 1.8rem;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.collection-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 133, 50, 0.4);
  box-shadow: 0 22px 50px rgba(21, 17, 12, 0.08);
}

.collection-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card h3 {
  margin-bottom: 0.7rem;
  font-size: 2rem;
}

.products-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 100%);
}

.products-section .section-header h2 {
  max-width: 22ch;
  margin-inline: auto;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-card__image-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  background: #eee5da;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms var(--ease);
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1.2rem 1.2rem 0.7rem;
}

.product-card__name {
  margin-bottom: 0.15rem;
  font-size: 1.55rem;
}

.product-card__type {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.product-card__price {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card__footer {
  padding: 0 1.2rem 1.2rem;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__link:hover {
  background: var(--dark);
  color: #fff;
}

.section-cta {
  margin-top: 2.25rem;
  text-align: center;
}

.results-section {
  background: transparent;
}

.results-layout,
.ingredients-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.results-copy h2,
.ingredients-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

.results-copy p + p,
.ingredients-content p + p {
  margin-top: 1rem;
}

.results-copy .btn {
  margin-top: 1.5rem;
}

.results-note {
  margin-top: 1.4rem;
  font-size: 0.84rem;
}

.result-card {
  position: relative;
  overflow: hidden;
}

.result-card::before,
.ingredients-content::before,
.ingredients-reviews::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 133, 50, 0.95), rgba(58, 90, 58, 0.55));
}

.result-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f1e8dd;
}

.result-card figcaption {
  padding: 1.1rem 1.1rem 1.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.ingredients-section {
  background: transparent;
}

.ingredients-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.ingredients-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredients-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.ingredients-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.ingredients-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}

.ingredients-actions {
  margin-top: 1.5rem;
}

.reviews-grid {
  grid-template-columns: 1fr;
}

.review-card {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 234, 0.88));
}

.review-card__stars {
  margin-bottom: 0.8rem;
  color: var(--gold-deep);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-card__quote {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.35;
}

.review-card__meta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-card__author {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.review-card__product {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(135deg, rgba(19, 33, 19, 0.95), rgba(45, 74, 45, 0.92)),
    #132113;
  color: #f6efe6;
}

.footer__top {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 2rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__tagline {
  margin-top: 1rem;
  color: rgba(255, 244, 231, 0.7);
}

.footer__col-title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__nav-list {
  display: grid;
  gap: 0.8rem;
}

.footer__nav-link,
.footer__legal-link,
.footer__copyright {
  color: rgba(255, 244, 231, 0.72);
  font-size: 0.9rem;
}

.footer__nav-link:hover,
.footer__legal-link:hover {
  color: #f7dca0;
}

.footer__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }

  .header__nav {
    display: inline-flex;
  }

  .header__cart-label {
    display: inline;
  }

  .header__burger,
  .header__mobile-nav,
  .header__mobile-nav.is-open {
    display: none;
  }

  .proof-band__grid,
  .collection-grid,
  .results-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-layout,
  .ingredients-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 3rem;
  }

  .conversion-strip__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }

  .conversion-strip__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 6.5rem 0;
  }

  .proof-band__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .section {
    padding: 4.2rem 0;
  }

  .header__inner {
    min-height: 94px;
  }

  .header__logo-image--header {
    width: 140px;
    height: 72px;
  }

  .footer__logo-image--footer {
    width: 96px;
    height: 96px;
  }

  .hero__inner {
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
  }

  .hero__headline {
    max-width: 12ch;
  }

  .hero__trust span {
    width: 100%;
    justify-content: center;
  }

  .proof-band {
    margin-top: -2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}




.ingredients-layout {
  align-items: start;
}

.ingredients-content,
.ingredients-reviews {
  width: 100%;
  min-width: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 18px 45px rgba(21, 17, 12, 0.05);
}

.ingredients-content h2,
.ingredients-content p,
.ingredients-content .ingredients-list {
  max-width: none;
}

.ingredients-reviews__header {
  margin-bottom: 1.5rem;
}

.ingredients-reviews__header h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reviews-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.reviews-control:hover {
  transform: translateY(-1px);
  border-color: rgba(167, 133, 50, 0.45);
  color: var(--gold-deep);
}

.reviews-control:active {
  transform: translateY(0);
}

.reviews-control:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.reviews-carousel {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-card {
  width: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.result-card,
.review-card {
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.result-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 133, 50, 0.24);
  box-shadow: 0 24px 54px rgba(21, 17, 12, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow,
  .hero__headline,
  .hero__subline,
  .hero__actions,
  .hero__trust,
  .proof-card,
  .conversion-strip__inner,
  .section-header,
  .ingredients-content,
  .ingredients-reviews {
    opacity: 0;
    animation: kze-fade-up 860ms var(--ease) forwards;
  }

  .hero__eyebrow { animation-delay: 120ms; }
  .hero__headline { animation-delay: 220ms; }
  .hero__subline { animation-delay: 340ms; }
  .hero__actions { animation-delay: 460ms; }
  .hero__trust { animation-delay: 560ms; }
  .proof-card:nth-child(1) { animation-delay: 240ms; }
  .proof-card:nth-child(2) { animation-delay: 340ms; }
  .proof-card:nth-child(3) { animation-delay: 440ms; }
  .conversion-strip__inner { animation-delay: 220ms; }

  .hero__trust span {
    opacity: 0;
    animation: kze-soft-scale-in 560ms var(--ease) forwards;
  }

  .hero__trust span:nth-child(1) { animation-delay: 640ms; }
  .hero__trust span:nth-child(2) { animation-delay: 720ms; }
  .hero__trust span:nth-child(3) { animation-delay: 800ms; }

  .collection-card,
  .product-card,
  .result-card,
  .review-card {
    will-change: transform;
  }
}

@media (min-width: 768px) {
  .ingredients-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .ingredients-content,
  .ingredients-reviews {
    padding: 1.4rem;
  }

  .reviews-controls {
    justify-content: flex-start;
  }

  .review-card {
    width: 100%;
    flex-basis: 100%;
  }
}
