
:root {
  --b: #1A1510;
  --b2: #231A10;
  --b3: #2C1E0E;
  --b4: #3A2812;
  --b5: #4A3520;
  --a: #E07A2F;
  --a2: #C05A18;
  --a3: #F5A05A;
  --a4: rgba(224, 122, 47, 0.15);
  --t: #F5E6D0;
  --t2: #C4A882;
  --t3: #8A7060;
  --t4: #5A4A38;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--b);
  color: var(--t);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
}

/* ── NAV (glassmorphism) ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(26, 21, 16, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 122, 47, 0.12);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--a);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--t3);
  text-decoration: none;
  font-weight: 400;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--t);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 7px 14px;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--t2);
  font-size: 12px;
  font-family: 'Sora', sans-serif;
  width: 120px;
}

.nav-search input::placeholder {
  color: var(--t4);
}

.nav-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.nav-icon:hover {
  background: rgba(224, 122, 47, 0.2);
}

.nav-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--t3);
  fill: none;
  stroke-width: 1.5;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--t2);
  border-radius: 1px;
  display: block;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #2B1A08 0%, #1A1510 40%, #231008 100%);
}

.hero-bg-glow {
  position: absolute;
  pointer-events: none;
}

.hero-bg-glow-1 {
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 35, 5, 0.6) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.hero-bg-glow-2 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 25, 5, 0.5) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

.hero-arc-line {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 122, 47, 0.15), transparent);
  pointer-events: none;
}

.hero-arc-line-2 {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 122, 47, 0.08), transparent);
  pointer-events: none;
}

/* floating gift boxes */
.gift-box {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.gift-box-left {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  animation: floatLeft 6s ease-in-out infinite;
}

.gift-box-right {
  right: -20px;
  top: 45%;
  transform: translateY(-50%);
  animation: floatRight 7s ease-in-out infinite;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(-50%) rotate(-8deg);
  }

  50% {
    transform: translateY(-56%) rotate(-5deg);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(-50%) rotate(8deg);
  }

  50% {
    transform: translateY(-44%) rotate(5deg);
  }
}

.gift-svg {
  width: clamp(120px, 14vw, 200px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--a);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: .8;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 1.06;
  text-align: center;
  color: var(--t);
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.hero-title em {
  color: var(--a);
  font-style: italic;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

.btn-amber {
  background: var(--a);
  color: var(--b);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  transition: all .2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-amber:hover {
  background: var(--a2);
  transform: translateY(-1px);
}

.btn-amber .arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.chat-bubble-btn {
  position: absolute;
  right: 5%;
  bottom: 22%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--a);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(224, 122, 47, 0.4);
  transition: transform .2s;
  z-index: 10;
}

.chat-bubble-btn:hover {
  transform: scale(1.1);
}

.chat-bubble-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--b);
}

/* hero grid cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.hero-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .25s;
}

.hero-card:hover {
  transform: translateY(-3px);
}

.hero-card-sm {
  background: var(--b2);
  border: 0.5px solid var(--b4);
  padding: 20px 16px;
}

.hero-card-main {
  background: var(--b2);
  border: 0.5px solid var(--b4);
}

.hero-card-top-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.hero-card-sm-top {
  background: var(--b2);
  border: 0.5px solid var(--b4);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-card-sm-bot {
  background: var(--b3);
  border: 0.5px solid var(--b4);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--a);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
  line-height: 1.3;
}

.hero-card-sub {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.5;
  margin-top: 4px;
}

.hero-card-learn {
  font-size: 10px;
  color: var(--a);
  font-weight: 600;
  margin-top: 8px;
  text-decoration: none;
}

.hero-img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26, 21, 16, 0.9));
}

.hero-card-badge {
  display: inline-block;
  background: var(--a);
  color: var(--b);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.dot-indicators {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.dot-ind {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--b4);
}

.dot-ind.active {
  background: var(--a);
}

.star-icon {
  color: var(--a);
  font-size: 16px;
}

/* trending section */
.trending {
  padding: 70px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--a);
  text-transform: uppercase;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--t);
  margin-bottom: 0;
}

.view-all-link {
  font-size: 13px;
  color: var(--a);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.view-all-link:hover {
  gap: 8px;
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.product-card {
  background: var(--b2);
  border: 0.5px solid var(--b4);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
}

.product-card:hover {
  border-color: rgba(224, 122, 47, 0.4);
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--b3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-img-emoji {
  font-size: 48px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 8px;
}

.badge-new {
  background: var(--a);
  color: var(--b);
}

.product-info {
  padding: 12px 14px 14px;
}

.product-cat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--t4);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-price {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--a);
  margin-bottom: 10px;
}

.product-cta {
  width: 100%;
  background: var(--b3);
  border: 0.5px solid var(--b4);
  color: var(--t2);
  font-size: 11px;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: all .2s;
  text-align: center;
}

.product-cta:hover {
  background: var(--a);
  color: var(--b);
  border-color: var(--a);
}

/* zemo AI section */
.ai-section {
  background: linear-gradient(180deg, #2B1500 0%, #E07A2F 100%);
  padding: 70px 5%;
  text-align: center;
}

.ai-section .ai-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.ai-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #1A1510;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ai-sub {
  font-size: 14px;
  color: rgba(26, 21, 16, 0.65);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-weight: 300;
}

.btn-dark {
  background: #1A1510;
  color: var(--t);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  transition: all .2s;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #2C1E0E;
}

/* curating section */
.curating {
  padding: 80px 5%;
}

.curating-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.curating-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curating-img-outer {
  width: clamp(220px, 28vw, 320px);
  height: clamp(220px, 28vw, 320px);
  border-radius: 50%;
  border: 2px solid rgba(224, 122, 47, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.curating-img-mid {
  width: 84%;
  height: 84%;
  border-radius: 50%;
  border: 2px solid rgba(224, 122, 47, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.curating-img-inner {
  width: 84%;
  height: 84%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

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

.curating-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--a);
  color: var(--b);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.curating-label-badge {
  position: absolute;
  top: 10px;
  left: -10px;
  background: rgba(26, 21, 16, 0.9);
  border: 1px solid var(--b4);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}

.curating-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--a);
}

.curating-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--t);
  line-height: 1.2;
  margin-bottom: 14px;
}

.curating-title em {
  color: var(--a);
  font-style: italic;
}

.curating-sub {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}

.curating-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.c-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--a);
}

.c-stat .lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--t4);
  text-transform: uppercase;
}

/* footer */
footer {
  padding: 50px 5% 28px;
  border-top: 0.5px solid var(--b4);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--a);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--t4);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--b2);
  border: 0.5px solid var(--b4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-size: 13px;
}

.social-btn:hover {
  border-color: var(--a);
  background: var(--b3);
}

.footer-right h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--a);
  margin-bottom: 8px;
}

.footer-right p {
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 14px;
  font-weight: 300;
}

.footer-form {
  display: flex;
  gap: 8px;
}

.footer-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--b4);
  color: var(--t);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 24px;
  outline: none;
  font-family: 'Sora', sans-serif;
  transition: border-color .2s;
}

.footer-input::placeholder {
  color: var(--t4);
}

.footer-input:focus {
  border-color: var(--a);
}

.footer-sub-btn {
  background: var(--a);
  color: var(--b);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-copy {
  text-align: center;
  font-size: 11px;
  color: var(--t4);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 0.5px solid var(--b4);
}

/* scroll fade */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cards {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-search {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .hero-card-top-right {
    grid-template-rows: auto;
  }

  .gift-box {
    display: none;
  }

  .curating-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .curating-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media(max-width:480px) {
  .products-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }
}

/* ── IMPORTS ── 
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.site-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 14, 6, 0.30) 0%,
    rgba(20, 14, 6, 0.65) 40%,
    rgba(20, 14, 6, 0.96) 100%
  );
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input {
  font-family: var(--font-body);
  border: none;
  outline: none;
  cursor: pointer;
}

/* ══════════════════════════
   UTILITIES
══════════════════════════ 
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 16px;
}

.section { padding: var(--section-py) 0; }

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title span {
  color: var(--accent-orange);
  font-style: italic;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.7;
}

/* ══════════════════════════
   BUTTONS
══════════════════════════ *
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #d4701a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(245, 230, 204, 0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

/* ══════════════════════════
   NAVBAR
══════════════════════════ *
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-amber);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  color: rgba(245, 230, 204, 0.65);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  padding: 10px 20px;
  font-size: 13px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════
   HERO
══════════════════════════ *
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  margin: 16px 0 40px;
}

.hero-title em {
  color: var(--accent-orange);
  font-style: italic;
}

.hero-gift {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-gift img {
  width: 100%;
  max-width: 520px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-gift { display: none; }
}

/* ══════════════════════════
   BENTO GRID
══════════════════════════ *
.bento-section { padding-top: 40px; }

.bento-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  grid-template-rows: 260px 180px;
  gap: 12px;
}

.bento-card {
  background: rgba(42, 34, 16, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative;
}

.bento-card--text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  grid-column: 1;
  grid-row: 1 / 3;
}

.bento-card--text-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-card--text-img {
  width: 100%;
  flex: 1;
  min-height: 160px;
  margin: 16px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bento-card--text-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card--text-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-avatars {
  display: flex;
  margin-bottom: 12px;
}

.bento-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-right: -8px;
  object-fit: cover;
  background: var(--bg-card);
}

.bento-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.bento-label span { color: var(--accent-orange); }

.bento-sub {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bento-link {
  font-size: 11px;
  color: var(--accent-orange);
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}

.bento-card--large {
  grid-column: 2;
  grid-row: 1 / 3;
}

.bento-card--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.bento-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 4px;
}

.bento-badge p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.bento-card--small {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 1;
}

.bento-tag-top {
  font-size: 10px;
  color: var(--text-muted);
  padding: 10px 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bento-tag-bottom {
  font-size: 11px;
  color: var(--text-secondary);
  padding: 10px 14px;
}

.bento-card--small img {
  flex: 1;
  width: 100%;
  object-fit: cover;
}

.bento-card--explore {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  grid-column: 3;
  grid-row: 2;
}

.bento-card--bottom-left {
  grid-column: 1;
  grid-row: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.bento-star {
  font-size: 18px;
  color: var(--accent-orange);
}

.bento-card--explore p,
.bento-card--bottom-left p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.bento-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  align-self: flex-end;
  transition: all 0.2s;
  text-decoration: none;
}

.bento-plus:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

/* ══════════════════════════
   TRENDING GIFTS
══════════════════════════ *
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.view-all {
  font-size: 14px;
  color: var(--accent-orange);
  font-weight: 500;
  white-space: nowrap;
}

.view-all:hover { text-decoration: underline; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ══════════════════════════
   PRODUCT CARD
══════════════════════════ *
.product-card {
  background: rgba(42, 34, 16, 0.75);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-card);
}

.product-card-body { padding: 14px 16px; }

.product-card-category {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.product-card-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.product-card-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

/* ══════════════════════════
   AI BANNER
══════════════════════════ *
.ai-banner {
  background: var(--gradient-amber);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.ai-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.25;
}

.ai-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin: 0 auto 32px;
}

.ai-banner .btn {
  background: #1a1408;
  color: #fff;
  border: none;
}

.ai-banner .btn:hover { background: #2a2210; }

/* ══════════════════════════
   CURATING SECTION
══════════════════════════ *
.curating-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.curating-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curating-image {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}

.curating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-amber);
  display: block;
}

.curating-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.curating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.curating-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

@media (max-width: 1024px) {
  .curating-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .curating-frame {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ══════════════════════════
   FOOTER
══════════════════════════ *
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand .nav-logo {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.newsletter-form { display: flex; gap: 10px; }

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 12px 20px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--accent-orange); }
.newsletter-form .btn { padding: 12px 24px; white-space: nowrap; }

.footer-bottom {
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ *
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-template-rows: 240px 160px;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .curating-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-card--large { grid-column: 1; grid-row: auto; min-height: 280px; }
  .bento-card--small { grid-column: 1; grid-row: auto; }
  .bento-card--explore { grid-column: 1; grid-row: auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .curating-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-form { flex-direction: column; }
}