/* MoreAmore — Marketing Redesign */

:root {
  --choco:       #3c1e08;
  --choco-deep:  #271206;
  --choco-med:   #5c3010;
  --gold:        #c9a76c;
  --gold-dark:   #9e7a3d;
  --gold-light:  #e8d5b0;
  --cream:       #faf7f2;
  --cream-warm:  #f4ece0;
  --rose:        #fbe7ea;
  --white:       #ffffff;
  --text-dark:   #1a0e06;
  --text-mid:    #6b4e30;
  --text-light:  #9c8570;
  --danger:      #c0392b;
  --green:       #25d366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 999px;

  --shadow-sm: 0 2px 8px rgba(60,30,8,.07);
  --shadow-md: 0 6px 24px rgba(60,30,8,.11);
  --shadow-lg: 0 16px 48px rgba(60,30,8,.15);

  --ease: .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }
p { color: var(--text-mid); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--choco-deep); }
.section--choco { background: var(--choco); }
.section--warm { background: var(--cream-warm); }
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.grad {
  background: linear-gradient(135deg, var(--gold) 0%, #a0704a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem; border-radius: var(--r-full);
  font-size: .92rem; font-weight: 500;
  transition: all var(--ease); cursor: pointer; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--white); box-shadow: 0 4px 16px rgba(159,120,63,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(159,120,63,.44); }
.btn-outline { border: 1.5px solid var(--choco); color: var(--choco); }
.btn-outline:hover { background: var(--choco); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--choco); color: var(--white); }
.btn-dark:hover { background: var(--choco-deep); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--gold-dark); font-weight: 600; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.05rem 2.6rem; font-size: 1rem; }

/* ─── NAV ─── */
.nav-wrap {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 900; transition: background var(--ease), box-shadow var(--ease);
}
.nav-wrap.scrolled { background: rgba(250,247,242,.94); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(60,30,8,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2rem; max-width: 1200px; margin: 0 auto; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; filter: brightness(.25) sepia(1) hue-rotate(330deg) saturate(3); }
.nav-links-list { display: flex; gap: 2.2rem; align-items: center; }
.nav-link { font-size: .88rem; font-weight: 500; color: var(--text-dark); position: relative; transition: color var(--ease); white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width var(--ease); }
.nav-link:hover { color: var(--gold-dark); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; gap: .8rem; align-items: center; }
.nav-icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--text-dark); font-size: 1.1rem; transition: all var(--ease); position: relative; }
.nav-icon-btn:hover { color: var(--gold-dark); background: var(--cream-warm); }
.cart-badge { position: absolute; top: -3px; right: -3px; background: var(--gold); color: var(--white); font-size: .62rem; font-weight: 700; width: 17px; height: 17px; border-radius: 50%; display: none; align-items: center; justify-content: center; }
.nav-wa { display: flex; align-items: center; gap: .45rem; padding: .5rem 1.1rem; background: var(--green); color: var(--white); border-radius: var(--r-full); font-size: .82rem; font-weight: 600; transition: all var(--ease); }
.nav-wa:hover { background: #1da851; transform: translateY(-1px); }
.mobile-menu-btn { display: none; font-size: 1.4rem; color: var(--text-dark); padding: .4rem; z-index: 901; position: relative; }
.mob-only { display: none; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(39,18,6,.42); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ─── HERO ─── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; overflow: hidden; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: calc(76px + 3rem) 3rem 4rem max(2rem, calc((100vw - 1200px)/2 + 2rem)); }
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold-dark); }
.hero-sub { font-size: 1.02rem; color: var(--text-mid); line-height: 1.78; max-width: 450px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-pill { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--text-mid); }
.trust-pill i { color: var(--gold); }
.hero-visual { position: relative; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--cream) 0%, transparent 25%); z-index: 1; }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--choco); padding: 2.5rem 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-light); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ─── OCCASIONS ─── */
.occasions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.occasion-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.75rem;
  cursor: pointer; transition: all var(--ease);
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.occasion-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); transform: scaleX(0); transition: transform var(--ease); }
.occasion-card:hover { border-color: var(--gold-light); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.occasion-card:hover::after, .occasion-card.active::after { transform: scaleX(1); }
.occasion-card.active { border-color: var(--gold); box-shadow: var(--shadow-md); background: #fffdf8; }
.occasion-icon { font-size: 2.2rem; margin-bottom: 1rem; line-height: 1; }
.occasion-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--text-dark); margin-bottom: .4rem; }
.occasion-desc { font-size: .83rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* ─── CATALOG ─── */
.catalog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.catalog-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-pill { padding: .5rem 1.2rem; border-radius: var(--r-full); font-size: .83rem; font-weight: 500; background: var(--white); color: var(--text-mid); border: 1.5px solid transparent; cursor: pointer; transition: all var(--ease); box-shadow: var(--shadow-sm); }
.filter-pill:hover { border-color: var(--gold-light); color: var(--gold-dark); }
.filter-pill.active { background: var(--choco); color: var(--white); border-color: var(--choco); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.product-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--ease); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; flex-shrink: 0; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge { position: absolute; top: .9rem; left: .9rem; padding: .28rem .75rem; border-radius: var(--r-full); font-size: .7rem; font-weight: 600; color: var(--white); letter-spacing: .03em; }
.product-info { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product-weight { font-size: .75rem; color: var(--text-light); background: var(--cream); padding: .2rem .6rem; border-radius: var(--r-full); display: inline-block; margin-bottom: .6rem; }
.product-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-dark); margin-bottom: .45rem; }
.product-desc { font-size: .85rem; color: var(--text-light); line-height: 1.55; flex: 1; margin-bottom: 1.25rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.product-price { font-family: var(--font-display); font-size: 1.55rem; color: var(--text-dark); font-weight: 500; }
.product-price span { font-size: .9rem; color: var(--text-light); font-weight: 400; }
.add-to-cart-btn { display: flex; align-items: center; gap: .4rem; padding: .62rem 1.2rem; background: var(--choco); color: var(--white); border-radius: var(--r-full); font-size: .82rem; font-weight: 500; transition: all var(--ease); white-space: nowrap; flex-shrink: 0; }
.add-to-cart-btn:hover { background: var(--choco-deep); transform: scale(1.03); }
.add-to-cart-btn i { font-size: .75rem; }

/* ─── PROCESS ─── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; position: relative; margin-top: 4rem; }
.process-grid::before { content: ''; position: absolute; top: 2.1rem; left: calc(16.67% + 1.5rem); right: calc(16.67% + 1.5rem); height: 1px; background: rgba(201,167,108,.25); }
.process-step { text-align: center; }
.process-num { width: 68px; height: 68px; border-radius: 50%; border: 1.5px solid rgba(201,167,108,.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); background: rgba(201,167,108,.07); position: relative; z-index: 1; }
.process-step h3 { color: var(--white); font-size: 1.3rem; margin-bottom: .5rem; }
.process-step p { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.review-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem; }
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.review-quote { font-family: var(--font-display); font-size: 1rem; color: var(--text-mid); line-height: 1.65; flex: 1; font-style: italic; }
.review-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: .5rem; }
.review-name { font-weight: 600; font-size: .88rem; color: var(--text-dark); }
.review-date { font-size: .76rem; color: var(--text-light); }
.review-tag { font-size: .72rem; padding: .2rem .65rem; border-radius: var(--r-full); background: var(--cream-warm); color: var(--text-mid); white-space: nowrap; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ─── CUSTOM ORDER ─── */
.custom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.custom-left-label { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.custom-title { color: var(--white); margin-bottom: 1rem; }
.custom-sub { color: rgba(255,255,255,.6); font-size: .98rem; line-height: 1.7; margin-bottom: 2rem; }
.custom-perks { display: flex; flex-direction: column; gap: .85rem; }
.custom-perk { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: rgba(255,255,255,.75); }
.custom-perk i { color: var(--gold); margin-top: .25rem; width: 14px; flex-shrink: 0; }
.custom-form-wrap { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl); padding: 2.5rem; backdrop-filter: blur(8px); }
.custom-form-section-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: .85rem; }
.occasion-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.5rem; }
.occ-radio { position: relative; }
.occ-radio input { position: absolute; opacity: 0; pointer-events: none; }
.occ-radio label { display: flex; align-items: center; justify-content: center; padding: .6rem .35rem; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.14); font-size: .76rem; color: rgba(255,255,255,.65); cursor: pointer; transition: all var(--ease); text-align: center; line-height: 1.2; }
.occ-radio input:checked + label { background: var(--gold); border-color: var(--gold); color: var(--white); }
.occ-radio label:hover { border-color: rgba(201,167,108,.5); color: rgba(255,255,255,.9); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .85rem; }
.form-field label { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm); padding: .78rem 1rem;
  color: var(--white); font-family: var(--font-body); font-size: .88rem;
  transition: border-color var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.28); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.11); }
.form-field textarea { min-height: 88px; resize: vertical; }
.form-field select option { background: var(--choco-deep); color: var(--white); }

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: .75rem; height: 520px; }
.about-photo-main { grid-column: 1; grid-row: 1 / span 2; border-radius: var(--r-xl); width: 100%; height: 100%; object-fit: cover; object-position: center top; box-shadow: var(--shadow-lg); }
.about-photo-sub { border-radius: var(--r-lg); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-md); }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: .96rem; line-height: 1.8; margin-bottom: 1rem; }
.about-text .btn { margin-top: .5rem; }

/* ─── FOOTER ─── */
.footer { background: var(--choco-deep); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { height: 38px; filter: brightness(0) invert(1); opacity: .6; margin-bottom: 1rem; }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .86rem; line-height: 1.65; margin-bottom: 1.5rem; }
.socials { display: flex; gap: .6rem; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .95rem; transition: all var(--ease); }
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.6); font-size: .86rem; margin-bottom: .65rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-col i { opacity: .45; margin-right: .35rem; }
.metro-badge { display: inline-flex; align-items: center; justify-content: center; width: 1.1em; height: 1.1em; border: 1px solid currentColor; border-radius: 50%; font-size: .68em; font-weight: 700; margin-right: 4px; vertical-align: middle; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.28); }

/* ─── CART DRAWER ─── */
.cart-drawer { position: fixed; inset: 0; z-index: 1100; visibility: hidden; }
.cart-drawer.open { visibility: visible; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(26,14,6,.5); backdrop-filter: blur(4px); opacity: 0; transition: opacity var(--ease); }
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-panel { position: absolute; top: 0; right: -440px; width: 420px; height: 100%; background: var(--white); display: flex; flex-direction: column; transition: right var(--ease); box-shadow: var(--shadow-lg); }
.cart-drawer.open .cart-panel { right: 0; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--cream-warm); }
.cart-head h3 { font-family: var(--font-display); font-size: 1.5rem; }
.cart-close-btn { font-size: 1.25rem; color: var(--text-light); padding: .3rem; transition: color var(--ease); }
.cart-close-btn:hover { color: var(--text-dark); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--text-light); }
.cart-empty i { font-size: 2.5rem; opacity: .25; display: block; margin-bottom: .75rem; }
.cart-item { display: flex; gap: 1rem; align-items: center; padding-bottom: 1.25rem; border-bottom: 1px solid var(--cream-warm); }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .88rem; color: var(--text-dark); margin-bottom: .2rem; }
.cart-item-price { font-size: .84rem; color: var(--gold-dark); }
.cart-item-controls { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--cream-warm); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--text-dark); transition: all var(--ease); }
.qty-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }
.qty-val { font-weight: 600; min-width: 20px; text-align: center; font-size: .88rem; }
.rm-btn { color: var(--text-light); font-size: .82rem; margin-left: .2rem; transition: color var(--ease); padding: .2rem; }
.rm-btn:hover { color: var(--danger); }
.cart-foot { padding: 1.25rem 1.75rem; border-top: 1px solid var(--cream-warm); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; }
.cart-total-row span:last-child { color: var(--gold-dark); }
.checkout-btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }

/* ─── CHECKOUT MODAL ─── */
.modal-wrap { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 1.5rem; visibility: hidden; opacity: 0; transition: all var(--ease); }
.modal-wrap.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(26,14,6,.6); backdrop-filter: blur(6px); }
.modal-card { position: relative; background: var(--white); border-radius: var(--r-xl); padding: 2.5rem; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform var(--ease); }
.modal-wrap.open .modal-card { transform: translateY(0); }
.modal-close-btn { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1.2rem; color: var(--text-light); padding: .3rem; }
.modal-close-btn:hover { color: var(--text-dark); }
.modal-title { font-family: var(--font-display); font-size: 2rem; margin-bottom: .4rem; }
.modal-subtitle { font-size: .85rem; color: var(--text-light); margin-bottom: 2rem; }
.light-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.light-field label { font-size: .8rem; font-weight: 500; color: var(--text-mid); }
.light-field input, .light-field textarea { padding: .8rem 1rem; border: 1.5px solid var(--cream-warm); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .9rem; color: var(--text-dark); background: var(--cream); transition: border-color var(--ease); }
.light-field input:focus, .light-field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.light-field textarea { min-height: 80px; resize: vertical; }

/* ─── TOASTS ─── */
.toast-stack { position: fixed; top: 5.5rem; right: 1.5rem; z-index: 2000; display: flex; flex-direction: column; gap: .5rem; }
.toast { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.35rem; border-radius: var(--r-full); background: var(--choco); color: var(--white); font-size: .86rem; font-weight: 500; box-shadow: var(--shadow-md); animation: toastIn .28s ease-out; max-width: 320px; }
.toast i { color: var(--gold); flex-shrink: 0; }
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .trust-bar-grid { grid-template-columns: repeat(2,1fr); }
  .occasions-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .custom-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 5rem 2rem 3rem; }
  .hero-visual { height: 55vw; }
  .hero-visual::before { background: linear-gradient(to bottom, transparent 50%, var(--cream) 100%); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-wa { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-inner { padding: 1.25rem 1.25rem; }
  .nav-actions { gap: .35rem; }
  .nav-icon-btn { width: 36px; height: 36px; font-size: 1rem; }
  .nav-links-list {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(82vw, 330px);
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 5.4rem 1.6rem 2rem;
    background: var(--cream); box-shadow: var(--shadow-lg);
    transform: translateX(110%); transition: transform var(--ease);
    z-index: 860; overflow-y: auto;
  }
  .nav-links-list.mob-open { transform: translateX(0); }
  .nav-links-list > li { width: 100%; }
  .nav-links-list .nav-link {
    display: block; font-size: 1.02rem; font-weight: 500; color: var(--text-dark);
    padding: 1rem .2rem; border-bottom: 1px solid var(--cream-warm);
  }
  .nav-links-list .nav-link::after { display: none; }
  .nav-links-list .nav-link:hover { color: var(--gold-dark); }
  .nav-links-list .mob-only { display: block; }
  .mob-cta { margin-top: 1.5rem; }
  .mob-contact { margin-top: 1.1rem; font-size: .82rem; color: var(--text-light); letter-spacing: .04em; }
  .mob-contact a { color: var(--gold-dark); font-weight: 600; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cart-panel { width: 100%; right: -100%; }
  .occasion-selector { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .nav-inner { padding: 1.1rem 1rem; }
  .nav-actions { gap: .15rem; }
  .nav-icon-btn { width: 34px; height: 34px; font-size: .95rem; }
  .container { padding: 0 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .occasions-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
}
