/* =============================================================
   ЭКОЛУГ — Фермерский ритейл
   BEM-методология. Очищенная версия.
   ============================================================= */

/* -----------------------------------------------------
   1. FONTS & RESET
   ----------------------------------------------------- */
@font-face {
  font-family: 'Neucha-Regular';
  src: url('../fonts/Neucha-Regular.ttf') format('truetype');
}

:root {
  --color-primary:      #ffc123;
  --color-accent:       #68911a;
  --color-bg:           #FFF9F5;
  --color-text:         #3d2818;
  --color-text-muted:   #6D5D53;
  --color-text-soft:    #4A3A32;
  --color-border:       #ddd;
  --color-overlay:      rgba(0,0,0,0.6);
  --shadow-card:        0 20px 35px -12px #00000036;
  --shadow-deep:        0 20px 30px 0 #00000024;
  --radius-sm:          10px;
  --radius-md:          14px;
  --radius-lg:          20px;
  --radius-xl:          24px;
  --radius-2xl:         28px;
  --radius-full:        48px;
}

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

html {
  width: 100%;
  max-width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Neucha-Regular', sans-serif;
  background-color: #fff;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

a {
  text-decoration: none;
}

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

/* -----------------------------------------------------
   2. UTILITIES
   ----------------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 80px 0;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 4px;
}

[wire\:navigate] {
  opacity: 1;
  transition: opacity 0.2s ease;
}
[wire\:navigate].loading {
  opacity: 0.5;
}

/* -----------------------------------------------------
   3. BUTTONS
   ----------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.button--primary {
  background: var(--color-primary);
  color: white;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 14px rgba(199, 59, 43, 0.25);
}

.button--primary:hover {
  background: #ffb700;
  transform: translateY(-2px);
  box-shadow: 0 10px 10px #af810ea1;
}

/* -----------------------------------------------------
   4. HEADER (navbar)
   ----------------------------------------------------- */
.header {
  background: #ffffff4f;
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 20px #0000005c;
  padding: 14px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
}

.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.header__tagline {
  font-weight: 400;
  color: var(--color-primary);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  flex-shrink: 0;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header__burger--open .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger--open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger--open .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.header__nav-link {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
  font-size: 1.2rem;
}

.header__nav-link:hover {
  color: var(--color-primary);
}

.header__badge {
  background: var(--color-accent);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* -----------------------------------------------------
   5. HERO
   ----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__veg {
  position: absolute;
  opacity: 0.5;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.hero__veg--bazilic {
  width: 120px;
  top: 60%;
  left: 5%;
  --rotate: 10deg;
  animation: floatVeg 8s infinite alternate-reverse ease-in-out;
}

.hero__veg--mint {
  width: 160px;
  top: 15%;
  right: 3%;
  --rotate: 20deg;
  animation: floatVeg 4s infinite alternate ease-in-out;
}

.hero__veg--petrushka {
  width: 200px;
  bottom: 5%;
  right: 8%;
  --rotate: -15deg;
  animation: floatVeg 9s infinite alternate-reverse ease-in-out;
}

.hero__veg--shpinat {
  width: 120px;
  top: 4%;
  left: 0;
  --rotate: 35deg;
  animation: floatVeg 6s infinite alternate ease-in-out;
}

@keyframes floatVeg {
  0%   { transform: translate(0, 0) rotate(var(--rotate, 0deg)); }
  100% { transform: translate(20px, -25px) rotate(calc(var(--rotate, 0deg) + 8deg)); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.hero__text {
  position: relative;
  z-index: 3;
}

.hero__title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--color-text);
}

.hero__title-accent {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
}

.hero__desc {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin-bottom: 36px;
  max-width: 480px;
  padding-left: 18px;
  border-left: 3px solid #ffa2006e;
}

.hero__desc strong {
  font-weight: bold;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48% 52% 42% 58% / 63% 41% 59% 37%;
  box-shadow: 0 0 30px #0000005c;
  transition: border-radius 0.4s ease;
}

.hero__image:hover {
  border-radius: 42% 58% 48% 52% / 55% 45% 55% 45%;
}

/* -----------------------------------------------------
   6. FEATURES (reasons)
   ----------------------------------------------------- */
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 16px;
}

.features__item {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 32px;
  transition: all 0.3s;
}

.features__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 45px -15px rgba(0, 0, 0, 0.2);
}

.features__item--lime   { background: #e4f1ba; }
.features__item--yellow { background: #f3d491; }
.features__item--green  { background: #cce08a; }
.features__item--gold   { background: #ffd877; grid-column: span 2; }
.features__item--cream  { background: #ffe8a5; }

.features__icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}

.features__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.features__text {
  font-size: 1.2rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}

/* -----------------------------------------------------
   7. MENU (bento catalog)
   ----------------------------------------------------- */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

.menu__card {
  background-size: cover;
  background-position: center;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--shadow-card);
  z-index: 1;
}

.menu__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
  transition: background 0.35s;
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.menu__card:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.menu__card-title {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.menu__card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.menu__card-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 280px;
}

.menu__card-arrow {
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.3s;
  flex-shrink: 0;
}

.menu__card:hover .menu__card-arrow {
  transform: translateX(6px);
}

/* Bento grid column spans */
.menu__card:nth-child(1)  { grid-column: span 7; }
.menu__card:nth-child(2)  { grid-column: span 5; }
.menu__card:nth-child(3)  { grid-column: span 5; }
.menu__card:nth-child(4)  { grid-column: span 7; }
.menu__card:nth-child(5)  { grid-column: span 12; }
.menu__card:nth-child(6)  { grid-column: span 6; }
.menu__card:nth-child(7)  { grid-column: span 6; }
.menu__card:nth-child(8)  { grid-column: span 4; }
.menu__card:nth-child(9)  { grid-column: span 8; }
.menu__card:nth-child(10) { grid-column: span 12; }
.menu__card:nth-child(11) { grid-column: span 7; }
.menu__card:nth-child(12) { grid-column: span 5; }

/* -----------------------------------------------------
   8. PROCESS (insight)
   ----------------------------------------------------- */
.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.process__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process__item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.process__item:hover {
  background: #FBF7F2;
}

.process__item--active {
  background: #ffe8a5;
  box-shadow: 0 10px 15px -10px #00000014;
}

.process__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d2818ba;
  min-width: 24px;
  padding-top: 2px;
  transition: color 0.3s;
}

.process__item--active .process__num {
  color: var(--color-primary);
}

.process__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3d2818ba;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.process__item--active .process__title {
  color: var(--color-text);
}

.process__text {
  font-size: 1.2rem;
  color: #3d281869;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.process__item--active .process__text {
  color: #5C5046;
  max-height: 100px;
}

.process__cert {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FBF7F2;
  border-radius: 16px;
  padding: 20px;
}

.process__cert-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.process__cert-thumb {
  width: 45px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  transform: rotate(3deg);
  flex-shrink: 0;
  margin-left: auto;
}

.process__cert-btn {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin-top: 5px;
}

.process__cert-btn:hover {
  background: var(--color-primary);
  color: white;
}

.process__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F5F0EB;
  aspect-ratio: 1 / 1;
  max-height: 400px;
  align-self: center;
  width: 70%;
  margin: auto;
}

.process__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process__image--active {
  opacity: 1;
}

/* -----------------------------------------------------
   9. MODAL (certificates)
   ----------------------------------------------------- */
.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__dialog {
  background: white;
  border-radius: 32px;
  max-width: 500px;
  width: 90%;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-deep);
}

.modal__close {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.modal__close:hover {
  color: var(--color-primary);
}

.modal__list {
  margin: 24px 0;
}

.modal__item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}

.modal__item i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.modal__note {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 16px;
}

/* -----------------------------------------------------
   10. TIMELINE (journey)
   ----------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 110px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 46px;
  top: 28px;
  bottom: 140px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-primary) 0px,
    var(--color-primary) 10px,
    transparent 10px,
    transparent 18px
  );
  border-radius: 3px;
}

.timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 56px;
  position: relative;
  padding-left: 20px;
}

.timeline__time {
  position: absolute;
  left: -80px;
  top: 38px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  background: white;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 10px -5px #0000002e;
  white-space: nowrap;
  z-index: 2;
}

.timeline__icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: 20px;
}

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

.timeline__body {
  padding-top: 14px;
}

.timeline__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.timeline__final {
  margin-left: 0;
  margin-top: 4px;
  padding: 0 0 6px;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-text);
  border-bottom: 3px solid var(--color-primary);
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
}

.timeline__final::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0%,
    var(--color-primary) 25%,
    #c8960c 50%,
    var(--color-primary) 75%,
    rgba(255, 255, 255, 0.4) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
  border-radius: 3px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.timeline__final:hover {
  color: var(--color-primary);
}

.timeline__final:hover::after {
  animation: none;
  background: var(--color-primary);
}

.timeline__final-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.timeline__final-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.timeline__note {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 20px;
}

/* -----------------------------------------------------
   11. MANAGER
   ----------------------------------------------------- */
.manager {
  padding: 100px 0 0 0;
  margin-bottom: 100px;
}

.manager__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  background: #fff;
}

.manager__photo-wrap {
  position: relative;
  overflow: hidden;
}

.manager__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  transition: clip-path 0.4s ease;
}

.manager__photo-wrap:hover .manager__photo {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.manager__status {
  position: absolute;
  bottom: 28px;
  right: 40px;
  background: #ffffff;
  box-shadow: 3px 4px 2px #00000045;
  color: var(--color-text);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
}

.manager__status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;    transform: scale(1);   }
  50%      { opacity: 0.4;  transform: scale(1.3); }
}

.manager__info {
  padding: 60px 0 60px 50px;
}

.manager__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.manager__title-accent {
  color: var(--color-primary);
  position: relative;
}

.manager__title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(232, 179, 61, 0.3);
  z-index: -1;
}

.manager__desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}

.manager__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.manager__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.manager__feature-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  min-width: 32px;
}

.manager__feature-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
  padding-bottom: 14px;
  border-bottom: 2px solid #00000045;
}

/* -----------------------------------------------------
   12. CART
   ----------------------------------------------------- */

/* ─── Кнопка-триггер ─── */
.cart__toggle {
  background: var(--color-primary);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(199, 59, 43, 0.4);
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.cart__toggle:hover {
  transform: scale(1.08);
}

@keyframes cart-shake {
  0%, 100%            { transform: rotate(0deg); }
  15%, 45%, 75%       { transform: rotate(-10deg); }
  30%, 60%, 90%       { transform: rotate(10deg); }
}

.cart__toggle--shake {
  animation: cart-shake 0.6s ease-in-out;
}

.cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #FFF;
  color: var(--color-primary);
  border-radius: 30px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ─── Оверлей ─── */
.cart__overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  z-index: 1000;
}

.cart__overlay--open {
  visibility: visible;
  opacity: 1;
}

/* ─── Дровер ─── */
.cart__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: white;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.cart__overlay--open .cart__drawer {
  transform: translateX(0);
}

/* ─── Шапка (фикс) ─── */
.cart__header {
  padding: 22px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.cart__close:hover {
  color: var(--color-primary);
}

/* ─── Список товаров (единственная скроллящаяся область) ─── */
.cart__items {
  flex: 1 1 auto;
  min-height: 0;                    /* ← ключ: разрешаем сжиматься */
  padding: 16px 24px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scrollbar-color: #A89580 #F0EAE2;
}

.cart__items::-webkit-scrollbar {
  width: 8px;
}

.cart__items::-webkit-scrollbar-track {
  background: #F0EAE2;
  border-radius: 10px;
  margin: 6px 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.cart__items::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #B8A590, #A08B75);
  border-radius: 10px;
  min-height: 40px;
}

.cart__items::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #A08B75, #8A735E);
}

.cart__empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
  font-size: 0.95rem;
}

/* ─── Карточка товара ─── */
.cart__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ece6;
  align-items: flex-start;
}

.cart__item:last-child {
  border-bottom: none;
}

.cart__item-img-link {
  flex-shrink: 0;
  display: block;
}

.cart__item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: #FEF3E8;
}

.cart__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart__item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.3;
}

.cart__item-name:hover {
  color: var(--color-primary);
}

.cart__item-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.cart__item-price-old {
  font-size: 0.8rem;
  color: #A9A099;
  text-decoration: line-through;
  white-space: nowrap;
}

.cart__item-savings {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2D6A2E;
  background: #E8F5E9;
  padding: 1px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.cart__item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.cart__item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.cart__item-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #F5F0EB;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--color-text);
}

.cart__item-qty-btn:hover {
  background: #EBE3DA;
}

.cart__item-qty-val {
  width: 36px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.cart__item-remove {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 4px 6px;
  transition: transform 0.15s;
  line-height: 1;
}

.cart__item-remove:hover {
  transform: scale(1.2);
}

.cart__item-total {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* ─── Футер (всегда видим, не скроллится) ─── */
.cart__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;             /* никогда не сжимается флексом */
  overflow: visible;          /* без скролла */
}

.cart__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart__input {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.cart__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.cart__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.cart__form-note {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  color: var(--color-text-muted);
}

/* Flash */
.cart__flash {
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.cart__flash--error {
  color: #c0392b;
  background: #FDEDEC;
}

/* Блок успеха */
.cart__success-block {
  text-align: center;
  padding: 24px 16px;
}

.cart__success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.cart__success-title {
  font-size: 20px;
  font-weight: 700;
  color: #4a7c2e;
  margin-bottom: 12px;
}

.cart__success-body {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.cart__success-phone {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.cart__success-btn {
  width: 100%;
}

/* ─── Итоговый блок ─── */
.cart__summary {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0ece6;
}

.cart__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 3px 0;
  font-size: 0.9rem;
}

.cart__summary-row--base {
  color: var(--color-text-muted);
}

.cart__summary-price-old {
  text-decoration: line-through;
  color: #A9A099;
}

.cart__summary-row--total {
  font-size: 1.1rem;
  color: var(--color-text);
  padding: 4px 0;
}

.cart__summary-row--savings {
  color: #2D6A2E;
  font-weight: 600;
}

.cart__summary-savings-value {
  background: #E8F5E9;
  padding: 2px 12px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.cart__volume-hint {
  font-size: 0.7rem;
  color: #8B7355;
  margin-top: 6px;
  line-height: 1.4;
  background: #FDF6F0;
  padding: 6px 10px;
  border-radius: 10px;
}

/* ─── Чекбокс приватности ─── */
.cart__privacy {
  margin: 10px 0 14px;
}

.cart__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.cart__privacy-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #4a7c2e;
  cursor: pointer;
}

.cart__privacy-link {
  color: #4a7c2e;
  text-decoration: underline;
}

.cart__privacy-link:hover {
  color: #365c1f;
}

/* -----------------------------------------------------
   13. FOOTER
   ----------------------------------------------------- */
.footer {
  background-image: url('../images/footer.png');
  background-size: cover;
  padding: 48px 0 32px;
  color: #ffffffcc;
  margin: -1px;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__col {
  flex: 1;
  min-width: 170px;
}

.footer__title {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.footer__text {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer__link {
  display: block;
  color: #ffffffcc;
  margin-bottom: 8px;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__legal {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  font-size: 0.8rem;
  text-align: center;
}

/* -----------------------------------------------------
   14. CATALOG PAGE
   ----------------------------------------------------- */
.catalog {
  padding: 40px 0 80px;
}

.catalog__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.catalog__search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.catalog__search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.catalog__search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.1);
}

.catalog__search-reset {
  padding: 10px 16px;
  background: none;
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.2s;
}

.catalog__search-reset:hover {
  background: #f5f5f5;
  border-color: #999;
}

.catalog__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.catalog__filter-btn {
  background: #F5F0EB;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-text-soft);
  font-family: inherit;
}

.catalog__filter-btn:hover {
  background: #EBE3DA;
}

.catalog__filter-btn--active {
  background: var(--color-primary);
  color: white;
}

.catalog__filter-btn--active:hover {
  background: var(--color-primary);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.catalog__empty {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 16px;
}

/* -----------------------------------------------------
   15. PRODUCT CARD
   ----------------------------------------------------- */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.product-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

.product-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #FEF3E8;
  flex-shrink: 0;
}

.product-card__link .product-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card > .product-card__body {
  padding: 0 22px 20px;
  flex-shrink: 0;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  flex-shrink: 0;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.product-card__price-from {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-right: 2px;
}

.product-card__price-unit {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.product-card__btn {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-card__btn:hover {
  background: #4A6348;
}

.product-card__btn i {
  font-size: 0.8rem;
  flex-shrink: 0;
}

.product-card__btn--incart {
  background: #E8F5E9;
  color: #2D6A2E;
  box-shadow: none;
  pointer-events: auto;
  cursor: pointer;
}

.product-card__btn--incart:hover {
  background: #C8E6C9;
  color: #1B5E20;
}

/* -----------------------------------------------------
   16. PRODUCT DETAIL PAGE
   ----------------------------------------------------- */
.product {
  padding: 40px 0 80px;
}

.product__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 36px;
  transition: color 0.2s;
  text-decoration: none;
}

.product__back:hover {
  color: var(--color-primary);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: #FEF3E8;
}

.product__thumbs {
  display: flex;
  gap: 12px;
}

.product__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: #FEF3E8;
}

.product__thumb:hover,
.product__thumb--active {
  border-color: var(--color-primary);
}

.product__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.product__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product__price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0;
}

.product__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.product__price-unit {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.product__price-savings {
  display: inline-block;
  margin-left: 10px;
  color: #2D6A2E;
  background: #E8F5E9;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  vertical-align: middle;
  white-space: nowrap;
}

.product__desc {
  font-size: 1rem;
  color: #5C5046;
  line-height: 1.6;
  max-width: 420px;
}

.product__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0;
}

.product__spec {
  background: #F5F0EB;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

.product__spec i {
  margin-right: 6px;
  color: var(--color-primary);
}

.product__qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 12px 0;
  width: fit-content;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product__qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #F5F0EB;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.product__qty-btn:hover {
  background: #EBE3DA;
}

.product__qty-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}

/* База — общие размеры и анимация */
.product__add-btn,
.product__add-btn--incart {
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: inherit;
}

/* Добавить в корзину */
.product__add-btn {
  background: var(--color-accent);
  color: white;
}

.product__add-btn:hover {
  background: #4A6348;
}

/* В корзине */
.product__add-btn--incart {
  background: #E8F5E9;
  color: #2D6A2E;
  box-shadow: none;
  cursor: pointer;
}

.product__add-btn--incart:hover {
  background: #C8E6C9;
  color: #1B5E20;
}


/* ─── Pricing tiers ─── */
.product__pricing {
  margin: 20px 0 8px;
}

.product__pricing-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.product__pricing-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product__pricing-card {
  border: 2px solid #E0D5C7;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  min-width: 110px;
  background: #FFFDF9;
  transition: all 0.25s;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product__pricing-card--active {
  border-color: var(--color-primary);
  background: #FDF6F0;
  box-shadow: 0 0 0 4px rgba(199, 59, 43, 0.08);
}

.product__pricing-card-qty {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8B7355;
}

.product__pricing-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.product__pricing-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* =============================================================
   17. RESPONSIVE — TABLET (≤1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .header__tagline {
    display: none;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__desc {
    font-size: 1.2rem;
    max-width: 100%;
  }

  .hero__image-wrap {
    max-width: 380px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }

  .features__item--gold {
    grid-column: span 1;
  }

  .features__icon {
    width: 140px;
    height: 140px;
  }

  .menu__card:nth-child(n) {
    grid-column: span 6;
  }

  .menu__card:nth-child(5) {
    grid-column: span 12;
  }

  .manager__info {
    padding: 40px 20px;
  }

  .manager__title {
    font-size: 1.5rem;
  }
}

/* =============================================================
   18. RESPONSIVE — MOBILE (≤768px)
   ============================================================= */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  /* --- header mobile --- */
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 12px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
    transition: right 0.3s ease, visibility 0.3s ease;
  }

  .header__nav--open {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F5F0EB;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
  }

  .header__nav-link:hover {
    background: var(--color-primary);
    color: white;
  }

  .header__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-accent);
    color: white;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
  }

  /* --- hero mobile --- */
  .hero {
    padding: 40px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/insight.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -70px;
    padding-top: 0;
    min-height: 100vh;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000088;
    z-index: 0;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 160px;
  }

  .hero__title {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 16px;
    color: #fff;
  }

  .hero__title-accent {
    display: block;
  }

  .hero__desc {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 auto 20px;
    max-width: 100%;
    padding-left: 0;
    border-left: none;
    color: #fff;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }

  .hero__cta {
    width: 100%;
    max-width: 290px;
    padding: 16px 28px;
    font-size: 1.1rem;
    display: block;
    margin: auto;
  }

  .hero__visual {
    display: none;
  }

  .hero__veg {
    opacity: 0.5;
  }

  .hero__veg--shpinat { width: 130px; }
  .hero__veg--mint    { width: 100px; }
  .hero__veg--petrushka,
  .hero__veg--bazilic { display: none; }

  /* --- features mobile --- */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }

  .features__item {
    padding: 10px;
    border-radius: 16px;
  }

  .features__icon {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
  }

  .features__title {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .features__text {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .features__item--wide {
    grid-column: span 2;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  /* --- menu mobile --- */
  .menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px 0;
  }

  .menu__card:nth-child(n) {
    grid-column: auto;
    clip-path: none;
    margin: 0;
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .menu__card:nth-child(5n) {
    grid-column: span 2;
  }

  .menu__card {
    min-height: 150px;
    padding: 16px 14px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
  }

  .menu__card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    white-space: normal;
    width: 100%;
    word-wrap: break-word;
  }

  .menu__card-desc {
    display: none;
  }

  .menu__card-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  /* --- process mobile --- */
  .process__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process__visual {
    aspect-ratio: 1 / 1;
    order: -1;
    width: 100%;
  }

  /* --- timeline mobile --- */
  .timeline {
    padding-left: 60px;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline__step {
    gap: 16px;
    padding-bottom: 36px;
    padding-left: 10px;
  }

  .timeline__time {
    left: -56px;
    font-size: 1rem;
    padding: 4px 10px;
    top: 20px;
  }

  .timeline__icon {
    width: 100px;
    height: 100px;
  }

  .timeline__title {
    font-size: 1.5rem;
  }

  .timeline__text {
    font-size: 1rem;
  }

  .timeline__final-text {
    font-size: 1.2rem;
  }

  /* --- manager mobile --- */
  .manager {
    padding: 40px 0 0;
    margin-bottom: 40px;
  }

  .manager__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    width: 100%;
  }

  .manager__photo-wrap {
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    order: -1;
    border-radius: 5%;
  }

  .manager__photo {
    clip-path: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: 0.4s ease;
  }

  .manager__photo-wrap:hover .manager__photo {
    clip-path: none;
  }

  .manager__status {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 6px 12px;
    z-index: 5;
  }

  .manager__info {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .manager__title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .manager__desc {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .manager__features {
    width: 100%;
    max-width: 320px;
    gap: 16px;
    margin-bottom: 32px;
  }

  .manager__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .manager__feature-num {
    font-size: 1.1rem;
    font-weight: 800;
    min-width: 24px;
    margin-top: 2px;
  }

  .manager__feature-text {
    width: 100%;
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #00000020;
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .manager__cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 14px 24px;
  }

  /* --- cart mobile --- */
  .cart__drawer {
    max-width: 100%;
  }

  .cart__header {
    padding: 16px 16px;
  }

  .cart__items {
    padding: 10px 14px;
  }

  .cart__item {
    gap: 10px;
    padding: 12px 0;
  }

  .cart__item-img {
    width: 56px;
    height: 56px;
  }

  .cart__item-name {
    font-size: 0.85rem;
  }

  .cart__item-price {
    font-size: 0.72rem;
    gap: 4px;
  }

  .cart__item-price-old {
    font-size: 0.7rem;
  }

  .cart__item-savings {
    font-size: 0.65rem;
    padding: 1px 6px;
  }

  .cart__item-actions {
    gap: 8px;
  }

  .cart__item-qty-btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .cart__item-qty-val {
    width: 30px;
    font-size: 0.8rem;
  }

  .cart__item-remove {
    font-size: 0.85rem;
  }

  .cart__item-total {
    font-size: 0.85rem;
  }

  /* Футер — сжат, но без скролла */
  .cart__footer {
    padding: 10px 14px 14px;
  }

  .cart__summary {
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .cart__summary-row {
    font-size: 0.78rem;
    padding: 1px 0;
  }

  .cart__summary-row--total {
    font-size: 0.95rem;
    padding: 2px 0;
  }

  .cart__volume-hint {
    font-size: 0.62rem;
    padding: 4px 8px;
    margin-top: 3px;
  }

  .cart__input {
    padding: 9px 12px;
    margin-bottom: 7px;
    font-size: 0.85rem;
  }

  .cart__privacy {
    margin: 6px 0 10px;
  }

  .cart__privacy-label {
    font-size: 11px;
    gap: 6px;
  }

  .cart__privacy-checkbox {
    width: 16px;
    height: 16px;
  }

  .button--primary.cart__submit {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .cart__form-note {
    font-size: 9px;
    margin-top: 6px;
  }

  .button--primary.cart__submit {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* --- catalog mobile --- */
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__img    { height: 180px; }
  .product-card__body   { padding: 14px 14px 18px; }
  .product-card__title  { font-size: 0.95rem; }
  .product-card__desc   { font-size: 0.75rem; }

  .product-card__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .product-card__price {
    font-size: 1.1rem;
    text-align: center;
  }

  .product-card__price-from,
  .product-card__price-unit {
    font-size: 0.75rem;
  }

  .product-card__btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  /* --- product detail mobile --- */
  .product__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product__thumb {
    width: 60px;
    height: 60px;
  }

  .product__pricing-grid {
    flex-direction: column;
    gap: 8px;
  }

  .product__pricing-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 10px 16px;
    gap: 12px;
  }

  .product__pricing-card-qty {
    font-size: 0.8rem;
  }

  .product__pricing-card-price {
    font-size: 1.1rem;
  }

  .product__pricing-card-badge {
    margin-top: 0;
  }

  /* --- footer mobile --- */
  .footer__grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer__col {
    min-width: auto;
  }
}

/* =============================================================
   19. RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .button--primary {
    padding: 12px 24px;
    font-size: 1.2rem;
  }

  .menu__card {
    min-height: 200px;
    padding: 18px 16px;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline__time {
    left: -44px;
    font-size: 0.9rem;
    padding: 3px 8px;
  }

  .timeline__icon {
    width: 100px;
    height: 100px;
  }

  .manager__photo {
    aspect-ratio: 3 / 4;
    height: auto;
    max-height: 350px;
  }

  .cart__toggle {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
    bottom: 16px;
    right: 16px;
  }

  .button--primary {
    max-width: 100%;
  }

  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card__img    { height: 150px; }
  .product-card__body   { padding: 10px 10px 14px; }
  .product-card__title  { font-size: 0.85rem; }
  .product-card__desc   { font-size: 0.7rem; }

  .product-card__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .product-card__btn {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  /* --- cart compact --- */
  .cart__header {
    padding: 12px 12px;
  }

  .cart__title {
    font-size: 1rem;
  }

  .cart__items {
    padding: 8px 10px;
  }

  .cart__item {
    gap: 8px;
    padding: 10px 0;
  }

  .cart__item-img {
    width: 48px;
    height: 48px;
  }

  .cart__item-name {
    font-size: 0.78rem;
  }

  .cart__item-price {
    font-size: 0.68rem;
  }

  .cart__item-total {
    font-size: 0.78rem;
  }

  .cart__footer {
    padding: 8px 10px 12px;
  }

  .cart__summary-row {
    font-size: 0.72rem;
  }

  .cart__summary-row--total {
    font-size: 0.88rem;
  }

  .cart__volume-hint {
    font-size: 0.58rem;
  }

  .cart__input {
    padding: 7px 10px;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }

  .cart__privacy-label {
    font-size: 10px;
  }

  .button--primary.cart__submit {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .cart__form-note {
    font-size: 8px;
  }

  /* Скроллбар — толще */
  .cart__items {
    overflow-y: auto;
    scrollbar-width: auto;
    scrollbar-color: #9A8670 #F0EAE2;
  }

  .cart__items::-webkit-scrollbar {
    width: 10px;
  }

  .cart__items::-webkit-scrollbar-track {
    background: #EDE5DB;
    margin: 4px 0;
  }

  .cart__items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #AD9A82, #917D66);
    border-radius: 10px;
  }
}

/* =============================================================
   20. RESPONSIVE — LARGE SCREENS (≥1500px)
   ============================================================= */
@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }

  h2 {
    font-size: 3.5rem;
  }

  .header__nav-link,
  .header__tagline,
  .header__badge {
    font-size: 1.5rem;
  }

  .hero__title       { font-size: 4.5rem; }
  .hero__desc        { font-size: 2rem;  max-width: 600px; }
  .button--primary   { font-size: 1.5rem; margin-top: 10px; }

  .features__title,
  .process__title,
  .process__cert-text h4,
  .timeline__title,
  .timeline__final-text {
    font-size: 2rem;
  }

  .features__text,
  .menu__card-desc,
  .process__text,
  .timeline__text,
  .timeline__note,
  .manager__desc,
  .manager__feature-text,
  .manager__feature-num,
  .footer__title,
  .timeline__time {
    font-size: 1.5rem;
  }

  .menu__card-title,
  .manager__title {
    font-size: 3rem;
  }

  .process__cert-btn,
  .manager__status,
  .footer__text,
  .footer__link,
  .footer__legal {
    font-size: 1.2rem;
  }

  .features__icon {
    width: 250px;
    height: 250px;
  }

  .process__visual {
    max-height: 500px;
  }

  .process__cert-thumb {
    width: 70px;
    height: 100px;
  }

  .timeline {
    max-width: 1000px;
  }

  .timeline__icon {
    width: 220px;
    height: 220px;
  }
}

/* =============================================================
   21. MISC FIXES
   ============================================================= */
@media (max-width: 1200px) {
  .process__visual {
    aspect-ratio: 4 / 3;
    max-height: 450px;
    width: 100%;
  }
}