/* ═══════════════════════════════════════════════
   MOONLIGHT PEARLS — Main Stylesheet
   Mobile-first responsive design
   Breakpoints: 480px | 768px | 1024px | 1280px
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --pearl:      #FAF7F2;
  --pearl-mid:  #F2ECE3;
  --pearl-deep: #E8DFCE;
  --gold:       #BFA05A;
  --gold-light: #D9BF80;
  --gold-pale:  #EDD99A;
  --gold-dark:  #8C7234;
  --ink:        #1A1410;
  --ink-soft:   #3D3026;
  --ink-muted:  #7A6E5F;
  --white:      #FEFCF8;
  --moon:       #EAE4FA;
  --moon-mid:   #D4CCF0;
  --success:    #2D7A4F;
  --error:      #9B2C2C;
  --warning:    #92600A;
  --nav-h:      64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--pearl); color: var(--ink); font-family: 'DM Sans', sans-serif; font-weight: 300; overflow-x: hidden; line-height: 1.6; }
img, svg { max-width: 100%; display: block; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 300; }
a { text-decoration: none; color: inherit; }
button { font-family: 'DM Sans', sans-serif; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  height: var(--nav-h);
  background: rgba(250,247,242,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191,160,90,0.14);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(26,20,16,0.07); }

.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-pearl {
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #EAE4FA, #D9BF80, #BFA05A);
  box-shadow: 0 2px 10px rgba(191,160,90,0.35), inset 0 -2px 5px rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.logo-type { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; letter-spacing: 0.04em; color: var(--ink); line-height: 1.1; }
.logo-type small { display: block; font-size: 0.46rem; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-dark); font-family: 'DM Sans', sans-serif; }

/* Desktop menu */
.nav-menu { display: none; gap: 2rem; list-style: none; }
.nav-menu a { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.2s; padding-bottom: 3px; border-bottom: 1px solid transparent; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-dark); }
.nav-menu a.active { border-bottom-color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 0.6rem; }
.search-btn { background: none; border: none; cursor: pointer; color: var(--ink-soft); font-size: 1rem; padding: 0.4rem; transition: color 0.2s; -webkit-tap-highlight-color: transparent; }
.search-btn:hover { color: var(--gold); }
.cart-pill { display: flex; align-items: center; gap: 0.4rem; border: 1px solid rgba(191,160,90,0.4); padding: 0.38rem 0.75rem; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); background: none; cursor: pointer; transition: background 0.2s; -webkit-tap-highlight-color: transparent; white-space: nowrap; }
.cart-pill:hover { background: rgba(191,160,90,0.08); }
.cart-n { background: var(--gold); color: var(--white); font-size: 0.55rem; font-weight: 500; border-radius: 50%; min-width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; -webkit-tap-highlight-color: transparent; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-soft); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.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); }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.98); backdrop-filter: blur(18px); z-index: 190;
  flex-direction: column; padding: 2rem 1.5rem;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .nav-menu { display: flex; flex-direction: column; gap: 0; }
.mobile-drawer .nav-menu a { font-size: 1.2rem; font-family: 'Playfair Display', serif; letter-spacing: 0.02em; text-transform: none; padding: 1rem 0; border-bottom: 1px solid var(--pearl-deep); border-left: none; color: var(--ink); }
.mobile-drawer .nav-menu a:last-child { border-bottom: none; }
.mobile-drawer .nav-menu a.active { color: var(--gold-dark); }
.mobile-drawer-footer { margin-top: auto; padding-top: 2rem; font-size: 0.72rem; color: var(--ink-muted); }

@media (min-width: 1024px) {
  .site-nav { padding: 0 5rem; }
  .nav-menu { display: flex; }
  .hamburger { display: none; }
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.mqbar { background: var(--ink); padding: 0.7rem 0; overflow: hidden; }
.mqtrack { display: flex; gap: 3rem; white-space: nowrap; animation: mq 30s linear infinite; }
.mqtrack span { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); }
.mqtrack .dot { color: var(--gold); }
@keyframes mq { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.eyebrow { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-dark); display: block; }
.pearl-div { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 0.7rem auto 1.6rem; }
.pearl-div::before, .pearl-div::after { content: ''; display: block; height: 1px; width: 36px; }
.pearl-div::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.pearl-div::after  { background: linear-gradient(90deg, var(--gold-light), transparent); }
.pearl-gem { width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--moon-mid), var(--gold-light)); box-shadow: 0 1px 5px rgba(191,160,90,0.4); }
.sec-head { text-align: center; margin-bottom: 2.5rem; }
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); font-weight: 300; line-height: 1.2; margin-top: 0.3rem; }
.sec-head h2 em { font-style: italic; color: var(--gold-dark); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-g {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-pale));
  color: var(--white); border: none; cursor: pointer; text-decoration: none;
  padding: 0.85rem 1.75rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s; -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.btn-g:hover { opacity: 0.87; transform: translateY(-1px); }
.btn-g:active { transform: scale(0.98); }

.btn-o {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid var(--gold); color: var(--gold-dark); background: none; cursor: pointer;
  padding: 0.85rem 1.75rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s; -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.btn-o:hover { background: var(--gold); color: var(--white); }

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 480px)  { .prod-grid { gap: 1.2rem; } }
@media (min-width: 768px)  { .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; } }

.prod-card { background: var(--white); cursor: pointer; transition: transform 0.22s, box-shadow 0.22s; position: relative; }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,20,16,0.09); }
.prod-img { aspect-ratio: 1; background: var(--pearl-mid); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.prod-img svg { width: 65%; transition: transform 0.3s; }
.prod-card:hover .prod-img svg { transform: scale(1.05); }
.wish-btn { position: absolute; top: 0.6rem; right: 0.6rem; background: var(--white); border: 1px solid var(--pearl-deep); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; cursor: pointer; opacity: 0; transition: opacity 0.2s; color: var(--gold); }
@media (hover: none) { .wish-btn { opacity: 1; } } /* always show on touch */
.prod-card:hover .wish-btn { opacity: 1; }
.prod-badge { position: absolute; top: 0.6rem; left: 0.6rem; background: var(--gold); color: var(--white); font-size: 0.5rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.18rem 0.48rem; }
.prod-info { padding: 0.75rem 0.85rem 1rem; }
.prod-stars { color: var(--gold); font-size: 0.58rem; margin-bottom: 0.25rem; }
.prod-info h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 400; margin-bottom: 0.15rem; line-height: 1.3; }
.prod-meta { font-size: 0.6rem; color: var(--ink-muted); letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.price { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--gold-dark); font-weight: 600; }
.price-old { font-size: 0.7rem; color: var(--ink-muted); text-decoration: line-through; margin-right: 0.25rem; }
.add-btn { background: none; border: 1px solid var(--gold); color: var(--gold-dark); cursor: pointer; font-size: 0.56rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.65rem; font-family: 'DM Sans', sans-serif; transition: background 0.2s, color 0.2s; min-height: 32px; flex-shrink: 0; }
.add-btn:hover { background: var(--gold); color: var(--white); }

/* ══════════════════════════════════════
   TABS
══════════════════════════════════════ */
.tabs { display: flex; gap: 0; margin-bottom: 2rem; border-bottom: 1px solid var(--pearl-deep); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.66rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); padding: 0.7rem 1.2rem; margin-bottom: -1px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; min-height: 44px; }
.tab.on, .tab:hover { color: var(--gold-dark); }
.tab.on { border-bottom-color: var(--gold); }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--pearl-deep); background: var(--pearl); padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink); outline: none;
  transition: border-color 0.2s; resize: none; border-radius: 0;
  -webkit-appearance: none; min-height: 44px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.page-hero { padding: 6rem 1.25rem 3rem; background: var(--pearl-mid); text-align: center; position: relative; overflow: hidden; margin-top: var(--nav-h); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(234,228,250,0.28) 0%, transparent 65%); pointer-events: none; }
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; position: relative; }
.page-hero h1 em { font-style: italic; color: var(--gold-dark); }
.page-hero p { font-size: 0.86rem; color: var(--ink-muted); max-width: 500px; margin: 1rem auto 0; line-height: 1.85; position: relative; }
@media (min-width: 768px) { .page-hero { padding: 7rem 2rem 4rem; } }
@media (min-width: 1024px) { .page-hero { padding: 8rem 5rem 4rem; } }

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal-ov { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(26,20,16,0.65); align-items: flex-end; justify-content: center; }
.modal-ov.open { display: flex; }
.mbox { background: var(--white); width: 100%; max-height: 90vh; overflow-y: auto; display: flex; flex-direction: column; position: relative; border-radius: 12px 12px 0 0; }
.mimg { background: var(--pearl-mid); display: flex; align-items: center; justify-content: center; padding: 2rem; min-height: 200px; }
.mimg svg { width: 55%; max-width: 220px; }
.mbody { padding: 1.5rem 1.5rem 2rem; }
.mbody .eyebrow { margin-bottom: 0.35rem; }
.mbody h2 { font-size: 1.4rem; font-weight: 400; margin-bottom: 0.35rem; }
.mstars { color: var(--gold); font-size: 0.62rem; margin-bottom: 0.7rem; }
.mprice { font-size: 1.35rem; color: var(--gold-dark); margin-bottom: 0.85rem; font-family: 'Playfair Display', serif; }
.mdesc { font-size: 0.82rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.2rem; }
.sz-lbl { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); display: block; margin-bottom: 0.45rem; }
.szs { display: flex; gap: 0.4rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.sz { width: 40px; height: 40px; border: 1px solid var(--pearl-deep); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.sz.on, .sz:hover { border-color: var(--gold); background: rgba(191,160,90,0.08); }
.mclose { position: absolute; top: 0.85rem; right: 0.85rem; background: var(--pearl-deep); border: none; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; color: var(--ink-soft); border-radius: 50%; }

@media (min-width: 768px) {
  .modal-ov { align-items: center; }
  .mbox { width: 90%; max-width: 800px; display: grid; grid-template-columns: 1fr 1fr; border-radius: 0; max-height: 90vh; }
  .mimg { min-height: 320px; }
  .mbody { padding: 2.5rem 2rem; }
  .mimg svg { width: 75%; }
}

/* ══════════════════════════════════════
   SEARCH OVERLAY
══════════════════════════════════════ */
.search-ov { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(250,247,242,0.97); align-items: flex-start; justify-content: center; padding-top: 8rem; }
.search-ov.open { display: flex; }
.search-box { width: 90%; max-width: 600px; position: relative; }
.search-box input { width: 100%; padding: 1rem 1.25rem; font-size: 1.1rem; font-family: 'Playfair Display', serif; border: none; border-bottom: 2px solid var(--gold); background: transparent; color: var(--ink); outline: none; }
.search-close { position: absolute; top: 50%; right: 0; transform: translateY(-50%); background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink-muted); padding: 0.5rem; }
@media (min-width: 768px) { .search-ov { padding-top: 12rem; } }

/* ══════════════════════════════════════
   CART SIDEBAR
══════════════════════════════════════ */
.cart-sidebar { position: fixed; right: 0; top: 0; bottom: 0; width: 100%; background: var(--white); z-index: 400; transform: translateX(100%); transition: transform 0.35s ease; box-shadow: -8px 0 40px rgba(26,20,16,0.12); display: flex; flex-direction: column; }
.cart-sidebar.open { transform: translateX(0); }
.cart-overlay { display: none; position: fixed; inset: 0; z-index: 399; background: rgba(26,20,16,0.45); }
.cart-overlay.open { display: block; }
.cart-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--pearl-deep); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 400; }
.cart-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink-soft); padding: 0.4rem; min-width: 40px; min-height: 40px; display: flex; align-items: center; justify-content: center; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; -webkit-overflow-scrolling: touch; }
.cart-item { display: flex; gap: 0.85rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--pearl-deep); align-items: flex-start; }
.cart-item-img { width: 64px; height: 64px; background: var(--pearl-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-img svg { width: 70%; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h5 { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 400; margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-info .ci-meta { font-size: 0.65rem; color: var(--ink-muted); margin-bottom: 0.4rem; }
.cart-item-info .ci-price { font-size: 0.88rem; color: var(--gold-dark); font-family: 'Playfair Display', serif; }
.cart-qty { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--pearl-deep); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: border-color 0.2s; }
.qty-btn:hover { border-color: var(--gold); }
.qty-n { font-size: 0.85rem; min-width: 22px; text-align: center; }
.cart-rm { background: none; border: none; cursor: pointer; color: var(--ink-muted); font-size: 0.72rem; margin-left: auto; transition: color 0.2s; padding: 0.3rem; }
.cart-rm:hover { color: var(--error); }
.cart-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--pearl-deep); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-total span { font-size: 0.78rem; color: var(--ink-muted); }
.cart-total strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold-dark); }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-muted); }
.cart-empty p { font-size: 0.85rem; margin-top: 0.75rem; }
@media (min-width: 480px) { .cart-sidebar { width: 380px; } }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--ink); color: rgba(254,252,248,0.5); padding: 3rem 1.25rem 1.5rem; }
.foot-top { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.foot-brand p { font-size: 0.76rem; line-height: 1.85; max-width: 240px; margin-top: 0.85rem; }
.foot-social { display: flex; gap: 0.55rem; margin-top: 1.2rem; }
.fsoc { width: 34px; height: 34px; border: 1px solid rgba(191,160,90,0.22); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--gold-light); cursor: pointer; transition: background 0.2s; }
.fsoc:hover { background: rgba(191,160,90,0.14); }
.foot-col h5 { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col ul li a { font-size: 0.8rem; color: rgba(254,252,248,0.4); transition: color 0.2s; display: block; padding: 0.15rem 0; }
.foot-col ul li a:hover { color: var(--gold-light); }
.foot-bot { border-top: 1px solid rgba(191,160,90,0.1); padding-top: 1.4rem; display: flex; flex-direction: column; gap: 0.75rem; }
.foot-bot p { font-size: 0.64rem; }
.pay-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pay { border: 1px solid rgba(191,160,90,0.18); padding: 0.18rem 0.5rem; font-size: 0.55rem; color: rgba(254,252,248,0.3); letter-spacing: 0.05em; }

@media (min-width: 600px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-bot { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  .site-footer { padding: 4.5rem 5rem 2rem; }
  .foot-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
}

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
#toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(150%); z-index: 999; background: var(--ink); color: var(--white); padding: 0.85rem 1.4rem; font-size: 0.78rem; display: flex; align-items: center; gap: 0.65rem; border-left: 3px solid var(--gold); box-shadow: 0 8px 28px rgba(26,20,16,0.2); transition: transform 0.3s ease; min-width: 260px; max-width: calc(100vw - 2rem); white-space: nowrap; }
#toast.show { transform: translateX(-50%) translateY(0); }
#toast.success { border-left-color: var(--success); }
#toast.error { border-left-color: var(--error); }
@media (min-width: 600px) { #toast { left: auto; right: 2rem; transform: translateY(150%); } #toast.show { transform: translateY(0); } }

/* ══════════════════════════════════════
   SECTION PADDING UTILITY
══════════════════════════════════════ */
.sec-pad { padding: 3.5rem 1.25rem; }
@media (min-width: 600px)  { .sec-pad { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .sec-pad { padding: 6rem 5rem; } }

