/* ===== VARIABLES ===== */
:root {
  --red: #c41230;
  --red-dark: #a00d25;
  --red-light: #fdf0f2;
  --black: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #f9f7f5;
  --gray-mid: #ece9e6;
  --border: #ede9e6;
  --white: #ffffff;
  --font-main: 'Raleway', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --shadow: 0 1px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
  --radius: 2px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--black); background: #fff; font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 0; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border: 1.5px solid transparent;
  transition: all var(--transition); white-space: nowrap; line-height: 1; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0; transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline-dark:hover { background: var(--black); color: #fff; }
.btn--cart { background: #fff; color: var(--black); border: 1px solid var(--border); width: 100%; padding: 11px; justify-content: center; letter-spacing: 0.06em; font-size: 10px; }
.btn--cart:hover { border-color: var(--red); color: var(--red); }
.btn--lg { padding: 16px 40px; font-size: 12px; letter-spacing: 0.12em; }
.btn--sm { padding: 8px 16px; font-size: 10px; }
.btn--full { width: 100%; }
.btn--disabled { background: #e8e5e2; color: #aaa; border-color: #e8e5e2; cursor: not-allowed; width: 100%; padding: 11px; }
.btn--hero { background: #fff; color: var(--black); border: 1.5px solid #fff; font-weight: 700; letter-spacing: 0.1em; }
.btn--hero:hover { background: transparent; color: #fff; }
.btn--play { gap: 10px; }

/* ===== HEADER ===== */
.header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* TOP ROW: socials | logo | actions */
.header__top { border-bottom: 1px solid var(--border); padding: 16px 0; }
.header__top-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }

/* Social icons (left) */
.header__socials { display: flex; gap: 16px; align-items: center; }
.social-icon { color: var(--black); opacity: 0.45; display: flex; align-items: center; transition: all var(--transition); }
.social-icon:hover { opacity: 1; color: var(--red); transform: translateY(-1px); }

/* LOGO (center) */
.logo-wrap { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.logo-svg { display: block; height: 56px; width: auto; }
.logo-svg--footer {
  height: 48px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

/* Action icons (right) */
.header__actions { display: flex; gap: 20px; align-items: center; justify-content: flex-end; }
.action-icon { background: none; border: none; cursor: pointer; color: var(--black); opacity: 0.55; display: flex; align-items: center; padding: 4px; transition: all var(--transition); position: relative; }
.action-icon:hover { opacity: 1; color: var(--red); transform: translateY(-1px); }

/* NAVIGATION ROW */
.header__nav { padding: 0; }
.header__nav-inner { display: flex; align-items: center; justify-content: center; }
.nav { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center; }
.nav__link {
  padding: 14px 14px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--black); transition: color var(--transition);
  white-space: nowrap; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 1.5px; background: var(--red); transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--cta { color: var(--red) !important; font-weight: 700; }
.nav__link--cta::after { background: var(--red-dark); }
.nav__link--cta:hover { color: var(--red-dark) !important; }

/* BURGER (mobile) */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--black); border-radius: 2px; transition: all var(--transition); }
.burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CART BADGE ===== */
.cart-badge { position: absolute; top: -5px; right: -7px; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; width: 15px; height: 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ===== CART DRAWER ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,26,26,0.45); z-index: 200; opacity: 0; pointer-events: none; transition: opacity var(--transition); backdrop-filter: blur(4px); }
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; right: 0; top: 0; height: 100vh; width: 400px; max-width: 100vw; background: #fff; z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -4px 0 40px rgba(0,0,0,0.12); }
.cart-drawer--open { transform: translateX(0); }
.cart-drawer__header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__header h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-close { background: none; border: none; cursor: pointer; color: var(--gray); padding: 6px; border-radius: 0; transition: all var(--transition); }
.cart-close:hover { color: var(--black); transform: rotate(90deg); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-drawer__footer { padding: 20px 28px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 14px; align-items: center; }
.cart-empty { text-align: center; color: var(--gray); padding: 60px 0; font-size: 13px; letter-spacing: 0.04em; }
.cart-item { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item__img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; background: var(--gray-light); }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.02em; }
.cart-item__price { font-size: 13px; color: var(--red); font-weight: 700; }
.cart-item__controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-item__qty-btn { background: var(--gray-light); border: none; width: 24px; height: 24px; border-radius: 0; cursor: pointer; font-size: 15px; line-height: 1; transition: background var(--transition); }
.cart-item__qty-btn:hover { background: var(--gray-mid); }
.cart-item__qty { font-size: 13px; min-width: 22px; text-align: center; font-weight: 600; }
.cart-item__remove { margin-left: auto; background: none; border: none; cursor: pointer; color: #ccc; padding: 2px; transition: color var(--transition); }
.cart-item__remove:hover { color: var(--red); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.05) 100%); }
.hero__content { position: relative; z-index: 1; padding: 100px 32px; }
.hero__text { max-width: 560px; }
.hero__eyebrow { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 20px; letter-spacing: 0.04em; }
.hero__title { font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 68px); font-weight: 300; line-height: 1.08; margin-bottom: 40px; color: #fff; }

/* ===== SECTION TITLES ===== */
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 400; text-align: center; margin-bottom: 10px; letter-spacing: 0.01em; }
.section-subtitle { text-align: center; color: var(--gray); margin-bottom: 56px; font-size: 14px; letter-spacing: 0.03em; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== EXPERTS / CATEGORIES ===== */
.experts { padding: 40px 0; border-bottom: 1px solid var(--border); }
.experts__scroll { display: flex; gap: 28px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.experts__scroll::-webkit-scrollbar { display: none; }
.expert-card { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; text-align: center; cursor: pointer; }
.expert-card:hover .expert-card__name { color: var(--red); }
.expert-card__avatar {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border); transition: all var(--transition);
}
.expert-card:hover .expert-card__avatar { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-light); }
.expert-card__avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.expert-card:hover .expert-card__avatar img { transform: scale(1.06); }
.expert-card__avatar--cat { background: var(--red-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; color: var(--red); }
.expert-card__name { font-size: 12px; font-weight: 600; max-width: 110px; line-height: 1.3; letter-spacing: 0.03em; transition: color var(--transition); }
.expert-card__role { font-size: 11px; color: var(--gray); max-width: 110px; }

/* ===== PRODUCTS GRID ===== */
.bestsellers { padding: 96px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.products-grid--catalog { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.product-card {
  position: relative;
  border: none; overflow: hidden; background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-card);
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.product-card__image-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--gray-light); }
.product-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.product-card:hover .product-card__image { transform: scale(1.06); }
.product-card__no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-card__wish {
  position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.92);
  border: none; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all var(--transition); color: #bbb;
  backdrop-filter: blur(4px);
}
.product-card__wish:hover { color: var(--red); transform: scale(1.12); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 9px; border-radius: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
}
.product-card__badge--out { background: rgba(26,26,26,0.75); color: #fff; backdrop-filter: blur(4px); }
.product-card__body { padding: 18px 20px 20px; }
.product-card__name { font-size: 13px; font-weight: 500; line-height: 1.45; margin-bottom: 10px; letter-spacing: 0.01em; }
.product-card__name a { transition: color var(--transition); }
.product-card__name a::after { content: ''; position: absolute; inset: 0; z-index: 0; }
.product-card__name a:hover { color: var(--red); }
.product-card__wish,
.product-card__btn { position: relative; z-index: 1; }
.product-card__prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-card__price { font-size: 17px; font-weight: 700; color: var(--black); }
.product-card__old-price { font-size: 13px; color: #aaa; text-decoration: line-through; }

/* ===== BANNER VIDEO ===== */
.banner-video { background: var(--black); color: #fff; padding: 72px 0; }
.banner-video__inner { display: flex; align-items: center; gap: 48px; border-left: 3px solid var(--red); padding-left: 40px; }
.banner-video__label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; font-weight: 700; }
.banner-video__inner h2 { font-family: var(--font-display); font-size: 30px; font-weight: 300; margin-bottom: 28px; line-height: 1.35; }

/* ===== ROUTINE ===== */
.routine { padding: 96px 0; background: var(--gray-light); }
.routine-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.routine-step { display: flex; gap: 24px; align-items: flex-start; }
.routine-step__num { font-family: var(--font-display); font-size: 52px; color: var(--red); font-weight: 300; line-height: 1; flex-shrink: 0; min-width: 52px; opacity: 0.8; }
.routine-step__body h3 { font-family: var(--font-display); font-style: italic; font-size: 21px; margin-bottom: 10px; }
.routine-step__body p { font-size: 13px; color: var(--gray); line-height: 1.8; }

/* ===== CATALOG ===== */
.page-header { background: var(--gray-light); padding: 40px 0; border-bottom: 1px solid var(--border); }
.page-title { font-family: var(--font-display); font-size: 38px; font-weight: 400; margin-top: 10px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--gray); letter-spacing: 0.03em; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--border); }

.catalog-section { padding: 48px 0 96px; }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }

/* FILTERS */
.filters { position: sticky; top: 90px; background: #fff; border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow); }
.filters__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.filters__header h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.filters__reset { font-size: 11px; color: var(--gray); border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color var(--transition); }
.filters__reset:hover { color: var(--red); }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 22px; }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; }
.filter-group h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; color: var(--black); }
.filter-option { display: flex; align-items: center; gap: 9px; font-size: 13px; cursor: pointer; padding: 5px 0; transition: color var(--transition); }
.filter-option:hover { color: var(--red); }
.filter-option input[type="radio"],
.filter-option input[type="checkbox"] { accent-color: var(--red); width: 15px; height: 15px; flex-shrink: 0; }
.price-range { display: flex; gap: 8px; align-items: center; }
.filter-input { border: 1px solid var(--border); padding: 8px 10px; font-size: 13px; width: 100%; transition: border-color var(--transition); }
.filter-input:focus { outline: none; border-color: var(--red); }
.filter-search { border: 1px solid var(--border); padding: 9px 12px; font-size: 13px; width: 100%; transition: border-color var(--transition); }
.filter-search:focus { outline: none; border-color: var(--red); }

/* CATALOG MAIN */
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.catalog-count { font-size: 12px; color: var(--gray); letter-spacing: 0.04em; }
.catalog-count strong { color: var(--black); font-weight: 700; }
.empty-state { text-align: center; padding: 96px 20px; }
.empty-state svg { margin: 0 auto 20px; opacity: 0.3; }
.empty-state h3 { font-size: 20px; margin-bottom: 10px; font-family: var(--font-display); }
.empty-state p { color: var(--gray); margin-bottom: 28px; font-size: 14px; }

/* ===== CHECKOUT ===== */
.checkout-section { padding: 56px 0 96px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.checkout-form-wrap h2, .order-summary h2 { font-size: 11px; font-weight: 700; margin-bottom: 28px; letter-spacing: 0.12em; text-transform: uppercase; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group--wide { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); }
.required { color: var(--red); }
.form-input { border: 1px solid var(--border); padding: 11px 14px; font-size: 14px; transition: border-color var(--transition); background: #fff; }
.form-input:focus { outline: none; border-color: var(--red); }
.form-textarea { border: 1px solid var(--border); padding: 11px 14px; font-size: 14px; resize: vertical; transition: border-color var(--transition); }
.form-textarea:focus { outline: none; border-color: var(--red); }
.checkout-note { font-size: 12px; color: var(--gray); text-align: center; line-height: 1.7; }
.order-summary { background: var(--gray-light); padding: 28px; border: 1px solid var(--border); }
.summary-items { margin-bottom: 20px; }
.summary-item { display: flex; gap: 8px; font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-item:last-child { border-bottom: none; }
.summary-item__name { flex: 1; }
.summary-item__qty { color: var(--gray); }
.summary-item__price { font-weight: 700; }
.summary-empty { color: var(--gray); font-size: 13px; padding: 16px 0; }
.summary-total { display: flex; justify-content: space-between; font-size: 14px; padding-top: 16px; border-top: 1px solid var(--gray-mid); align-items: center; }
.summary-total strong { font-size: 20px; color: var(--red); font-family: var(--font-display); }

/* ===== SUCCESS ===== */
.success-section { padding: 96px 0; }
.success-content { max-width: 520px; margin: 0 auto; text-align: center; }
.success-icon { margin-bottom: 28px; }
.success-title { font-family: var(--font-display); font-size: 40px; margin-bottom: 20px; font-weight: 400; }
.success-msg { font-size: 16px; margin-bottom: 12px; line-height: 1.7; color: var(--gray); }
.success-actions { display: flex; gap: 16px; justify-content: center; margin-top: 36px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 56px 0 96px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.product-gallery__main { aspect-ratio: 1; background: var(--gray-light); overflow: hidden; }
.product-gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.product-gallery__main:hover .product-gallery__img { transform: scale(1.04); }
.product-gallery__no-image { display: flex; align-items: center; justify-content: center; }
.product-info__name { font-family: var(--font-display); font-size: 32px; font-weight: 400; line-height: 1.3; margin-bottom: 24px; }
.product-info__prices { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.product-info__price { font-size: 30px; font-weight: 700; }
.product-info__old-price { font-size: 18px; color: #aaa; text-decoration: line-through; }
.product-info__stock {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px; padding: 7px 14px; display: inline-block;
}
.in-stock { background: #edf7ee; color: #2e7d32; }
.out-stock { background: var(--red-light); color: var(--red); }
.product-info__desc { font-size: 14px; color: var(--gray); line-height: 1.85; margin-bottom: 36px; }
.product-info__actions { display: flex; gap: 14px; align-items: center; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); overflow: hidden; }
.qty-btn { background: var(--gray-light); border: none; width: 38px; height: 46px; font-size: 18px; cursor: pointer; transition: background var(--transition); }
.qty-btn:hover { background: var(--gray-mid); }
.qty-input { width: 50px; height: 46px; border: none; text-align: center; font-size: 15px; font-weight: 700; }
.related { padding: 72px 0; background: var(--gray-light); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer__col .logo { margin-bottom: 16px; }
.footer__desc { font-size: 13px; opacity: 0.5; line-height: 1.8; }
.footer__col h4 { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; color: rgba(255,255,255,0.4); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 13px; opacity: 0.6; transition: opacity var(--transition); }
.footer__col ul li a:hover { opacity: 1; }
.footer__social { display: flex; gap: 8px; margin-bottom: 20px; }
.social-link { background: rgba(255,255,255,0.08); padding: 8px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; transition: all var(--transition); }
.social-link:hover { background: var(--red); }
.footer__picker { font-size: 13px; opacity: 0.6; line-height: 1.6; }
.footer__picker a { margin-top: 10px; border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); }
.footer__picker a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 56px; padding: 22px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 11px; opacity: 0.35; letter-spacing: 0.04em; }
.footer__bottom nav { display: flex; gap: 24px; }
.footer__bottom nav a { font-size: 11px; opacity: 0.35; transition: opacity var(--transition); letter-spacing: 0.04em; }
.footer__bottom nav a:hover { opacity: 0.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 220px 1fr; gap: 28px; }
  .checkout-layout { grid-template-columns: 1fr 340px; gap: 36px; }
  .routine-steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .burger { display: flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border); flex-direction: column;
    padding: 12px 0; gap: 0; box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }
  .nav--open { display: flex; }
  .nav__link { padding: 13px 20px; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .header { position: relative; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; margin-bottom: 28px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
  .hero { min-height: 520px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .product-info__actions { flex-wrap: wrap; }
  .bestsellers { padding: 64px 0; }
  .routine { padding: 64px 0; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero__content { flex-direction: column; padding: 56px 20px; }
  .routine-step { flex-direction: column; gap: 10px; }
  .hero { min-height: 460px; }
}
