/* =========================================
   SUKOON RITUALS — Global Stylesheet
   sukoonritual.com
   ========================================= */

:root {
  --teal:        #1B4D3E;
  --teal-mid:    #2A6B58;
  --teal-faint:  #EBF3F0;
  --rose:        #B8848A;
  --rose-faint:  #F5EDEE;
  --cream:       #FAF8F4;
  --cream-card:  #F2EDE7;
  --cream-dark:  #E8E2DA;
  --text:        #2C2C2A;
  --text-mid:    #5A5957;
  --text-muted:  #8A8886;
  --text-faint:  #B4B2AE;
  --border:      rgba(44,44,42,0.10);
  --border-mid:  rgba(44,44,42,0.18);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-xs:   5px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
}
h1 { font-size: clamp(38px, 5.5vw, 66px); }
h2 { font-size: clamp(28px, 3.8vw, 48px); }
h3 { font-size: clamp(18px, 2vw, 23px); }
p { line-height: 1.72; }
em, i { font-style: italic; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img { display: block; max-width: 100%; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Shared labels ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 8px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn-primary  { background: var(--teal); color: #fff; }
.btn-primary:hover  { background: var(--teal-mid); }
.btn-ghost    { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-ghost:hover  { background: var(--teal); color: #fff; }
.btn-outline  { background: transparent; color: var(--text-mid); border: 0.5px solid var(--border-mid); font-size: 13px; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--teal);
}
.nav-logo:hover { color: var(--teal-mid); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; color: var(--text-muted); }
.nav-links a:hover { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0.5px solid var(--border-mid);
  padding: 9px 18px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  color: var(--text);
  transition: all .2s;
}
.cart-btn:hover { border-color: var(--teal); color: var(--teal); }
.cart-count {
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count.show { display: flex; }
.nav-hamburger { display: none; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 5px 0; transition: .2s; }

/* ════════════════════════════
   CART DRAWER
═══════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(20,16,12,0.42);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--cream);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  padding: 22px 24px;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-head h3 { font-size: 22px; }
.cart-close-btn {
  background: none; border: none;
  font-size: 18px; color: var(--text-muted);
  padding: 4px 8px; border-radius: 4px;
  transition: color .2s;
}
.cart-close-btn:hover { color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 0 24px; }
.cart-empty-msg {
  text-align: center; padding: 56px 0;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.cart-empty-msg strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--text); margin-bottom: 8px;
}

.cart-item {
  display: flex; gap: 14px;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--border);
}
.cart-item-details { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 2px; }
.cart-item-variant { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-row { display: flex; align-items: center; gap: 12px; }
.cart-item-price { font-size: 15px; font-weight: 500; color: var(--teal); }
.qty-ctrl { display: flex; align-items: center; gap: 0; border: 0.5px solid var(--border-mid); border-radius: var(--radius-xs); overflow: hidden; }
.qty-btn { background: none; border: none; padding: 5px 10px; font-size: 16px; color: var(--text-mid); line-height: 1; }
.qty-btn:hover { background: var(--cream-card); }
.qty-val { font-size: 13px; padding: 5px 8px; min-width: 28px; text-align: center; border-left: 0.5px solid var(--border); border-right: 0.5px solid var(--border); }
.cart-remove { background: none; border: none; font-size: 11px; color: var(--text-faint); margin-left: auto; padding: 5px; }
.cart-remove:hover { color: var(--rose); }

.cart-foot { padding: 20px 24px; border-top: 0.5px solid var(--border); flex-shrink: 0; }
.cart-shipping-msg { font-size: 12px; color: var(--teal); background: var(--teal-faint); padding: 8px 12px; border-radius: var(--radius-xs); margin-bottom: 16px; }
.cart-totals { margin-bottom: 16px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.cart-grand-row { display: flex; justify-content: space-between; align-items: baseline; padding-top: 10px; border-top: 0.5px solid var(--border); margin-top: 8px; }
.cart-grand-label { font-size: 14px; font-weight: 500; }
.cart-grand-value { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--teal); }
.checkout-btn {
  width: 100%; padding: 16px;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius-xs);
  font-size: 15px; font-weight: 500;
  transition: background .2s;
}
.checkout-btn:hover { background: var(--teal-mid); }
.checkout-btn:disabled { opacity: .5; cursor: not-allowed; }
.cart-foot-note { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 10px; line-height: 1.6; }

/* ════════════════════════════
   CHECKOUT MODAL
═══════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,16,12,0.55);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream);
  border-radius: var(--radius);
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform .25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head { padding: 24px 28px 0; display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { font-size: 26px; }
.modal-close { background: none; border: none; font-size: 20px; color: var(--text-muted); padding: 4px; }
.modal-body { padding: 24px 28px 28px; }
.modal-step-label { font-size: 11px; color: var(--rose); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }

.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 5px; font-weight: 500; }
.form-row input, .form-row select {
  width: 100%; padding: 11px 14px;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-xs);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  background: var(--cream); color: var(--text);
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-submit {
  width: 100%; padding: 15px;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius-xs);
  font-size: 15px; font-weight: 500;
  margin-top: 8px;
  transition: background .2s;
}
.modal-submit:hover { background: var(--teal-mid); }
.modal-note { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 10px; line-height: 1.6; }

/* ════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 0 70px;
  border-bottom: 0.5px solid var(--border);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--rose); text-transform: uppercase; display: block; margin-bottom: 18px; }
.hero-title { margin-bottom: 22px; }
.hero-title em { color: var(--teal); }
.hero-sub { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; max-width: 420px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.hero-badge { font-size: 11px; color: var(--text-muted); padding: 4px 12px; border: 0.5px solid var(--border-mid); border-radius: 20px; }

.hero-image { display: flex; justify-content: center; }
.hero-img-wrap {
  width: 100%; max-width: 400px;
  aspect-ratio: 3/4;
  background: var(--cream-card);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.hero-bottle { width: 80%; height: 90%; object-fit: contain; }
.hero-img-placeholder {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}
.hero-img-placeholder .pname { font-size: 28px; color: var(--teal); letter-spacing: .15em; display: block; margin-bottom: 4px; }
.hero-img-placeholder .pml { font-size: 13px; color: var(--text-muted); }

/* ════════════════════════════
   STORY (TEAL BAND)
═══════════════════════════════ */
.story { background: var(--teal); padding: 88px 0; }
.story-inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 72px; align-items: center;
}
.story-word .s-urdu { display: block; font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: #F5F0E8; line-height: 1; margin-bottom: 10px; direction: rtl; }
.story-word .s-pron { display: block; font-size: 13px; color: #8CC4A8; margin-bottom: 3px; font-style: italic; }
.story-word .s-def { display: block; font-size: 12px; color: #6DA88E; letter-spacing: .05em; }

.story-text .s-body { font-size: 15px; color: #A8CCB9; line-height: 1.85; margin-bottom: 22px; }
.story-text .s-body:last-child { margin-bottom: 0; }
.story-text .s-highlight { color: #F5F0E8; }

/* ════════════════════════════
   RITUAL STEPS
═══════════════════════════════ */
.ritual { padding: 96px 0; }
.ritual-intro { max-width: 460px; margin-bottom: 56px; }
.ritual-intro .section-title { margin-bottom: 12px; }
.ritual-intro p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card { padding: 36px 32px; background: var(--cream-card); border-radius: var(--radius); }
.step-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--rose); opacity: .38; line-height: 1; margin-bottom: 18px; }
.step-card h3 { font-size: 20px; color: var(--teal); margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ════════════════════════════
   INGREDIENT PREVIEW
═══════════════════════════════ */
.ingr-preview { background: var(--cream-card); padding: 88px 0; text-align: center; }
.ingr-preview .section-title { margin-bottom: 8px; }
.ingr-preview .subtitle { font-size: 15px; color: var(--text-mid); margin-bottom: 48px; }

.ingr-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.ingr-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 28px 24px;
  background: var(--cream); border-radius: var(--radius);
  border: 0.5px solid var(--border);
  min-width: 190px; gap: 3px;
  transition: border-color .2s;
}
.ingr-pill:hover { border-color: var(--teal); }
.ip-role { font-size: 10px; font-weight: 500; letter-spacing: .1em; color: var(--rose); text-transform: uppercase; margin-bottom: 6px; }
.ip-icon { margin-bottom: 8px; }
.ip-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--teal); }
.ip-latin { font-size: 11px; color: var(--text-faint); font-style: italic; margin-top: 2px; }
.ip-char { font-size: 11px; color: var(--text-muted); margin-top: 7px; }

/* ════════════════════════════
   SHOP / PRODUCTS
═══════════════════════════════ */
.shop { padding: 96px 0; }
.shop-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.shop-sub { font-size: 15px; color: var(--text-mid); margin-top: 6px; max-width: 400px; }

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

.product-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border);
  display: flex; flex-direction: column;
  transition: border-color .2s;
}
.product-card:hover { border-color: var(--border-mid); }

.product-img-area {
  aspect-ratio: 3/4;
  background: #E8E3DB;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img-area img { width: 75%; height: 90%; object-fit: contain; }
.product-placeholder {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(44,44,42,0.18);
}
.product-placeholder .pp-name { font-size: 32px; letter-spacing: .12em; display: block; }
.product-placeholder .pp-ml { font-size: 14px; }

.product-badge-pill {
  position: absolute; top: 14px; left: 14px;
  background: var(--rose); color: #fff;
  font-size: 10px; font-weight: 500;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: .04em;
}
.product-badge-pill.gift { background: var(--teal); }

.product-body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.product-tag { font-size: 10px; font-weight: 500; letter-spacing: .1em; color: var(--rose); text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--text); margin-bottom: 3px; }
.product-vol { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.72; flex: 1; margin-bottom: 20px; }

.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--teal); }
.add-cart-btn {
  padding: 11px 20px;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius-xs);
  font-size: 13px; font-weight: 500;
  transition: background .2s;
}
.add-cart-btn:hover { background: var(--teal-mid); }
.add-cart-btn.added { background: #2A6B58; }

.shop-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 36px; }

/* ════════════════════════════
   TRUST BAND
═══════════════════════════════ */
.trust { background: var(--teal); padding: 72px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-item { text-align: center; padding: 28px 20px; border-right: 0.5px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: none; }
.trust-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; color: #F5F0E8; margin-bottom: 8px; }
.trust-label { font-size: 12px; color: #7DAF96; line-height: 1.55; }

/* ════════════════════════════
   INGREDIENTS PAGE
═══════════════════════════════ */
.ingr-page-hero { padding: 80px 0 64px; text-align: center; border-bottom: 0.5px solid var(--border); }
.ingr-page-hero h1 { margin-bottom: 16px; }
.ingr-page-hero .lead { font-size: 16px; color: var(--text-mid); max-width: 480px; margin: 0 auto; line-height: 1.78; }

.scent-banner {
  background: var(--teal); border-radius: var(--radius);
  padding: 44px 48px; margin: 64px 0;
}
.sb-eye { font-size: 10px; font-weight: 500; letter-spacing: .12em; color: #8CC4A8; text-transform: uppercase; display: block; margin-bottom: 10px; }
.sb-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 400; color: #F5F0E8; margin-bottom: 20px; line-height: 1.15; }
.sb-body { font-size: 15px; color: #9BBFAD; line-height: 1.82; }
.sb-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 40px; padding-top: 36px; border-top: 0.5px solid rgba(255,255,255,.12); }
.sb-stat { text-align: center; padding: 0 20px; border-right: 0.5px solid rgba(255,255,255,.1); }
.sb-stat:last-child { border-right: none; }
.sb-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: #F5F0E8; display: block; margin-bottom: 4px; }
.sb-stat-l { font-size: 11px; color: #6DA88E; }

.ingr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.ic { background: var(--cream-card); border-radius: var(--radius); padding: 32px 32px 28px; }
.ic-role { font-size: 10px; font-weight: 500; letter-spacing: .1em; color: var(--rose); text-transform: uppercase; margin-bottom: 16px; }
.ic-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text); margin-bottom: 2px; }
.ic-latin { font-size: 11px; color: var(--text-faint); font-style: italic; margin-bottom: 1px; }
.ic-origin { font-size: 11px; color: var(--text-faint); margin-bottom: 16px; }
.ic-divider { height: 0.5px; background: var(--border); margin-bottom: 14px; }
.ic-props { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.ic-prop { font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 20px; background: #fff; color: var(--text-mid); border: 0.5px solid var(--border); }
.ic-body { font-size: 13px; color: var(--text-muted); line-height: 1.78; }
.ic-quote { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--text); border-left: 2px solid var(--rose); border-radius: 0; padding: .3rem 0 .3rem .8rem; margin-top: 16px; line-height: 1.5; }

.ritual-card { border: 0.5px solid var(--border); border-radius: var(--radius); padding: 48px 40px; text-align: center; margin: 64px 0; }
.rc-eye { font-size: 10px; font-weight: 500; letter-spacing: .12em; color: var(--rose); text-transform: uppercase; display: block; margin-bottom: 10px; }
.rc-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; margin-bottom: 18px; line-height: 1.18; }
.rc-body { font-size: 15px; color: var(--text-mid); line-height: 1.82; max-width: 480px; margin: 0 auto; }
.rc-nights { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 40px; padding-top: 36px; border-top: 0.5px solid var(--border); }
.rc-night { text-align: center; padding: 0 20px; border-right: 0.5px solid var(--border); }
.rc-night:last-child { border-right: none; }
.rc-night-n { font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--teal); display: block; }
.rc-night-l { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: var(--cream-card); border-top: 0.5px solid var(--border); padding: 64px 0 36px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo { display: block; font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--teal); letter-spacing: .12em; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.footer-brand a { font-size: 13px; color: var(--teal); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .08em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 0.5px solid var(--border); padding-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.footer-bottom p { font-size: 11px; color: var(--text-faint); }

/* ════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--text); color: #FAF8F4;
  padding: 12px 24px; border-radius: var(--radius-xs);
  font-size: 13px; z-index: 400;
  opacity: 0; pointer-events: none;
  transition: all .25s;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════
   ORDER CONFIRMATION
═══════════════════════════════ */
.confirm-box { padding: 0 28px 36px; text-align: center; }
.confirm-icon { font-size: 48px; margin: 32px 0 16px; color: var(--teal); }
.confirm-box h3 { font-size: 32px; color: var(--teal); margin-bottom: 12px; }
.confirm-box p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }
.confirm-id { font-size: 11px; color: var(--text-faint); margin-bottom: 24px; }
.confirm-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--rose); margin-bottom: 28px; }
.confirm-close { padding: 12px 32px; background: var(--teal); color: #fff; border: none; border-radius: var(--radius-xs); font-size: 14px; font-weight: 500; }

/* ════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas, .hero-badges { justify-content: center; }
  .hero-image { order: -1; }
  .hero-img-wrap { max-width: 300px; margin: 0 auto; }
  .story-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .story-word .s-urdu { font-size: 56px; direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.1); }
  .trust-item:nth-child(2n) { border-bottom: 0.5px solid rgba(255,255,255,.1); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .ingr-cards { grid-template-columns: 1fr; }
  .sb-stats, .rc-nights { grid-template-columns: 1fr; }
  .sb-stat, .rc-night { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,.1); padding: 16px 0; }
  .rc-night { border-bottom: 0.5px solid var(--border); }
  .sb-stat:last-child, .rc-night:last-child { border-bottom: none; }
  .scent-banner { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .ingr-row { flex-direction: column; align-items: center; }
  .cart-drawer { width: 100vw; }
  .modal { max-width: 100%; }
  .form-two { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .shop-header { flex-direction: column; align-items: flex-start; }
}
