/* ═══════════════════════════════════════
   ALTHEYS — Custom Rebuild
   Aesthetic: Organic Luxury / Botanical
   Palette: Deep forest green + warm cream + rose accent
═══════════════════════════════════════ */

:root {
  --green-deep:    #1f3a2a;
  --green-mid:     #2e5940;
  --green-light:   #4a8a60;
  --green-pale:    #c8ddd0;
  --cream:         #f8f4ed;
  --cream-dark:    #ede6d8;
  --rose:          #c06070;
  --rose-light:    #e8a0ae;
  --gold:          #b8956a;
  --text-dark:     #1a2a1e;
  --text-mid:      #4a5c50;
  --text-light:    #7a8f80;
  --white:         #ffffff;
  --shadow-sm:     0 2px 12px rgba(31,58,42,.08);
  --shadow-md:     0 8px 40px rgba(31,58,42,.12);
  --shadow-lg:     0 20px 80px rgba(31,58,42,.16);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     28px;
  --transition:    all .35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   BANNER TICKER
══════════════════════════════════════ */
.banner-ticker {
  background: var(--green-deep);
  color: var(--cream);
  height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ticker-item {
  padding: 0 48px;
  opacity: .9;
}
.ticker-item::before {
  content: '✦';
  margin-right: 48px;
  color: var(--rose-light);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 16px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.phone-link:hover { color: var(--green-deep); }
.phone-icon { width: 22px; height: 22px; object-fit: contain; }
.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition);
}
.socials a:hover { color: var(--green-deep); background: var(--green-pale); }
.socials svg { width: 15px; height: 15px; }

.header-center { text-align: center; }
.logo-link { display: inline-block; }
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.logo-img:hover { transform: scale(1.03); }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}
.icon-btn:hover { color: var(--green-deep); background: var(--green-pale); }
.icon-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--rose);
  color: white;
  font-size: .6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop Nav */
.main-nav {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 22px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-item:hover > .nav-link { color: var(--rose-light); }
.nav-arrow {
  font-size: .65rem;
  transition: var(--transition);
  opacity: .6;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--rose-light);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-item:hover::after { width: 60%; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 300;
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item a {
  display: block;
  padding: 11px 22px;
  font-size: .84rem;
  color: var(--text-dark);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-item a:hover {
  color: var(--green-deep);
  background: var(--cream);
  border-left-color: var(--green-light);
}
.dropdown-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--rose);
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Search bar */
.search-bar {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--cream-dark);
  border-top: 1px solid var(--green-pale);
}
.search-bar.open { display: flex; }
.search-input {
  flex: 1;
  border: 1.5px solid var(--green-pale);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  background: white;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.search-input:focus { border-color: var(--green-light); }
.search-close {
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 4px 8px;
}
.search-close:hover { color: var(--rose); }

/* Mobile nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
}
.mobile-overlay.open { display: block; }
.mobile-nav {
  position: fixed;
  top: 0; left: -320px;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
  transition: left .35s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { left: 0; }
.mobile-nav-close {
  display: block;
  margin-bottom: 24px;
  color: var(--text-mid);
  font-size: .85rem;
  font-weight: 500;
  text-align: right;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-item { border-bottom: 1px solid var(--cream-dark); }
.mobile-nav-link {
  display: block;
  padding: 13px 4px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.mobile-subnav { padding: 0 0 8px 16px; display: none; }
.mobile-subnav.open { display: block; }
.mobile-subnav a {
  display: block;
  padding: 8px 0;
  font-size: .82rem;
  color: var(--text-mid);
  border-left: 2px solid var(--green-pale);
  padding-left: 10px;
}

/* ══════════════════════════════════════
   HERO ANNOUNCEMENT
══════════════════════════════════════ */
.hero-announcement {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--cream) 60%, var(--green-pale) 100%);
  position: relative;
  overflow: hidden;
}
.hero-announcement::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(72,138,96,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(74,138,96,.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.hero-body {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
}
.hero-image {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}
.hero-badge img { width: 36px; height: 36px; object-fit: contain; }

/* ══════════════════════════════════════
   BADGES
══════════════════════════════════════ */
.badges-section {
  padding: 60px 0 40px;
  background: var(--white);
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
  cursor: default;
}
.badge-item:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.badge-item img {
  width: 72px; height: 72px;
  object-fit: contain;
}
.badge-caption {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.title-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--rose));
  margin: 0 auto;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products-section {
  padding: 80px 0;
  background: var(--cream);
}
.products-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  order: -1;
  margin-bottom: 48px;
}
/* reorder: filter above grid */
.products-section .container {
  display: flex;
  flex-direction: column;
}
.products-section .section-header { order: 0; }
.products-filter { order: 1; margin-bottom: 40px; }
.products-grid { order: 2; }

.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.product-card[data-category].hidden { display: none; }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-status-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rose);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-body {
  padding: 22px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 5px;
  line-height: 1.3;
}
.product-subtitle {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-light);
  transition: var(--transition);
}
.product-cta:hover { color: var(--green-deep); gap: 10px; }

/* ══════════════════════════════════════
   GUARANTEES
══════════════════════════════════════ */
.guarantees-section {
  padding: 60px 0;
  background: var(--green-deep);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  transition: var(--transition);
}
.guarantee-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.guarantee-img {
  width: 48px; height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(.8);
}
.guarantee-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.35;
}
.guarantee-desc {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section {
  padding: 80px 0 60px;
  background: var(--cream-dark);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--green-pale);
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: .04em;
}
.trustpilot-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.trustpilot-badge img { height: 36px; object-fit: contain; }
.trustpilot-badge span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ══════════════════════════════════════
   PRESS
══════════════════════════════════════ */
.press-section {
  padding: 70px 0;
  background: var(--white);
  overflow: hidden;
}
.press-track-wrapper {
  overflow: hidden;
  position: relative;
}
.press-track-wrapper::before,
.press-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.press-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.press-track-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.press-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: pressScroll 28s linear infinite;
  width: max-content;
}
.press-track:hover { animation-play-state: paused; }
@keyframes pressScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.press-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.press-item a:hover { transform: scale(1.05); }
.press-img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
  transition: var(--transition);
}
.press-item a:hover .press-img { filter: grayscale(0); opacity: 1; }
.press-caption {
  font-size: .68rem;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-text p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  background: rgba(255,255,255,.15);
  color: white;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input:focus { background: rgba(255,255,255,.22); }
.newsletter-btn {
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--rose);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,96,112,.4);
}
.newsletter-success {
  text-align: center;
  color: var(--cream);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  display: none;
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-section {
  padding: 80px 0;
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.blog-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body {
  padding: 22px;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-excerpt {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-light);
  transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; color: var(--green-deep); }

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.blog-prev,
.blog-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.blog-prev:hover,
.blog-next:hover {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}
.blog-page {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .06em;
  min-width: 50px;
  text-align: center;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 50px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(.9);
}
.footer-brand p {
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-address img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.5);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-address strong { color: rgba(255,255,255,.8); }
.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}
.footer-links li a:hover {
  color: var(--rose-light);
  border-bottom-color: rgba(232,160,174,.3);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-socials a:hover {
  color: var(--white);
  border-color: var(--rose-light);
  background: rgba(232,160,174,.15);
}
.footer-socials svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════
   BACK TO TOP + CART SIDEBAR + OVERLAY
══════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-deep);
  color: white;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 90;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--green-mid); transform: translateY(-3px); }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 180;
  backdrop-filter: blur(2px);
}
.overlay.open { display: block; }
.cart-sidebar {
  position: fixed;
  top: 0; right: -380px;
  width: 360px; height: 100vh;
  background: white;
  z-index: 190;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right .35s ease;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
}
.cart-header button {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.cart-header button:hover { background: var(--cream); color: var(--rose); }
.cart-body { flex: 1; display: flex; align-items: center; justify-content: center; }
.cart-empty {
  text-align: center;
  color: var(--text-light);
}
.cart-empty svg { width: 60px; height: 60px; margin: 0 auto 16px; opacity: .3; }
.cart-empty p { font-size: .88rem; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  animation: fadeUp .65s ease forwards;
}
.animate-up:nth-child(1) { animation-delay: .05s; }
.animate-up:nth-child(2) { animation-delay: .15s; }
.animate-up:nth-child(3) { animation-delay: .25s; }
.animate-up:nth-child(4) { animation-delay: .35s; }
.animate-up:nth-child(5) { animation-delay: .45s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1080px) {
  .badges-grid   { grid-template-columns: repeat(2, 1fr); }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-left .socials,
  .header-left .phone-link { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 1.9rem; }
  .hero-badge { bottom: -14px; left: 14px; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 1.75rem; }
  .back-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 16px; }
  .logo-img { height: 44px; }
  .badges-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .hero-announcement { padding: 48px 0 40px; }
  .container { padding: 0 16px; }
  .newsletter-title { font-size: 1.5rem; }
}
