/* =========================================================
   HULLOR — ডিজাইন টোকেন (LIGHT MODE)
   ========================================================= */
:root {
  --bg: #faf7f0;          /* cream — page background */
  --bg-soft: #f1ece0;      /* soft off-white / warm ash — drawer, inputs */
  --panel: #ffffff;        /* white — cards, modals, elevated surfaces */
  --panel-2: #efe8d8;      /* ash — topbar, about, footer */
  --green: #1f4a37;
  --green-deep: #12261c;
  --green-light: #2e6b4d;
  --gold: #b3862f;         /* deep gold — primary accent, buttons, icons */
  --gold-light: #c8a24a;   /* mid gold — hover states */
  --gold-dim: #8a713a;     /* bronze gold — subtle borders, small labels */
  --ink: #2b2a24;          /* primary text — warm charcoal */
  --muted: #6d695c;        /* secondary text — ash grey-brown */
  --line: rgba(138, 113, 58, 0.22);
  --danger: #b1442c;

  --font-display: "Baloo Da 2", "Hind Siliguri", sans-serif;
  --font-body: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
  /* সংখ্যাবহুল জায়গার জন্য (দাম, কাউন্ট, টোটাল) — Noto Sans Bengali-তে বাংলা সংখ্যা সবচেয়ে স্পষ্ট দেখায় */
  --font-number: "Noto Sans Bengali", "Hind Siliguri", sans-serif;

  --radius: 2px;
  --container: 1200px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* কার্ট ড্রয়ার / চেকআউট মোডাল / প্রোডাক্ট মোডাল খোলা থাকলে পেছনের পেজ স্ক্রল হবে না */
body.scroll-lock {
  overflow: hidden;
  height: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar {
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 12px;
  color: var(--muted);
}
.topbar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; }
.topbar a.topbar-phone { color: var(--green-deep); font-weight: 600; font-family: var(--font-number); }
.topbar-scroll { display: flex; gap: 26px; overflow-x: auto; scrollbar-width: none; }
.topbar-scroll::-webkit-scrollbar { display: none; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
/* নোট: এখানে ইচ্ছাকৃতভাবে backdrop-filter ব্যবহার করা হয়নি —
   backdrop-filter/filter/transform কোনো ancestor-এ থাকলে সেটি তার
   position:fixed চাইল্ড (যেমন মোবাইলে মেনু .nav-links)-এর জন্য নতুন
   containing block তৈরি করে, ফলে মোবাইলে মেনু ভুল জায়গায় (হেডারের
   উপরে আটকে) দেখায়। তাই সলিড ব্যাকগ্রাউন্ড ব্যবহার করা হয়েছে। */
.nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--gold); }
.brand-word {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px;
  color: var(--muted);
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.icon-btn:hover { border-color: var(--gold); background: var(--panel-2); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--gold); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--panel);
  font-family: var(--font-number);
  font-size: 11px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(31, 74, 55, 0.10), transparent 55%),
    radial-gradient(ellipse at 10% 110%, rgba(179, 134, 47, 0.12), transparent 45%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 70% 20%, black, transparent 60%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.12;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero h1 span { color: var(--gold); }
.hero p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #ffffff; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border-color: var(--gold-dim); color: var(--ink); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }
.btn-block { display: flex; width: 100%; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

.hero-stats { display: flex; gap: 30px; }
.hero-stats div { border-left: 1px solid var(--line); padding-left: 14px; }
.hero-stats b { display: block; font-family: var(--font-number); font-size: 26px; color: var(--gold); }
.hero-stats span { font-size: 13px; color: var(--muted); }

.hero-tag-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

/* Hero image slider (3 slides) */
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.hero-slide-track:active { cursor: grabbing; }
.hero-slide { display: block; min-width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.hero-slide-dots {
  position: absolute;
  top: 18px; right: 18px;
  display: flex;
  gap: 7px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.55);
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-code-strip {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  display: block;
  background: rgba(18, 16, 10, 0.78);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  backdrop-filter: blur(4px);
  z-index: 3;
  transition: border-color 0.2s, color 0.2s;
}
.hero-code-strip:hover { border-color: var(--gold); color: var(--gold-light); }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 26px; height: 26px; stroke: var(--gold); flex-shrink: 0; }
.trust-item b { display: block; font-size: 14px; color: var(--ink); }
.trust-item span { font-size: 12.5px; color: var(--muted); }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section { padding: 76px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  margin: 8px 0 0;
  color: var(--ink);
}
.section-head p { color: var(--muted); margin: 8px 0 0; max-width: 50ch; }

/* =========================================================
   CATEGORY TABS
   ========================================================= */
.cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cat-tab {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--gold); color: var(--ink); }
.cat-tab.active { background: var(--gold); border-color: var(--gold); color: #ffffff; font-weight: 600; }

/* =========================================================
   PRODUCT GRID — "hang tag" card
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.p-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.p-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.p-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--panel-2); }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.p-card:hover .p-media img { transform: scale(1.05); }
.p-badge {
  font-family: var(--font-number);
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.p-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.p-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--gold-dim); text-transform: uppercase; }
.p-name { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.4; min-height: 44px; }
.p-code { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.p-price-row { display: flex; align-items: baseline; gap: 8px; }
.p-price { font-family: var(--font-number); font-weight: 700; font-size: 20px; color: var(--gold); }
.p-price-old { font-family: var(--font-number); font-size: 13px; color: var(--muted); text-decoration: line-through; }

.p-sizes { display: flex; gap: 6px; flex-wrap: wrap; }
.size-chip {
  min-width: 34px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--muted);
  background: transparent;
  text-align: center;
  transition: all 0.15s;
}
.size-chip:hover { border-color: var(--gold); color: var(--ink); }
.size-chip.selected { background: var(--gold); border-color: var(--gold); color: #ffffff; font-weight: 700; }

.p-dashline {
  border-top: 1px dashed var(--line);
  margin: 2px 0;
}
.p-btn-row { display: flex; gap: 8px; }
.btn-view-details {
  flex: 1;
  padding: 10px 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-view-details:hover { border-color: var(--gold); color: var(--ink); }
.add-cart-btn {
  flex: 1.4;
  padding: 10px 10px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.add-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: #ffffff; }
.add-cart-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* =========================================================
   ABOUT US
   ========================================================= */
.about-us {
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-us .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 70px 24px;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); margin: 0 0 16px; color: var(--ink); }
.about-text p { color: var(--muted); margin: 0 0 14px; max-width: 54ch; }
.about-text ul { display: grid; gap: 10px; margin-top: 20px; }
.about-text li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.about-text li svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   FEATURED SECTION FOOTER CTA
   ========================================================= */
.featured-cta { display: flex; justify-content: center; margin-top: 40px; }

/* =========================================================
   SHOP PAGE BANNER
   ========================================================= */
.shop-banner {
  padding: 56px 0 20px;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(31, 74, 55, 0.08), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.shop-banner .eyebrow { display: block; margin-bottom: 10px; }
.shop-banner h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px); margin: 0 0 10px; color: var(--ink); }
.shop-banner p { color: var(--muted); max-width: 56ch; margin: 0; }

/* =========================================================
   WHATSAPP BUTTON ACCENT
   ========================================================= */
.btn-whatsapp { background: #25D366; color: #0b1a10; }
.btn-whatsapp:hover { background: #33e478; }
.icon-btn.whatsapp svg { stroke: #1ea852; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--panel-2); border-top: 1px solid var(--line); padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand-word { font-size: 26px; color: var(--ink); }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 14px 0 0; max-width: 34ch; }
.footer h4 { font-size: 14px; color: var(--gold); margin: 0 0 16px; letter-spacing: 0.03em; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; gap: 10px; }

/* =========================================================
   CART DRAWER
   ========================================================= */
.overlay {
  position: fixed; inset: 0;
  background: rgba(24, 21, 12, 0.5);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  z-index: 95;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-family: var(--font-display); font-size: 20px; margin: 0; color: var(--ink); }
.drawer-close { background: none; border: none; color: var(--muted); width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.drawer-close:hover { color: var(--gold); background: var(--panel-2); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--muted); }
.cart-empty svg { width: 48px; height: 48px; stroke: var(--gold-dim); margin-bottom: 14px; }

.cart-item {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 66px; height: 82px; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
.cart-item-meta { font-size: 12.5px; color: var(--muted); margin: 0 0 8px; font-family: var(--font-mono); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 4px; }
.qty-stepper button { width: 26px; height: 26px; background: none; border: none; color: var(--gold); font-size: 15px; }
.qty-stepper span { width: 26px; text-align: center; font-size: 13px; font-family: var(--font-number); }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-price { font-size: 14px; color: var(--gold); font-weight: 600; font-family: var(--font-number); }
.remove-btn { background: none; border: none; color: var(--muted); font-size: 12px; text-decoration: underline; }
.remove-btn:hover { color: var(--danger); }

.drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 5px 0; }
.summary-row b { color: var(--ink); font-family: var(--font-number); }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-number); font-weight: 700; font-size: 20px; color: var(--gold); padding: 10px 0 16px; border-top: 1px dashed var(--line); margin-top: 6px; }

/* =========================================================
   CHECKOUT MODAL
   ========================================================= */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card {
  width: 100%;
  max-width: 620px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  transform: translateY(14px);
  transition: transform 0.3s ease;
}
.modal.open .modal-card { transform: translateY(0); }
.modal-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.9); border: 1px solid var(--line); color: var(--muted); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 20; }
.modal-close:hover { color: var(--gold); background: var(--panel-2); border-color: var(--gold); }
.modal-close svg { width: 18px; height: 18px; }
.modal-card h3 { font-family: var(--font-display); font-size: 24px; margin: 0 0 6px; color: var(--ink); }
.modal-card > p.hint { color: var(--muted); font-size: 13.5px; margin: 0 0 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 11px 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14.5px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 70px; }
.field-error { font-size: 12px; color: var(--danger); min-height: 14px; }

.order-summary-box {
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.order-summary-box .summary-row { font-size: 13.5px; }

.payment-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(31, 74, 55, 0.08);
  border: 1px solid var(--green-light);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 20px;
}
.payment-note svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }

.success-view { text-align: center; padding: 10px 0; }
.success-view .check-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-view .check-circle svg { width: 32px; height: 32px; stroke: var(--gold); }
.success-view h3 { margin-bottom: 8px; color: var(--ink); }
.success-view p { color: var(--muted); margin-bottom: 6px; }
.success-view .order-id { font-family: var(--font-mono); color: var(--gold); font-size: 15px; margin-bottom: 24px; display: inline-block; border: 1px dashed var(--gold-dim); padding: 8px 16px; border-radius: 5px; }

/* =========================================================
   PRODUCT DETAILS (QUICK VIEW) MODAL
   ========================================================= */
.pm-card {
  width: 100%;
  max-width: 760px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  position: relative;
  transform: translateY(14px);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}
.modal.open .pm-card { transform: translateY(0); }
.pm-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  background: var(--panel-2);
}
.pm-media img { width: 100%; height: 100%; object-fit: cover; }
#pmBadge {
  font-family: var(--font-number);
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
}
.pm-info { display: flex; flex-direction: column; }
#pmCat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--gold-dim); text-transform: uppercase; }
#pmName { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin: 8px 0 4px; line-height: 1.3; }
#pmCode { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.pm-price-row { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 14px; }
#pmPrice { font-family: var(--font-number); font-weight: 700; font-size: 26px; color: var(--gold); }
#pmOldPrice { font-family: var(--font-number); font-size: 14px; color: var(--muted); text-decoration: line-through; }
#pmDesc { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin: 0 0 16px; }

.pm-specs { border: 1px dashed var(--line); border-radius: 6px; padding: 4px 14px; margin-bottom: 18px; }
.pm-spec-row { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.pm-spec-row:last-child { border-bottom: none; }
.pm-spec-row b { color: var(--ink); text-align: right; font-weight: 500; }

.pm-size-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; display: block; }
#pmSizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pm-actions { margin-top: auto; }

@media (max-width: 720px) {
  .pm-card { grid-template-columns: 1fr; padding: 20px; max-height: 88vh; overflow-y: auto; }
}

/* =========================================================
   TOAST
   ========================================================= */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.toast {
  background: var(--panel);
  border: 1px solid var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(43, 42, 36, 0.18);
  animation: toast-in 0.25s ease;
}
.toast svg { width: 16px; height: 16px; stroke: var(--gold); }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px);} to { opacity:1; transform: translateY(0);} }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-tag-visual { max-width: 420px; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .about-us .container { grid-template-columns: 1fr; padding: 50px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar-item.hide-mobile { display: none; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    z-index: 55;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle {
    display: flex;
    width: 42px; height: 42px;
    align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: none; color: var(--ink);
  }
  .menu-toggle svg { width: 20px; height: 20px; stroke: var(--gold); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .p-btn-row { flex-direction: column; }
  .btn-view-details, .add-cart-btn { flex: none; width: 100%; }
  .trust-strip .container { grid-template-columns: 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 60px 0 50px; }
}