@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --tea-cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23fffaf0' stroke='%2311291d' stroke-width='2' d='M7 13h15v6a7 7 0 0 1-7 7h-1a7 7 0 0 1-7-7v-6Z'/%3E%3Cpath fill='none' stroke='%2311291d' stroke-width='2' d='M22 15h3a3 3 0 0 1 0 6h-3'/%3E%3Cpath fill='none' stroke='%23d95d49' stroke-width='2' stroke-linecap='round' d='M11 8c0-2 2-2 2-4M16 8c0-2 2-2 2-4'/%3E%3Cpath fill='%23c7e86b' d='M8 14h13v2H8z'/%3E%3C/svg%3E") 8 8, auto;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #f6efe3;
  color: #11291d;
  overflow-x: hidden;
}

body.page-enter {
  opacity: 0;
}

body.page-enter.page-ready {
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.page-leaving {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-header,
main,
.footer {
  view-transition-name: none;
}

@supports (view-transition-name: root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.35s;
  }
}

body,
a,
button,
input,
select,
textarea,
.cart-button,
.btn,
.category-card,
.product-card,
.step span,
.nav a {
  cursor: var(--tea-cursor);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  width: 100%;
  display: block;
}

.top-sale {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 11px 18px;
  background: #11291d;
  color: #fffaf0;
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 7%;
  background: rgba(246, 239, 227, 0.9);
  border-bottom: 1px solid rgba(17, 41, 29, 0.12);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  min-height: 46px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #11291d;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fffaf0;
  transition: 0.25s;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(11, 29, 21, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}

body.nav-open .nav-overlay {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c7e86b;
  color: #11291d;
  font-size: 15px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #31483c;
  font-size: 15px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after,
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #d95d49;
  transition: 0.25s;
}

.nav a::after {
  width: 0;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.cart-button,
.btn,
button {
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #11291d;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  transition: 0.25s;
}

.cart-button:hover,
.btn:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(17, 41, 29, 0.2);
}

.cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 50%;
  background: #c7e86b;
  color: #11291d;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: #d95d49;
}

.btn.ghost {
  background: #fffaf0;
  color: #11291d;
  border: 1px solid rgba(17, 41, 29, 0.16);
}

.btn.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.page-hero {
  padding: 72px 7% 56px;
  background:
    radial-gradient(circle at 80% 10%, rgba(199, 232, 107, 0.35), transparent 30%),
    linear-gradient(135deg, #f6efe3 0%, #fffaf0 60%, #eaf3d8 100%);
}

.page-hero h1 {
  max-width: 820px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1;
}

.page-hero > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 20px;
  color: #50675b;
  font-size: 19px;
  line-height: 1.75;
}

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 86px 7%;
  background:
    radial-gradient(circle at 74% 20%, rgba(199, 232, 107, 0.42), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(217, 93, 73, 0.16), transparent 30%),
    linear-gradient(135deg, #f6efe3 0%, #fffaf0 48%, #dfeec0 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 14px;
  color: #d95d49;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  line-height: 0.96;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0 36px;
  color: #50675b;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 10px solid #fffaf0;
  border-radius: 28px;
  background: #fffaf0;
  box-shadow: 0 34px 80px rgba(17, 41, 29, 0.24);
  transform: rotate(2deg);
}

.hero-card img,
.hero-video {
  height: 540px;
  object-fit: cover;
}

.hero-video {
  width: 100%;
}

.about-video {
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(17, 41, 29, 0.16);
}

.floating-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(18px);
}

.floating-label strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.floating-label span {
  color: #50675b;
  font-weight: 700;
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px 7%;
  background: #11291d;
}

.category-card {
  min-height: 164px;
  padding: 26px;
  border-radius: 24px;
  transition: 0.25s;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.category-card span {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 900;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.category-card p {
  color: rgba(17, 41, 29, 0.72);
  line-height: 1.5;
  font-weight: 700;
}

.green { background: #c7e86b; }
.pink { background: #ffc8bd; }
.mint { background: #bdeee2; }
.yellow { background: #ffe188; }

.section {
  padding: 96px 7%;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2,
.banner h2,
.recipe-content h2,
.newsletter h2,
.about-grid h2,
.cart-summary h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.02;
}

.section-head > p:not(.eyebrow),
.banner p,
.newsletter p {
  margin-top: 14px;
  color: #5c7166;
  font-size: 18px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fffaf0;
  box-shadow: 0 18px 42px rgba(17, 41, 29, 0.09);
  transition: 0.25s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(17, 41, 29, 0.16);
}

.product-media {
  position: relative;
  height: 310px;
  background: #e7efcf;
}

.product-media img {
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #c7e86b;
  color: #11291d;
  font-size: 12px;
  font-weight: 900;
}

.badge.peach { background: #ffc8bd; }
.badge.dark { background: #11291d; color: #ffffff; }

.product-body {
  padding: 26px;
}

.product-type {
  margin-bottom: 8px;
  color: #d95d49;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.product-body > p:not(.product-type) {
  min-height: 78px;
  color: #5c7166;
  line-height: 1.65;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.product-bottom strong {
  font-size: 23px;
}

.product-bottom button {
  min-height: 42px;
  padding: 0 20px;
  background: #24573d;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 86px 7%;
  background:
    linear-gradient(90deg, rgba(17, 41, 29, 0.95), rgba(17, 41, 29, 0.68)),
    url("https://images.pexels.com/photos/5946972/pexels-photo-5946972.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&fit=crop");
  background-size: cover;
  background-position: center;
  color: #fffaf0;
}

.banner div {
  max-width: 760px;
}

.banner p {
  color: #edf5e8;
}

.recipe {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  background: #eaf3d8;
}

.recipe-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(17, 41, 29, 0.16);
}

.recipe-image img {
  height: 540px;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.step {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(17, 41, 29, 0.07);
  outline: 2px solid transparent;
  transition: outline-color 300ms ease, box-shadow 300ms ease;
}

.step.is-active {
  outline-color: #c7e86b;
  box-shadow: 0 18px 36px rgba(17, 41, 29, 0.12);
}

.step-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.step.is-active .step-video {
  opacity: 0.26;
}

.step span,
.step p {
  position: relative;
  z-index: 1;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #11291d;
  color: #ffffff;
  font-weight: 900;
}

.step p {
  color: #53695f;
  line-height: 1.6;
  font-weight: 700;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 38px 7%;
  background: #11291d;
  color: #ffffff;
}

.benefits div {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.12);
}

.benefits strong {
  display: block;
  margin-bottom: 8px;
  color: #c7e86b;
  font-size: 18px;
  text-transform: uppercase;
}

.benefits p {
  color: #dce8de;
  line-height: 1.6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-grid article {
  padding: 30px;
  border-radius: 26px;
  background: #fffaf0;
  box-shadow: 0 18px 38px rgba(17, 41, 29, 0.08);
}

.review-grid strong {
  color: #d95d49;
}

.review-grid p {
  margin: 18px 0;
  color: #53695f;
  font-size: 18px;
  line-height: 1.65;
}

.review-grid span {
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  padding: 80px 7%;
  background: #ffc8bd;
}

.newsletter form {
  display: flex;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #fffaf0;
  color: #11291d;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 120px;
  padding: 16px 18px;
  border-radius: 20px;
  resize: vertical;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
  color: #31483c;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-cart {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: min(340px, calc(100% - 40px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 22px 48px rgba(17, 41, 29, 0.22);
  backdrop-filter: blur(18px);
}

.mini-cart.show {
  display: block;
  animation: cartShow 0.25s ease;
}

@keyframes cartShow {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mini-cart div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mini-cart strong {
  font-size: 18px;
}

.mini-cart button {
  min-height: 30px;
  padding: 0 12px;
  background: #d95d49;
  font-size: 12px;
}

.mini-cart p {
  color: #53695f;
  line-height: 1.45;
}

.mini-cart a {
  display: inline-block;
  margin-top: 12px;
  color: #24573d;
  font-weight: 800;
  text-decoration: underline;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid img {
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(17, 41, 29, 0.16);
}

.about-grid p {
  margin-top: 16px;
  color: #53695f;
  font-size: 18px;
  line-height: 1.75;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.value-card {
  padding: 28px;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 16px 36px rgba(17, 41, 29, 0.08);
}

.value-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.value-card p {
  margin: 0;
  font-size: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 16px 36px rgba(17, 41, 29, 0.08);
}

.team-card img {
  height: 280px;
  object-fit: cover;
}

.team-card div {
  padding: 22px;
}

.team-card strong {
  display: block;
  font-size: 20px;
}

.team-card span {
  color: #d95d49;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(17, 41, 29, 0.08);
}

.cart-item img {
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
}

.cart-item h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.cart-item p {
  color: #5c7166;
  font-weight: 700;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.qty-controls button {
  min-height: 36px;
  min-width: 36px;
  padding: 0;
  background: #24573d;
}

.qty-controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
}

.cart-item-price {
  text-align: right;
}

.cart-item-price strong {
  display: block;
  font-size: 22px;
}

.cart-item-price button {
  margin-top: 12px;
  min-height: 34px;
  padding: 0 14px;
  background: transparent;
  color: #d95d49;
  box-shadow: none;
}

.cart-item-price button:hover {
  transform: none;
  text-decoration: underline;
  box-shadow: none;
}

.cart-empty {
  padding: 48px;
  border-radius: 24px;
  background: #fffaf0;
  text-align: center;
  box-shadow: 0 12px 28px rgba(17, 41, 29, 0.08);
}

.cart-empty p {
  margin: 14px 0 24px;
  color: #5c7166;
  font-size: 18px;
}

.cart-summary {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-radius: 28px;
  background: #11291d;
  color: #fffaf0;
}

.cart-summary h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  font-weight: 700;
}

.summary-row.total {
  border-bottom: 0;
  margin-top: 8px;
  padding-top: 20px;
  font-size: 22px;
}

.cart-summary .btn {
  width: 100%;
  margin-top: 20px;
}

.cart-summary .btn.ghost {
  margin-top: 12px;
}

.checkout-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.checkout-form h3 {
  font-size: 18px;
}

.order-success {
  display: none;
  padding: 24px;
  border-radius: 20px;
  background: rgba(199, 232, 107, 0.15);
  color: #c7e86b;
  font-weight: 800;
  line-height: 1.6;
}

.order-success.show {
  display: block;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fffaf0;
  color: #11291d;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(17, 41, 29, 0.06);
  transition: 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #11291d;
  color: #fffaf0;
  transform: translateY(-2px);
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 48px;
  border-radius: 24px;
  background: #fffaf0;
  text-align: center;
  color: #5c7166;
  font-size: 18px;
}

.catalog-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: #11291d;
  box-shadow: 0 18px 42px rgba(17, 41, 29, 0.14);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(11, 29, 21, 0.88));
  color: #fffaf0;
  font-size: 14px;
  font-weight: 800;
}

.section-soft {
  background: #eaf3d8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(17, 41, 29, 0.08);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-card p,
.contact-card a {
  color: #53695f;
  line-height: 1.6;
  font-weight: 700;
}

.contact-card a:hover {
  color: #d95d49;
}

.contact-form-box {
  padding: 32px;
  border-radius: 28px;
  background: #11291d;
  color: #fffaf0;
}

.contact-form-box h2 {
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

.contact-form-box > p {
  margin-bottom: 24px;
  color: #dce8de;
  line-height: 1.6;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
  background: rgba(255, 250, 240, 0.95);
}

.map-embed {
  overflow: hidden;
  margin-top: 36px;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(17, 41, 29, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 7%;
  background: #0b1d15;
  color: #ffffff;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
}

.footer p {
  color: #dce8de;
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 48;
    width: min(320px, 86vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 96px 28px 28px;
    background: #fffaf0;
    box-shadow: -12px 0 40px rgba(17, 41, 29, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav a {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
  }

  .hero,
  .recipe,
  .about-grid,
  .cart-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .video-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 56px;
  }

  .categories,
  .benefits,
  .review-grid,
  .newsletter,
  .values,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .top-sale span:nth-child(2) {
    display: none;
  }

  .site-header {
    padding: 16px 22px;
  }

  .logo {
    font-size: 22px;
  }

  .nav {
    gap: 18px;
    font-size: 14px;
  }

  .cart-button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero,
  .section,
  .banner,
  .newsletter,
  .page-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 58px;
    min-height: auto;
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .banner h2,
  .recipe-content h2,
  .newsletter h2 {
    font-size: 40px;
  }

  .hero-card {
    min-height: auto;
    transform: none;
    border-radius: 24px;
  }

  .hero-card img,
  .recipe-image img,
  .about-grid img {
    height: 340px;
  }

  .hero-actions,
  .newsletter form {
    flex-direction: column;
  }

  .btn,
  button {
    width: 100%;
  }

  .categories,
  .product-grid,
  .benefits,
  .review-grid,
  .newsletter,
  .values,
  .team-grid,
  .form-grid,
  .video-gallery {
    grid-template-columns: 1fr;
  }

  .categories {
    padding: 22px;
  }

  .product-media {
    height: 245px;
  }

  .product-body > p:not(.product-type) {
    min-height: auto;
  }

  .product-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: 180px;
  }

  .cart-item-price {
    text-align: left;
  }

  .footer {
    flex-direction: column;
    padding: 36px 22px;
  }

  .mini-cart {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}
