/* Blissplants — Ugaoo-inspired layout layer */
:root {
  --green-dark: #0b3d2e;
  --green-deep: #004737;
  --green-mid: #0f5c45;
  --green-leaf: #1a7a55;
  --green-bright: #25a36a;
  --cream: #fcf8f3;
  --cream-warm: #f7f1e8;
  --yellow: #ffd400;
  --yellow-soft: #ffe566;
  --text: #1a2e22;
  --text-muted: #5f6f66;
  --border: #e4ddd3;
  --radius-lg: 20px;
  --radius: 14px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --container: 1240px;
}

body {
  background: var(--cream);
  padding-bottom: 72px;
}

@media (min-width: 901px) {
  body { padding-bottom: 0; }
}

/* ===== ANNOUNCEMENT MARQUEE ===== */
.announce {
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 500;
}
.announce-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 0.55rem 0;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
.header-row .logo img { width: 48px; height: 48px; }
.header-row .logo-text strong { font-size: 1.25rem; }
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-deep);
  display: grid;
  place-items: center;
  padding: 0.35rem;
  position: relative;
}
.icon-btn svg { width: 24px; height: 24px; }
.header-icons { display: flex; align-items: center; gap: 0.65rem; }
.search-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0ece6;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: none;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.search-pill input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  color: var(--text);
}
.search-pill svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }

.desk-nav {
  border-top: 1px solid var(--border);
  background: #fff;
}
.desk-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.desk-nav-list > li { position: relative; }
.desk-nav-list > li > a,
.desk-nav-list > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.9rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.desk-nav-list > li:hover > a,
.desk-nav-list > li:hover > button,
.desk-nav-list > li.open > button,
.desk-nav-list > li > a.active {
  border-bottom-color: var(--green-deep);
  color: var(--green-deep);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  background: #f7f5f1;
  border: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  display: none;
  z-index: 130;
}
.desk-nav-list > li:hover > .dropdown,
.desk-nav-list > li.open > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
  color: #222;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown a:hover {
  background: #fff;
  color: var(--green-leaf);
}

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 55, 45, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 200;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 360px);
  background: var(--cream);
  z-index: 210;
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.drawer-head .login-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--green-deep);
}
.drawer-nav { padding: 0.25rem 0 1rem; }
.drawer-nav > li { border-bottom: 1px solid #ebe5db; }
.drawer-nav > li > a,
.drawer-nav > li > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  cursor: pointer;
  text-align: left;
}
.drawer-sub {
  display: none;
  background: #fff;
  padding: 0.25rem 0 0.65rem;
}
.drawer-nav > li.open > .drawer-sub { display: block; }
.drawer-sub a {
  display: block;
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
  color: #333;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.drawer-foot {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 0.75rem 0 1.25rem;
  background: #fff;
}
.drawer-foot a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.drawer-foot svg { width: 18px; height: 18px; flex-shrink: 0; }

.mobile-only { display: none; }
.desktop-only { display: block; }
@media (max-width: 900px) {
  .mobile-only { display: initial; }
  .desktop-only { display: none !important; }
  .header-row {
    grid-template-columns: auto 1fr auto;
  }
  .header-row .search-pill { display: none; }
  .mobile-search {
    display: block;
    padding: 0 1rem 0.85rem;
    background: #fff;
  }
  .mobile-search .search-pill { max-width: none; }
}

/* ===== HOME HERO ===== */
.home-hero {
  background: var(--cream);
  padding: 1.25rem 0 2rem;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f0e4;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.rating-pill .stars { letter-spacing: -1px; }
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}
.hero-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  background: var(--green-deep) center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,40,30,0.75));
}
.hero-main > * { position: relative; z-index: 1; }
.hero-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.hero-main p { opacity: 0.9; margin-bottom: 1rem; max-width: 36ch; }
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-yellow:hover { filter: brightness(0.95); }
.hero-side {
  display: grid;
  gap: 1rem;
}
.promo-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.promo-card:hover { transform: translateY(-3px); }
.promo-card.green { background: var(--green-deep); color: #fff; }
.promo-card.sand { background: #f3e6c8; color: var(--green-deep); }
.promo-card .tag { font-size: 0.8rem; opacity: 0.85; margin-bottom: 0.35rem; }
.promo-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.promo-card .promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.promo-card.green .promo-cta {
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  width: fit-content;
}

/* Value bar */
.value-bar {
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item {
  text-align: center;
  padding: 1.15rem 0.75rem;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.value-item:last-child { border-right: none; }
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.55rem;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-deep);
}
.value-icon svg { width: 24px; height: 24px; }
.value-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Categories band */
.cat-band {
  background: var(--green-deep);
  color: #fff;
  padding: 2.5rem 0;
}
.cat-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.cat-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.cat-chip {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.cat-chip .circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 0.55rem;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cat-chip .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-chip span { font-size: 0.82rem; font-weight: 500; }

/* Section commons */
.home-section { padding: 2.5rem 0; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.section-head-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--green-deep);
}
.view-all {
  color: var(--green-leaf);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
}

.product-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
}
.ug-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.ug-card-img {
  position: relative;
  aspect-ratio: 1;
  background: #eee;
}
.ug-card-img img { width: 100%; height: 100%; object-fit: cover; }
.badge-best {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--yellow);
  color: #111;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.rating-chip {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
}
.ug-card-body { padding: 0.85rem 0.9rem 1rem; flex: 1; display: flex; flex-direction: column; }
.ug-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.ug-card-body .sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.ug-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.ug-price { font-weight: 700; }
.ug-compare {
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-left: 0.3rem;
}
.bag-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
}
.bag-btn svg { width: 16px; height: 16px; }
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.rail-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0cbc3;
}
.rail-dots span.active { background: var(--green-deep); }

/* Farm band */
.farm-band {
  background: var(--green-deep);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.farm-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.65rem;
}
.farm-band > .container > p {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  opacity: 0.9;
}
.farm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}
.farm-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.farm-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.farm-card div { padding: 0.9rem 1rem 1.1rem; }
.farm-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.farm-card p { font-size: 0.85rem; opacity: 0.85; }

/* Compare table */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-table thead th {
  background: #f3f0ea;
  font-family: var(--font-display);
  font-size: 1rem;
}
.compare-table th.hl,
.compare-table td.hl {
  background: var(--green-deep);
  color: #fff;
}
.compare-table .yes { color: #d4a017; font-weight: 700; }
.compare-table .no { color: #c0392b; }

/* Mobile bottom nav */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  z-index: 150;
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--green-deep);
  padding: 0.35rem;
  text-decoration: none;
}
.bottom-nav svg { width: 22px; height: 22px; }
.bottom-nav a.active { color: var(--green-leaf); }

.wa-fab { bottom: 5.5rem; }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .value-bar { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: none; }
  .farm-grid { grid-template-columns: 1fr 1fr; }
  .bottom-nav { display: grid; }
  .home-hero h1 { max-width: none; }
}
@media (max-width: 560px) {
  .farm-grid { grid-template-columns: 1fr; }
  .ug-card { flex-basis: 180px; }
}

.icon-btn .cart-badge,
.icon-btn .wish-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--green-leaf);
  color: #fff;
  font-size: 0.6rem;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.site-header .logo { display: flex; align-items: center; gap: 0.55rem; }
@media (max-width: 900px) {
  .site-header .logo { justify-content: center; }
  .site-header .logo img { width: 42px; height: 42px; }
}

/* ===== EXTRA HOME SECTIONS ===== */
.serif-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 48ch;
}

.room-band { background: #f8efe8; }
.room-slider { margin-bottom: 1.25rem; }
.room-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}
.room-slide {
  flex: 0 0 min(88%, 520px);
  scroll-snap-align: start;
  aspect-ratio: 16/10;
  border-radius: 22px;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.room-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,40,30,0.55));
}
.room-caption {
  position: absolute;
  inset: auto 0 1rem 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  text-decoration: none;
}

.seeds-banner {
  border-radius: 22px;
  min-height: 220px;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.seeds-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,50,35,0.75), rgba(20,50,35,0.25));
}
.seeds-copy {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  color: #fff;
}
.seeds-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.seeds-copy h2 em { font-style: italic; }
.seeds-copy p { margin-bottom: 1rem; opacity: 0.95; }

.city-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.85rem;
}
.city-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
}
.city-pill.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.store-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.store-card {
  flex: 0 0 min(78%, 320px);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.store-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.store-bar {
  background: var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  font-weight: 700;
  color: #111;
}
.store-pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.store-pin svg { width: 16px; height: 16px; }

.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}
.stay-card {
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.stay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}
.stay-logo {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  font-size: 0.7rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}
.stay-card p { position: relative; z-index: 1; font-weight: 600; font-size: 0.95rem; }

.size-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.size-visual img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.size-marker {
  position: absolute;
  left: 58%;
  bottom: 28%;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.size-marker::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 28px;
  background: #fff;
  transform: translateX(-50%);
}
.size-tabs {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.size-tab {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--green-deep);
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  cursor: pointer;
}
.size-tab.active {
  background: #d9efdf;
}
.size-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.gifting-band { background: #f7ebe3; }
.gifting-media {
  min-height: 280px;
  background: center/cover no-repeat;
  position: relative;
  color: #fff;
}
.gifting-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,50,35,0.35), rgba(20,50,35,0.72));
}
.gifting-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem;
}
.gifting-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}
.gifting-copy h2 em { font-style: italic; }
.gifting-actions { padding: 1.25rem 0 2rem; }
.trust-brands {
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.85rem;
}
.gifting-btns { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.review-rail, .blog-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}
.review-card {
  flex: 0 0 min(82%, 320px);
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 1.25rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.review-card.pink { background: #f0e4ef; }
.review-card.sage { background: #e4ece6; }
.review-card.sand { background: #f3e8d4; }
.review-card .stars { color: var(--green-deep); letter-spacing: 1px; margin-bottom: 0.65rem; }
.review-card p {
  font-size: 0.98rem;
  color: var(--green-deep);
  line-height: 1.45;
  flex: 1;
}
.reviewer { margin-top: 1rem; }
.reviewer strong { display: block; color: var(--green-deep); }
.reviewer span { font-size: 0.82rem; color: var(--text-muted); }

.blog-card {
  flex: 0 0 min(82%, 300px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  padding: 0.85rem 0.95rem 0.35rem;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 0.95rem 1rem;
}

.help-cta {
  background: #2f9e5c;
  border-radius: 22px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  color: #fff;
}
.help-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.help-cta .btn {
  background: var(--green-deep);
}

/* Accordion footer */
.ug-footer {
  background: var(--green-deep);
  color: #d7e8dc;
  padding: 2.5rem 0 5.5rem;
}
.ug-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.15rem;
}
.ug-footer-logo img { width: 42px; height: 42px; }
.ug-footer-logo strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.ug-newsletter {
  display: flex;
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.ug-newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.85rem 1.1rem;
  outline: none;
  min-width: 0;
}
.ug-newsletter input::placeholder { color: #9bb9a8; }
.ug-newsletter button {
  border: none;
  background: transparent;
  color: #fff;
  padding: 0 1.1rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.ug-social { display: flex; gap: 0.55rem; margin-bottom: 1.5rem; }
.ug-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}
.ug-acc details {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.ug-acc summary {
  list-style: none;
  cursor: pointer;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
}
.ug-acc summary::-webkit-details-marker { display: none; }
.ug-acc summary::after { content: '▾'; color: #fff; }
.ug-acc details[open] summary::after { content: '▴'; }
.ug-acc details > div {
  display: grid;
  gap: 0.45rem;
  padding: 0 0 1rem;
}
.ug-acc a { color: #cfe0d4; text-decoration: none; font-size: 0.92rem; }
.ug-legal {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #a8c4b0;
}
.ug-legal a { color: inherit; }
.ug-tagline {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--yellow-soft);
}
.ug-copy {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #8eaa93;
}

@media (max-width: 700px) {
  .stay-grid { grid-template-columns: 1fr 1fr; }
}
