/* =============================================
   DÉCOROUS PLUS — Desktop Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --cream: #F7F4EF;
  --cream-d: #EDE9E1;
  --cream-m: #E5E0D7;
  --gold: #B8922A;
  --gold-l: #D4A843;
  --gold-bg: #FBF6EC;
  --ink: #1C1A17;
  --ink-m: #4A4740;
  --ink-l: #8A8680;
  --ink-f: #C5C1BB;
  --white: #FDFCFA;
  --border: #DDD9D2;
  --green: #25D366;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(28,26,23,0.07);
  --shadow-lg: 0 8px 40px rgba(28,26,23,0.12);
  --max-w: 1200px;
  --nav-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }
input, select, textarea { font-family: 'DM Sans', sans-serif; }

/* ---- ANNOUNCEMENT BAR ---- */
.ann-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-size: 13px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ann-bar strong { color: var(--gold-l); }
.ann-bar .ann-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 18px; line-height: 1; cursor: pointer;
}
.ann-bar a { color: var(--gold-l); text-decoration: underline; }
/* Desktop: hide marquee, show static */
.ann-marquee-wrap { display: none; }

/* ---- NAV ---- */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,244,239,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img.logo-icon {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-m);
  transition: color 0.15s; letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  border: none; border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px; font-weight: 600;
  transition: background 0.15s; position: relative;
}
.nav-cart-btn:hover { background: #333; }
.nav-cart-badge {
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-wa-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  border: none; border-radius: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 600;
  transition: opacity 0.15s;
}
.nav-wa-btn:hover { opacity: 0.88; }
.nav-wa-btn svg { width: 16px; height: 16px; }

/* ---- CART DRAWER ---- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(28,26,23,0.45);
  z-index: 400; opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; background: var(--white);
  border-left: 1px solid var(--border);
  z-index: 401;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
  box-shadow: -8px 0 40px rgba(28,26,23,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.cart-close-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.cart-close-btn:hover { background: var(--cream); }
.cart-items-list { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
  display: flex; gap: 12px; align-items: flex-start;
}
.cart-item-img { width: 64px; height: 76px; border-radius: 8px; object-fit: contain; background: #fff; flex-shrink: 0; padding: 4px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.cart-item-det { font-size: 12px; color: var(--ink-l); margin-bottom: 6px; }
.cart-item-names { font-size: 11px; color: var(--ink-f); margin-bottom: 6px; line-height: 1.4; }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-size: 15px; color: var(--gold); font-weight: 700; }
.cart-qty-row { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--ink); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 0.12s; }
.cart-qty-btn:hover { background: var(--cream-d); }
.cart-qty-num { font-size: 14px; font-weight: 600; color: var(--ink); min-width: 18px; text-align: center; }
.cart-rm-btn { background: none; border: none; color: var(--ink-f); padding: 4px; transition: color 0.12s; }
.cart-rm-btn:hover { color: var(--ink); }
.cart-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 40px 24px; gap: 10px; text-align: center; }
.cart-empty-icon { opacity: 0.12; }
.cart-empty-text { font-size: 16px; font-weight: 500; color: var(--ink-m); }
.cart-empty-sub { font-size: 13px; color: var(--ink-f); }
.cart-footer { padding: 16px 24px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-zone-section { margin-bottom: 14px; }
.cart-address-section { margin-bottom: 14px; padding: 0 2px; }
.cart-address-label { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-f); margin-bottom: 7px; cursor: default; }
.cart-address-required { color: #e53e3e; font-size: 13px; line-height: 1; }
.cart-address-input { width: 100%; border: 1.5px solid var(--border); border-radius: 9px; padding: 9px 12px; font-size: 13px; font-family: inherit; color: var(--ink); background: var(--cream); resize: vertical; min-height: 58px; transition: border-color .15s; }
.cart-address-input:focus { outline: none; border-color: var(--gold); }
.cart-address-input.error { border-color: #e53e3e; }
.cart-address-error { font-size: 11.5px; color: #e53e3e; font-weight: 600; margin-top: 5px; }
.cart-zone-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-f); margin-bottom: 8px; }
.cart-zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.zone-chip { padding: 7px 10px; border-radius: 8px; border: 1px solid var(--border); background: transparent; color: var(--ink-l); font-size: 11px; font-weight: 500; cursor: pointer; transition: all 0.12s; text-align: center; }
.zone-chip:hover { background: var(--cream); }
.zone-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 600; }
.cart-summary { margin-bottom: 14px; }
.cart-sum-row { display: flex; justify-content: space-between; padding: 4px 0; }
.cart-sum-label { font-size: 13px; color: var(--ink-l); }
.cart-sum-value { font-size: 13px; color: var(--ink-m); font-weight: 500; }
.cart-sum-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 12px; }
.cart-sum-row.total .cart-sum-label { color: var(--ink); font-weight: 600; font-size: 15px; }
.cart-sum-row.total .cart-sum-value { color: var(--gold); font-weight: 700; font-size: 17px; }
.sum-free { color: #2d8a4e !important; }
.pay-section { display: flex; flex-direction: column; gap: 8px; }
.pay-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-f); margin-bottom: 2px; }
.pay-btn {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: none;
  font-size: 14px; font-weight: 700; display: flex; align-items: center;
  justify-content: center; gap: 9px; transition: opacity 0.15s;
}
.pay-btn:hover { opacity: 0.88; }
.pay-btn.sadad { background: #3b5fe0; color: #fff; }
.pay-btn.whatsapp { background: var(--green); color: #fff; }
.pay-btn.bulk { background: var(--ink); color: #fff; }
.pay-bulk-note { font-size: 11px; color: var(--ink-l); text-align: center; line-height: 1.5; margin-top: 4px; }

/* ---- CONTAINERS ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ---- TYPOGRAPHY ---- */
.eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.display-title { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; line-height: 1.1; color: var(--ink); }
.display-title em { color: var(--gold); font-style: italic; }
.display-title.lg { font-size: 64px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.section-title em { color: var(--gold); font-style: italic; }
.lead { font-size: 17px; color: var(--ink-m); line-height: 1.75; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; border: none; transition: all 0.15s; letter-spacing: 0.2px; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9e7b22; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #333; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { opacity: 0.88; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ---- HERO ---- */
.hero-section {
  min-height: calc(100vh - var(--nav-h) - 42px);
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-content-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative; z-index: 2;
}
.hero-tagline { font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-l); font-weight: 600; margin-bottom: 20px; }
.hero-h1 { font-family: 'Playfair Display', serif; font-size: 58px; font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 20px; }
.hero-h1 em { color: var(--gold-l); font-style: italic; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 36px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold-l); font-weight: 700; }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-img-col { position: relative; overflow: hidden; }
.hero-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-img-gradient { position: absolute; left: 0; top: 0; bottom: 0; width: 120px; background: linear-gradient(to right, var(--ink), transparent); }

/* ---- PRODUCT GRID ---- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img-wrap { position: relative; background: #fff; }
.product-card-img { width: 100%; height: 300px; object-fit: contain; display: block; padding: 20px 16px 10px; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.product-card-body { padding: 16px 20px 20px; }
.product-card-set { font-size: 11px; color: var(--ink-f); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-card-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.product-card-sash { font-size: 13px; color: var(--ink-l); margin-bottom: 14px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 15px; color: var(--gold); font-weight: 700; }
.product-card-cta { display: flex; gap: 8px; }
.btn-sm { padding: 8px 16px; font-size: 12px; font-weight: 600; border-radius: 7px; }

/* ---- INCLUDES SECTION ---- */
.includes-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 48px; align-items: center; }
.includes-image-col { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.includes-image-col img { width: 100%; max-width: 420px; border-radius: var(--radius-lg); object-fit: contain; object-position: bottom; height: auto; max-height: 620px; }
.includes-items { display: flex; flex-direction: column; gap: 28px; }
.include-item { display: flex; gap: 20px; align-items: flex-start; }
.include-num { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--gold); font-weight: 700; width: 28px; flex-shrink: 0; padding-top: 2px; }
.include-icon-wrap { width: 64px; height: 64px; border-radius: 14px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.include-icon-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.include-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.include-desc { font-size: 14px; color: var(--ink-l); line-height: 1.6; }

/* ---- PRICING TABLE ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--gold); background: var(--gold-bg); }
.pricing-badge { position: absolute; top: 0; right: 20px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 800; padding: 5px 12px; border-radius: 0 0 10px 10px; letter-spacing: 0.5px; }
.pricing-range { font-size: 12px; color: var(--ink-l); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.3px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-per { font-size: 13px; color: var(--ink-f); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pricing-features li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-m); }
.feat-check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-check svg { width: 9px; height: 9px; }
.pricing-cta { width: 100%; padding: 12px; border-radius: 9px; font-size: 13px; font-weight: 700; border: none; transition: all 0.15s; }
.pricing-cta.gold { background: var(--gold); color: #fff; }
.pricing-cta.gold:hover { background: #9e7b22; }
.pricing-cta.outline { background: transparent; border: 1px solid var(--border); color: var(--ink-m); }
.pricing-cta.outline:hover { background: var(--cream); }

/* ---- ADDON CARDS ---- */
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; }
.addon-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; gap: 0; }
.addon-card-img { width: 100px; height: 110px; object-fit: contain; background: #fff; flex-shrink: 0; padding: 6px; }
.addon-card-body { padding: 16px; }
.addon-card-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.addon-card-set { font-size: 12px; color: var(--ink-l); margin-bottom: 6px; }
.addon-card-price { font-size: 14px; color: var(--gold); font-weight: 700; }

/* ---- DELIVERY TABLE ---- */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.delivery-times { display: flex; gap: 16px; margin-bottom: 24px; }
.delivery-time-card { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.del-days { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--gold); font-weight: 700; }
.del-unit { font-size: 11px; color: var(--ink-f); margin-bottom: 6px; }
.del-desc { font-size: 13px; color: var(--ink-l); line-height: 1.5; }
.rate-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--cream-d); }
.rate-row:last-child { border-bottom: none; }
.rate-area { font-size: 14px; color: var(--ink-m); }
.rate-fee { font-size: 14px; color: var(--gold); font-weight: 600; }
.rate-fee.free { color: #2d8a4e; }

/* ---- SIZE CHART ---- */
.size-chart-section { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
.size-chart-img { max-width: 360px; border-radius: var(--radius-lg); }
.size-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.size-table th { background: var(--cream-d); color: var(--ink-m); font-weight: 600; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.size-table th:first-child { border-radius: 10px 0 0 0; }
.size-table th:last-child { border-radius: 0 10px 0 0; }
.size-table td { padding: 12px 16px; border-bottom: 1px solid var(--cream-d); color: var(--ink-m); }
.size-table tr:last-child td { border-bottom: none; }
.size-table td:first-child { font-weight: 700; color: var(--ink); }
.size-note { font-size: 13px; color: var(--ink-l); margin-top: 12px; line-height: 1.6; }

/* ---- ORDER FORM ---- */
.order-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.order-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-step-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-f); margin-bottom: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.form-step-label:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--ink-m); }
.form-input, .form-select, .form-textarea {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 9px; padding: 12px 14px;
  color: var(--ink); font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-f); }
.form-select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5C1BB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 90px; }
.qty-control { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.qty-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--cream); color: var(--ink); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.12s; }
.qty-btn:hover { background: var(--cream-d); }
.qty-num { font-size: 18px; font-weight: 600; color: var(--ink); min-width: 24px; text-align: center; }
.form-submit { width: 100%; background: var(--ink); border: none; border-radius: 10px; padding: 15px; color: #fff; font-size: 15px; font-weight: 700; margin-top: 8px; transition: background 0.15s; }
.form-submit:hover { background: #333; }
.form-wa-alt { text-align: center; margin-top: 12px; font-size: 13px; color: var(--ink-l); }
.form-wa-alt a { color: var(--gold); font-weight: 600; }
.order-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.sidebar-set-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-set-item { display: flex; align-items: center; gap: 12px; }
.sidebar-set-img { width: 52px; height: 60px; object-fit: contain; background: var(--cream); border-radius: 8px; flex-shrink: 0; padding: 4px; }
.sidebar-set-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.sidebar-set-detail { font-size: 12px; color: var(--ink-l); margin-top: 1px; }
.sidebar-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; border-bottom: 1px solid var(--cream-d); }
.sidebar-price-row:last-child { border-bottom: none; }
.sidebar-price-tier { font-size: 13px; color: var(--ink-m); }
.sidebar-price-amount { font-size: 14px; color: var(--gold); font-weight: 700; }

/* ---- TESTIMONIAL / BANNER ---- */
.banner-dark { background: var(--ink); padding: 72px 0; }
.banner-gold { background: var(--gold-bg); border-top: 1px solid var(--cream-m); border-bottom: 1px solid var(--cream-m); padding: 48px 0; }
.viewing-strip { display: flex; align-items: center; gap: 8px; }
.viewing-dot { width: 8px; height: 8px; border-radius: 50%; background: #e53; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
.viewing-text { font-size: 13px; color: var(--ink-m); font-weight: 500; }

/* ---- FOOTER ---- */
.site-footer { background: var(--ink); padding: 64px 0 32px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; filter: invert(1); height: 36px; object-fit: contain; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.footer-social a:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
.footer-social svg { width: 14px; height: 14px; color: rgba(255,255,255,0.5); }

/* ---- PRODUCT MODAL ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(28,26,23,0.55); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; padding: 24px; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.32,0.72,0,1); }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-img-col { position: relative; background: #fff; border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.modal-gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; height: 460px; scrollbar-width: none; }
.modal-gallery::-webkit-scrollbar { display: none; }
.modal-gallery img { width: 100%; flex-shrink: 0; object-fit: contain; scroll-snap-align: start; padding: 20px; background: #fff; }
.modal-gallery-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; }
.modal-gdot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all 0.2s; }
.modal-gdot.on { background: var(--gold); width: 16px; border-radius: 3px; }
.modal-tabs { display: flex; border-bottom: 1px solid var(--border); }
.modal-tab { flex: 1; padding: 13px; font-size: 13px; font-weight: 600; text-align: center; cursor: pointer; color: var(--ink-l); border-bottom: 2px solid transparent; transition: all 0.15s; background: none; border-top: none; border-left: none; border-right: none; }
.modal-tab.on { color: var(--ink); border-bottom-color: var(--gold); }
.modal-body-col { padding: 32px; overflow-y: auto; display: flex; flex-direction: column; }
.modal-set-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.modal-sub { font-size: 13px; color: var(--ink-l); margin-bottom: 16px; }
.modal-price { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.modal-price span { font-size: 14px; color: var(--ink-f); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.modal-sec { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-f); font-weight: 700; margin-bottom: 10px; margin-top: 20px; }
.modal-sec:first-of-type { margin-top: 0; }
.modal-size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-sz { padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--cream); color: var(--ink-m); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s; }
.modal-sz.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.modal-qty-row { display: flex; align-items: center; gap: 14px; }
.modal-qty-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--cream); color: var(--ink); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.12s; }
.modal-qty-btn:hover { background: var(--cream-d); }
.modal-qty-num { font-size: 18px; font-weight: 600; color: var(--ink); min-width: 24px; text-align: center; }
.modal-names-list { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.modal-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.modal-item-sizes { display: flex; gap: 4px; flex-shrink: 0; }
.modal-sz-sm { padding: 5px 9px; border-radius: 6px; border: 1px solid var(--border); background: var(--cream); color: var(--ink-m); font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.modal-sz-sm.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.modal-name-num { width: 24px; height: 24px; border-radius: 50%; background: var(--cream-d); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--ink-m); flex-shrink: 0; }
.modal-velvet { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 13px 14px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: border-color 0.15s; }
.modal-velvet.on { border-color: var(--gold); background: var(--gold-bg); }
.modal-velvet-img { width: 52px; height: 58px; border-radius: 7px; object-fit: contain; background: #fff; flex-shrink: 0; padding: 3px; }
.modal-vcheck { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.15s; flex-shrink: 0; }
.modal-vcheck.on { background: var(--gold); border-color: var(--gold); }
.modal-add-btn { width: 100%; background: var(--ink); border: none; border-radius: 10px; padding: 14px; color: #fff; font-size: 14px; font-weight: 700; margin-top: auto; padding-top: 16px; transition: background 0.15s; }
.modal-add-btn:hover { background: #333; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; }
.size-tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.size-tbl th { background: var(--cream-d); color: var(--ink-m); font-weight: 600; padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.size-tbl td { padding: 10px 12px; border-bottom: 1px solid var(--cream-d); color: var(--ink-m); }
.size-tbl tr:last-child td { border-bottom: none; }
.size-tbl td:first-child { font-weight: 700; color: var(--ink); }
.size-note-sm { font-size: 12px; color: var(--ink-l); margin-top: 10px; line-height: 1.5; }

/* ---- TOAST ---- */
.toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 600; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { background: var(--ink); border-radius: 12px; padding: 13px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); pointer-events: all; animation: toastIn 0.28s ease; min-width: 300px; }
@keyframes toastIn { from{transform:translateY(10px);opacity:0} to{transform:translateY(0);opacity:1} }
.toast-icon { width: 28px; height: 28px; background: rgba(184,146,42,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-msg { font-size: 14px; color: #fff; font-weight: 600; }
.toast-sub { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---- VIEWING WIDGET ---- */
.viewing-widget { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px; box-shadow: var(--shadow); width: fit-content; }

/* ---- UTILS ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-row { display: flex; align-items: center; gap: 12px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.gold-bullet { color: var(--gold); font-size: 10px; margin-right: 6px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .hero-h1 { font-size: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-section { grid-template-columns: 1fr; min-height: auto; overflow: hidden; }
  .hero-img-col { height: 300px; }
  .hero-content-col { padding: 40px 20px; max-width: 100%; }
  .hero-h1 { font-size: 36px; word-break: break-word; }
  .hero-sub { font-size: 14px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }
  .hero-btns .btn { flex: 1; min-width: 130px; text-align: center; justify-content: center; }
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-logo img.logo-icon { height: 34px; }
  .nav-logo-name { font-size: 17px; }
  .nav-logo-tagline { font-size: 9px; letter-spacing: 0.18em; }
  .nav-right { gap: 8px; }
  .nav-wa-btn { display: none; }
  .lang-toggle { font-size: 11px; }
  .lang-toggle .lang-opt { padding: 3px 8px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .includes-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; max-width: 480px; }
  .modal-img-col { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .size-chart-section { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- BULK POPUP ---- */
.bulk-popup-overlay {
  position: fixed; inset: 0; background: rgba(28,26,23,0.5);
  backdrop-filter: blur(3px); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.bulk-popup-overlay.open { opacity: 1; pointer-events: all; }

.bulk-popup {
  position: fixed; z-index: 1101;
  top: 50%; left: 50%; transform: translate(-50%, -46%) scale(0.96);
  width: min(480px, calc(100vw - 32px));
  background: var(--white); border-radius: 20px;
  box-shadow: 0 24px 72px rgba(28,26,23,0.18);
  padding: 40px 36px 32px;
  text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(.22,1,.36,1);
}
.bulk-popup.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.bulk-popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: var(--cream); color: var(--ink-m);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.bulk-popup-close:hover { background: var(--cream-d); }

.bulk-popup-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-bg); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.bulk-popup-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}

.bulk-popup-headline {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--ink);
  line-height: 1.25; margin-bottom: 14px;
}
.bulk-popup-price { color: var(--gold); }

.bulk-popup-body {
  font-size: 14px; color: var(--ink-m); line-height: 1.65;
  margin-bottom: 28px; max-width: 340px; margin-left: auto; margin-right: auto;
}

.bulk-popup-wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  background: #25D366; color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 15px 24px; border-radius: 12px;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-bottom: 14px;
}
.bulk-popup-wa-btn:hover { background: #1ebe5c; transform: translateY(-1px); }
.bulk-popup-wa-btn:active { transform: translateY(0); }

.bulk-popup-skip {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: var(--ink-l);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color 0.15s;
}
.bulk-popup-skip:hover { color: var(--ink-m); }

/* ---- PWA INSTALL BANNER ---- */
.pwa-banner {
  display: none; /* shown by JS only on mobile when installable */
  position: fixed;
  bottom: 20px; left: 50%; transform: translateX(-50%) translateY(80px);
  width: min(420px, calc(100vw - 32px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(28,26,23,0.14);
  padding: 14px 16px;
  align-items: center;
  gap: 12px;
  z-index: 1200;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), opacity 0.4s ease;
}
.pwa-banner.show {
  display: flex;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.pwa-banner-icon {
  width: 44px; height: 44px; border-radius: 10px;
  flex-shrink: 0; object-fit: contain;
  background: var(--cream); padding: 4px;
}
.pwa-banner-text {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.pwa-banner-text strong {
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.pwa-banner-text span {
  font-size: 11px; color: var(--ink-l);
}
.pwa-banner-install {
  background: var(--ink); color: #fff;
  border: none; border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s;
}
.pwa-banner-install:hover { background: var(--ink-m); }
.pwa-banner-close {
  background: none; border: none;
  color: var(--ink-l); font-size: 20px; line-height: 1;
  cursor: pointer; padding: 4px; flex-shrink: 0;
}

/* ============================================================
   PWA ANIMATED SPLASH SCREEN
   Only shown when launched from home screen (standalone mode)
   ============================================================ */
#splashScreen {
  display: none; /* JS enables it in standalone mode */
  position: fixed; inset: 0; z-index: 9999;
  overflow: hidden;
}
#splashScreen.active { display: flex; }
#splashScreen.fade-out {
  animation: splashFadeOut 0.7s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes splashFadeOut {
  to { opacity: 0; transform: scale(1.04); }
}

/* Deep dark gradient background */
.splash-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, #2a2720 0%, #1C1A17 55%, #111009 100%);
}

/* Floating gold particles */
.splash-particles { position: absolute; inset: 0; pointer-events: none; }
.splash-particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #B8922A;
  opacity: 0;
  animation: floatUp 4s ease-in infinite;
}
.splash-particles span:nth-child(1) { left: 15%; animation-delay: 0.2s;  animation-duration: 3.8s; }
.splash-particles span:nth-child(2) { left: 30%; animation-delay: 0.9s;  animation-duration: 4.2s; width:2px; height:2px; }
.splash-particles span:nth-child(3) { left: 55%; animation-delay: 0.4s;  animation-duration: 3.5s; }
.splash-particles span:nth-child(4) { left: 70%; animation-delay: 1.3s;  animation-duration: 4.5s; width:4px; height:4px; }
.splash-particles span:nth-child(5) { left: 82%; animation-delay: 0.7s;  animation-duration: 3.9s; width:2px; height:2px; }
.splash-particles span:nth-child(6) { left: 42%; animation-delay: 1.6s;  animation-duration: 4.1s; }
@keyframes floatUp {
  0%   { opacity: 0;    transform: translateY(100vh) scale(0.5); }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0;    transform: translateY(-20vh) scale(1.2); }
}

/* Centre content */
.splash-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 100%; height: 100%;
  gap: 0;
}

/* Logo + rings */
.splash-logo-wrap {
  position: relative;
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  animation: logoEntrance 0.8s cubic-bezier(.22,1,.36,1) 0.2s both;
}
@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.splash-logo {
  width: 110px; height: 110px;
  border-radius: 24px;
  position: relative; z-index: 2;
  animation: logoPulse 2.4s ease-in-out 1.2s infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1);    filter: brightness(1); }
  50%       { transform: scale(1.04); filter: brightness(1.12); }
}

.splash-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184, 146, 42, 0.35);
  animation: ringExpand 2.4s ease-out infinite;
}
.splash-ring-1 { width: 150px; height: 150px; animation-delay: 0.8s; }
.splash-ring-2 { width: 190px; height: 190px; animation-delay: 1.4s; border-color: rgba(184,146,42,0.18); }
@keyframes ringExpand {
  0%   { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Brand name */
.splash-text {
  text-align: center;
  animation: textReveal 0.9s cubic-bezier(.22,1,.36,1) 0.6s both;
  margin-bottom: 48px;
}
@keyframes textReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.splash-tagline {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8922A;
  animation: taglineFade 1s ease 1.2s both;
}
@keyframes taglineFade {
  from { opacity: 0; letter-spacing: 0.35em; }
  to   { opacity: 1; letter-spacing: 0.2em; }
}

/* Loading bar */
.splash-bar-wrap {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
  animation: barAppear 0.4s ease 1s both;
}
@keyframes barAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.splash-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #B8922A, #D4A843);
  border-radius: 2px;
  animation: barFill 1.6s cubic-bezier(.4,0,.2,1) 1s forwards;
}
@keyframes barFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* =============================================
   Language Toggle
   ============================================= */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 0.2s;
  flex-shrink: 0;
  user-select: none;
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-toggle .lang-opt {
  padding: 4px 10px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  color: var(--ink-f);
  line-height: 1;
}
.lang-toggle[data-current="en"] .lang-opt-en,
.lang-toggle[data-current="ar"] .lang-opt-ar {
  background: var(--ink);
  color: #fff;
}
/* RTL nav: logo stays left, links flip, buttons stay right */
[dir="rtl"] .nav-inner { flex-direction: row; }
[dir="rtl"] .nav-logo { flex-direction: row; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .hero-content-col { text-align: right; }
[dir="rtl"] .hero-btns { justify-content: flex-start; }
[dir="rtl"] .hero-h1 { font-family: 'Playfair Display', serif; }
[dir="rtl"] .ann-marquee-track { animation-name: ann-scroll-rtl; animation-direction: normal; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .rate-row { flex-direction: row-reverse; }
[dir="rtl"] .modal-box { direction: rtl; text-align: right; }
[dir="rtl"] .cart-drawer { direction: rtl; }
[dir="rtl"] .cart-sum-row { direction: rtl; }
[dir="rtl"] .sidebar-card { direction: rtl; text-align: right; }
[dir="rtl"] .form-field { text-align: right; }
[dir="rtl"] .form-input, [dir="rtl"] .form-select, [dir="rtl"] .form-textarea { text-align: right; }
[dir="rtl"] .order-form-card { direction: rtl; }
[dir="rtl"] .pricing-card { direction: rtl; text-align: right; }
[dir="rtl"] .pricing-features li { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .delivery-time-card { direction: rtl; text-align: right; }
[dir="rtl"] .rate-table { direction: rtl; }
[dir="rtl"] .addon-card { direction: rtl; flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .product-card-body { text-align: right; direction: rtl; }
[dir="rtl"] .product-card-footer { flex-direction: row-reverse; }
[dir="rtl"] .product-card-cta { flex-direction: row-reverse; }
[dir="rtl"] .bulk-popup { direction: rtl; text-align: right; }
[dir="rtl"] .bulk-popup-close { right: auto; left: 16px; }
[dir="rtl"] .ann-bar { direction: rtl; text-align: right; }
[dir="rtl"] .ann-close { right: auto; left: 12px; }
[dir="rtl"] .size-tbl, [dir="rtl"] .size-table { direction: rtl; }

/* Arabic font enhancement */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] .hero-h1,
[dir="rtl"] .section-title, [dir="rtl"] .display-title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── Zone: header row with locate button ── */
.cart-zone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cart-zone-header .cart-zone-label { margin-bottom: 0; }

.zone-locate-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.zone-locate-btn:hover { background: var(--cream); }
.zone-locate-btn svg { flex-shrink: 0; stroke: var(--gold); }
.zone-locate-btn.loading { opacity: .6; pointer-events: none; }

/* ── Mobile: show dropdown, hide chips ── */
.zone-chips-mobile { display: none; }

.zone-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.zone-select:focus { outline: none; border-color: var(--gold); }
[dir="rtl"] .zone-select {
  background-position: left 12px center;
  padding-right: 12px;
  padding-left: 32px;
}

@media (max-width: 768px) {
  .zone-chips-desktop { display: grid !important; }
  .zone-chips-mobile  { display: none !important; }
}

/* =============================================
   iOS PWA Install Banner
   ============================================= */
.pwa-ios-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  background: #1c1c1e;
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 18px 20px 28px;
  width: min(420px, 100vw);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.35);
  transition: transform 0.38s cubic-bezier(0.34,1.26,0.64,1);
}
.pwa-ios-banner.show {
  transform: translateX(-50%) translateY(0);
}
.pwa-ios-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pwa-ios-content {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pwa-ios-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}
.pwa-ios-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pwa-ios-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.pwa-ios-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.pwa-ios-share-icon {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 2px 5px;
  vertical-align: middle;
}
.pwa-ios-share-icon svg { stroke: #4fc3f7; }
/* Downward pointing arrow at bottom centre */
.pwa-ios-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1c1c1e;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Out-of-zone banner ── */
.out-of-zone-banner {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: #fff8ec;
  border: 1.5px solid #f0c040;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 10px 0 4px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.out-of-zone-banner.show {
  opacity: 1;
  transform: translateY(0);
}
.out-of-zone-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.2;
}
.out-of-zone-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.out-of-zone-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.out-of-zone-text span {
  font-size: 12px;
  color: var(--ink-l);
  line-height: 1.5;
}
.out-of-zone-close {
  flex-shrink: 0;
  background: #f0c040;
  border: none;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 10px;
  cursor: pointer;
  align-self: flex-start;
  white-space: nowrap;
  transition: background 0.15s;
}
.out-of-zone-close:hover { background: #e0b030; }
[dir="rtl"] .out-of-zone-banner { direction: rtl; text-align: right; }

/* =============================================
   RTL (Arabic) — Comprehensive Fixes
   ============================================= */

/* 1. Hero section full RTL flip */
[dir="rtl"] .hero-section { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats { justify-content: flex-end; }
[dir="rtl"] .hero-img-col { order: -1; }

/* 2. Includes section */
[dir="rtl"] .includes-grid { direction: rtl; }
[dir="rtl"] .includes-items { direction: rtl; }

/* 3. Addon section */
[dir="rtl"] .addon-grid { direction: rtl; }
[dir="rtl"] .addon-card-body { text-align: right; }

/* 4. Cart drawer — full RTL */
[dir="rtl"] .cart-drawer { left: 0; right: auto; border-left: none; border-right: 1px solid var(--border); }
[dir="rtl"] .cart-drawer-header { direction: rtl; }
[dir="rtl"] .cart-item { direction: rtl; }
[dir="rtl"] .cart-item-info { text-align: right; }
[dir="rtl"] .cart-item-foot { flex-direction: row-reverse; }
[dir="rtl"] .cart-zone-header { flex-direction: row-reverse; }
[dir="rtl"] .cart-zone-grid { direction: rtl; }
[dir="rtl"] .cart-summary { direction: rtl; }
[dir="rtl"] .pay-section { direction: rtl; }
[dir="rtl"] .pay-bulk-note { direction: rtl; }
[dir="rtl"] .pay-btn { direction: rtl; }

/* 5. Modal RTL fixes */
[dir="rtl"] .modal-img-col { order: 1; }
[dir="rtl"] .modal-body-col { order: 0; text-align: right; direction: rtl; }
[dir="rtl"] .modal-tabs { justify-content: flex-end; }
[dir="rtl"] .modal-size-btns { justify-content: flex-end; }
[dir="rtl"] .modal-qty-row { justify-content: flex-end; }
[dir="rtl"] .modal-velvet { flex-direction: row-reverse; }
[dir="rtl"] .modal-price { text-align: right; direction: rtl; }

/* 6. Product modal price — fix "total" label in Arabic */
[dir="rtl"] .modal-price span { direction: rtl; }

/* 7. Navigation — logo stays LTR (icon left, text right of icon) */
[dir="rtl"] .nav-logo { flex-direction: row; }
[dir="rtl"] .nav-logo-text { text-align: left; }

/* 8. Section headers */
[dir="rtl"] .eyebrow { text-align: right; letter-spacing: 0; }
[dir="rtl"] .section-title { text-align: right; }
[dir="rtl"] .display-title { text-align: right; }
[dir="rtl"] .lead { text-align: right; }

/* 9. Includes buttons row */
[dir="rtl"] .gap-row { justify-content: flex-start; }

/* 10. Footer */
[dir="rtl"] .footer-links { text-align: right; }
[dir="rtl"] .footer-links li { text-align: right; }
[dir="rtl"] .footer-copy { text-align: right; }
[dir="rtl"] .footer-social { direction: ltr; }
[dir="rtl"] .footer-col-title { text-align: right; }

/* 11. Announcement bar close button */
[dir="rtl"] .ann-close { right: auto; left: 12px; }
[dir="rtl"] .ann-static { direction: rtl; }

/* 12. Bulk banner */
[dir="rtl"] .banner-dark { direction: rtl; }
[dir="rtl"] .banner-dark .eyebrow { text-align: center; }
[dir="rtl"] .viewing-widget { direction: rtl; }

/* 13. Pricing page */
[dir="rtl"] .pricing-card .pricing-cta { direction: rtl; }
[dir="rtl"] .pricing-range { text-align: right; }
[dir="rtl"] .pricing-per { text-align: right; }
[dir="rtl"] .pricing-price { text-align: right; }

/* 14. Delivery section */
[dir="rtl"] .delivery-grid { direction: rtl; }
[dir="rtl"] .delivery-times { direction: rtl; }
[dir="rtl"] .rate-area { text-align: right; }
[dir="rtl"] .rate-fee { text-align: left; }

/* 15. Order form */
[dir="rtl"] .order-grid { direction: rtl; }
[dir="rtl"] .form-grid-2 { direction: rtl; }
[dir="rtl"] .form-step-label { text-align: right; }
[dir="rtl"] .form-submit { direction: rtl; }
[dir="rtl"] .form-wa-alt { text-align: right; }
[dir="rtl"] .qty-control { flex-direction: row-reverse; }

/* 16. Size chart table */
[dir="rtl"] .size-table th, [dir="rtl"] .size-table td { text-align: right; }
[dir="rtl"] .size-note { text-align: right; }

/* 17. Collections page header */
[dir="rtl"] .col-page-sub { text-align: right; }

/* 18. Modal add button — fix Arabic split on · */
[dir="rtl"] .modal-add-btn { direction: rtl; }

/* 19. Sadad modal */
[dir="rtl"] .sadad-modal-box { direction: rtl; }
[dir="rtl"] .sadad-modal-header { flex-direction: row-reverse; }
[dir="rtl"] .sadad-modal-close { right: auto; left: 16px; }
[dir="rtl"] .sadad-field { text-align: right; }
[dir="rtl"] .sadad-field-row { direction: rtl; }
[dir="rtl"] .sadad-secure-note { direction: rtl; }

/* 20. Sidebar on order page */
[dir="rtl"] .sidebar-set-item { flex-direction: row-reverse; }
[dir="rtl"] .sidebar-set-name { text-align: right; }
[dir="rtl"] .sidebar-price-row { flex-direction: row-reverse; }
[dir="rtl"] .sidebar-price-tier { text-align: right; }
[dir="rtl"] .sidebar-price-amount { text-align: left; }

/* RTL cart drawer — slides from left */
[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
}
[dir="rtl"] .cart-drawer.open { transform: translateX(0); }

/* RTL modal — image on right, content on left */
[dir="rtl"] .modal-box { flex-direction: row-reverse; }

/* RTL hero — fix image/content order */
[dir="rtl"] .hero-section { flex-direction: row-reverse; }

/* =============================================
   RTL FIXES v2 — Hero grid + Mobile marquee
   ============================================= */

/* Hero: uses CSS grid, not flex — reverse column order for RTL */
[dir="rtl"] .hero-section {
  flex-direction: unset; /* cancel incorrect flex rule */
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
[dir="rtl"] .hero-content-col {
  order: 1;
  padding: 80px 80px 80px 64px;
  text-align: right;
}
[dir="rtl"] .hero-img-col {
  order: 0;
}
/* Flip gradient to come from right side in RTL */
[dir="rtl"] .hero-img-gradient {
  left: auto;
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
[dir="rtl"] .hero-btns {
  justify-content: flex-start;
}
[dir="rtl"] .hero-stats {
  justify-content: flex-end;
}

/* ── SADAD iframe modal ── */
#sadadModal.iframe-mode #sadadModal .sadad-modal-box {
  max-width: 700px;
  height: 90vh;
}
@media (max-width: 600px) {
  #sadadStep3 iframe {
    border-radius: 0 0 16px 16px;
  }
}

/* ── SADAD iframe full-height fix ── */
#sadadModal { padding: 16px 12px; }
#sadadStep3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
#sadadStep3 iframe {
  flex: 1;
  width: 100%;
  min-height: 580px;
  border: none;
  border-radius: 0 0 16px 16px;
  display: block;
}
.sadad-modal-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
/* When iframe is active, body has no padding */
#sadadStep1, #sadadStep4 {
  padding: 24px;
}
#sadadStep2 {
  padding: 24px;
}
@media (max-width: 600px) {
  .sadad-modal-box {
    height: 95vh !important;
    max-height: 95vh !important;
    border-radius: 16px !important;
  }
  #sadadStep3 iframe {
    min-height: 400px;
  }
}

/* ── Powered by Bayt Al Khidmah ── */
.footer-powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 16px;
  margin-top: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bak-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.footer-powered-by strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ── RTL comprehensive fixes ── */
[dir="rtl"] body {
  font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}
[dir="rtl"] .hero-section {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-stats {
  justify-content: flex-start;
}
[dir="rtl"] .hero-tagline {
  text-align: right;
}
[dir="rtl"] .section-title,
[dir="rtl"] .eyebrow {
  text-align: right;
}
[dir="rtl"] .includes-grid {
  direction: rtl;
}
[dir="rtl"] .include-item {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .include-num {
  margin-left: 0;
  margin-right: 0;
}
[dir="rtl"] .gap-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-powered-by {
  direction: rtl;
}
[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-col-title,
[dir="rtl"] .footer-tagline,
[dir="rtl"] .footer-links {
  text-align: right;
}
[dir="rtl"] .cart-zone-header {
  flex-direction: row-reverse;
}
[dir="rtl"] .cart-zone-grid {
  direction: rtl;
}
[dir="rtl"] .zone-chip {
  text-align: right;
}
[dir="rtl"] .out-of-zone-banner {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .nav-logo {
  flex-direction: row;
}
[dir="rtl"] .nav-logo-text {
  text-align: left;
}
[dir="rtl"] .product-card-body {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .addon-card-body {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .includes-image-col {
  order: 1;
}
[dir="rtl"] .includes-grid > div:not(.includes-image-col) {
  order: 0;
}
[dir="rtl"] .cart-drawer-header {
  flex-direction: row-reverse;
}
[dir="rtl"] .modal-gallery-dots {
  direction: ltr;
}
[dir="rtl"] .pay-bulk-note {
  text-align: right;
}
[dir="rtl"] .viewing-widget {
  direction: rtl;
}
[dir="rtl"] .banner-dark .text-center {
  direction: rtl;
}
[dir="rtl"] .ann-bar .ann-close {
  left: 12px;
  right: auto;
}

/* ── Locate button pulse ── */
.zone-locate-pulse {
  animation: locatePulse 2s ease-in-out infinite;
}
.zone-locate-pulse.detected {
  color: #1a8a4a;
  animation: none;
}
.zone-locate-pulse.detected svg { stroke: #1a8a4a; }

@keyframes locatePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}


/* ── Zone delivery cards ── */
.zone-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zone-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.zone-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.zone-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.zone-card-fee {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}
.zone-card-locations {
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--ink-l);
  line-height: 1.7;
}
[dir="rtl"] .zone-card-header { flex-direction: row-reverse; }
[dir="rtl"] .zone-card-locations { text-align: right; direction: rtl; }

/* Zone card language switching */
[dir="rtl"] .zone-ltr { display: none !important; }
[dir="rtl"] .zone-rtl { display: block !important; }
[dir="ltr"] .zone-ltr { display: block !important; }
[dir="ltr"] .zone-rtl { display: none !important; }

/* ── Zone picker ── */
.zone-selected-display {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer; background: var(--cream);
  color: var(--ink); transition: border-color .15s; margin-bottom: 6px;
}
.zone-selected-display:hover { border-color: var(--gold); }
.zone-selected-display.detected { border-color: #1a8a4a; color: #1a8a4a; }

.zone-pick-btn {
  width: 100%; padding: 9px; border: 1.5px solid var(--gold); border-radius: 9px;
  background: transparent; color: var(--gold); font-size: 12px; font-weight: 700;
  cursor: pointer; font-family: inherit; letter-spacing: .5px;
  transition: background .15s;
}
.zone-pick-btn:hover { background: rgba(201,168,76,.08); }

/* Overlay */
.zone-picker-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.55); align-items: flex-end;
}
.zone-picker-overlay.open { display: flex; }

/* Bottom sheet */
.zone-picker-sheet {
  background: #fff; border-radius: 20px 20px 0 0; width: 100%;
  max-height: 85vh; display: flex; flex-direction: column;
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.zone-picker-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.zone-picker-title { font-size: 16px; font-weight: 700; }
.zone-picker-close {
  background: var(--cream); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 18px; line-height: 1;
  cursor: pointer; color: var(--ink); display: flex; align-items: center; justify-content: center;
}
.zone-picker-body {
  overflow-y: auto; padding: 12px 16px 32px; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}

/* Zone group card */
.zone-pick-group-btn {
  width: 100%; text-align: left; background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 13px;
  padding: 14px 16px; cursor: pointer; font-family: inherit;
  transition: border-color .15s; display: block;
}
.zone-pick-group-btn:hover { border-color: var(--gold); }
.zone-pick-group-btn.active { border-color: var(--ink); background: var(--ink); }
.zone-pick-group-btn.active .zone-pick-group-name { color: #fff; }
.zone-pick-group-btn.active .zone-pick-group-fee { color: var(--gold-l); }
.zone-pick-group-btn.active .zone-pick-group-areas { color: rgba(255,255,255,.6); }

.zone-pick-group-info {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.zone-pick-group-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.zone-pick-group-fee  { font-size: 15px; font-weight: 700; color: var(--gold); }
.zone-pick-group-areas {
  font-size: 12px; color: var(--ink-l); line-height: 1.6; text-align: left;
}

[dir="rtl"] .zone-picker-header { flex-direction: row-reverse; }
[dir="rtl"] .zone-pick-group-btn { text-align: right; }
[dir="rtl"] .zone-pick-group-info { flex-direction: row-reverse; }
[dir="rtl"] .zone-pick-group-areas { text-align: right; }
[dir="rtl"] .zone-selected-display { flex-direction: row-reverse; }

/* ── Sash name validation warning ── */
.sash-warning {
  font-size: 11.5px;
  color: #b87000;
  background: #fff8ec;
  border: 1px solid #f0c070;
  border-radius: 6px;
  padding: 5px 9px;
  margin-top: 5px;
  display: none;
  line-height: 1.4;
}

/* ── Sticky total bar in cart ── */
.cart-sticky-total {
  position: sticky;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 -3px 12px rgba(0,0,0,.06);
}
.cart-sticky-left {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.cart-sticky-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-l);
  line-height: 1;
}
.cart-sticky-amount {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.cart-sticky-btns {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}
.sticky-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; border: none;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: opacity .15s;
}
.sticky-btn:hover { opacity: .88; }
.sticky-wa    { background: #25D366; color: #fff; flex: 0 0 44px; padding: 10px; }
.sticky-sadad { background: #3b5bdb; color: #fff; flex: 1; }
[dir="rtl"] .cart-sticky-total { flex-direction: row-reverse; }
[dir="rtl"] .cart-sticky-btns  { flex-direction: row-reverse; }

.cart-sum-row.total { margin-top: 4px; }

/* ── Zone picker search ── */
.zone-search-wrap {
  padding: 12px 16px 4px;
  flex-shrink: 0;
}
.zone-search-input {
  width: 100%;
  padding: 9px 36px 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.zone-search-input:focus { outline: none; border-color: var(--gold); }
.zone-pick-group.hidden { display: none; }
.zone-pick-group-areas .highlight { background: #fef3cd; border-radius: 2px; }
[dir="rtl"] .zone-search-input { background-position: 10px center; padding: 9px 12px 9px 36px; }
