/* =====================================================================
   মিষ্টি ঘর - মূল স্টাইলশিট
   ঐতিহ্যবাহী মিষ্টির দোকানের রঙ: গাঢ় লাল, সোনালি, ক্রিম
   ===================================================================== */

:root {
  color-scheme: light;
  --maroon: #7b1e1e;
  --maroon-dk: #5c1414;
  --maroon-soft: #a03535;
  --gold: #c99a2e;
  --gold-lt: #e8c978;
  --gold-pale: #f7e9c6;
  --cream: #fff6e5;
  --paper: #fffdf7;
  --ink: #3e2a20;
  --ink-soft: #6f5949;
  --line: #e8d9b8;
  --green: #1f6b4a;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 40px -26px rgba(62, 42, 32, .5);
  --shadow-sm: 0 8px 20px -14px rgba(62, 42, 32, .45);
  --font-body: 'Hind Siliguri', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Baloo Da 2', 'Hind Siliguri', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201, 154, 46, .18) 1px, transparent 0);
  background-size: 22px 22px;
}

img { max-width: 100%; display: block; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-dk); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.3; margin: 0 0 .5em; color: var(--maroon-dk); }
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(24px, 3vw, 33px); }
h3 { font-size: 21px; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 22px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------------------------------------------------------------- বাটন */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 600; cursor: pointer; text-align: center;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--maroon); color: #ffe9b8; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--maroon-dk); color: #fff3d2; }
.btn-gold { background: linear-gradient(160deg, var(--gold-lt), var(--gold)); color: #4a2f10; }
.btn-gold:hover { background: linear-gradient(160deg, var(--gold), #b3872a); color: #3a2409; }
.btn-outline { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn-outline:hover { background: var(--maroon); color: #ffe9b8; }
.btn-ghost { border-color: var(--line); background: var(--paper); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-sm { padding: 8px 15px; font-size: 15px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ------------------------------------------------------------- টপ স্ট্রিপ */
.topbar {
  background: var(--maroon-dk);
  color: #f2d9a8;
  font-size: 14.5px;
  border-bottom: 2px solid var(--gold);
}
.topbar .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px;
  padding-top: 7px; padding-bottom: 7px;
}
.topbar a { color: #f7e3b6; }
.topbar a:hover { color: #fff; }
.topbar .spacer { flex: 1 1 auto; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }

.lang-toggle { display: inline-flex; border: 1px solid rgba(247, 227, 182, .5); border-radius: 999px; overflow: hidden; }
.lang-toggle a { padding: 2px 12px; font-size: 14px; font-weight: 600; }
.lang-toggle a.active { background: var(--gold); color: #4a2f10; }

/* ---------------------------------------------------------------- হেডার */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 10px 26px -20px rgba(62, 42, 32, .8); }
.header-inner {
  display: flex; align-items: center; gap: 18px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 56px; height: 56px; }
.brand-name {
  font-family: var(--font-display); font-size: 27px; font-weight: 700;
  color: var(--maroon); line-height: 1.1;
}
.brand-tag { display: block; font-size: 13px; color: var(--ink-soft); letter-spacing: .02em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 9px 13px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.nav a:hover { background: var(--gold-pale); color: var(--maroon-dk); }
.nav a.active { color: var(--maroon); }
.nav a.active::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-link {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; background: var(--maroon); color: #ffe9b8;
  font-weight: 600;
}
.cart-link:hover { background: var(--maroon-dk); color: #fff3d2; }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 5px; border-radius: 999px;
  background: var(--gold); color: #4a2f10; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.menu-toggle {
  display: none; width: 46px; height: 42px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--paper); cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; position: relative; width: 20px; height: 2px; margin: 0 auto;
  background: var(--maroon); border-radius: 2px;
}
.menu-toggle span::before { content: ''; position: absolute; top: -6px; }
.menu-toggle span::after { content: ''; position: absolute; top: 6px; }

/* --------------------------------------------------------- উৎসব ব্যানার */
.festival-strip {
  background: linear-gradient(100deg, var(--gold), var(--gold-lt) 45%, var(--gold));
  color: #4a2f10; font-weight: 600; text-align: center;
  padding: 9px 20px; font-size: 15.5px;
  border-bottom: 1px solid #b3872a;
}
.festival-strip strong { color: var(--maroon-dk); }

/* ------------------------------------------------------------------ হিরো */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 201, 120, .55), transparent 45%),
    linear-gradient(180deg, #fffaf0, var(--cream));
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  padding: 56px 20px 62px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  padding: 5px 14px; border-radius: 999px; background: var(--gold-pale);
  border: 1px solid var(--gold); color: #6b4a12;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
}
.hero h1 { margin-bottom: 14px; }
.hero p.lead { font-size: 18.5px; color: var(--ink-soft); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-art { position: relative; }
.hero-art img { width: 100%; filter: drop-shadow(0 22px 30px rgba(92, 20, 20, .25)); }
.hero-note {
  position: absolute; bottom: 8px; left: 0; background: var(--paper);
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 8px 14px; font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------------- সেকশন */
.section { padding: 58px 0; }
.section.tight { padding: 40px 0; }
.section.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-head p { color: var(--ink-soft); margin: 0; }
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 auto 12px; color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ''; width: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament span { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }

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

/* ------------------------------------------------------------ কার্ড সাধারণ */
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
.card-pad { padding: 22px; }

/* --------------------------------------------------------- প্রোডাক্ট কার্ড */
.product-card {
  display: flex; flex-direction: column; position: relative;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-media {
  position: relative; background: linear-gradient(170deg, #fff8e8, #f7ebd4);
  border-bottom: 1px solid var(--line); padding: 16px;
}
.product-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { margin: 0 0 4px; font-size: 20px; }
.product-body .short { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 14px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--maroon); }
.price-old { color: var(--ink-soft); text-decoration: line-through; font-size: 15px; }
.price-unit { color: var(--ink-soft); font-size: 14.5px; }
.product-actions { display: flex; gap: 8px; margin-top: 14px; }
.product-actions .btn { flex: 1; }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 11px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: var(--maroon); color: #ffe4ad;
}
.badge.gold { background: linear-gradient(150deg, var(--gold-lt), var(--gold)); color: #4a2f10; }
.badge.right { left: auto; right: 12px; }
.badge.grey { background: #7a6a5c; color: #fff; }

/* -------------------------------------------------------- ক্যাটাগরি কার্ড */
.cat-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: border-color .2s ease, transform .18s ease;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.cat-card img { width: 62px; height: 62px; object-fit: contain; flex: 0 0 auto; }
.cat-card strong { display: block; font-family: var(--font-display); font-size: 19px; color: var(--maroon-dk); }
.cat-card span { font-size: 14.5px; color: var(--ink-soft); }

/* ------------------------------------------------------------ কেন আমরা */
.why-item { text-align: center; padding: 8px 6px; }
.why-icon {
  width: 74px; height: 74px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; font-size: 32px;
  background: radial-gradient(circle at 35% 30%, #fff6e0, var(--gold-pale));
  border: 1px solid var(--gold);
}
.why-item h3 { font-size: 19px; margin-bottom: 6px; }
.why-item p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* -------------------------------------------------------------- স্ট্যাটস */
.stats {
  background: var(--maroon); color: #f7e3b6;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
}
.stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-top: 34px; padding-bottom: 34px; text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 33px; font-weight: 700; color: var(--gold-lt); }
.stat-label { font-size: 15px; opacity: .92; }

/* --------------------------------------------------------------- রিভিউ */
.stars { letter-spacing: 2px; color: #d9cbb5; }
.stars .star.on { color: var(--gold); }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 18px; box-shadow: var(--shadow-sm); position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: -6px; right: 18px;
  font-family: Georgia, serif; font-size: 66px; color: var(--gold-pale);
}
.review-card p { position: relative; margin: 10px 0 14px; }
.review-who { font-weight: 700; color: var(--maroon-dk); }
.review-where { font-size: 14.5px; color: var(--ink-soft); }

.rating-summary {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--gold-pale); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 26px;
}
.rating-big { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--maroon); line-height: 1; }

/* স্টার নির্বাচন (রিভিউ ফর্ম) */
.star-picker { display: flex; gap: 4px; }
.star-picker input { position: absolute; opacity: 0; pointer-events: none; }
.star-picker label {
  font-size: 30px; line-height: 1; color: #d9cbb5; cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}
.star-picker label:hover { transform: scale(1.12); }
.star-picker label.lit { color: var(--gold); }

/* -------------------------------------------------------------- গ্যালারি */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: linear-gradient(170deg, #fff8e8, #f4e7cf);
  cursor: zoom-in; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 12px; }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 8px 12px; font-size: 14.5px;
  background: linear-gradient(0deg, rgba(92, 20, 20, .88), rgba(92, 20, 20, 0));
  color: #ffeec6;
}
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(45, 24, 16, .88); padding: 30px;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(880px, 92vw); max-height: 82vh; background: var(--cream); border-radius: var(--radius); padding: 16px; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px;
  border-radius: 50%; border: 0; background: var(--gold); color: #4a2f10;
  font-size: 22px; cursor: pointer;
}

/* -------------------------------------------------------------- ম্যাপ */
.map-wrap {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--paper);
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ------------------------------------------------------------- ফর্ম */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 15.5px; }
.field label .req { color: var(--maroon); }
.field .help { font-size: 14px; color: var(--ink-soft); }
input[type=text], input[type=tel], input[type=email], input[type=number],
input[type=date], input[type=password], input[type=search], select, textarea {
  width: 100%; padding: 11px 13px; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer;
  font-size: 15.5px;
}
.radio-pill input { accent-color: var(--maroon); }
.radio-pill:hover { border-color: var(--gold); }

/* ------------------------------------------------------------ অ্যালার্ট */
.alert {
  border-radius: var(--radius-sm); padding: 13px 16px; margin: 0 0 18px;
  border: 1px solid; font-size: 16px;
}
.alert-success { background: #e9f6ee; border-color: #b3d8c1; color: #17563a; }
.alert-error { background: #fbe7e7; border-color: #e2b3b3; color: #7d1f1f; }
.alert-info { background: var(--gold-pale); border-color: var(--gold); color: #6b4a12; }

/* ------------------------------------------------------------- টেবিল */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
table.data { width: 100%; border-collapse: collapse; min-width: 620px; }
table.data th, table.data td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--gold-pale); color: #5d3f10; font-size: 15px; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td.right, table.data th.right { text-align: right; }
.cart-thumb { width: 62px; height: 62px; object-fit: contain; background: #fff8e8; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.qty-input { width: 92px; }

.summary-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; }
.summary-row.total {
  border-top: 1px dashed var(--gold); margin-top: 8px; padding-top: 12px;
  font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--maroon);
}
.summary-row .free { color: var(--green); font-weight: 600; }

/* ------------------------------------------------------- অর্ডার টাইমলাইন */
.timeline { list-style: none; margin: 18px 0 0; padding: 0; }
.timeline li {
  position: relative; padding: 0 0 22px 34px; color: var(--ink-soft);
}
.timeline li::before {
  content: ''; position: absolute; left: 6px; top: 6px; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; border: 2px solid var(--line);
}
.timeline li::after {
  content: ''; position: absolute; left: 12px; top: 20px; bottom: 0; width: 2px; background: var(--line);
}
.timeline li:last-child::after { display: none; }
.timeline li.done { color: var(--ink); font-weight: 600; }
.timeline li.done::before { background: var(--gold); border-color: var(--maroon); }
.timeline li.current::before { box-shadow: 0 0 0 5px rgba(201, 154, 46, .3); }

.status-pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; border: 1px solid;
}
.status-pending { background: #fff3d6; border-color: var(--gold); color: #6b4a12; }
.status-confirmed { background: #e6f0fb; border-color: #a9c8e8; color: #1d4c7a; }
.status-preparing { background: #fdeede; border-color: #e5bd91; color: #7d4a15; }
.status-ready { background: #eae6fb; border-color: #bdb2e6; color: #443a7d; }
.status-delivered { background: #e9f6ee; border-color: #b3d8c1; color: #17563a; }
.status-cancelled { background: #fbe7e7; border-color: #e2b3b3; color: #7d1f1f; }

/* --------------------------------------------------------------- সিটিএ */
.cta-band {
  background: linear-gradient(120deg, var(--maroon), var(--maroon-soft));
  color: #ffeec6; border-radius: var(--radius); padding: 34px 32px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 22px; align-items: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #ffeec6; margin-bottom: 6px; }
.cta-band p { margin: 0; opacity: .95; }

/* ------------------------------------------------------------- খালি অবস্থা */
.empty-state {
  text-align: center; padding: 54px 24px; background: var(--paper);
  border: 1px dashed var(--gold); border-radius: var(--radius);
}
.empty-state img { width: 120px; margin: 0 auto 16px; opacity: .9; }

/* --------------------------------------------------------------- পেজ হেড */
.page-head {
  background: linear-gradient(180deg, #fffaf0, var(--cream));
  border-bottom: 1px solid var(--line); padding: 40px 0 34px; text-align: center;
}
.page-head h1 { margin-bottom: 6px; }
.page-head p { color: var(--ink-soft); margin: 0; }
.crumbs { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 10px; }
.crumbs a { color: var(--maroon); }

/* -------------------------------------------------------------- টুলবার */
.toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 26px;
}
.toolbar form { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; width: 100%; }
.toolbar .grow { flex: 1 1 220px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); font-size: 15px; font-weight: 600; color: var(--ink);
}
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--maroon); border-color: var(--maroon); color: #ffe9b8; }

/* --------------------------------------------------------------- ফুটার */
.site-footer {
  margin-top: 56px; background: var(--maroon-dk); color: #f0dcb4;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 30px;
  padding: 44px 0 30px;
}
.site-footer h4 {
  color: var(--gold-lt); font-size: 18px; margin: 0 0 12px;
  font-family: var(--font-display);
}
.site-footer a { color: #f0dcb4; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand strong { font-family: var(--font-display); font-size: 23px; color: var(--gold-lt); }
.social-row { display: flex; gap: 10px; margin-top: 12px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(247, 227, 182, .12); border: 1px solid rgba(247, 227, 182, .3);
  font-size: 15px; font-weight: 700;
}
.social-row a:hover { background: var(--gold); color: #4a2f10; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(247, 227, 182, .22); padding: 14px 0 18px;
  font-size: 14.5px; display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center;
}
.footer-bottom .spacer { flex: 1 1 auto; }

/* ---------------------------------------------------------- ফ্লোটিং ও টোস্ট */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 999px; background: #128c7e; color: #fff;
  font-weight: 700; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5);
}
.wa-float:hover { background: #0d6e63; color: #fff; }
.toast-wrap { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 250; display: grid; gap: 8px; }
.toast {
  background: var(--maroon-dk); color: #ffeec6; padding: 12px 20px;
  border-radius: 999px; border: 1px solid var(--gold); font-weight: 600;
  box-shadow: var(--shadow); animation: toast-in .25s ease;
}
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------ স্ক্রল রিভিল */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------- রেসপনসিভ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .menu-toggle { display: block; order: 3; }
  .nav {
    order: 4; margin-left: 0; width: 100%; display: none; flex-direction: column;
    align-items: stretch; gap: 2px; padding: 10px 0 14px; border-top: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 12px; }
  .nav a.active::after { display: none; }
  .header-inner { flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .brand img { width: 46px; height: 46px; }
  .brand-name { font-size: 22px; }
  .brand-tag { display: none; }
  .section { padding: 42px 0; }
  .hide-sm { display: none !important; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}

/* ----------------------------------------------------------------- প্রিন্ট */
@media print {
  .topbar, .site-header, .site-footer, .wa-float, .festival-strip,
  .no-print, .toast-wrap { display: none !important; }
  body { background: #fff; }
  .card, .summary-box, .table-wrap { box-shadow: none; }
}

/* ------------------------------------------------ অতিরিক্ত লেআউট ও টুকিটাকি */
.product-actions form { flex: 1; display: flex; }
.product-actions form .btn { width: 100%; }
.toast.error { background: #7d1f1f; border-color: #e2b3b3; }

.layout-2 {
  display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 26px; align-items: start;
}
.sticky-side { position: sticky; top: 96px; }
.stack > * + * { margin-top: 14px; }
.row-gap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; flex-wrap: wrap; gap: 8px 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list strong { min-width: 136px; color: var(--maroon-dk); }

.pill-note {
  display: inline-block; background: var(--gold-pale); border: 1px solid var(--gold);
  color: #6b4a12; border-radius: var(--radius-sm); padding: 8px 14px; font-size: 15px;
}

.detail-media {
  background: linear-gradient(170deg, #fff8e8, #f7ebd4);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  position: relative; box-shadow: var(--shadow-sm);
}
.detail-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.qty-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; }

.process-step { display: flex; gap: 16px; align-items: flex-start; }
.process-num {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; background: var(--maroon); color: #ffe9b8;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.promise-list { list-style: none; padding: 0; margin: 0; }
.promise-list li { position: relative; padding: 6px 0 6px 32px; }
.promise-list li::before {
  content: '\2714'; position: absolute; left: 0; top: 6px;
  color: var(--green); font-weight: 700;
}

@media (max-width: 980px) {
  .layout-2 { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
}
