/* Wali Mart — storefront styles (orange brand) */
:root {
  --brand: #FF7A00;
  --brand-600: #E56E00;
  --brand-50: #FFF4E8;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f7f7f8;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; color: var(--ink); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.page { padding-top: 20px; padding-bottom: 40px; min-height: 60vh; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; padding: 10px 18px; font-weight: 600; cursor: pointer; border: 1px solid transparent; font-size: 14px; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-600); }
.btn-outline { background: #fff; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand-50); }
.btn-sm { padding: 7px 14px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Topbar / header */
.topbar { background: var(--brand); color: #fff; font-size: 12px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 6px 16px; }
.header { position: sticky; top: 0; z-index: 40; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; gap: 18px; padding: 12px 16px; }
.logo { font-size: 22px; font-weight: 800; }
.logo span { color: var(--brand); }
.search { flex: 1; display: flex; gap: 6px; }
.search input { flex: 1; border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; outline: none; }
.search input:focus { border-color: var(--brand); }
.search button { background: var(--brand); color: #fff; border: 0; border-radius: 8px; padding: 0 16px; font-weight: 600; cursor: pointer; }
.nav { display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 500; }
.cart-link { position: relative; }
.badge { position: absolute; top: -8px; right: -12px; background: var(--brand); color: #fff; border-radius: 999px; font-size: 11px; padding: 1px 6px; }
.admin-link { color: var(--brand); }
.catbar { border-top: 1px solid #f0f0f0; overflow: hidden; }
.catbar-inner { display: flex; gap: 20px; overflow-x: auto; padding: 8px 16px; font-size: 13px; color: var(--muted); }
.catbar-inner a { white-space: nowrap; }
.nav a:hover, .search + *, .footer a:hover { color: var(--brand); }
.nav a.active { color: #fff; background: #1a1a1a; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.nav a.active:hover { color: #fff; background: #000; }
/* Auto-scrolling category marquee (bold, dark gray) */
.catbar-marquee { overflow: hidden; padding: 9px 0; }
.catbar-track { display: inline-flex; gap: 26px; white-space: nowrap; width: max-content; animation: catbarMove 45s linear infinite; padding-left: 26px; }
.catbar-marquee:hover .catbar-track { animation-play-state: paused; }
.catbar-track a { font-size: 13.5px; font-weight: 700; color: #374151; white-space: nowrap; }
.catbar-track a:hover { color: var(--brand); }
@keyframes catbarMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Flash */
.flash { padding: 10px 14px; border-radius: 8px; margin: 10px 0; font-size: 14px; }
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Hero */
.hero { background: linear-gradient(90deg, var(--brand), #ff9a3d); color: #fff; border-radius: 16px; padding: 40px; margin-top: 12px; }
.hero h1 { margin: 0 0 10px; font-size: 30px; }
.hero p { margin: 0 0 18px; max-width: 520px; opacity: .95; }
.hero .btn { background: #fff; color: var(--brand); }

/* USP */
.usp { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 18px; }
.usp .card { display: flex; align-items: center; gap: 10px; font-weight: 500; }

/* Cards / grids */
.card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.section-title { font-size: 20px; font-weight: 700; margin: 28px 0 14px; }
.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-8 { grid-template-columns: repeat(8, 1fr); }

/* Category tiles */
.cat-tile { text-align: center; }
.cat-tile img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 8px; }
.cat-tile span { font-size: 12px; font-weight: 500; }

/* Product card */
.product-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product-card .pimg { position: relative; background: #fafafa; }
.product-card .pimg img { height: 170px; width: 100%; object-fit: cover; }
.discount-badge { position: absolute; top: 8px; left: 8px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.product-card .pbody { padding: 12px; display: flex; flex-direction: column; flex: 1; }
.pname { font-weight: 500; line-height: 1.3; min-height: 38px; }
.punit { font-size: 12px; color: var(--muted); margin: 2px 0; }
.stars { color: #f59e0b; font-size: 12px; }
.stars small { color: #9ca3af; }
.price-row { display: flex; align-items: center; gap: 8px; margin: 6px 0 10px; }
.price { font-weight: 700; }
.mrp { color: #9ca3af; text-decoration: line-through; font-size: 13px; }
.oos { background: #f3f4f6; color: #9ca3af; text-align: center; border-radius: 8px; padding: 8px; font-size: 14px; }

/* Layout helpers */
.layout-sidebar { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.muted { color: var(--muted); font-size: 14px; }
select, .input { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 9px 12px; outline: none; background: #fff; }
select:focus, .input:focus { border-color: var(--brand); }
.label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.field { margin-bottom: 12px; }

/* Cart / summary */
.summary { position: sticky; top: 90px; }
.row-between { display: flex; justify-content: space-between; align-items: center; }
.qty { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty a, .qty button { padding: 6px 12px; background: #fff; border: 0; cursor: pointer; font-size: 16px; color: var(--ink); }
.qty span { padding: 6px 10px; min-width: 34px; text-align: center; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto auto auto; gap: 12px; align-items: center; }
.cart-item img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th, .tbl td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl th { background: #fafafa; color: var(--muted); font-weight: 600; }
.pill { border-radius: 999px; background: var(--brand-50); color: var(--brand); font-size: 12px; font-weight: 600; padding: 3px 10px; display: inline-block; }

/* Auth */
.auth-box { max-width: 440px; margin: 40px auto; }
.tabs { display: flex; background: #f1f1f3; border-radius: 8px; padding: 4px; margin-bottom: 16px; }
.tabs a { flex: 1; text-align: center; padding: 8px; border-radius: 6px; font-size: 14px; }
.tabs a.active { background: #fff; font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.08); }

/* Tracking */
.track { display: flex; justify-content: space-between; }
.track .step { flex: 1; text-align: center; font-size: 11px; }
.track .dot { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 4px; background: #e5e7eb; color: #6b7280; font-size: 13px; }
.track .dot.on { background: var(--brand); color: #fff; }

/* Utility */
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.method { border: 1px solid var(--line); border-radius: 8px; padding: 12px; text-align: center; font-size: 14px; cursor: pointer; }
.method input { display: none; }
.method.sel { border-color: var(--brand); background: var(--brand-50); color: var(--brand); font-weight: 600; }

/* ---- Hero carousel ---- */
.hero-carousel { position: relative; margin-top: 12px; border-radius: 16px; overflow: hidden; }
.hero-track { display: flex; transition: transform .5s ease; }
.hero-slide { min-width: 100%; box-sizing: border-box; padding: 44px 40px; color: #fff; text-decoration: none; min-height: 210px; display: flex; align-items: center; }
.hero-slide h1 { margin: 0 0 8px; font-size: 30px; }
.hero-slide p { margin: 0 0 16px; opacity: .95; max-width: 520px; }
.hero-btn { background: #fff; color: var(--brand); }
.hero-slide.has-img { background-size: cover; background-position: center; background-repeat: no-repeat; color: #fff; }
.hero-slide.has-img .hero-text h1, .hero-slide.has-img .hero-text p { text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; gap: 6px; justify-content: center; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; }
.hero-dots button.on { background: #fff; }

/* ---- Strip banner (scrolling) ---- */
.strip-banner { background: #1a1a1a; color: #fff; overflow: hidden; white-space: nowrap; }
.strip-track { display: inline-flex; gap: 40px; padding: 8px 0; animation: strip 22s linear infinite; }
.strip-item { color: #fff; font-size: 13px; font-weight: 500; }
.strip-item:hover { color: #ffd8b0; }
@keyframes strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Category scroll ---- */
.cat-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.cat-scroll .cat-tile { min-width: 104px; padding: 14px 8px; }
.cat-ico { font-size: 30px; display: block; margin-bottom: 6px; }

/* ---- Filters ---- */
.filter-list { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.filter-list a { padding: 4px 6px; border-radius: 6px; color: #374151; }
.filter-list a.on, .filter-list a:hover { background: var(--brand-50); color: var(--brand); font-weight: 600; }

/* ---- Side banner ---- */
.side-banner { position: fixed; right: 0; top: 40%; z-index: 35; color: #fff; text-decoration: none; padding: 14px 16px; border-radius: 10px 0 0 10px; box-shadow: 0 6px 20px rgba(0,0,0,.2); max-width: 180px; }
.side-banner strong { display: block; font-size: 14px; }
.side-banner small { opacity: .9; font-size: 12px; }
.side-close { position: absolute; top: 2px; right: 6px; font-size: 16px; cursor: pointer; }

/* ---- WhatsApp float ---- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 54px; height: 54px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.25); }

/* ---- Popup ---- */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 60; display: flex; align-items: center; justify-content: center; padding: 16px; }
.popup-box { background: #fff; border-radius: 14px; max-width: 380px; width: 100%; padding: 28px; text-align: center; position: relative; }
.popup-box img { border-radius: 10px; margin-bottom: 12px; }
.popup-box h3 { margin: 4px 0; }
.popup-close, .side-close { cursor: pointer; }
.popup-close { position: absolute; top: 8px; right: 14px; font-size: 22px; color: #9ca3af; }

/* ---- Payment cards ---- */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px; }
.pay-card { border: 1px solid var(--line); border-radius: 10px; padding: 14px; font-size: 14px; position: relative; }
.pay-card.primary { border-color: var(--brand); background: var(--brand-50); }
.pay-card > div { margin: 2px 0; }
.pay-label { font-weight: 700; margin-bottom: 6px; }
.pay-badge { position: absolute; top: 10px; right: 10px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.pay-qr { width: 150px; height: 150px; object-fit: contain; display: block; margin: 8px 0; border: 1px solid var(--line); border-radius: 8px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-8 { grid-template-columns: repeat(4,1fr); }
  .usp { grid-template-columns: repeat(2,1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
  .search { order: 3; flex-basis: 100%; }   /* full-width search row on tablets/phones */
  .cart-item { grid-template-columns: 60px 1fr auto; }
  .hero-slide { padding: 30px 22px; min-height: 170px; }
  .hero-slide h1 { font-size: 22px; }
  .side-banner { display: none; }
  .topbar-inner span { font-size: 11px; }
}
/* ---- Bold store timing bar ---- */
.topbar-inner span { font-size: 14px; font-weight: 700; letter-spacing: .2px; }
.topbar { padding: 2px 0; }

/* ---- Bigger category icons ---- */
.cat-scroll .cat-tile { min-width: 118px; padding: 16px 8px; }
.cat-ico { font-size: 42px; display: block; margin-bottom: 8px; line-height: 1; }
.cat-tile span { font-size: 13px; font-weight: 600; }

/* ---- OTP + captcha box ---- */
.otp-code { background: var(--brand-50); border: 1px dashed var(--brand); border-radius: 10px; padding: 16px; text-align: center; margin-bottom: 16px; color: #7a3d00; }
.otp-code span { display: block; font-size: 30px; font-weight: 800; letter-spacing: 8px; color: var(--brand); margin: 6px 0; }
.otp-code small { color: #9a6a3a; }

/* ---- Promo cards row ---- */
.promo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.promo-card { display: flex; align-items: center; justify-content: space-between; border-radius: 14px; padding: 20px; color: #fff; overflow: hidden; min-height: 120px; }
.promo-text strong { display: block; font-size: 20px; }
.promo-text span { display: block; opacity: .95; margin: 4px 0; }
.promo-text em { font-style: normal; font-weight: 700; }
.promo-ico { width: 84px; height: 84px; border-radius: 12px; }

/* ---- Promo band ---- */
.promo-band { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(100deg, #0F9D58, #34c47a); color: #fff; border-radius: 14px; padding: 24px 28px; margin: 28px 0; flex-wrap: wrap; }
.promo-band h3 { margin: 0; font-size: 22px; }
.promo-band p { margin: 4px 0 0; opacity: .95; }
.promo-band .btn { background: #fff; color: #0F9D58; }

/* ---- Page (policy) body ---- */
.page-body h2 { margin-top: 0; }
.page-body p { line-height: 1.7; color: #333; }

/* ---- Dark footer ---- */
.footer { background: #0f1113; color: #cfd3d7; margin-top: 40px; border: 0; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1fr 1fr; gap: 26px; padding: 40px 16px 24px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 20px; padding: 12px 16px; border-top: 1px solid #23262a; color: #9aa0a6; font-size: 13px; }
.footer-contact a { color: #cfd3d7; display: inline; }
.footer-contact a:hover { color: var(--brand); }
.footer .footer-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer .footer-logo span { color: var(--brand); }
.footer p { color: #9aa0a6; font-size: 14px; line-height: 1.6; }
.footer h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.footer a { color: #cfd3d7; display: block; padding: 3px 0; font-size: 14px; }
.footer a:hover { color: var(--brand); }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; background: #23262a; color: #fff; display: grid; place-items: center; padding: 0; }
.socials a:hover { background: var(--brand); color: #fff; }
.footer-pay { color: #9aa0a6; font-size: 13px; padding: 16px; border-top: 1px solid #23262a; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-pay .fp-label { color: #fff; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; font-size: 12px; }
.footer-pay .pay-methods { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.footer-pay .pay-chip { color: var(--brand); background: rgba(255,122,0,.10); border: 1px solid rgba(255,122,0,.35); border-radius: 999px; padding: 5px 12px; font-size: 12.5px; font-weight: 700; }
.footer .copyright { border-top: 1px solid #23262a; color: #9aa0a6; padding: 16px; text-align: center; font-size: 13px; }
.footer .copyright a { display: inline; color: #cfd3d7; }
.footer .copyright a:hover { color: var(--brand); }

/* ---- Customer dashboard ---- */
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.dash-stat { text-align: center; padding: 18px; }
.dash-stat .n { font-size: 26px; font-weight: 800; color: var(--brand); }
.dash-stat .l { color: var(--muted); font-size: 13px; }
.dash-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

/* ---- Category image (bigger icons, full name on one line) ---- */
.cat-img { width: 96px; height: 96px; border-radius: 16px; object-fit: cover; margin: 0 auto 10px; display: block; }
.cat-scroll .cat-tile { min-width: 132px; width: -moz-fit-content; width: fit-content; padding: 16px 18px; }
.cat-ico { font-size: 62px; display: block; margin-bottom: 8px; line-height: 1; }
.cat-tile span { font-size: 15px; font-weight: 800; white-space: nowrap; overflow: visible; display: block; }

/* ---- USP: big icon on top, label below + hover ---- */
.usp-item { flex-direction: column; text-align: center; gap: 6px; padding: 18px 10px; transition: transform .2s, box-shadow .2s; }
.usp-item:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(255,122,0,.18); }
.usp-ico { font-size: 40px; line-height: 1; transition: transform .3s; }
.usp-item:hover .usp-ico { transform: scale(1.15); }
.usp-label { font-weight: 700; font-size: 14px; }

/* ---- Category banner (shop) ---- */
.cat-banner { border-radius: 16px; margin-top: 12px; background-size: cover; background-position: center; color: #fff; }
.cat-banner-in { display: flex; align-items: center; gap: 16px; padding: 28px 30px; }
.cat-banner-ico { font-size: 46px; }
.cat-banner h1 { margin: 0; font-size: 26px; }
.cat-banner p { margin: 4px 0 0; opacity: .95; }

/* ---- Policy hero + phone bar ---- */
.policy-hero { background: linear-gradient(100deg, var(--brand), #ff9a3d); color: #fff; border-radius: 16px; padding: 34px 30px; margin-top: 12px; max-width: 900px; margin-left: auto; margin-right: auto; }
.policy-hero h1 { margin: 0; font-size: 28px; }
.policy-phone { max-width: 900px; margin: 10px auto 0; background: var(--brand-50); border: 1px solid var(--brand); border-radius: 10px; padding: 10px 16px; font-weight: 800; color: #7a3d00; }
.policy-phone a { color: var(--brand); }
/* policy page hero with image */
.policy-hero-img { display: grid; grid-template-columns: 1.4fr .9fr; gap: 24px; align-items: center; }
.policy-eyebrow { display: inline-block; background: rgba(255,255,255,.25); color: #fff; font-weight: 700; font-size: 13px; padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.policy-hero-text p { margin: 10px 0 0; opacity: .95; line-height: 1.6; }
.policy-hero-pic img { width: 100%; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.18); display: block; background: #fff; }
@media (max-width: 700px) { .policy-hero-img { grid-template-columns: 1fr; } .policy-hero-pic { order: -1; } }

/* ---- Bold Call / WhatsApp in topbar ---- */
.topbar-inner a { font-weight: 800; }

/* ---- Product image "perfect view" (contain on white, like quick-commerce) ---- */
.product-card .pimg { background: #fff; }
.product-card .pimg img { height: 180px; object-fit: contain; padding: 12px; background: #fff; }

/* ---- Maintenance bar ---- */
.maint-bar { background: #b35600; color: #fff; text-align: center; padding: 8px 14px; font-weight: 600; font-size: 14px; }

/* ---- Customer avatar ---- */
.avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; display: inline-grid; place-items: center; background: var(--brand); color: #fff; font-weight: 800; font-size: 15px; }

/* ---- FAQ accordion ---- */
.faq-item { border:1px solid var(--line); border-radius:10px; margin:8px 0; padding:0 14px; }
.faq-item summary { cursor:pointer; padding:12px 0; font-weight:600; list-style:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::before { content:'＋'; color:var(--brand); font-weight:800; margin-right:8px; }
.faq-item[open] summary::before { content:'－'; }
.faq-a { padding:0 0 12px; color:#374151; font-size:14px; }

/* ---- Contact page ---- */
.contact-hero { background:linear-gradient(100deg,var(--brand),#ff9a3d); color:#fff; border-radius:16px; padding:40px; margin-top:12px; }
.contact-hero h1 { margin:0 0 8px; font-size:30px; }
.contact-hero p { margin:0; max-width:560px; opacity:.95; }
.contact-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin:18px 0; }
.contact-card { text-align:center; padding:20px; }
.contact-card .ci { font-size:32px; }
.contact-card h4 { margin:8px 0 4px; }
.contact-card p { margin:0; color:var(--muted); font-size:14px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:20px; align-items:stretch; }
.socials-dark a { display:inline-block; margin-right:12px; color:var(--brand); font-weight:600; }
@media (max-width:900px){ .contact-cards{ grid-template-columns:repeat(2,1fr);} .contact-grid{ grid-template-columns:1fr;} }

/* ---- Brand logo scroller (About) ---- */
.brand-scroll { overflow:hidden; margin:16px 0; padding:8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-track { display:inline-flex; gap:22px; animation:brandMove 24s linear infinite; align-items:center; }
.brand-track:hover { animation-play-state: paused; }
.brand-track img, .brand-track span { height:56px; min-width:120px; padding:0 20px; display:flex; align-items:center; justify-content:center;
  background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 3px 10px rgba(0,0,0,.06);
  color:#333; font-weight:800; white-space:nowrap; object-fit:contain; }
@keyframes brandMove { from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---- About Us (designed) ---- */
.about-hero { display:grid; grid-template-columns:1.2fr .9fr; gap:28px; align-items:center;
  background:linear-gradient(120deg,#FFF3E6,#ffffff); border:1px solid var(--line); border-radius:20px; padding:34px; margin:14px 0 4px; }
.about-eyebrow { display:inline-block; background:var(--brand-50); color:#7a3d00; font-weight:700; font-size:13px; padding:5px 12px; border-radius:999px; margin-bottom:10px; }
.about-hero h1 { margin:6px 0 10px; font-size:34px; }
.about-hero-text p { color:#444; line-height:1.7; font-size:16px; margin:0 0 16px; }
.about-hero-cta { display:flex; gap:10px; flex-wrap:wrap; }
.about-hero-img img { width:100%; border-radius:18px; box-shadow:0 12px 30px rgba(0,0,0,.12); display:block; }
.about-story { display:grid; grid-template-columns:.8fr 1.2fr; gap:26px; align-items:center; margin:30px 0; }
.about-story-img img { width:100%; border-radius:18px; box-shadow:0 10px 26px rgba(0,0,0,.1); display:block; }
.about-story-text h2 { margin:0 0 10px; font-size:26px; }
.about-story-text p { color:#444; line-height:1.7; margin:0 0 12px; }
.mvg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:14px; }
.mvg-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:26px 22px 22px; text-align:center; position:relative;
  transition:transform .2s, box-shadow .2s; }
.mvg-card:hover { transform:translateY(-5px); box-shadow:0 14px 30px rgba(0,0,0,.1); }
.mvg-ico { width:66px; height:66px; border-radius:50%; display:grid; place-items:center; font-size:32px; margin:0 auto 8px; color:#fff; box-shadow:0 6px 16px rgba(0,0,0,.18); }
.mvg-img { width:120px; height:120px; border-radius:16px; object-fit:cover; margin:6px auto 12px; display:block; }
.mvg-card h3 { margin:0 0 8px; font-size:20px; }
.mvg-card p { color:#555; line-height:1.6; margin:0; font-size:14.5px; }
.values-row { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:14px; }
.value-item { background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px 14px; text-align:center; transition:transform .2s, box-shadow .2s; }
.value-item:hover { transform:translateY(-4px); box-shadow:0 10px 24px rgba(255,122,0,.15); }
.value-ico { font-size:40px; line-height:1; display:block; margin-bottom:8px; }
.value-item strong { display:block; font-size:16px; margin-bottom:3px; }
.value-item small { color:var(--muted); }
.about-cta-band { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  background:linear-gradient(100deg,var(--brand),#ff9a3d); color:#fff; border-radius:18px; padding:26px 30px; margin:30px 0 10px; }
.about-cta-band h3 { margin:0; font-size:24px; }
.about-cta-band p { margin:4px 0 0; opacity:.95; }
.about-cta-band .btn { background:#fff; color:var(--brand); font-weight:800; }
@media (max-width:760px){
  .about-hero, .about-story, .mvg-grid, .values-row { grid-template-columns:1fr; }
  .about-hero h1 { font-size:28px; }
  .values-row { grid-template-columns:repeat(2,1fr); }
}

/* ---- Chatbot attention animations (fire every 15s) ---- */
@keyframes chatPulse { 0%{ box-shadow:0 0 0 0 rgba(255,122,0,.5);} 70%{ box-shadow:0 0 0 14px rgba(255,122,0,0);} 100%{ box-shadow:0 0 0 0 rgba(255,122,0,0);} }
@keyframes chatWiggle { 0%,100%{ transform:rotate(0);} 20%{ transform:rotate(-12deg);} 40%{ transform:rotate(12deg);} 60%{ transform:rotate(-8deg);} 80%{ transform:rotate(8deg);} }
@keyframes chatBounce { 0%,100%{ transform:translateY(0) scale(1);} 25%{ transform:translateY(-14px) scale(1.06);} 50%{ transform:translateY(0) scale(1);} 65%{ transform:translateY(-7px) scale(1.03);} 80%{ transform:translateY(0) scale(1);} }
@keyframes chatSpin  { 0%{ transform:rotate(0);} 100%{ transform:rotate(360deg);} }
@keyframes chatTipPop { 0%{ opacity:0; transform:translateY(8px) scale(.85);} 12%{ opacity:1; transform:translateY(0) scale(1);} 88%{ opacity:1; transform:translateY(0) scale(1);} 100%{ opacity:0; transform:translateY(4px) scale(.9);} }
@keyframes chatDot   { 0%,100%{ transform:scale(1); opacity:1;} 50%{ transform:scale(1.35); opacity:.6;} }
.chat-fab { animation: chatPulse 2.2s infinite; }
.chat-fab.wiggle  { animation: chatWiggle .7s ease; }
.chat-fab.bounce  { animation: chatBounce 1s ease; }
.chat-fab.spin .chat-fab-ico { animation: chatSpin .8s ease; }

/* ---- Chatbot ---- */
.chat-fab { position: fixed; right: 18px; bottom: 82px; z-index: 46; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg,#FF8A1E,#FF6A00); border: 0; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.28); display: grid; place-items: center; }
.chat-fab-ico { display: grid; place-items: center; transform-origin: center; }
.chat-fab .chat-ai-dot { position: absolute; top: 4px; right: 4px; width: 12px; height: 12px; background: #22c55e; border: 2px solid #fff; border-radius: 50%; animation: chatDot 1.6s infinite; }
.chat-fab .chat-ai-badge { position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%); background: #111827; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .5px; padding: 1px 6px; border-radius: 8px; border: 1.5px solid #fff; }
.chat-tip { position: fixed; right: 84px; bottom: 96px; z-index: 46; background: #fff; color: #1f2937; font-size: 13px; font-weight: 600; padding: 9px 13px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.18); max-width: 200px; display: none; }
.chat-tip.show { display: block; animation: chatTipPop 4s ease forwards; }
.chat-tip::after { content: ""; position: absolute; right: -7px; bottom: 14px; border: 7px solid transparent; border-left-color: #fff; }
.chat-panel { position: fixed; right: 18px; bottom: 146px; z-index: 47; width: 320px; max-width: calc(100vw - 36px); background: #fff; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.25); overflow: hidden; display: none; flex-direction: column; }
.chat-panel.open { display: flex; }
.chat-head { background: var(--brand); color: #fff; padding: 12px 14px; font-weight: 700; }
.chat-body { padding: 12px; height: 300px; overflow-y: auto; background: #f7f7f8; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { padding: 8px 12px; border-radius: 12px; font-size: 14px; max-width: 85%; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; white-space: pre-line; }
.chat-msg.user { background: var(--brand); color: #fff; align-self: flex-end; }
.chat-msg.agent { background: #e7f6ec; border: 1px solid #b7e2c6; color: #0a5c2b; align-self: flex-start; white-space: pre-line; }
.chat-msg.agent::before { content: "👤 Support"; display: block; font-size: 10px; font-weight: 800; color: #0a7d33; margin-bottom: 2px; letter-spacing: .03em; }
.chat-note { align-self: center; background: #fff3e0; color: #b35600; border: 1px solid #ffd9b0; border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.chat-input { display: flex; gap: 6px; padding: 10px; border-top: 1px solid var(--line); }
.chat-input input[type=text] { flex: 1; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; outline: none; }
.chat-input input[type=text]:focus { border-color: var(--brand); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .promo-row { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .nav { gap: 12px; }
  .hide-sm { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; gap: 2px; text-align: center; }
  .topbar-inner span { font-size: 13px; }
}

/* ==== Shop page: category photo filter (DMart-style left rail) ==== */
.cat-photo-list { display: flex; flex-direction: column; gap: 4px; }
.cat-photo-item { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 10px; color: #374151; border: 1px solid transparent; transition: background .15s, border-color .15s; }
.cat-photo-item:hover { background: #f6f7f9; }
.cat-photo-item.on { background: var(--brand-50); border-color: var(--brand); color: var(--brand); font-weight: 700; }
.cat-photo-img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; flex: 0 0 auto; border: 1px solid var(--line); background: #fff; }
.cat-photo-ico { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; font-size: 24px; flex: 0 0 auto; background: #fff; border: 1px solid var(--line); }
.cat-photo-name { font-size: 14px; line-height: 1.25; }

/* ==== Product card: DMart-style price columns + unit box + CTA ==== */
.product-card .pbody { gap: 2px; }
.price-box { margin: 8px 0 8px; }
.price-cols { display: flex; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.price-cols .pc { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5px 4px; border-right: 1px solid var(--line); }
.price-cols .pc:last-child { border-right: 0; }
.price-cols .pc small { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: .3px; }
.price-cols .pc .price { font-weight: 800; font-size: 15px; color: #111827; }
.price-cols .pc .mrp { font-size: 13px; }
.price-cols .pc.save { background: #e8f7ee; }
.price-cols .pc.save small { color: #0a7d33; }
.price-cols .pc.save span { color: #0a7d33; font-weight: 800; font-size: 14px; }
.unit-box { border: 1px solid var(--line); border-radius: 8px; padding: 7px 10px; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 8px; background: #fafafa; text-align: center; }
.add-cart-btn { font-weight: 800; letter-spacing: .3px; }

/* ==== Wishlist heart on product cards ==== */
.product-card { position: relative; }
.wish-btn { position: absolute; top: 8px; right: 8px; z-index: 3; margin: 0; }
.wish-btn button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.95); color: #9ca3af; font-size: 18px; line-height: 1; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,.1); display: grid; place-items: center; transition: transform .15s, color .15s; }
.wish-btn button:hover { transform: scale(1.12); color: #e11d48; }
.wish-btn button.on { color: #e11d48; border-color: #f4b8c4; }

/* ==== Floating "View Cart" button with product thumbnails ==== */
.cart-fab-btn { position: fixed; left: 18px; bottom: 22px; z-index: 46; display: flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff; padding: 8px 16px 8px 10px; border-radius: 999px; box-shadow: 0 8px 22px rgba(255,122,0,.4);
  font-weight: 800; transition: transform .18s, box-shadow .18s; animation: cartPop .35s ease; }
.cart-fab-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,122,0,.5); color: #fff; }
@keyframes cartPop { 0%{ transform: scale(.6); opacity: 0; } 60%{ transform: scale(1.08); } 100%{ transform: scale(1); opacity: 1; } }
.cart-fab-thumbs { display: inline-flex; align-items: center; }
.cart-fab-thumbs img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; background: #fff; margin-left: -12px; box-shadow: 0 2px 5px rgba(0,0,0,.15); }
.cart-fab-thumbs img:first-child { margin-left: 0; }
.cart-fab-more { margin-left: -12px; width: 34px; height: 34px; border-radius: 50%; background: #b35600; color: #fff; border: 2px solid #fff;
  display: inline-grid; place-items: center; font-size: 12px; font-weight: 800; }
.cart-fab-label { font-size: 15px; letter-spacing: .2px; }
.cart-fab-count { background: #fff; color: var(--brand); min-width: 24px; height: 24px; border-radius: 999px; display: inline-grid; place-items: center; font-size: 13px; font-weight: 800; padding: 0 6px; }
@media (max-width: 560px) {
  .cart-fab-btn { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
}

/* ==== Video ads (website) ==== */
.banner-video { width: 100%; height: 100%; border: 0; object-fit: cover; display: block; }
.hero-slide.has-video { position: relative; overflow: hidden; background: #000; }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video-wrap .banner-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide.has-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.05)); }
.hero-slide.has-video .hero-text { position: relative; z-index: 2; }
.ad-block { display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; gap: 0; border-radius: 16px; overflow: hidden; color: #fff; margin: 26px 0; min-height: 200px; }
.ad-block .ad-media { position: relative; min-height: 200px; height: 100%; background: #000; }
.ad-block .ad-media img, .ad-block .ad-media .banner-video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ad-block .ad-text { padding: 28px; }
.ad-tag { display: inline-block; background: rgba(255,255,255,.25); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.ad-block h3 { margin: 0 0 6px; font-size: 24px; }
.ad-block p { margin: 0 0 14px; opacity: .95; }
.ad-block .hero-btn { background: #fff; color: #111; }
.popup-video { position: relative; padding-top: 56%; margin-bottom: 12px; border-radius: 10px; overflow: hidden; background: #000; }
.popup-video .banner-video { position: absolute; inset: 0; }
@media (max-width: 640px){ .ad-block { grid-template-columns: 1fr; } .ad-block .ad-media { min-height: 160px; } }

/* ==== CRM: banner previews & modal ==== */
.ban-thumb { width: 72px; height: 44px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line); display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; }
.ban-thumb.vid { background: #111; }
.ban-preview { border: 1px dashed var(--line); border-radius: 12px; padding: 16px; margin-bottom: 14px; min-height: 90px; display: flex; align-items: center; gap: 12px; }
.ban-preview .bp-media { flex: 0 0 auto; }
.ban-preview .bp-media img { width: 90px; height: 60px; object-fit: cover; border-radius: 8px; }
.ban-preview .bp-media { font-size: 12px; color: #333; font-weight: 700; }
.bp-text strong { display: block; font-size: 16px; }
.bp-text span { display: block; font-size: 13px; color: #444; }
.place-legend { display: grid; gap: 10px; }
.place-item { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: start; padding: 12px 14px; background: #faf8f4; border: 1px solid var(--line); border-radius: 12px; font-size: 13.5px; line-height: 1.5; color: #374151; transition: border-color .15s, box-shadow .15s; }
.place-item:hover { border-color: var(--brand); box-shadow: 0 3px 10px rgba(255,122,0,.08); }
.place-item .pill { justify-self: start; align-self: start; min-width: 80px; text-align: center; font-weight: 800; letter-spacing: .03em; }
.place-item .muted { display: inline-block; margin-top: 3px; }
@media (max-width: 560px) { .place-item { grid-template-columns: 1fr; gap: 6px; } }
.ban-modal { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.ban-modal.show { display: flex; }
.ban-modal-box { background: #fff; border-radius: 14px; padding: 20px; max-width: 620px; width: 100%; position: relative; }
.ban-modal-close { position: absolute; top: 10px; right: 14px; font-size: 26px; cursor: pointer; color: #888; }
.bp-badge { display: inline-block; background: var(--brand-50); color: var(--brand); font-weight: 700; font-size: 12px; padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
.ban-modal-render { border-radius: 12px; overflow: hidden; padding: 24px; color: #111; display: flex; align-items: center; gap: 16px; min-height: 140px; }
.ban-modal-render .bp-media img { width: 160px; height: 100px; object-fit: cover; border-radius: 10px; }
.ban-modal-render .banner-video { width: 240px; height: 135px; border-radius: 10px; }

/* ==== CRM alerts (bell + nav badges) ==== */
.nav-badge { background:#dc2626; color:#fff; font-size:11px; font-weight:800; min-width:18px; height:18px; border-radius:999px; display:inline-grid; place-items:center; padding:0 5px; }
.admin-bell-bar { display:flex; justify-content:flex-end; margin-bottom:12px; }
.admin-bell { position:relative; cursor:pointer; font-size:22px; background:#fff; border:1px solid var(--line); border-radius:12px; padding:6px 12px; }
.admin-bell-badge { position:absolute; top:-6px; right:-6px; background:#dc2626; color:#fff; font-size:11px; font-weight:800; min-width:18px; height:18px; border-radius:999px; display:grid; place-items:center; padding:0 5px; }
.alert-list { position:absolute; top:44px; right:0; width:280px; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:0 12px 32px rgba(0,0,0,.16); z-index:60; display:none; overflow:hidden; }
.alert-list.show { display:block; }
.alert-head { padding:10px 14px; font-weight:700; border-bottom:1px solid var(--line); background:#fafafa; }
.alert-item { display:flex; gap:8px; align-items:center; padding:10px 14px; font-size:13px; color:#374151; border-bottom:1px solid var(--line); }
.alert-item:hover { background:var(--brand-50); color:var(--brand); }
.alert-dot { color:#dc2626; font-size:10px; }

/* ==== Post-order review prompt ==== */
.review-prompt { margin-top:22px; padding:18px; border:1px dashed var(--brand); border-radius:12px; background:var(--brand-50); }

/* ==== Seasonal / festival theme animations ==== */
.theme-fx { position: fixed; inset: 0; pointer-events: none; z-index: 44; overflow: hidden; }
.theme-fx .fx-p { position: absolute; top: -6%; will-change: transform; opacity: .9; animation-name: fxFall; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes fxFall {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  8%   { opacity: .95; }
  50%  { transform: translateY(50vh) translateX(24px) rotate(180deg); }
  92%  { opacity: .95; }
  100% { transform: translateY(110vh) translateX(-24px) rotate(360deg); opacity: 0; }
}
.fest-greet { position: relative; z-index: 45; display: flex; align-items: center; gap: 10px; padding: 8px 16px; font-weight: 700; color: #7a3d00; border-bottom: 1px solid rgba(0,0,0,.06); }
.fest-greet .fest-emoji { font-size: 22px; animation: festBob 1.4s ease-in-out infinite; }
.fest-greet .fest-msg { flex: 1; }
.fest-greet .muted-strong { font-weight: 500; opacity: .8; }
.fest-greet .fest-close { cursor: pointer; font-size: 22px; opacity: .6; padding: 0 6px; }
.fest-greet .fest-close:hover { opacity: 1; }
@keyframes festBob { 0%,100%{ transform: translateY(0) rotate(-6deg);} 50%{ transform: translateY(-4px) rotate(6deg);} }
@media (max-width: 560px){ .fest-greet .muted-strong { display:none; } }

/* Customer chat bubbles (account messages) */
.cmsg { max-width: 80%; }
.cmsg.them { align-self: flex-start; }
.cmsg.me { align-self: flex-end; margin-left: auto; }
.cmsg-b { padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.4; }
.cmsg.them .cmsg-b { background: #f1f3f5; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.cmsg.me .cmsg-b { background: var(--brand); color: #fff; border-bottom-right-radius: 4px; }
.cmsg-t { font-size: 11px; color: #9ca3af; margin-top: 3px; padding: 0 4px; }
.cmsg.me .cmsg-t { text-align: right; }

/* Auto-scrolling customer reviews */
.review-scroll { overflow: hidden; padding: 6px 0; margin-bottom: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.review-track { display: flex; gap: 16px; width: max-content; animation: reviewMove 40s linear infinite; }
.review-scroll:hover .review-track { animation-play-state: paused; }
.review-card { width: 300px; flex: 0 0 auto; padding: 18px; }
.review-card .stars { color: #f59e0b; }
.review-card strong { display: block; margin: 4px 0 2px; }
.review-card p { font-size: 14px; margin: 6px 0 12px; color: #374151; line-height: 1.5; }
.review-by { display: flex; align-items: center; gap: 10px; }
.review-ava { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),#ff9a3d); color: #fff; display: grid; place-items: center; font-weight: 800; flex: 0 0 auto; }
@keyframes reviewMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px) { .review-card { width: 260px; } }

/* ==== Sliding / changing offer banners (small · medium · big) ==== */
.offer-wall { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.offer-col { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.offer-banner { position: relative; border-radius: 16px; overflow: hidden; }
.offer-banner.big { min-height: 300px; }
.offer-banner.med { min-height: 142px; }
.offer-banner.small { min-height: 142px; }
.offer-slide { position: absolute; inset: 0; display: flex; align-items: center; gap: 16px; padding: 22px 26px; color: #fff;
  opacity: 0; transform: scale(1.04); transition: opacity .7s ease, transform .7s ease; pointer-events: none; }
.offer-slide.on { opacity: 1; transform: scale(1); pointer-events: auto; }
.offer-ico { font-size: 46px; line-height: 1; flex: 0 0 auto; filter: drop-shadow(0 3px 6px rgba(0,0,0,.2)); }
.offer-banner.big .offer-ico { font-size: 72px; }
.offer-txt { display: flex; flex-direction: column; }
.offer-txt small { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }
.offer-txt strong { font-size: 20px; line-height: 1.15; margin-top: 2px; }
.offer-banner.big .offer-txt strong { font-size: 34px; }
@media (max-width: 720px){
  .offer-wall { grid-template-columns: 1fr; }
  .offer-banner.big { min-height: 200px; }
  .offer-banner.big .offer-txt strong { font-size: 26px; }
  .offer-banner.big .offer-ico { font-size: 54px; }
}

/* ==== About Us — extended sections & animations ==== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.about-tagline { font-weight: 800; color: var(--brand); font-size: 17px; }
.about-counters { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; margin: 24px 0; }
.counter-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 10px; text-align: center; box-shadow: 0 4px 14px rgba(0,0,0,.05); }
.counter-ico { font-size: 26px; }
.counter-n { font-size: 24px; font-weight: 800; color: var(--brand); margin: 4px 0 2px; }
.counter-l { font-size: 12px; color: var(--muted); }
.mvg-grid.two { grid-template-columns: 1fr 1fr; }
.values-row.six { grid-template-columns: repeat(3,1fr); }
.offer-checklist { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.check-item { background: #eafaf1; color: #0a7d33; border: 1px solid #b7ebc9; border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 600; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.why-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 14px; font-weight: 500; transition: transform .15s, box-shadow .15s; }
.why-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255,122,0,.12); }
.why-item span { font-size: 22px; }
.about-map { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.about-map iframe { width: 100%; height: 340px; border: 0; display: block; }
.about-contact { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 22px 0 8px; }
.ac-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 2px; font-size: 20px; }
.ac-item strong { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.ac-item a, .ac-item span { font-size: 15px; color: var(--ink); }
.ac-item a { color: var(--brand); }
@media (max-width: 820px){
  .about-counters { grid-template-columns: repeat(3,1fr); }
  .mvg-grid.two, .values-row.six, .why-grid, .about-contact { grid-template-columns: 1fr; }
  .values-row.six { grid-template-columns: 1fr 1fr; }
}

/* About Us — Promise, Benefits, Shop-by-category */
.about-promise { background: linear-gradient(120deg,#FFF3E6,#ffffff); border: 1px solid var(--line); border-radius: 18px; padding: 26px; margin-top: 20px; text-align: center; }
.about-promise h2 { margin: 0 0 4px; }
.about-promise p { color: #555; margin: 0 0 16px; }
.promise-row { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.promise-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 8px; font-weight: 700; font-size: 13px; }
.promise-item span { display: block; font-size: 26px; margin-bottom: 4px; }
.about-cats { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.about-cat { display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 8px; text-align: center; font-size: 13px; font-weight: 600; color: var(--ink); transition: transform .15s, box-shadow .15s; }
.about-cat:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(255,122,0,.14); color: var(--brand); }
.about-cat span { font-size: 30px; }
@media (max-width: 820px){ .promise-row, .about-cats { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px){ .promise-row, .about-cats { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   FIXES: category tiles, product names, video ads, theme motion
   ============================================================ */

/* --- Shop by category tiles: bigger icons, full 2-line names, consistent size --- */
.cat-scroll .cat-tile { min-width: 118px; width: 118px; max-width: 118px; padding: 16px 8px; display: flex; flex-direction: column; align-items: center; }
.cat-scroll .cat-tile .cat-img { width: 72px; height: 72px; border-radius: 16px; }
.cat-scroll .cat-ico { font-size: 54px; line-height: 1; margin-bottom: 8px; }
.cat-scroll .cat-tile span { font-size: 13px; font-weight: 700; color: #1f2937; text-align: center;
  white-space: normal; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.2; min-height: 32px; }

/* --- Product card names: clamp to 2 lines so cards align --- */
.pname { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 36px; line-height: 1.3; }

/* --- Video ads: reliably visible in hero, ad block, popup --- */
.hero-slide.has-video { min-height: 300px; padding: 0; align-items: stretch; }
.hero-slide.has-video .hero-text { position: relative; z-index: 3; padding: 44px 40px; align-self: center; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-video-wrap .banner-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; height: 100%; min-width: 100%; min-height: 100%; }
.ad-block .ad-media { min-height: 230px; }
.ad-block .ad-media .banner-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.popup-video { position: relative; width: 100%; padding-top: 56.25%; height: 0; margin-bottom: 12px; border-radius: 10px; overflow: hidden; background: #000; }
.popup-video .banner-video { position: absolute; inset: 0; width: 100%; height: 100%; }
video.banner-video { object-fit: cover; }

/* --- Today's offers: image slides --- */
.offer-slide.has-img { background-size: cover; background-position: center; }
.offer-slide.has-img .offer-txt strong { text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.offer-slide.has-img .offer-txt small { text-shadow: 0 1px 4px rgba(0,0,0,.5); }

/* --- Distinct motion per weather/festival effect --- */
.theme-fx .fx-rain    { animation-name: fxRain; animation-timing-function: linear; }
.theme-fx .fx-snow    { animation-name: fxDrift; animation-timing-function: ease-in-out; }
.theme-fx .fx-petals  { animation-name: fxDrift; animation-timing-function: ease-in-out; }
.theme-fx .fx-leaves  { animation-name: fxLeaf; animation-timing-function: ease-in-out; }
.theme-fx .fx-diya      { animation-name: fxRise; animation-timing-function: ease-out; }
.theme-fx .fx-fireworks { animation-name: fxRise; animation-timing-function: ease-out; }
.theme-fx .fx-sun       { animation-name: fxRise; animation-timing-function: ease-in-out; }
.theme-fx .fx-colors    { animation-name: fxSpin; animation-timing-function: linear; }
.theme-fx .fx-confetti  { animation-name: fxSpin; animation-timing-function: linear; }
.theme-fx .fx-tricolor  { animation-name: fxSpin; animation-timing-function: linear; }
.theme-fx .fx-crescent  { animation-name: fxTwinkle; animation-timing-function: ease-in-out; }
/* rain: fast straight fall */
@keyframes fxRain { 0% { transform: translateY(-12vh); opacity: 0; } 10% { opacity: .85; } 100% { transform: translateY(112vh); opacity: .3; } }
/* snow / petals: slow side-to-side drift */
@keyframes fxDrift { 0% { transform: translateY(-10vh) translateX(0) rotate(0); opacity: 0; } 10% { opacity: .95; } 50% { transform: translateY(50vh) translateX(40px) rotate(120deg); } 100% { transform: translateY(112vh) translateX(-30px) rotate(300deg); opacity: 0; } }
/* leaves: wide tumbling */
@keyframes fxLeaf { 0% { transform: translateY(-10vh) rotate(0); opacity: 0; } 10% { opacity: 1; } 50% { transform: translateY(52vh) translateX(-50px) rotate(220deg); } 100% { transform: translateY(112vh) translateX(50px) rotate(500deg); opacity: 0; } }
/* diyas / fireworks / sun: float upward */
@keyframes fxRise { 0% { transform: translateY(110vh) scale(.6); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(-15vh) scale(1.1); opacity: 0; } }
/* colors / confetti / tricolor: fall while spinning fast */
@keyframes fxSpin { 0% { transform: translateY(-10vh) rotate(0); opacity: 0; } 10% { opacity: 1; } 100% { transform: translateY(112vh) rotate(900deg); opacity: .2; } }
/* crescent / stars: gentle twinkle in place while sinking slowly */
@keyframes fxTwinkle { 0% { transform: translateY(-8vh) scale(.8); opacity: 0; } 25% { opacity: 1; transform: scale(1.15); } 50% { opacity: .5; transform: scale(.9); } 75% { opacity: 1; transform: scale(1.1); } 100% { transform: translateY(108vh) scale(.8); opacity: 0; } }

/* ============================================================
   Scrolling posters (after categories) + festival slider + footer + font-size
   ============================================================ */

/* Scrolling poster banners */
.poster-scroll { overflow: hidden; margin: 20px 0; padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.poster-track { display: inline-flex; gap: 16px; width: max-content; animation: posterMove 30s linear infinite; }
.poster-scroll:hover .poster-track { animation-play-state: paused; }
.poster-item { flex: 0 0 auto; display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.poster-item img { width: 340px; height: 170px; object-fit: cover; display: block; }
@keyframes posterMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 560px){ .poster-item img { width: 260px; height: 130px; } }

/* Festival / season sliding banner (before reviews) */
.festive-slider { position: relative; height: 200px; border-radius: 18px; overflow: hidden; margin: 30px 0; box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.festive-slide { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 44px; color: #fff;
  background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); transition: opacity .8s ease, transform .8s ease; pointer-events: none; }
.festive-slide.on { opacity: 1; transform: scale(1); pointer-events: auto; }
.festive-txt strong { display: block; font-size: 30px; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.festive-txt span { display: block; margin-top: 6px; font-size: 16px; opacity: .95; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
@media (max-width: 560px){ .festive-slider { height: 150px; } .festive-txt strong { font-size: 22px; } .festive-slide { padding: 0 22px; } }

/* Footer contact strip — clean aligned cards */
.footer-contact { display: flex; flex-wrap: wrap; gap: 12px; padding: 18px 16px; border-top: 1px solid #23262a; justify-content: center; }
.footer-contact .fc-chip { display: inline-flex; align-items: center; gap: 10px; background: #191c1f; border: 1px solid #24272b; border-radius: 12px; padding: 9px 14px; font-size: 13px; color: #cfd3d7; text-decoration: none; transition: border-color .15s, transform .15s; }
.footer-contact .fc-chip:hover { border-color: var(--brand); transform: translateY(-1px); }
.footer-contact .fc-ico { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,122,0,.15); color: var(--brand); display: grid; place-items: center; flex: 0 0 auto; }
.footer-contact .fc-txt { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.footer-contact .fc-txt b { color: #8a9096; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; }
.footer-contact .fc-chip:hover .fc-txt { color: #fff; }

/* Website text-size scaling (set from CRM → Settings) */
body { font-size: 16px; }
.hero p, .product-card .pname, .price, .punit, .page-body p, .page-body li, .about-story-text p, .muted,
.cat-scroll .cat-tile span, .review-card p, .footer p, .section-title { font-size: 1em; }
.product-card .pname { font-size: 0.92em; }
.price-cols .pc .price { font-size: 1em; }

/* Bigger, glowing theme particles */
.theme-fx .fx-p { opacity: .95; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }

/* ==== Reusable page banner (content pages) ==== */
.page-hero { background: linear-gradient(120deg, #FF7A00, #ff9a3c); color: #fff; border-radius: 16px; margin: 14px 0 20px; padding: 30px 26px; box-shadow: 0 10px 26px rgba(255,122,0,.22); overflow: hidden; position: relative; }
.page-hero::after { content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; background: rgba(255,255,255,.14); border-radius: 50%; }
.page-hero .page-hero-in { position: relative; z-index: 1; }
.page-hero .page-hero-eyebrow { display: inline-block; background: rgba(255,255,255,.2); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.page-hero h1 { margin: 10px 0 4px; font-size: 30px; line-height: 1.1; }
.page-hero p { margin: 0; color: rgba(255,255,255,.92); font-size: 14.5px; max-width: 640px; }
@media (max-width: 600px) { .page-hero { padding: 22px 18px; } .page-hero h1 { font-size: 23px; } }

/* ==== CRM-controlled animation direction (DOWN keeps the varied per-effect motion) ==== */
.theme-fx.dir-up .fx-p    { top:auto; bottom:-8%; animation-name: fxGoUp; animation-timing-function: linear; }
.theme-fx.dir-left .fx-p  { left:auto; right:-8%; animation-name: fxGoLeft; animation-timing-function: linear; }
.theme-fx.dir-right .fx-p { left:-8%; right:auto; animation-name: fxGoRight; animation-timing-function: linear; }
@keyframes fxGoUp    { from { transform: translateY(0); } to { transform: translateY(-115vh); } }
@keyframes fxGoLeft  { from { transform: translateX(0); } to { transform: translateX(-115vw); } }
@keyframes fxGoRight { from { transform: translateX(0); } to { transform: translateX(115vw); } }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }
