/* ============================================================
   KITCHEN KEEPERS - Main Stylesheet
   Premium Bangla E-Commerce Design System
   ============================================================ */

/* --- Variables --- */
:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #fffaea;
  --accent: #f97316;
  --card-bg: #ffefe0;
  --accent-dark: #ea580c;
  --accent-light: #ffedd5;
  --dark: #0f172a;
  --dark-secondary: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --bg: #fffaea;
  --bg-card: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all .2s ease;
  --font: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --forest-deep: #0f2b1a;
  --forest: #1F5C46;
  --line: #e2e8f0;
  --white: #FBFAF5;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: #000000;
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* --- AD LOADER ===================================== */
.ad-loader-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.ad-loader-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.ad-loader-inner {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.ad-slides-track {
  flex: 1;
  position: relative; overflow: hidden;
}
.ad-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .5s ease;
  background: transparent;
}
.ad-slide.active { opacity: 1; }
.ad-slide img { max-width: 90%; max-height: 55vh; width: auto; height: auto; object-fit: contain; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.ad-slide-content {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px 24px 0;
  text-align: center; color: #fff;
}
.ad-slide-content h2 { font-size: 20px; font-weight: 700; margin-bottom: 6px; text-shadow: 0 2px 4px rgba(0,0,0,.5); }
.ad-slide-content p  { font-size: 14px; opacity: .85; text-shadow: 0 1px 3px rgba(0,0,0,.5); margin: 0; }
.ad-slide-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #16a34a 100%);
}
.ad-brand { text-align: center; color: #fff; }
.ad-logo-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgb(246, 255, 249);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 36px; color: #fff;
  box-shadow: 0 0 40px rgba(22,163,74,.5);
  animation: pulse 2s infinite;
}
.ad-brand h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.ad-brand p  { font-size: 16px; opacity: .8; }
.ad-spinner { margin-top: 32px; }
.spinner-ring {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.ad-indicators {
  position: absolute; bottom: 24px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 10;
}
.ad-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: var(--transition); cursor: pointer;
}
.ad-dot.active { width: 24px; border-radius: 4px; background: var(--primary); }
.ad-progress-bar {
  height: 3px; background: rgba(255,255,255,.2);
  position: absolute; bottom: 0; left: 0; right: 0;
}
.ad-progress-fill {
  height: 100%; background: var(--primary);
  width: 0%; transition: width linear;
}
.ad-skip-btn {
  position: absolute; top: 20px; right: 20px;
  background: #048f4e;
  color: #fff; border-radius: var(--radius-full);
  padding: 8px 16px; font-size: 13px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.ad-skip-btn:hover { background: rgba(255,255,255,.25); }

/* Animations */
@keyframes zoom-in {
  from { transform: scale(1.15); }
  to   { transform: scale(1); }
}
@keyframes zoom-out {
  from { transform: scale(0.85); }
  to   { transform: scale(1); }
}
@keyframes slide-left {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slide-right {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes slide-top {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
@keyframes slide-bottom {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{box-shadow:0 0 40px rgba(22,163,74,.5);} 50%{box-shadow:0 0 60px rgba(22,163,74,.8);} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn  { from{opacity:0;} to{opacity:1;} }

.anim-zoom-in   { animation: zoom-in .8s ease forwards; }
.anim-zoom-out  { animation: zoom-out .8s ease forwards; }
.anim-slide-left   { animation: slide-left .6s ease forwards; }
.anim-slide-right  { animation: slide-right .6s ease forwards; }
.anim-slide-top    { animation: slide-top .6s ease forwards; }
.anim-slide-bottom { animation: slide-bottom .6s ease forwards; }

.container{
  max-width: 1120px;
}
/* --- TOP BAR --- */
.top-bar {
  background: #094e2e;
  color: #dcfce7;
  font-size: 13px;
  padding: 8px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.top-bar a { color: #dcfce7; }
.top-bar a:hover { color: #94a3b8; }
.top-bar a i, .top-bar span i { color: #ffc107; }

/* --- footer BAR --- */
/* ── footer strip (was footer-top-bar) ── */
.footer-top-bar { display:none; }
.footer-strip { background:#0d3d22; color:#a7f3d0; font-size:12.5px; padding:7px 0; border-bottom:1px solid rgba(255,255,255,.07); }
.footer-strip-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px; }
.footer-strip-left,.footer-strip-right { display:flex; align-items:center; gap:14px; flex-wrap:wrap;  margin-top: 10px;}
.footer-strip-left a,.footer-strip-right a { color:#a7f3d0; text-decoration:none; transition:.15s; }
.footer-strip-left a:hover,.footer-strip-right a:hover { color:#fbbf24; }
.footer-strip-left i,.footer-strip-right i { color:#fbbf24; margin-right:4px; }
.fstrip-sep { color:rgba(255,255,255,.2); }
/* --- HEADER --- */
.main-header {
  background: #fffaea;
  border-bottom: 1px solid var(--border);
  padding: 12px 10px;
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
/* Mobile header — fixed, 2-row */
.mobile-header {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 1050;
  background: #fffaea;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 8px 12px 6px;
}
.mh-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mh-row2 {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mh-row2 .header-search { flex: 1; max-width: none; }
.mh-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.main-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; gap: 16px;
}

.header-logo {
  display: flex; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgb(246, 255, 249);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  box-shadow: 0 4px 12px rgba(22,163,74,.3);
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo-icon-sm { width: 32px; height: 32px; border-radius: 8px; background: var(--primary); display:flex;align-items:center;justify-content:center;color:#fff;font-size:15px; }
.logo-name { display: block; font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.1; }
.logo-tagline { display: block; font-size: 11px; color: var(--text-muted); }
.header-search { flex: 1; max-width: 520px; }
.search-wrap { position: relative; }
.search-input {
  width: 100%; padding: 10px 50px 10px 18px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  font-size: 14px; font-family: var(--font);
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22,163,74,.1);
  transition: var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: #b15306;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(163, 78, 22, 0.1);
}
.search-btn {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }
.search-results-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-height: 480px; overflow-y: auto;
  z-index: 1001; display: none;
}
.search-results-dropdown.show { display: block; animation: fadeIn .15s ease; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: var(--transition);
}
.search-result-item:hover { background: var(--bg); }
.search-result-item:last-child { border-bottom: none; }
.search-result-img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); background: var(--bg); }
.search-result-info .name { font-size: 14px; font-weight: 500; color: var(--dark); }
.search-result-info .price { font-size: 13px; color: var(--primary); font-weight: 600; }
/* Enhanced search result items */
.sr-item { display:flex; align-items:center; gap:4px; padding:4px 4px; border-bottom:1px solid var(--border); cursor:pointer; transition:var(--transition);  }
.sr-item:hover { background:var(--bg); }
.sr-item:last-child { border-bottom:none; }
.sr-icon { width:28px; height:28px; display:flex; align-items:center; justify-content:center; color:#9ca3af; flex-shrink:0; font-size:13px; }
.sr-text { flex:1; min-width:0; }
.sr-name { font-size:13px; font-weight:600; color:var(--dark); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sr-label { font-size:11px; font-weight:600; margin-top:1px; }
.sr-thumb { width:44px; height:44px; object-fit:cover; border-radius:6px; background:var(--bg); flex-shrink:0; }
.sr-prod-info { flex:1; min-width:0; }
.sr-prod-meta { display:flex; flex-wrap:wrap; gap:4px; margin-top:3px; font-size:11px; color:#6b7280; align-items:center; }
.sr-actions { display:flex; flex-direction:column; gap:4px; flex-shrink:0; }
.sr-cart-btn { width:28px; height:28px; border:none; border-radius:6px; background:#16a34a; color:#fff; cursor:pointer; font-size:12px; display:flex; align-items:center; justify-content:center; }
.sr-cart-btn:hover { background:#15803d; }
.sr-wish-btn { width:28px; height:28px; border:none; border-radius:6px; background:#fee2e2; color:#dc2626; cursor:pointer; font-size:12px; display:flex; align-items:center; justify-content:center; }
.sr-wish-btn:hover { background:#fecaca; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-light); font-size: 13px; cursor: pointer;
}
.header-location i { color: var(--primary); }
.header-btn {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
  background: transparent;
}
.header-btn:hover { background: var(--bg); color: var(--primary); }
.header-btn i { font-size: 20px; }
.btn-badge {
  position: absolute; top: 0px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--danger); color: #fff;
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.header-user { display: flex; align-items: center; margin-left: auto; }
.top { margin-top: 150px; }
/* --- CATEGORY NAV --- */
.cat-nav {
  background: #fffaea;
  border-bottom: 1px solid var(--border);
      position: fixed;
    top: 100px;
    left: 0;
    right: 0;
  overflow: hidden;
      z-index: 900;
}
.cat-nav-inner {
  display: flex; gap: 4px;
  overflow-x: auto; padding: 10px 0px 0px 0px;
  scrollbar-width: none;
  justify-content: space-between;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 8px 4px;
  border-radius: var(--radius);
  color: var(--text); font-size: 13px;
  white-space: nowrap; flex-shrink: 0;
  cursor: pointer; transition: var(--transition);
  
}
.cat-nav-item:hover, .cat-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}
.cat-nav-item i { font-size: 22px; margin-bottom: 2px; }
.cat-nav-item .cat-name { font-weight: 500; }
.cat-nav-loading { display: flex; align-items: center; justify-content: center; padding: 16px 32px; color: var(--text-muted); }

/* --- PAGE LOADER (disabled — no loading overlay on navigation) --- */
.page-loader { display: none !important; }
.page-loader.show { display: none !important; }

/* --- PAGE TRANSITION --- */
#pageContent { transition: opacity 0.12s ease; }
.page-loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.pl-logo-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgb(246,255,249);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 0 32px rgba(22,163,74,.5);
  animation: pulse 2s infinite;
}
.pl-logo-circle img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; }
.pl-name { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .5px; }
.pl-tagline { font-size: 13px; color: rgba(255,255,255,.75); }
.pl-dots { display: flex; gap: 8px; margin-top: 16px; }
.pl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff;
  animation: dotBounce 1.4s ease infinite;
}
.pl-dot:nth-child(2) { animation-delay: .16s; }
.pl-dot:nth-child(3) { animation-delay: .32s; }
@keyframes dotBounce { 0%,80%,100%{transform:scale(0);opacity:.3;} 40%{transform:scale(1);opacity:1;} }

/* --- HOME PAGE SECTIONS --- */
.main-content { min-height: 60vh; margin-top: 180px;}

/* Dual Hero Banners */
.hero-dual { display: flex; gap: 12px; margin: 20px 0 28px; margin-top: 200px; }
.hero-dual-main {
  flex: 742; height: 320px; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-width: 0;
}
.hero-dual-side {
  flex: 366; height: 320px; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; background: linear-gradient(135deg, #e94560 0%, #c0392b 100%);
  min-width: 0;
}
.hero-dual-main img,
.hero-dual-side img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-dual-content {
  position: absolute; inset: 0; z-index: 2; padding: 28px 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.65) 40%, transparent 100%);
  color: #fff;
}
.hero-dual-side .hero-dual-content {
  background: linear-gradient(to top, rgba(0,0,0,.5) 40%, transparent 100%);
  padding: 20px 22px;
}
.hero-dual-tag {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-full); margin-bottom: 8px; width: fit-content;
}
.hero-dual-title {
  font-size: 26px; font-weight: 800; line-height: 1.2; margin-bottom: 8px;
}
.hero-dual-side .hero-dual-title { font-size: 20px; }
.hero-dual-sub { font-size: 14px; opacity: .85; margin-bottom: 16px; }
.hero-dual-side .hero-dual-sub { font-size: 13px; margin-bottom: 12px; }
.hero-dual-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--radius-full); width: fit-content;
  transition: var(--transition);
}
.hero-dual-btn:hover { background: var(--accent-dark); transform: translateY(-2px); color: #fff; }

/* Single full-width hero (standalone, top of page) */
.hero-single { position: relative; width: 100%; height: 290px; border-radius: var(--radius-lg); overflow: hidden; margin: 20px 0 28px; margin-top: 200px; }
.hero-single img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Single hero inside layout (no extra top margin) */
.hero-single-inner { position: relative; width: 100%; height: 220px; border-radius: var(--radius-lg); overflow: hidden; margin: 0 0 16px; }
.hero-single-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }


/* Hero Carousel */
.hc-wrap { position: relative; overflow: hidden; }
.hc-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.hc-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; overflow: hidden; }
.hc-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hc-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; border: none; }
.hc-dot.active { background: #fff; width: 22px; border-radius: 4px; }
.hc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(0,0,0,.35); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; transition: background .2s; }
.hc-arrow:hover { background: rgba(0,0,0,.6); }
.hc-prev { left: 8px; }
.hc-next { right: 8px; }
.ad-sec-wrap { height: 320px; border-radius: 16px; }

.cd-main { min-width: 0; padding: 1px 0px 10px;}
.cd-sub-section { margin-bottom: 28px; }
.svc-sec-colored { border-radius: 18px; padding: 20px 20px 18px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.svc-sec-colored .cd-sub-header { border-bottom: none; padding-bottom: 10px; margin-bottom: 8px; }
.svc-sec-colored .svc-inline-card { background: rgba(255,255,255,.65); backdrop-filter: blur(4px); border: none; box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.cd-sub-header { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 12px; border-bottom: 2px solid #f3f4f6; margin-bottom: 10px; }
.cd-sub-title { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0; }

/* Hero Banner */
.hero-section { margin-bottom: 32px; }
.hero-swiper { border-radius: var(--radius-lg); overflow: hidden; }
.hero-slide {
  position: relative; height: 400px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide-content {
  position: relative; z-index: 2; padding: 40px;
  background: linear-gradient(to right, rgba(0,0,0,.7) 40%, transparent 100%);
  width: 100%; height: 100%; display: flex; flex-direction: column;
  justify-content: center; color: #fff;
}
.hero-badge { display: inline-block; background: var(--primary); padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; margin-bottom: 12px; }
.hero-title { font-size: 36px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
.hero-text { font-size: 16px; opacity: .9; margin-bottom: 24px; max-width: 380px; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 12px 28px; border-radius: var(--radius-full); font-weight: 600; transition: var(--transition); }
.hero-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* Section */
.section { padding: 14px 0; background: #fffaea; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; gap: 10px;}
.section-title { font-size: 22px; font-weight: 700; color: var(--dark); }
.section-title span { color: var(--primary); }
.section-title-ch { font-size: 22px; font-weight: 700; color: var(--dark); margin-top: 0px; }
.section-title-ch span { color: var(--primary); }
.section-subtitle { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.section-link { color: var(--primary); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.section-link:hover { color: var(--primary-dark); }
#app { background: #fffaea;}
/* Category Cards Grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 10px; }
.cat-grid-home { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 10px; }
.cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 10px 10px 0px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cat-card-icon {
  width: 135px; height: 120px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 12px;
}
.cat-card-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.cat-card-count { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Product Cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(197px, 1fr)); gap: 8px; }
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-img-wrap {
  position: relative; overflow: hidden;
  padding-top: 75%; /* 4:3 aspect ratio */
}
.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 6px; left: 6px;
  background: #15803d; color: #fff;
  padding: 0px 5px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 600;
}
.product-badge.badge-new { background: var(--success); }
.product-badge.badge-popular { background: var(--accent); }
.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.wishlist-btn:hover, .wishlist-btn.active { color: var(--danger); }
.wishlist-btn.active i { font-weight: 900; }
.product-body { padding: 8px; }
.product-category { font-size: 11px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.product-name {
  font-size: 14px; font-weight: 600; color: var(--dark);
  margin-bottom: 0px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-rating { display: flex; align-items: center; gap: 4px; justify-content: center; font-weight: 700; }
.product-rating .stars { color: var(--warning); font-size: 13px; }
.product-rating .count { font-size: 13px; color: #15803d; }
.product-source-rows { margin-top: 6px; display: flex; flex-direction: column; gap: 3px; }
.product-source-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.ps-row-btn { width:100%;background:none;border:none;padding:0;cursor:pointer;font-family:inherit;text-align:left;border-radius:4px;transition:background .15s; }
.ps-row-btn:hover { background:#f9fafb; }
.ps-label { font-weight: 600; color: #374151; }
.ps-ethical { color: #15803d; text-decoration: underline; }
.ps-ordinary { color: #b45309; text-decoration: underline; }
.ps-time-e { color: #15803d; display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.ps-time-o { color: #b45309; display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.ps-time .fa { font-size: 9px; }
.product-price-row {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: space-between;
    padding: 0px 4px;
}

.product-price {
  display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 4px;
}
.price-main { font-size: 14px; font-weight: 700; color: var(--primary); }
.price-original { font-size: 13px; color: #dc3545; font-weight: 700; text-decoration: line-through; }
.price-unit { font-size: 11px; color: #070cff; margin-top: 1px; }
.add-to-cart-btn {
  top: 47%; right: 6px; position: absolute;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
  flex-shrink: 0;
}

.add-to-cart-btn:hover { background: var(--primary-dark); transform: scale(1.1); }
.product-stock-out { position: absolute; inset: 0; background: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--danger); }
.product-stock-very-low {   position: absolute; top: 6px; right: 6px;
  background: #801515; color: #fff;
  padding: 0px 5px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 600; 
}
.product-stock-low {   position: absolute; top: 6px; right: 6px;
  background: #d84b0a; color: #fff;
  padding: 0px 5px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 600;
}

/* Restaurant Cards */
.restaurant-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.restaurant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.restaurant-banner { height: 140px; overflow: hidden; position: relative; }
.restaurant-banner img { width: 100%; height: 100%; object-fit: cover; }
.restaurant-logo-wrap {
  position: absolute; bottom: -20px; left: 16px;
  width: 50px; height: 50px; border-radius: var(--radius);
  border: 3px solid #fff; overflow: hidden;
  box-shadow: var(--shadow);
}
.restaurant-body { padding: 28px 16px 16px; }
.restaurant-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.restaurant-cuisine { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.restaurant-meta { display: flex; gap: 16px; }
.meta-item { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-light); }

/* === RTC SUB CARDS === */
.rtcsub-wrap { position: relative; padding: 0 2px; }
.rtcsub-track { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding: 4px 2px 8px; }
.rtcsub-track::-webkit-scrollbar { display: none; }
.rtcsub-card { flex-shrink: 0; width: 290px; background: #fff; border-radius: 14px; border: 1px solid #e9ecef; padding: 16px 16px 12px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.rtcsub-card-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.rtcsub-card-title { font-size: 15px; font-weight: 700; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rtcsub-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.rtcsub-card-item { cursor: pointer; }
.rtcsub-card-item:hover .rtcsub-card-img { opacity: .88; }
.rtcsub-card-img { border-radius: 10px; overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; margin-bottom: 5px; }
.rtcsub-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rtcsub-card-name { font-size: 14px; font-weight: 600; color: #111; text-align: center; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.rtcsub-card-more { font-size: 13px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.rtcsub-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1); z-index: 2; color: #334155; transition: .18s; }
.rtcsub-arr:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.rtcsub-arr-l { left: -4px; }
.rtcsub-arr-r { right: -4px; }

/* === REPUTABLE HOMEMADE === */
.hm-wrap { position: relative; padding: 0 2px; }
.hm-track { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding: 4px 2px 12px; align-items: flex-start; }
.hm-track::-webkit-scrollbar { display: none; }
.hm-col { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.hm-pro-card {flex-shrink: 0; width: 100%; background: #fff; border-radius: 14px; border: 1px solid #e9ecef; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); cursor: pointer; transition: box-shadow .18s, transform .18s; }
.hm-card { flex-shrink: 0; width: 235px; background: #fff; border-radius: 14px; border: 1px solid #e9ecef; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); cursor: pointer; transition: box-shadow .18s, transform .18s; }
.hm-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.hm-card-img-wrap { position: relative; width: 100%; height: 155px; overflow: hidden; }
.hm-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-card-badge { position: absolute; top: 9px; left: 9px; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px; line-height: 1.3; }
.hm-card-fav { position: absolute; top: 7px; right: 7px; width: 30px; height: 30px; border: none; border-radius: 50%; background: #15803de3; color: #ccc; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color .18s; font-size: 14px; }
.hm-card-fav.active, .hm-card-fav:hover { color: #ef4444; }
.hm-card-body { padding: 10px 12px 12px; }
.hm-card-meta { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 7px; align-items: center;} 
.hm-card-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1.5px solid #e5e7eb; flex-shrink: 0; }
.hm-card-logo-ph { background: #f0fdf4; display: flex; align-items: center; justify-content: center; color: #16a34a; font-size: 15px; }
.hm-card-name { font-size: 14px; font-weight: 600; color: #111; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-align: center; }
.hm-card-cats { font-size: 11px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; }
.hm-card-rating { display: flex; align-items: center; justify-content: center; gap: 5px; margin-bottom: 6px; flex-wrap: wrap; }
.hm-stars { color: #f59e0b; font-size: 12px; }
.hm-stars-empty { color: #f59e0b; font-size: 12px; }
.hm-card-rating-num { font-size: 12px; font-weight: 700; color: #15803d; }
.hm-card-rating-sep { color: #d1d5db; font-size: 11px; }
.hm-card-count { font-size: 12px; color: #15803d; font-weight: 600; }
.hm-card-review-btn { border: none; background: none; font-size: 12px; color: #15803d; font-weight: 600; cursor: pointer; padding: 0; font-family: var(--font); text-decoration: underline; text-underline-offset: 2px; }
.hm-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 4px; font-size: 12px; border-top: 1px solid #f1f5f9; padding-top: 7px; margin-top: 4px; flex-wrap: wrap; }
.hm-card-fast { color: #16a34a; font-weight: 600; }
.hm-card-min { color: #ef4444; }
.hm-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1); z-index: 2; color: #334155; transition: .18s; }
.hm-arr:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.hm-arr-l { left: -4px; }
.hm-arr-r { right: -4px; }
/* Review modal */
.hm-review-modal { display: none; position: fixed; inset: 0; z-index: 9000; }
.hm-review-modal.active { display: flex; align-items: center; justify-content: center; padding: 16px; }
.hm-review-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.hm-review-box { position: relative; background: #fff; border-radius: 16px; width: 100%; max-width: 480px; max-height: 80vh; display: flex; flex-direction: column; overflow: hidden; }
.hm-review-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #f1f5f9; flex-shrink: 0; }
.hm-review-title { font-size: 15px; font-weight: 700; color: #1e293b; }
.hm-review-close { border: none; background: none; font-size: 18px; color: #6b7280; cursor: pointer; line-height: 1; }
.hm-review-body { overflow-y: auto; padding: 4px 20px 20px; }
.hm-review-item { padding: 12px 0; border-bottom: 1px solid #f8fafc; }
.hm-review-item:last-child { border-bottom: none; }
.hm-review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.hm-review-author { font-weight: 600; font-size: 13px; color: #1e293b; }
.hm-review-date { font-size: 11px; color: #9ca3af; }
.hm-review-stars { margin-bottom: 5px; }
.hm-review-comment { font-size: 13px; color: #374151; line-height: 1.5; }

/* === QUICK DEAL === */
.qd-box { border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.qd-header { background: #15803d; padding: 14px 20px 0 20px; display: flex; align-items: flex-start; flex-direction: column; gap: 12px; flex-wrap: nowrap; }
.qd-title { color: #fff; font-size: 20px; font-weight: 800; white-space: nowrap; letter-spacing: -.3px; flex-shrink: 0; }
.qd-tabs { display: flex; gap: 8px; flex-wrap: nowrap; width: 100%; overflow-x: auto; scrollbar-width: none; padding-bottom: 0; }
.qd-tabs::-webkit-scrollbar { display: none; }
.qd-tab { background: rgba(255,255,255,.18); color: #fff; border: none; padding: 7px 16px; border-radius: 10px 10px 0px 0px; font-size: 13px; font-weight: 600; cursor: pointer; transition: .18s; font-family: var(--font); }
.qd-tab.active { background: #fff; color: #1a73e8; }
.qd-tab:hover:not(.active) { background: rgba(255,255,255,.3); }
.qd-body { position: relative; padding: 14px 1px 1px; background: #fff; }
.qd-track { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px;}
.qd-track::-webkit-scrollbar { display: none; }
.qd-track .product-card { width: 210px; min-width: 210px; flex-shrink: 0; }

.qd-col { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.qd-card { width: 155px; border: 1px solid #e9ecef; border-radius: 10px; overflow: hidden; background: #fff; cursor: pointer; transition: box-shadow .18s, transform .18s; }
.qd-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }
.qd-card img { width: 100%; height: 130px; object-fit: cover; display: block; }
.qd-card-info { padding: 8px 10px 10px; }
.qd-card-name { font-size: 12px; font-weight: 600; color: #1e293b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 5px; }
.qd-card-pricing { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; margin-bottom: 4px; }
.qd-card-old { font-size: 11px; color: #94a3b8; text-decoration: line-through; }
.qd-card-price { font-size: 14px; font-weight: 700; color: #16a34a; }
.qd-card-badge { background: #ef4444; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 5px; border-radius: 4px; }
.qd-card-stock { font-size: 11px; color: #64748b; }
.qd-arr { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.12); z-index: 2; color: #334155; transition: .18s; }
.qd-arr:hover { background: #1a73e8; color: #fff; border-color: #1a73e8; }
.qd-empty { padding: 32px; text-align: center; color: #94a3b8; font-size: 14px; }


/* Special Landing Sections */
.special-section {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  padding: 48px 40px;
  color: #fff;
  margin-bottom: 32px;
}
.special-section::before {
  content: ''; position: absolute; inset: 0;
  background: inherit; z-index: 0;
}
.special-section-inner { position: relative; z-index: 1; }

/* Announcement / Promo Strip */
.promo-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; text-align: center; padding: 10px;
  font-size: 14px;
}
.promo-strip strong { font-weight: 700; }

/* --- CART DRAWER --- */
.cart-drawer { position: fixed; inset: 0; z-index: 2000; pointer-events: none; }
.cart-drawer.open { pointer-events: all; }
.cart-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.5);
  opacity: 0; transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-inner {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: #fff;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-drawer.open .cart-drawer-inner { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 20px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.cart-drawer-header h5 { font-size: 18px; font-weight: 700; margin: 0; }
.cart-drawer-header button { width: 32px; height: 32px; border-radius: 50%; background: #000000; display:flex;align-items:center;justify-content:center; color:#fff; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 6px 4px; }
.cart-drawer-footer { padding: 0px 10px 10px 10px; border-top: 1px solid var(--border); background: #fff; }


.cart-item {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px; height: 64px; border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--text-muted); }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--primary); }
.qty-control { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-num { font-size: 15px; font-weight: 600; min-width: 24px; text-align: center; }
.cart-remove { color: var(--danger); font-size: 13px; }

.cart-summary { margin-top: 8px; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 4px; font-size: 14px; }
.cart-summary-row.total { font-size: 18px; font-weight: 700; color: var(--dark); border-top: 1px solid var(--border); padding-top: 2px; }
.cart-summary-row .free-delivery { color: var(--success); font-size: 12px; }

.btn-checkout {
  display: block; width: 100%;
  background: var(--primary); color: #fff;
  padding: 6px; border-radius: var(--radius);
  font-size: 16px; font-weight: 700;
  text-align: center; margin-top: 2px;
  transition: var(--transition);
}
.btn-checkout:hover { background: var(--primary-dark); transform: translateY(-1px); }
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 300px; color: var(--text-muted); text-align: center;
}
.cart-empty i { font-size: 64px; margin-bottom: 16px; opacity: .3; }
.cart-empty p { font-size: 16px; margin-bottom: 16px; }

/* --- FULL CART PAGE --- */
.cart-page-item { background:#fff; border-radius:var(--radius-lg); padding:16px; margin-bottom:16px; box-shadow:var(--shadow-sm); }
.cart-sa-coloum { display:flex; flex-wrap:nowrap; gap:6px;}
.cart-sa-area { padding: 2px 2px; font-size: 12px; font-weight: 500; align-content: center; margin-bottom:4px; padding-bottom:4px;}
.cart-sa-row { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:4px; padding-bottom:4px; border-bottom:1px solid var(--border); }
.cart-sa-badge { background:#ecfdf5; color:#059669; border:1px solid #a7f3d0; padding:2px 10px; border-radius:20px; font-size:12px; font-weight:500; }
.cart-page-main { display:flex; gap:12px; align-items:flex-start; align-items: center; }
.cart-img-wrap { position:relative; flex-shrink:0; }
.cart-page-img { width:90px; height:90px; border-radius:var(--radius); object-fit:cover; display:block; }
.cart-img-save { position:absolute; top:0; left:0; background:#16a34a; color:#fff; font-size:10px; font-weight:700; padding:2px 6px; border-radius:var(--radius) 0 6px 0; white-space:nowrap; }
.cart-img-type-badge { position:absolute; bottom:0; right:0; background:#7c3aed; color:#fff; font-size:10px; font-weight:700; padding:2px 6px; border-radius:0 var(--radius) 0 6px; white-space:nowrap; z-index:1; }
.cart-page-mid { flex:1; min-width:0; }
.cart-page-name { font-size:15px; font-weight:600; color:var(--dark); margin-bottom:5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-price-row { display:flex; align-items:center; gap:8px; margin-bottom:5px; flex-wrap:wrap; }
.cp-sale { font-size:16px; font-weight:700; color:var(--primary); }
.cp-orig { font-size:13px; color:#dc3545; font-weight: 700; text-decoration:line-through; }
.cp-vol-text { font-size:12px; color:var(--text-muted); background:var(--bg); padding:2px 8px; border-radius:10px; }
.cp-sel-btn { font-size:12px; border:1px solid var(--border); background:var(--bg); border-radius:20px; padding:2px 10px; cursor:pointer; transition:var(--transition); }
.cp-sel-btn:hover, .cp-sel-btn.has-val { border-color:var(--primary); color:var(--primary); background:#f0fdf4; }
.cart-qty-color-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:6px; }
.cart-page-right { display:flex; flex-direction:column; align-items:flex-end; gap:10px; min-width:70px; }
.cp-icon-btn { width:32px; height:32px; border-radius:50%; background:var(--bg); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:var(--transition); color:var(--text-muted); font-size:14px; }
.cp-icon-btn:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.cp-icon-btn.del:hover { background:#ef4444; color:#fff; border-color:#ef4444; }
.cp-line-total { font-size:16px; font-weight:700; color:var(--primary); white-space:nowrap; }
/* Packaging */
.cart-pkg { margin-top:4px; padding:4px; border-top:1px dashed var(--border); }
.pkg-opts { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:6px; justify-content: space-between; }
.pkg-opt { display:flex; align-items:center; gap:5px; padding:4px 4px; border-radius:6px; border:1.5px solid var(--border); font-size:12px; cursor:pointer; transition:var(--transition); user-select:none; }
.pkg-opt.active { border-color:var(--primary); background:#f0fdf4; color:var(--primary-dark); font-weight:600; }
.pkg-cb { width:14px; height:14px; accent-color:var(--primary); cursor:pointer; flex-shrink:0; }
.pkg-info-btn { width:16px; height:16px; border-radius:50%; border: 1px solid #f5430b; color: #100bf5; background:none; font-size:9px; font-weight:700; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; padding:0; line-height:1; }
.pkg-return-row { display:flex; align-items:center; gap:6px; font-size:12px; color:#059669; margin-top:5px; flex-wrap:wrap; justify-content: center; }
.pkg-comment-box { background:#fffbeb; border:1px solid #fde68a; border-radius:8px; padding:10px 12px; font-size:12px; color:#78350f; margin-top:8px; line-height:1.7; }
.checkout-presentation .pkg-opt .pres-check-icon { color:#d1d5db; transition:color .2s; }
.checkout-presentation .pkg-opt.active .pres-check-icon { color:var(--primary); }
/* Affiliate apply form */
.aff-section { margin-bottom:20px; padding-bottom:18px; border-bottom:1px solid #f3f4f6; }
.aff-section:last-of-type { border-bottom:none; }
.aff-section-title { font-weight:700; font-size:.88rem; color:#111; margin-bottom:10px; }
.aff-section-title .req { color:#ef4444; }
.aff-checks { display:flex; flex-wrap:wrap; gap:8px; }
.aff-check { display:flex; align-items:center; gap:6px; font-size:.82rem; color:#374151; cursor:pointer; background:#f8fafc; border:1.5px solid #e2e8f0; border-radius:8px; padding:6px 12px; transition:.15s; }
.aff-check:hover { border-color:var(--primary); }
.aff-check input { width:15px; height:15px; cursor:pointer; accent-color:var(--primary); }
.aff-input { width:100%; padding:9px 12px; border:1.5px solid #e2e8f0; border-radius:8px; font-size:.84rem; font-family:inherit; outline:none; box-sizing:border-box; }
.aff-input:focus { border-color:var(--primary); }
.aff-select { width:100%; padding:9px 12px; border:1.5px solid #e2e8f0; border-radius:8px; font-size:.84rem; font-family:inherit; outline:none; background:#fff; }
.aff-select:focus { border-color:var(--primary); }
/* Cart option modals */
.ck-overlay { position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:9500; display:flex; align-items:center; justify-content:center; }
.ck-modal { background:#fff; border-radius:var(--radius-lg); padding:20px; max-width:460px; width:92%; max-height:75vh; overflow-y:auto; }
.ck-modal-head { display:flex; justify-content:space-between; align-items:center; font-size:16px; font-weight:700; margin-bottom:14px; }
.ck-modal-close { width:30px; height:30px; border-radius:50%; background:var(--bg); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.ck-card { display:flex; align-items:center; gap:10px; padding:10px 12px; border:2px solid var(--border); border-radius:var(--radius); cursor:pointer; margin-bottom:8px; transition:var(--transition); }
.ck-card:hover { border-color:var(--primary); }
.ck-card.sel { border-color:var(--primary); background:#f0fdf4; }
.ck-swatch { width:32px; height:32px; border-radius:50%; border:2px solid rgba(0,0,0,.1); flex-shrink:0; }
.ck-card-mid { flex:1; min-width:0; }
.ck-card-name { font-weight:600; font-size:14px; }
.ck-card-sub { font-size:12px; color: #dc3545; font-weight: 700; }
.ck-card-price { font-size:14px; font-weight:700; color:var(--primary); white-space:nowrap; }
.ck-pv-thumb { width:48px; height:48px; border-radius:var(--radius); object-fit:cover; flex-shrink:0; background:var(--bg); border:1px solid var(--border); }

/* --- PRODUCT DETAIL PAGE --- */
.product-detail { animation: fadeInUp .4s ease; }
.product-detail-gallery { position: sticky; top: 90px; }
.product-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1; background: var(--bg);
  margin-bottom: 12px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumb {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.product-thumb.active { border-color: var(--primary); }
.product-detail-info { padding-left: 24px; }

/* --- BREADCRUMB --- */
.breadcrumb-wrap { padding: 16px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* --- FILTERS SIDEBAR --- */
.filter-sidebar { position: sticky; top: 90px; }
.filter-card { background: #fff; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 16px; }
.filter-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-option input { width: 16px; height: 16px; accent-color: var(--primary); }
.filter-option label { font-size: 14px; cursor: pointer; }
.price-range-wrap { margin-top: 8px; }
.price-range { width: 100%; accent-color: var(--primary); }

/* --- AUTH MODAL --- */
.auth-modal { border: none; border-radius: var(--radius-xl); overflow: hidden; padding: 0; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  z-index: 9300; width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); color: var(--text); border: none;
  display: flex; align-items: center; justify-content: center;
}
.auth-step { padding: 40px 22px 32px; }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-logo {
  width: 64px; height: 64px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(22,163,74,.3);
}
.auth-icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.auth-header h2 { font-size: 24px; font-weight: 700; color: var(--dark); }
.auth-header p { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.auth-phone-display { font-size: 16px; font-weight: 600; color: var(--primary); margin-top: 8px; }
.input-with-flag {
  display: flex; align-items: center; gap: 0;
  border: 2px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); margin-bottom: 10px;
}
.input-with-flag:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(22,163,74,.1); }
.input-with-flag .flag { padding: 12px 14px; background: var(--bg); font-size: 14px; white-space: nowrap; border-right: 2px solid var(--border); }
.input-with-flag input { flex: 1; padding: 12px 14px; border: none; outline: none; font-size: 16px; font-family: var(--font); }
.btn-primary-full {
  display: block; width: 100%;
  background: var(--primary); color: #fff;
  padding: 11px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transition: var(--transition); border: none;
}
.btn-primary-full:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline-full {
  display: block; width: 100%;
  background: transparent; color: var(--primary);
  padding: 12px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition); margin-top: 8px;
}
.btn-outline-full:hover { background: var(--primary-light); }

/* Sell & Earn button */
.btn-earn .btn-inner { width:100%; display:flex; align-items:center; justify-content:space-between; gap:6px; }
.btn-earn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 10px 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000; border: none; border-radius: 9px;
  font-weight: 700; font-size: .85rem; font-family: var(--font);
  cursor: pointer; transition: opacity .18s, transform .15s;
  position: relative; overflow: hidden;
}
.btn-earn:hover { opacity: .9; transform: translateY(-1px); }
.btn-earn:active { transform: translateY(0); }
.btn-earn .btn-spin { display: none; }
.btn-earn.loading .btn-inner { display: none; }
.btn-earn.loading .btn-spin { display: flex; align-items: center; justify-content: center; }
.btn-earn .spinner {
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Auth modal always on top */
#authModal { z-index: 10060 !important; }
#authModal ~ .modal-backdrop { z-index: 10059 !important; }

/* Register step redesign */
.reg-step-styled { padding: 28px 28px 24px; }
.reg-avatar-wrap { display: flex; justify-content: center; margin-bottom: 18px; }
.reg-avatar-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2.5px dashed #16a34a;
  background: #f0fdf4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  overflow: hidden;
  position: relative;
}
.reg-avatar-circle:hover { border-color: #15803d; background: #dcfce7; }
.reg-field-wrap { margin-bottom: 14px; }
.reg-label { display: block; font-size: .78rem; font-weight: 600; color: #374151; margin-bottom: 5px; }
.req-star { color: #ef4444; }
.reg-input { border-radius: 10px !important; border: 1.5px solid #e5e7eb !important; padding: 10px 14px !important; font-size: .9rem !important; transition: border-color .2s !important; }
.reg-input:focus { border-color: #16a34a !important; box-shadow: 0 0 0 3px rgba(22,163,74,.1) !important; }

.auth-divider-small { display: flex; align-items: center; gap: 8px; }
.auth-divider-small::before, .auth-divider-small::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }

.auth-modal-footer { padding: 10px 10px 10px; border-top: 1px solid #f0f4f0; margin-top: 2px; }
.auth-footer-brand { text-align: center; font-size: .92rem; font-weight: 700; color: #16a34a; margin: 0 0 5px; letter-spacing: .2px; }
.auth-footer-desc { font-size: .89rem; color: #000; text-align: center; margin: 0; line-height: 1.55; }

.auth-divider { text-align: center; color: var(--text-muted); margin: 16px 0; font-size: 13px; position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border); }
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.otp-inputs { display: flex; gap: 8px; justify-content: center; }
.otp-input {
  width: 44px; height: 52px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 22px; font-weight: 700;
  text-align: center; outline: none;
  transition: var(--transition); font-family: var(--font);
}
.otp-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(22,163,74,.1); }
.resend-section { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-muted); }
.resend-section button { color: var(--primary); font-weight: 600; font-family: var(--font); }
.btn-back { display: block; width: 100%; color: var(--text-light); font-size: 14px; text-align: center; padding: 8px; margin-top: 4px; font-family: var(--font); }

/* --- USER HEADER STATES --- */
.user-btn-group { display: flex; gap: 8px; }
.btn-login { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; transition: var(--transition); }
.btn-login:hover { background: var(--primary); color: #fff; }
.btn-register { background: var(--primary); color: #fff; padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; transition: var(--transition); }
.btn-register:hover { background: var(--primary-dark); }
.user-avatar-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 4px 4px 4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  cursor: pointer; transition: var(--transition);
}
.user-avatar-btn:hover { border-color: var(--primary); }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; overflow: hidden;
}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-name { font-size: 14px; font-weight: 600; color: var(--dark); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --- USER SIDEBAR --- */
.user-sidebar { position: fixed; inset: 0; z-index: 2000; pointer-events: none; }
.user-sidebar.open { pointer-events: all; }
.user-sidebar-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.5); opacity: 0; transition: opacity .3s ease; backdrop-filter: blur(4px); }
.user-sidebar.open .user-sidebar-overlay { opacity: 1; }
.user-sidebar-inner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #fff4ea1a;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    height: 100vh;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.user-sidebar.open .user-sidebar-inner { transform: translateX(0); }
.user-sidebar-header {
    padding: 30px 20px 20px 50px;
    border-bottom: 1px solid var(--border);
    display: flex;
    
    justify-content: space-between;
    background: #ffe9cfc4;
}
.user-sidebar-header button { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); display:flex;align-items:center;justify-content:center; }
.user-menu { padding: 8px 0; background: #edffe6b8;}
.user-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;     
  color: #060910;
  font-size: 14px;
  transition: var(--transition);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.user-menu a:hover { background: var(--primary-light); color: var(--primary); padding-left: 24px; }
.user-menu a i { width: 20px; text-align: center; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
.logout-link { color: var(--danger) !important; }
.logout-link:hover { background: #fef2f2 !important; }



/* --- NOTIFICATION DROPDOWN --- */
.notif-dropdown {
  position: fixed; top: 125px; right: 16px;
  width: 360px; max-height: 480px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  z-index: 1500; overflow: hidden;
  display: flex; flex-direction: column;
  animation: fadeInUp .2s ease;
}
.notif-header { flex-shrink: 0; }
#notifList { overflow-y: auto; flex: 1; min-height: 0; }
.notif-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.notif-header h6 { font-size: 16px; font-weight: 700; margin: 0; }
.notif-header button { color: var(--primary); font-size: 13px; font-family: var(--font); }
.notif-item {
  display: flex; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition); cursor: pointer;
  justify-content: space-between;
}
.notif-item:hover { background: var(--bg); }
.notif-item.unread { background: #f0fdf4; }
.notif-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display:flex;align-items:center;justify-content:center; flex-shrink: 0; }
.notif-text { flex: 1; min-width: 0; }
.notif-text .title { font-size: 14px; font-weight: 600; color: var(--dark); overflow-wrap: break-word; word-break: break-word; }
.notif-text .msg { font-size: 12px; color: #1d4ed8; margin-top: 2px; overflow-wrap: break-word; word-break: break-word; }
.notif-text .time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.notif-del {
  align-self: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: none; background: transparent; color: var(--text-muted); font-size: 12px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition);
}
.notif-del:hover { background: #fee2e2; color: #ef4444; }
.notif-empty { text-align: center; padding: 48px 24px; color: var(--text-muted); }
.notif-empty i { font-size: 48px; margin-bottom: 12px; opacity: .3; display: block; }

/* --- MOBILE NAV --- */
.mobile-nav {
display: none;
}
.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2px;
    background: var(--surface-color);
}

.mobile-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: 6px 1px; color: var(--text-muted);
  font-size: 11px; transition: var(--transition);
}
.mobile-nav-item i { font-size: 22px; }
.mobile-nav-item.active, .mobile-nav-item:hover { color: black; }
.mobile-cart-bubble { position: relative; }
.mobile-cart-badge {
  position: absolute; top: -14px; right: -6px;
  min-width: 16px; height: 16px;
  background: var(--danger); color: #fff;
  border-radius: var(--radius-full);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.mobile-nav-item.active-read{ color: #830c0c;}
.mobile-nav-item.active-comments{ color: #15803d; }
.mobile-nav-item.active-categories{ color: #22248c}
.mobile-nav-item.active-money{ color: #6c44ef; }

/* --- FOOTER --- */
/* ── FOOTER ── */
.main-footer { margin-top:10px; }
.footer-body { background:linear-gradient(160deg, #094e2e 0%, #14512a 60%, #0a2014 100%); color:#d1fae5; }
.footer-logo-row { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-logo-icon { width:40px; height:40px; background: rgb(246, 255, 249);  border-radius:10px; box-shadow: 0 4px 12px rgba(22, 163, 74, .3); display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; flex-shrink:0; }
.footer-brand-name { font-size:20px; font-weight:800; color:#fff; letter-spacing:.3px; }
.footer-brand-desc { font-size:13.5px; line-height:1.75; color:#a7f3d0; margin-bottom:18px; }
.footer-heading { font-size:13px; font-weight:700; color:#fbbf24; margin-bottom:16px; letter-spacing:.8px; text-transform:uppercase; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:9px; }
.footer-links a { font-size:13.5px; color:#a7f3d0; text-decoration:none; transition:.15s; display:flex; align-items:center; gap:6px; }
.footer-links a i { font-size:9px; color:#4ade80; transition:.15s; }
.footer-links a:hover { color:#fbbf24; padding-left:4px; }
.footer-links a:hover i { color:#fbbf24; }
.footer-contact { margin-bottom:18px; }
.footer-contact .contact-item { display:flex; gap:10px; margin-bottom:11px; align-items:flex-start; font-size:13.5px; color:#a7f3d0; }
.footer-contact .contact-item i { color:#fbbf24; margin-top:3px; flex-shrink:0; width:16px; text-align:center; }
.footer-social { display:flex; gap:10px; margin-top:4px; }
.footer-social a { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); color:#ffc107; display:flex; align-items:center; justify-content:center; transition:.2s; font-size:14px; }
.footer-social a:hover { background:#16a34a; border-color:#16a34a; color:#fff; transform:translateY(-2px); }
.footer-app-wrap { margin-top:4px; }
.footer-app-label { font-size:12px; font-weight:700; color:#6ee7b7; margin-bottom:10px; letter-spacing:.3px; }
.footer-app-btns { display:flex; gap:8px; flex-wrap:wrap; }
.app-download-btn { display:flex; align-items:center; gap:9px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); color:#fff; padding:9px 14px; border-radius:8px; font-size:12px; font-family:var(--font); cursor:pointer; transition:.2s; text-align:left; }
.app-download-btn i { font-size:20px; color:#a7f3d0; }
.app-download-btn span { display:flex; flex-direction:column; line-height:1.2; }
.app-download-btn span small { font-size:10px; color:#6ee7b7; font-weight:400; }
.app-download-btn:hover { background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.3); transform:translateY(-1px); }
/* bottom bar */
.footer-bottom-bar { background:#091a0f; padding:14px 0; border-top:1px solid rgba(255,255,255,.07); }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:12.5px; color:#6ee7b7; margin:0; }
.footer-copy strong { color:#a7f3d0; }
.footer-payment-icons { display:flex; align-items:center; gap:8px; }
.footer-pay-label { font-size:11px; color:#6ee7b7; font-weight:600; }
.footer-pay-img { height:22px; width:auto; filter:brightness(1.1) saturate(.8); opacity:.85; }
/* legacy compat */
.footer-divider { display:none; }
.footer-bottom { display:none; }
.payment-icon { height:22px; width:auto; }

/* --- PAGES --- */
/* Checkout */
.checkout-page { padding: 32px 0; }
.checkout-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 20px; }
.checkout-card-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; display: flex;  align-items: center; gap: 10px; }
.checkout-card-title i { color: var(--primary); }
.form-label-bn { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
/* Address cards */
.btn-add-addr-sm { background:var(--primary); color:#fff; border:none; border-radius:20px; padding:6px 14px; font-size:12px; font-weight:600; cursor:pointer; font-family:var(--font); white-space:nowrap; }
.btn-add-addr-sm:hover { background:var(--primary-dark); }
.addr-card {display: flex; flex-wrap: nowrap; gap: 10px; border:2px solid var(--border); border-radius:var(--radius); padding:14px; margin-bottom:10px; cursor:pointer; transition:var(--transition); }
.addr-card:hover { border-color:var(--primary); background:#f0fdf4; }
.addr-card.selected { border-color:var(--primary); background:#f0fdf4; }
.addr-sel-dot { width:20px; height:20px; border-radius:50%; border:2px solid var(--border); background:#fff; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:transparent; margin-top:2px; transition:var(--transition); }
.addr-sel-dot.active { border-color:var(--primary); background:var(--primary); color:#fff; }
.addr-edit-btn { background:none; border:1px solid #2563eb; color:#2563eb; border-radius:6px; padding:3px 10px; font-size:11px; cursor:pointer; font-family:var(--font); }
.addr-edit-btn:hover { background:#2563eb; color:#fff; }
.addr-del-btn { background:none; border:1px solid #ef4444; color:#ef4444; border-radius:6px; padding:3px 10px; font-size:11px; cursor:pointer; font-family:var(--font); }
.addr-del-btn:hover { background:#ef4444; color:#fff; }
.addr-cards-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }


.addr-see-more-btn { width:100%; background:none; border:1px solid var(--border); border-radius:var(--radius); padding:8px; font-size:13px; color:var(--text-muted); cursor:pointer; font-family:var(--font); margin-top:4px; }
.addr-see-more-btn:hover { border-color:var(--primary); color:var(--primary); }
.checkout-presentation {display: flex; flex-wrap: nowrap; gap: 10px; }
.ts-slot-btn { display:block; width:100%; padding:5px 3px; margin-bottom:3px; border:1px solid #e5e7eb; border-radius:5px; background:#fff; font-size:11px; cursor:pointer; color:#374151; text-align:center; transition:all .15s; font-family:var(--font); line-height:1.4; }
.ts-slot-btn:hover { background:#dcfce7; border-color:#16a34a; color:#16a34a; }
.ts-slot-btn.active { background:#16a34a !important; color:#fff !important; border-color:#16a34a; font-weight:700; }
.cal-date-btn { display:inline-flex; flex-direction:column; align-items:center; justify-content:center; padding:8px 6px; border-radius:50px; border:2px solid #e5e7eb; background:#fff; cursor:pointer; min-width:54px; font-family:var(--font); transition:all .15s; color:#374151; }
.cal-date-btn:hover { border-color:#764ba2; background:#f5f3ff; }
.cal-date-btn.active { background:linear-gradient(135deg,#667eea,#764ba2); color:#fff !important; border-color:#667eea; }
.form-control-bn {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font);
  transition: var(--transition); background: var(--bg);
}
.form-control-bn:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(22,163,74,.1); }
.payment-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-option {
  border: 2px solid #e5e7eb; border-radius: 12px;
  padding: 14px 8px 12px; text-align: center; cursor: pointer;
  transition: all .2s; background: #fff; position: relative; overflow: hidden;
}
.payment-option::before { content:''; position:absolute; inset:0; opacity:0; transition:opacity .2s; }
.payment-option[data-method="cod"]::before { background:linear-gradient(135deg,#dcfce7,#bbf7d0); }
.payment-option[data-method="Mobile-banking"]::before { background:linear-gradient(135deg,#ede9fe,#ddd6fe); }
.payment-option[data-method="bank-transfer"]::before { background:linear-gradient(135deg,#dbeafe,#bfdbfe); }
.payment-option.selected::before { opacity:1; }
.payment-option[data-method="cod"].selected { border-color:#16a34a; }
.payment-option[data-method="Mobile-banking"].selected { border-color:#7c3aed; }
.payment-option[data-method="bank-transfer"].selected { border-color:#1d4ed8; }
.payment-option:hover { transform:translateY(-2px); box-shadow:0 4px 12px rgba(0,0,0,.1); }
.payment-option .pmnt-icon-wrap { width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 8px; position:relative; z-index:1; transition:all .2s; }
.payment-option[data-method="cod"] .pmnt-icon-wrap { background:#dcfce7; }
.payment-option[data-method="Mobile-banking"] .pmnt-icon-wrap { background:#ede9fe; }
.payment-option[data-method="bank-transfer"] .pmnt-icon-wrap { background:#dbeafe; }
.payment-option[data-method="cod"].selected .pmnt-icon-wrap { background:#16a34a; }
.payment-option[data-method="Mobile-banking"].selected .pmnt-icon-wrap { background:#7c3aed; }
.payment-option[data-method="bank-transfer"].selected .pmnt-icon-wrap { background:#1d4ed8; }
.payment-option i { font-size:30px; display:block; position:relative; z-index:1; }
.payment-option[data-method="cod"] i { color:#16a34a; }
.payment-option[data-method="Mobile-banking"] i { color:#7c3aed; }
.payment-option[data-method="bank-transfer"] i { color:#1d4ed8; }
.payment-option.selected i { color:#fff !important; }
.payment-option span { font-size:11px; font-weight:700; display:block; position:relative; z-index:1; }
.payment-option[data-method="cod"] span { color:#15803d; }
.payment-option[data-method="Mobile-banking"] span { color:#6d28d9; }
.payment-option[data-method="bank-transfer"] span { color:#1e40af; }
.payment-option .pmnt-check { position:absolute; top:6px; right:6px; width:16px; height:16px; border-radius:50%; background:#16a34a; color:#fff; font-size:9px; display:none; align-items:center; justify-content:center; z-index:2; }
.payment-option[data-method="Mobile-banking"] .pmnt-check { background:#7c3aed; }
.payment-option[data-method="bank-transfer"] .pmnt-check { background:#1d4ed8; }
.payment-option.selected .pmnt-check { display:flex; }
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; }
.coupon-row button { padding: 12px 20px; background: var(--accent); color: #fff; border-radius: var(--radius); font-weight: 600; transition: var(--transition); }
.coupon-row button:hover { background: var(--accent-dark); }
.pmnt-check i { font-size: 9px; }
/* Orders Page */
.order-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 20px; border: 1px solid var(--border);
  margin-bottom: 16px; transition: var(--transition);
}
.order-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.order-no { font-size: 13px; color: var(--text-muted); }
.order-status-badge { padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; }
.status-requested  { background: #fff7ed; color: #c2410c; }
.status-processing { background: #eff6ff; color: #1d4ed8; }
.status-shipping   { background: #f0fdf4; color: #15803d; }
.status-delivered  { background: #dcfce7; color: #15803d; }
.status-cancelled  { background: #fef2f2; color: #dc2626; }
.order-meta { display: flex; gap: 20px; flex-wrap: wrap; margin: 12px 0; font-size: 13px; color: var(--text-light); }
.order-meta i { color: var(--primary); margin-right: 4px; }

/* Profile Page */
.profile-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius-xl); padding: 40px 32px; color: #fff; text-align: center; margin-bottom: 32px; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; border: 4px solid rgba(255,255,255,.4); overflow: hidden; margin: 0 auto 16px; background: rgba(255,255,255,.2); display:flex;align-items:center;justify-content:center;font-size:40px; }
.profile-name { font-size: 24px; font-weight: 700; }
.profile-phone { font-size: 15px; opacity: .85; margin-top: 4px; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.profile-stat { text-align: center; background: rgba(255,255,255,.15); border-radius: var(--radius); padding: 16px; }
.profile-stat .val { font-size: 24px; font-weight: 700; }
.profile-stat .lbl { font-size: 12px; opacity: .8; }

/* Dashboard Cards (User) */
.dash-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.dash-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }

/* Investment */
.invest-card { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); border-radius: var(--radius-xl); padding: 32px; color: #fff; }
.invest-package { font-size: 13px; color: rgba(255,255,255,.7); }
.invest-amount { font-size: 36px; font-weight: 700; }
.invest-roi { font-size: 14px; color: var(--success); margin-top: 4px; }
.invest-dates { display: flex; gap: 24px; margin-top: 16px; font-size: 13px; }

/* Special Sections */
.popular-restaurant { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }
.reputable-cook { background: linear-gradient(135deg, #f97316 0%, #c2410c 100%); }
.clean-green-bd { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); }
.dignified-seller { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }
.honorable-investor { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }

/* Affiliate Page */
.ref-link-box { background: var(--bg); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--border); }
.ref-link-url { font-size: 13px; color: var(--text-light); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ref-link-copy { background: var(--primary); color: #fff; padding: 6px 16px; border-radius: var(--radius-sm); font-size: 13px; transition: var(--transition); }
.ref-link-copy:hover { background: var(--primary-dark); }
/* Stats boxes */
.stat-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); text-align: center;
}
.stat-box .icon { font-size: 36px; margin-bottom: 12px; }
.stat-box .num { font-size: 32px; font-weight: 700; color: var(--dark); }
.stat-box .label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-accent  { color: var(--accent) !important; }
.bg-primary-light { background: var(--primary-light) !important; }
.card-base { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.section-divider { border: none; border-top: 2px solid var(--border); margin: 40px 0; }

/* Pagination */
.pagination-wrap { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; color: var(--text); display:flex;align-items:center;justify-content:center; transition: var(--transition); font-family: var(--font); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-btn:disabled { opacity: .4; pointer-events: none; }

/* Toast notifications */
.kk-toast, .SmartO-toast {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--dark); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-full);
  font-size: 14px; box-shadow: var(--shadow-xl);
  z-index: 99999; animation: toastIn .3s ease;
  max-width: 90vw; text-align: center;
}
.kk-toast.success, .SmartO-toast.success { background: var(--primary); }
.kk-toast.error,   .SmartO-toast.error   { background: var(--danger); }
.kk-toast.warning, .SmartO-toast.warning { background: var(--warning); color: var(--dark); }
.SmartO-toast.info { background: #2563eb; }
@keyframes toastIn { from{opacity:0;transform:translate(-50%,-60%);} to{opacity:1;transform:translate(-50%,-50%);} }
.swal2-container.swal2-top-end { z-index: 99999 !important; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { from{background-position:200% 0;} to{background-position:-200% 0;} }
.skeleton-product { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); }
.skeleton-img { height: 160px; }
.skeleton-line { height: 14px; margin: 8px; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-80 { width: 80%; }
.skeleton-line.w-40 { width: 40%; }



/* Safe area for iOS */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-nav { padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
}

/* ===== All Categories Page ===== */
.ac-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1px 0 8px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.ac-breadcrumb a { color: var(--primary); font-weight: 600; text-decoration: none; }
.ac-breadcrumb a:hover { text-decoration: underline; }
.ac-sep { font-size: 10px; color: var(--text-muted); }
.ac-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding: 12px 0 48px;
  align-items: start;
}
.ac-sidebar {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.ac-sidebar-head {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-bottom: 1px solid #e9ecef;
}
.ac-accordion { padding: 6px 0; }
.ac-acc-item { border-bottom: 1px solid #f3f4f6; }
.ac-acc-item:last-child { border-bottom: none; }
.ac-acc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background .15s;
  user-select: none;
}
.ac-acc-head:hover { background: #f8fafc; }
.ac-acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.ac-acc-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-acc-cnt {
  font-size: 11px;
  color: #fff;
  background: var(--primary);
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.ac-acc-arr {
  font-size: 11px;
  color: #0d6efd;
  flex-shrink: 0;
  transition: transform .2s;
}
.ac-acc-body {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px;
  background: #fafafa;
}
.ac-acc-item.open .ac-acc-arr { transform: rotate(-180deg); }
.ac-acc-item.open .ac-acc-head { background: #f0fdf4; }
.ac-acc-item.open .ac-acc-body { display: flex; }
.ac-acc-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 20px;
  font-size: 12.5px;
  color: var(--text-light);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.ac-acc-sub:hover { background: #ecfdf5; color: var(--primary); }
.ac-acc-sub span:first-of-type { flex: 1; }
.ac-sub-cnt {
  font-size: 11px;
  color: var(--text-muted);
  background: #f3f4f6;
  padding: 1px 6px;
  border-radius: 20px;
}
.ac-sub-all {
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px dashed #d1fae5;
  margin-bottom: 2px;
}
.ac-main { min-width: 0; }


/* ===== Home Section Scroll (2-row grid + arrows) ===== */
.rtc-section { background: #fffaea; }
.rtc-section .section-header { padding: 0 0 4px; }
.rtc-carousel-wrap { position: relative; padding: 1px 2px 2px; }
.rtc-track {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 12px;
  padding: 4px 2px 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rtc-track::-webkit-scrollbar { display: none; }
.rtc-track .product-card { width: 210px; min-width: 210px; }
.hm-arr {
  position: absolute; top: 49%; transform: translateY(-50%);
  width: 26px; height: 56px; border-radius: 20%; border: none;
  background: #fff; color: #374151; cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.18); z-index: 2;
  display: none; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; transition: background .15s, color .15s;
}
.hm-arr:hover { background: #2563eb; color: #fff; }
.hm-arr-l { left: 0; }
.hm-arr-r { right: 0; }


/* =============================================
   CATEGORY DETAIL PAGE (/categories/{slug})
   ============================================= */
.cd-layout-cat { display: grid; grid-template-columns: 250px 1fr; gap: 24px; padding: 12px 1px 8px; align-items: start; }
.cd-layout { display: grid; grid-template-columns: 250px 1fr; gap: 24px; padding: 1px 1px 1px; align-items: start; margin-top: 180px; }
.cd-sidebar {scrollbar-width: thin; scrollbar-color: var(--cat-color, #16a34a) #f1f5f9; background: #fff; border-radius: 14px; border: 1px solid #e9ecef; overflow: hidden; position: sticky; top: 175px; max-height: calc(100vh - 185px); overflow-y: auto; }
.cd-sidebar::-webkit-scrollbar { width: 4px; }
.cd-sidebar::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 4px; }
.cd-sidebar::-webkit-scrollbar-thumb { background: var(--cat-color, #16a34a); border-radius: 4px; }
.cd-sidebar-head { display: flex; align-items: center; gap: 10px; padding: 6px 10px; border-bottom: 1px solid #e9ecef; }
.cd-sidebar-icon { width: 56px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cd-sidebar-name { font-size: 16px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cd-accordion { padding: 4px 0; }
.cd-acc-item { border-bottom: 1px solid #f3f4f6; }
.cd-acc-head { display: flex; align-items: center; gap: 8px; padding: 6px 8px; cursor: pointer; transition: background .15s; user-select: none; }
.cd-acc-head:hover { background: #f8fafc; }
.cd-acc-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.cd-acc-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cd-acc-arr { font-size: 12px; color: black; transition: transform .3s ease; margin-left: auto; }
.cd-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.cd-acc-item.open .cd-acc-head { background: #f0fdf4; }
.cd-acc-item.open .cd-acc-arr { transform: rotate(-180deg); }
.cd-acc-item.open .cd-acc-body { max-height: 300px; }
.cd-acc-sub { display: flex; align-items: center; gap: 8px; padding: 7px 14px 7px 22px; font-size: 12.5px; color: var(--text-light); text-decoration: none; transition: background .12s, color .12s; }
.cd-acc-sub:hover { background: #ecfdf5; color: var(--primary); }
.cd-acc-sub span { flex: 1; }
.cd-sub-all { font-weight: 600; color: var(--primary); border-bottom: 1px dashed #d1fae5; margin-bottom: 2px; }
.cd-sub-all-mobile { display: none; }

@media (prefers-color-scheme:dark) {
  .svc-sec-colored { background: none !important; border-left-color: inherit; box-shadow: 0 2px 16px rgba(0,0,0,.25); }
  .svc-sec-colored .svc-inline-card { background: rgba(255,255,255,.07); }
}
:root[data-theme="dark"] .svc-sec-colored { background: rgba(255,255,255,.04) !important; box-shadow: 0 2px 16px rgba(0,0,0,.3); }
:root[data-theme="dark"] .svc-sec-colored .svc-inline-card { background: rgba(255,255,255,.07); }

.cd-carousel-wrap { position: relative; padding: 4px 2px 16px; }
.cd-track {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 12px;
  padding: 0px 0px 0px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cd-track::-webkit-scrollbar { display: none; }
.cd-track .product-card { width: 210px; min-width: 210px; }

.cd-ads-row { margin: 14px 0 4px; }
.cd-ad-wrap { border-radius: 12px; overflow: hidden; }
.cd-ad-img { width: 100%; height: 180px; object-fit: cover; display: block; border-radius: 12px; transition: transform .2s; }
.cd-ad-wrap:hover .cd-ad-img { transform: scale(1.02); }
.hero-main { display: flex; }
/* Checkout fixed footer — mobile only */


/* ── Subcategory Product Detail (SPD) ── */
.spd-filter-bar { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding: 12px 16px; justify-content: space-between; border-radius: 10px 10px 0 0;}
.spd-sel { border: 1.5px solid #198754; border-radius: 8px; padding: 6px 12px; font-size: 13px; color: var(--dark); background: #fff; cursor: pointer; outline: none; transition: border .15s; }
.spd-sel:focus { border-color: var(--primary); }
.spd-hero { border-radius: 14px; overflow: hidden; margin: 10px 0; }
.spd-hero .spd-hero-inner { border-radius: 14px; overflow: hidden; height: 180px; }

.spd-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0px 8px; flex-wrap: wrap; }
.spd-sort { display: flex; align-items: center; gap: 6px; }
.spd-sort-label { font-size: 14px; color: #15803d; white-space: nowrap; }
.spd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 8px; padding: 8px 0 20px; }
.spd-sec-head { display: flex; align-items: center; gap: 8px; padding: 16px 0 8px; border-bottom: 2px solid #f3f4f6; margin-bottom: 10px; }
.spd-sec-head h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0; }
.spd-sec-head h3 span { color: var(--primary); }
.spd-scroll-row { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 14px; scrollbar-width: thin; }
.spd-scroll-row .product-card { flex: 0 0 195px; min-width: 195px; }
.spd-combo { background: linear-gradient(135deg,#fef3c7,#fde68a); border: 1.5px solid #fbbf24; border-radius: 14px; padding: 18px; margin: 20px 0; }
.spd-combo-head { font-size: 15px; font-weight: 700; color: #92400e; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.spd-combo-badge { background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: auto; }
.spd-combo-body { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.spd-combo-card { background: #fff; border-radius: 10px; padding: 10px; text-align: center; cursor: pointer; flex: 1; min-width: 120px; transition: transform .15s; }
.spd-combo-card:hover { transform: translateY(-2px); }
.spd-combo-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin-bottom: 6px; }
.spd-combo-name { font-size: 12px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spd-combo-price { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 2px; }
.spd-combo-plus { font-size: 22px; font-weight: 800; color: #b45309; flex-shrink: 0; }
.spd-combo-total { font-size: 14px; color: #78350f; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.spd-combo-final { font-size: 20px; font-weight: 800; color: #16a34a; }
.spd-combo-save { background: #16a34a; color: #fff; font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 50px; }
.p {
    margin-top: 0px;
    margin-bottom: 0px;
  }


/* ===== SERVICE CATEGORY PAGES ===== */
.svc-cat-hero {
  padding: 44px 24px 36px; text-align: center; border-radius: 20px;
  margin: 20px 0 28px; border: 1px solid var(--svc-c, #16a34a);
  background: linear-gradient(135deg, color-mix(in srgb,var(--svc-c,#16a34a) 10%,#fff), color-mix(in srgb,var(--svc-c,#16a34a) 5%,#fff));
}
.svc-cat-hero-icon {
  width: 70px; height: 70px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  margin: 0 auto 16px; background: var(--svc-c, #16a34a); color: #fff;
}
.svc-cat-hero h1 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.svc-cat-hero p { font-size: 14px; color: #64748b; max-width: 540px; margin: 0 auto; }

.svc-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px; margin: 0 0 32px;
}
.svc-card {
  background: #fff; border-radius: 16px; border: 1.5px solid #e2e8f0;
  padding: 24px 20px; cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-card:hover {
  border-color: var(--svc-c, #16a34a);
  box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px);
}
.svc-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: color-mix(in srgb,var(--svc-c,#16a34a) 12%,#fff);
  color: var(--svc-c, #16a34a);
}
.svc-card h3 { font-size: 15px; font-weight: 700; margin: 0; }
.svc-card p { font-size: 13px; color: #64748b; margin: 0; flex: 1; line-height: 1.55; }
.svc-card-btn {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
  background: var(--svc-c, #16a34a); color: #fff; border: none; cursor: pointer; margin-top: 4px;
}

/* Service subcategory detail page */
.svc-detail-layout { display: grid; grid-template-columns: 250px 1fr; gap: 24px; padding: 12px 10px 48px; align-items: start; margin-top: 170px; }
.svc-detail-main { max-width: 760px; }
.svc-detail-hero {
  background: linear-gradient(135deg, color-mix(in srgb,var(--svc-c,#16a34a) 12%,#fff), color-mix(in srgb,var(--svc-c,#16a34a) 5%,#fff));
  border: 1px solid color-mix(in srgb,var(--svc-c,#16a34a) 30%,#fff);
  border-radius: 18px; padding: 36px 28px; margin-bottom: 24px;
}
.svc-detail-hero h1 { font-size: 22px; font-weight: 800; margin-bottom: 10px; color: #1e293b; }
.svc-detail-hero p { font-size: 14px; color: #475569; margin: 0; line-height: 1.65; }

.svc-section {
  background: #fff; border-radius: 14px; border: 1px solid #e9ecef;
  padding: 22px 22px 18px; margin-bottom: 18px;
}
.svc-section-title {
  display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid #f3f4f6; color: #1e293b;
}
.svc-section-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.svc-for-text { font-size: 14px; color: #374151; line-height: 1.65; }
.svc-benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.svc-benefits-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #374151; line-height: 1.5;
}
.svc-benefit-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800;
}
.svc-discount-box {
  background: linear-gradient(135deg, #fef9c3, #fffbeb); border: 1.5px solid #fcd34d;
  border-radius: 12px; padding: 16px 20px; display: flex; align-items: flex-start; gap: 14px;
}
.svc-discount-icon { font-size: 30px; flex-shrink: 0; }
.svc-discount-text { font-size: 14px; color: #78350f; line-height: 1.6; }
.svc-discount-text strong { display: block; font-size: 16px; margin-bottom: 4px; }
.svc-why-text { font-size: 14px; color: #374151; line-height: 1.7; }

.svc-cta-box {
  border-radius: 18px; padding: 30px 24px; text-align: center; color: #fff; margin-top: 24px;
  background: linear-gradient(135deg, var(--svc-c, #16a34a), color-mix(in srgb,var(--svc-c,#16a34a) 75%,#000));
}
.svc-cta-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.svc-cta-box p { font-size: 13px; opacity: .85; margin-bottom: 20px; }
.svc-cta-btn {
  background: #fff; color: var(--svc-c, #16a34a); border: none; border-radius: 50px;
  padding: 12px 36px; font-size: 15px; font-weight: 700; cursor: pointer; transition: .15s;
}
.svc-cta-btn:hover { opacity: .92; transform: translateY(-1px); }

/* ── Inline service card (category page carousel replacement) ── */
.svc-sb-link { display:flex;align-items:center;gap:10px;padding:10px 14px;text-decoration:none;color:var(--text);border-bottom:1px solid var(--border);transition:background .15s; }
.svc-sb-link:hover { background:var(--bg-secondary); }
.svc-inline-card { background:var(--card-bg);border:1px solid var(--border);border-radius:14px;padding:22px 24px;margin-bottom:6px; }
.svc-ic-subtitle { font-size:15px;font-weight:700;color:var(--primary);margin:0 0 8px; }
.svc-ic-desc { font-size:13.5px;color:var(--text-muted);line-height:1.75;margin:0 0 18px; }
.svc-ic-why { margin-bottom:18px; }
.svc-ic-why-title { font-size:14px;font-weight:700;color:var(--text);margin-bottom:10px; }
.svc-ic-bullets { list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:7px 18px; }
.svc-ic-bullets li { font-size:13px;color:var(--text);display:flex;align-items:flex-start;gap:6px;line-height:1.5; }
.svc-check { color:#16a34a;font-weight:800;flex-shrink:0; }
.svc-ic-benefit { background:#fef9c3;border-left:4px solid #ca8a04;border-radius:8px;padding:12px 16px;font-size:13px;color:#92400e;margin-bottom:18px;display:flex;align-items:flex-start;gap:8px;line-height:1.6; }
.svc-ic-gift { font-size:18px;flex-shrink:0; }
.svc-ic-btn { background:var(--primary);color:#fff;border:none;border-radius:8px;padding:9px 22px;font-size:13px;font-weight:600;cursor:pointer;transition:opacity .2s; }
.svc-ic-btn:hover { opacity:.85; }
.svc-ic-benefit.mt-3,.svc-ic-btn.mt-2 { margin-top:14px; }

/* ── Theme: stat ── */
.svc-stat-row { display:flex;gap:12px;margin:16px 0 20px; }
.svc-stat-box { flex:1;text-align:center;border-radius:16px;padding:18px 10px 14px;position:relative;overflow:hidden; }
.svc-stat-box:nth-child(1) { background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);box-shadow:0 4px 18px rgba(102,126,234,.35); }
.svc-stat-box:nth-child(2) { background:linear-gradient(135deg,#f093fb 0%,#f5576c 100%);box-shadow:0 4px 18px rgba(245,87,108,.35); }
.svc-stat-box:nth-child(3) { background:linear-gradient(135deg,#4facfe 0%,#00f2fe 100%);box-shadow:0 4px 18px rgba(79,172,254,.35); }
.svc-stat-num { font-size:26px;font-weight:900;line-height:1.1;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.2); }
.svc-stat-lbl { font-size:11px;color:rgba(255,255,255,.88);margin-top:5px;line-height:1.4;font-weight:600; }

/* ── Theme: feature-grid ── */
.svc-feature-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:16px 0 20px; }
.svc-feat-item { border-radius:14px;padding:16px 8px 14px;text-align:center;transition:transform .2s,box-shadow .2s;cursor:default; }
.svc-feat-item:nth-child(1) { background:linear-gradient(145deg,#fff7ed,#fed7aa);border:1.5px solid #fb923c; }
.svc-feat-item:nth-child(2) { background:linear-gradient(145deg,#f0fdf4,#bbf7d0);border:1.5px solid #4ade80; }
.svc-feat-item:nth-child(3) { background:linear-gradient(145deg,#eff6ff,#bfdbfe);border:1.5px solid #60a5fa; }
.svc-feat-item:nth-child(4) { background:linear-gradient(145deg,#fdf4ff,#e9d5ff);border:1.5px solid #c084fc; }
.svc-feat-item:nth-child(5) { background:linear-gradient(145deg,#fff1f2,#fecdd3);border:1.5px solid #fb7185; }
.svc-feat-item:nth-child(6) { background:linear-gradient(145deg,#f0fdfa,#99f6e4);border:1.5px solid #2dd4bf; }
.svc-feat-item:hover { transform:translateY(-3px);box-shadow:0 8px 20px rgba(0,0,0,.1); }
.svc-feat-icon { font-size:28px;display:block;margin-bottom:8px;line-height:1; }
.svc-feat-lbl { font-size:12px;color:#1e293b;font-weight:700;line-height:1.35; }

/* ── Theme: timeline ── */
.svc-timeline { display:flex;flex-direction:column;gap:0;margin:16px 0 20px;position:relative; }
.svc-timeline::before { content:'';position:absolute;left:15px;top:26px;bottom:26px;width:2px;background:linear-gradient(to bottom,#6366f1,#8b5cf6,#ec4899);border-radius:2px;opacity:.35; }
.svc-tl-item { display:flex;align-items:flex-start;gap:14px;padding:8px 0;position:relative; }
.svc-tl-num { min-width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;font-weight:900;flex-shrink:0;background:linear-gradient(135deg,#6366f1,#8b5cf6);box-shadow:0 3px 10px rgba(99,102,241,.4);position:relative;z-index:1; }
.svc-tl-item:nth-child(2) .svc-tl-num { background:linear-gradient(135deg,#8b5cf6,#a855f7); }
.svc-tl-item:nth-child(3) .svc-tl-num { background:linear-gradient(135deg,#a855f7,#ec4899); }
.svc-tl-item:nth-child(4) .svc-tl-num { background:linear-gradient(135deg,#ec4899,#f43f5e); }
.svc-tl-item:nth-child(5) .svc-tl-num { background:linear-gradient(135deg,#f43f5e,#fb923c); }
.svc-tl-text { font-size:13.5px;color:var(--text);line-height:1.6;padding-top:6px;font-weight:500; }

/* ── Theme: security ── */
.svc-sec-header { display:flex;align-items:center;gap:10px;background:linear-gradient(135deg,#064e3b,#065f46);border-radius:12px;padding:12px 16px;margin-bottom:14px; }
.svc-sec-header-icon { font-size:24px;line-height:1; }
.svc-sec-header-text { color:#fff;font-size:13px;font-weight:700;line-height:1.4; }
.svc-sec-badges { display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px; }
.svc-sec-badge { display:inline-flex;align-items:center;gap:5px;border-radius:22px;padding:6px 14px;font-size:12px;font-weight:700;letter-spacing:.2px; }
.svc-sec-badge:nth-child(1) { background:linear-gradient(135deg,#d1fae5,#a7f3d0);color:#065f46;border:1.5px solid #34d399; }
.svc-sec-badge:nth-child(2) { background:linear-gradient(135deg,#dbeafe,#bfdbfe);color:#1e40af;border:1.5px solid #60a5fa; }
.svc-sec-badge:nth-child(3) { background:linear-gradient(135deg,#fef9c3,#fde68a);color:#78350f;border:1.5px solid #fbbf24; }
.svc-sec-badge:nth-child(4) { background:linear-gradient(135deg,#fce7f3,#fbcfe8);color:#9d174d;border:1.5px solid #f472b6; }
.svc-sec-bullets li { gap:8px; }
.svc-shield { flex-shrink:0; }
.svc-sec-btn { background:#dc2626 !important; }

/* ── Theme: coverage ── */
.svc-coverage-map { display:flex;flex-wrap:wrap;gap:8px;margin:12px 0 20px; }
.svc-area-tag { border-radius:22px;padding:6px 14px;font-size:12.5px;font-weight:700; }
.svc-area-tag:nth-child(1) { background:linear-gradient(135deg,#fef3c7,#fde68a);color:#92400e;border:1.5px solid #f59e0b; }
.svc-area-tag:nth-child(2) { background:linear-gradient(135deg,#dcfce7,#bbf7d0);color:#14532d;border:1.5px solid #22c55e; }
.svc-area-tag:nth-child(3) { background:linear-gradient(135deg,#dbeafe,#bfdbfe);color:#1e3a8a;border:1.5px solid #3b82f6; }
.svc-area-tag:nth-child(4) { background:linear-gradient(135deg,#fce7f3,#fbcfe8);color:#831843;border:1.5px solid #ec4899; }
.svc-area-tag:nth-child(5) { background:linear-gradient(135deg,#ede9fe,#ddd6fe);color:#4c1d95;border:1.5px solid #8b5cf6; }
.svc-area-tag:nth-child(6) { background:linear-gradient(135deg,#ffedd5,#fed7aa);color:#7c2d12;border:1.5px solid #f97316; }
.svc-area-tag:nth-child(7) { background:linear-gradient(135deg,#f0fdfa,#99f6e4);color:#134e4a;border:1.5px solid #14b8a6; }
.svc-area-tag:nth-child(8) { background:linear-gradient(135deg,#fff1f2,#fecdd3);color:#881337;border:1.5px solid #fb7185; }

/* ── Theme: compare ── */
.svc-compare-row { display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:16px 0 20px; }
.svc-compare-before { border-radius:14px;padding:16px;background:linear-gradient(145deg,#fff1f2,#ffe4e6);border:2px solid #fca5a5; }
.svc-compare-after { border-radius:14px;padding:16px;background:linear-gradient(145deg,#f0fdf4,#dcfce7);border:2px solid #4ade80; }
.svc-comp-label { font-size:12px;font-weight:900;margin-bottom:10px;padding:4px 10px;border-radius:8px;display:inline-block; }
.svc-compare-before .svc-comp-label { background:#fca5a5;color:#7f1d1d; }
.svc-compare-after .svc-comp-label { background:#4ade80;color:#14532d; }
.svc-comp-item { font-size:12.5px;color:#374151;padding:4px 0;line-height:1.5;display:flex;align-items:flex-start;gap:5px; }
.svc-comp-item::before { content:'';display:inline-block;flex-shrink:0;margin-top:5px; }
.svc-compare-before .svc-comp-item::before { content:'✗';color:#dc2626;font-weight:900;margin-top:0; }
.svc-compare-after .svc-comp-item::before { content:'✓';color:#16a34a;font-weight:900;margin-top:0; }

@media (prefers-color-scheme:dark) {
  .svc-feat-item:nth-child(1) { background:linear-gradient(145deg,#431407,#7c2d12);border-color:#ea580c; }
  .svc-feat-item:nth-child(2) { background:linear-gradient(145deg,#052e16,#14532d);border-color:#16a34a; }
  .svc-feat-item:nth-child(3) { background:linear-gradient(145deg,#1e1b4b,#1e3a8a);border-color:#3b82f6; }
  .svc-feat-item:nth-child(4) { background:linear-gradient(145deg,#2e1065,#4c1d95);border-color:#a855f7; }
  .svc-feat-item:nth-child(5) { background:linear-gradient(145deg,#4c0519,#881337);border-color:#f43f5e; }
  .svc-feat-item:nth-child(6) { background:linear-gradient(145deg,#042f2e,#134e4a);border-color:#0d9488; }
  .svc-feat-lbl { color:#f1f5f9; }
  .svc-tl-text { color:var(--text); }
  .svc-sec-badge:nth-child(1) { background:linear-gradient(135deg,#064e3b,#065f46);color:#6ee7b7; }
  .svc-sec-badge:nth-child(2) { background:linear-gradient(135deg,#1e3a8a,#1e40af);color:#93c5fd; }
  .svc-sec-badge:nth-child(3) { background:linear-gradient(135deg,#78350f,#92400e);color:#fcd34d; }
  .svc-sec-badge:nth-child(4) { background:linear-gradient(135deg,#831843,#9d174d);color:#f9a8d4; }
  .svc-compare-before { background:linear-gradient(145deg,#450a0a,#7f1d1d);border-color:#dc2626; }
  .svc-compare-after { background:linear-gradient(145deg,#052e16,#14532d);border-color:#16a34a; }
  .svc-comp-item { color:#e2e8f0; }
}
:root[data-theme="dark"] .svc-feat-item:nth-child(1) { background:linear-gradient(145deg,#431407,#7c2d12);border-color:#ea580c; }
:root[data-theme="dark"] .svc-feat-item:nth-child(2) { background:linear-gradient(145deg,#052e16,#14532d);border-color:#16a34a; }
:root[data-theme="dark"] .svc-feat-item:nth-child(3) { background:linear-gradient(145deg,#1e1b4b,#1e3a8a);border-color:#3b82f6; }
:root[data-theme="dark"] .svc-feat-item:nth-child(4) { background:linear-gradient(145deg,#2e1065,#4c1d95);border-color:#a855f7; }
:root[data-theme="dark"] .svc-feat-item:nth-child(5) { background:linear-gradient(145deg,#4c0519,#881337);border-color:#f43f5e; }
:root[data-theme="dark"] .svc-feat-item:nth-child(6) { background:linear-gradient(145deg,#042f2e,#134e4a);border-color:#0d9488; }
:root[data-theme="dark"] .svc-feat-lbl { color:#f1f5f9; }
:root[data-theme="dark"] .svc-sec-badge:nth-child(1) { background:linear-gradient(135deg,#064e3b,#065f46);color:#6ee7b7; }
:root[data-theme="dark"] .svc-sec-badge:nth-child(2) { background:linear-gradient(135deg,#1e3a8a,#1e40af);color:#93c5fd; }
:root[data-theme="dark"] .svc-sec-badge:nth-child(3) { background:linear-gradient(135deg,#78350f,#92400e);color:#fcd34d; }
:root[data-theme="dark"] .svc-sec-badge:nth-child(4) { background:linear-gradient(135deg,#831843,#9d174d);color:#f9a8d4; }
:root[data-theme="dark"] .svc-compare-before { background:linear-gradient(145deg,#450a0a,#7f1d1d);border-color:#dc2626; }
:root[data-theme="dark"] .svc-compare-after { background:linear-gradient(145deg,#052e16,#14532d);border-color:#16a34a; }
:root[data-theme="dark"] .svc-comp-item { color:#e2e8f0; }
:root[data-theme="light"] .svc-feat-item:nth-child(1) { background:linear-gradient(145deg,#fff7ed,#fed7aa);border-color:#fb923c; }
:root[data-theme="light"] .svc-feat-item:nth-child(2) { background:linear-gradient(145deg,#f0fdf4,#bbf7d0);border-color:#4ade80; }
:root[data-theme="light"] .svc-feat-item:nth-child(3) { background:linear-gradient(145deg,#eff6ff,#bfdbfe);border-color:#60a5fa; }
:root[data-theme="light"] .svc-feat-item:nth-child(4) { background:linear-gradient(145deg,#fdf4ff,#e9d5ff);border-color:#c084fc; }
:root[data-theme="light"] .svc-feat-item:nth-child(5) { background:linear-gradient(145deg,#fff1f2,#fecdd3);border-color:#fb7185; }
:root[data-theme="light"] .svc-feat-item:nth-child(6) { background:linear-gradient(145deg,#f0fdfa,#99f6e4);border-color:#2dd4bf; }
:root[data-theme="light"] .svc-feat-lbl { color:#1e293b; }
:root[data-theme="light"] .svc-sec-badge:nth-child(1) { background:linear-gradient(135deg,#d1fae5,#a7f3d0);color:#065f46;border-color:#34d399; }
:root[data-theme="light"] .svc-sec-badge:nth-child(2) { background:linear-gradient(135deg,#dbeafe,#bfdbfe);color:#1e40af;border-color:#60a5fa; }
:root[data-theme="light"] .svc-sec-badge:nth-child(3) { background:linear-gradient(135deg,#fef9c3,#fde68a);color:#78350f;border-color:#fbbf24; }
:root[data-theme="light"] .svc-sec-badge:nth-child(4) { background:linear-gradient(135deg,#fce7f3,#fbcfe8);color:#9d174d;border-color:#f472b6; }
:root[data-theme="light"] .svc-compare-before { background:linear-gradient(145deg,#fff1f2,#ffe4e6);border-color:#fca5a5; }
:root[data-theme="light"] .svc-compare-after { background:linear-gradient(145deg,#f0fdf4,#dcfce7);border-color:#4ade80; }
:root[data-theme="light"] .svc-comp-item { color:#374151; }




/* ── Schedule Shop & Cart ─────────────────────────────────── */
.sched-shop-hdr { background:var(--card-bg);border-bottom:2px solid var(--border);padding:10px 16px;position:fixed;top:105px;left:0;right:0;width:100%;z-index:901;box-shadow:0 2px 8px rgba(0,0,0,.06); height: 70px;}
.sched-shop-hdr-inner { display:flex;align-items:center;justify-content:space-between;gap:12px;max-width:1120px;margin:0 auto; }

.sched-cart-btn { display:inline-flex;align-items:center;gap:6px;background:var(--primary);color:#fff;border:none;border-radius:8px;padding:8px 14px;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap;transition:opacity .2s;flex-shrink:0; }
.sched-cart-btn:hover { opacity:.86; }
.sched-cart-badge { background:#ef4444;color:#fff;border-radius:50px;font-size:11px;font-weight:800;padding:1px 7px;margin-left:2px;vertical-align:middle; }
.sched-type-btn { background:var(--bg-secondary);border:1.5px solid var(--border);border-radius:50px;padding:5px 14px;font-size:12px;font-weight:600;color:var(--text);cursor:pointer;transition:all .15s; }
.sched-type-btn.active,.sched-type-btn:hover { background:var(--primary);border-color:var(--primary);color:#fff; }
.sched-cart-drawer { position:fixed;right:-100%;top:0;bottom:0;width:100%;max-width:420px;background:var(--card-bg);z-index:2000;display:flex;flex-direction:column;box-shadow:-6px 0 32px rgba(0,0,0,.18);transition:right .28s cubic-bezier(.4,0,.2,1); }
.sched-cart-drawer.open { right:0; }
.sched-cart-head { display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:2px solid var(--border);font-size:15px;font-weight:800;flex-shrink:0; }
.sched-cart-body { flex:1;overflow-y:auto;padding:8px 10px; }
.sched-cart-footer { padding:14px 16px;border-top:2px solid var(--border);flex-shrink:0; }
.sched-cart-item { display:flex;align-items:flex-start;gap:10px;padding:10px 16px;border-bottom:1px solid var(--border); }
.sched-cart-img { width:54px;height:54px;object-fit:cover;border-radius:8px;flex-shrink:0; }
.sched-cart-info { flex:1;min-width:0; }
.sched-cart-name { font-size:13px;font-weight:600;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical; }
.sched-cart-price { font-size:13px;font-weight:700;color:var(--primary);margin:4px 0; }
.sched-cart-qty-row { display:flex;align-items:center;gap:6px;margin-top:4px; }
.sched-qty-btn { width:26px;height:26px;border-radius:50%;border:1.5px solid var(--border);background:var(--bg-secondary);color:var(--text);font-size:14px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1; }
.sched-qty-btn:hover { background:var(--primary);border-color:var(--primary);color:#fff; }
.sched-qty-num { min-width:20px;text-align:center;font-size:13px;font-weight:700; }
.sched-cart-del { background:none;border:none;color:var(--text-muted);cursor:pointer;font-size:14px;padding:4px;flex-shrink:0;margin-top:4px; }
.sched-cart-del:hover { color:#ef4444; }

.pd-main-img { width:100%;aspect-ratio:1;object-fit:cover;border-radius:10px;cursor:zoom-in;transition:opacity .18s;border:1px solid #f3f4f6;display:block;}
.pd-sale-savings {position:absolute;top:8px;left:8px;background: #198754;color: #fff;padding:3px 9px;border-radius:20px;font-size:.9rem;font-weight:700;}

.pd-left-btn { position:absolute;left:6px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:50%;border:none;background:rgba(0,0,0,.45);color:#fff;cursor:pointer;font-size:.65rem;display:flex;align-items:center;justify-content:center;font-family:inherit;}
.pd-right-btn { position:absolute;right:6px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:50%;border:none;background:rgba(0,0,0,.45);color:#fff;cursor:pointer;font-size:.65rem;display:flex;align-items:center;justify-content:center;font-family:inherit;}

.pd-gallery-thumbs { display:flex;flex-wrap:wrap;gap:1px;margin-top:8px;justify-content: center;}
.pd-info { font-size:13px;font-weight:600;display:flex;gap:4px;align-items:center;flex-wrap:wrap;margin-bottom:4px;}
.pd-sku { background:#f3f4f6;color:#6b7280;padding:1px 6px;border-radius:4px;font-family:monospace;}
.pd-name { font-size:1.3rem;font-weight:700;line-height:1.3;color:#111;margin:0 0 6px;}
.pd-short-desc { font-size:1rem;color:#6b7280;border-left:3px solid #2563eb;padding-left:10px;line-height:1.6;margin:0 0 8px; }
.pd-rating { display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-bottom:8px;}
.pd-rating-value { font-weight:700;font-size:1rem;color:#111;}
.pd-rating-count { font-size:1rem;color: #1d4ed8; font-weight:700;}
.pd-price { display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;margin-bottom:10px;}
.pd-price-value { font-size:1.2rem;font-weight:800;color:#16a34a;}
.pd-price-original { font-size:1.2rem; font-weight:600; color:#dc3545;text-decoration:line-through;}
.pd-sale-savings {background: #198754;color: #fff;font-size:.9rem;font-weight:700;padding:2px 7px;border-radius:20px;}
.pd-volume {font-size:1rem;color: #1d4ed8; font-weight:700;}
.pd-stok-container { display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-bottom:12px; margin-top:12px;}
.pd-stok { background:#fee2e2;color:#dc2626;padding:4px 12px;border-radius:20px;font-size:.9rem;font-weight:600;}
.pd-stok-in {background:#dcfce7;color: #16a34a;padding:4px 12px;border-radius:20px;font-size:.9rem;font-weight:600;} 

.pd-wish-actions { display:flex;gap:8px;}
.wish-btn { width:38px;height:38px;border-radius:50%;border:1.5px solid #ef4444;background:#ef4444;color:#fff ;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:.9rem;transition:all .2s;flex-shrink:0;}
.share-btn { width:38px;height:38px;border-radius:50%;border:1.5px solid #44b9ef;background:#fff;color:#44b9ef;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:.9rem;transition:all .2s;flex-shrink:0;}

.pd-delivery-row { display:flex;align-items:stretch;border:1.5px solid #e5e7eb;border-radius:12px;overflow:hidden;margin-bottom:12px;}
.pd-delivery-divider { width:1.5px;background:#e5e7eb;flex-shrink:0;}
.pd-delivery-btn { display:flex;flex-direction:column;align-items:center;justify-content:center;flex:1;padding:10px 8px;gap:2px;background:#fff;border:none;cursor:pointer;font-family:inherit;text-align:center;}
.pd-delivery-icon { font-size:1.1rem;line-height:1;}
.pd-delivery-label { font-size:.78rem;font-weight:700;color:#111;line-height:1.3;}
.pd-delivery-sub { font-size:.68rem;color:#6b7280;line-height:1.3;}
.pd-delivery-ethical { transition:background .2s;}
.pd-delivery-ethical .pd-delivery-icon { color:#16a34a;}
.pd-delivery-ethical .pd-delivery-label { color:#15803d;}
.pd-delivery-ethical--active,.pd-delivery-ethical:hover { background:#f0fdf4;}
.pd-delivery-ordinary { cursor:pointer;transition:background .2s;}
.pd-delivery-ordinary .pd-delivery-icon { color:#f59e0b;}
.pd-delivery-ordinary .pd-delivery-label { color:#b45309;}
.pd-delivery-ordinary--active,.pd-delivery-ordinary:hover { background:#fffbeb;}

.pd-pv-section { display:flex;gap:8px;align-items:flex-start;padding:8px 8px 0;margin-bottom:10px; }
@media (max-width:600px) { .pd-pv-section { flex-direction:column; } .pd-pv-section > div { width:100%;flex:none !important; } }

.pd-ordinary-info { position:relative;background:#fffbeb;border:1.5px solid #fde68a;border-radius:10px;padding:12px 36px 12px 14px;margin-bottom:12px;}
.pd-ordinary-info ul { margin:0;padding:0 0 0 16px;list-style:disc;}
.pd-ordinary-info li { font-size:.8rem;color:#92400e;line-height:1.7;}

.pd-ethical-info { position:relative;background:#f0fdf4;border:1.5px solid #bbf7d0;border-radius:10px;padding:12px 36px 12px 14px;margin-bottom:12px;}
.pd-ethical-info ul { margin:0;padding:0 0 0 16px;list-style:disc;}
.pd-ethical-info li { font-size:.8rem;color:#166534;line-height:1.7;}
.pd-ethical-close { position:absolute;top:8px;right:10px;color:#6b7280;cursor:pointer;font-size:.85rem;}
.pd-ethical-close:hover { color:#ef4444;}

.pd-actions { display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px;}
.pd-cart-btn { flex:1;min-width:100px;padding:10px 4px;background:#2563eb;color:#fff;border:none;border-radius:9px;font-weight:700;font-size:.85rem;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:6px;font-family:inherit;}
.pd-buy-btn { flex:1;min-width:100px;padding:10px 4px;background:#16a34a;color:#fff;border:none;border-radius:9px;font-weight:700;font-size:.85rem;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:6px;font-family:inherit;}

.pd-badges { display:grid;grid-template-columns:repeat(4,1fr);gap:6px;padding-top:10px;border-top:1px solid #f3f4f6;}
.pd-badge { display:flex;flex-direction:column;align-items:center;gap:3px;text-align:center;}
.pd-badge-container {width:36px;height:36px;border-radius:7px;background:#f0fdf4;display:flex;align-items:center;justify-content:center;font-size:20px;color:#16a34a;}
.pd-badge-label { font-size:.8rem;font-weight:600;color:#15803d; }

.pd-tabs { display:flex;overflow-x:auto;scrollbar-width:none;border-bottom:1px solid #e5e7eb; padding: 10px;} 
 

/* ── Review & Rating (.rr-) ─────────────────────────────────── */
.rr-section-title { font-size:.9rem;font-weight:700;color:#111;padding:14px 14px 0; }

/* Overview */
.rr-overview { display:grid;grid-template-columns:140px 1fr;gap:36px;padding:14px;border-top:1px solid #e5e7eb; margin-left: 40px; margin-right: 40px;}
.rr-overview-score { font-size:2.5rem;font-weight:800;color:#111;line-height:1; }
.rr-overview-stars { display:flex;gap:1px;margin:4px 0; }
.rr-overview-count { font-size:.9rem;color:#6b7280;margin-bottom:10px; }
.rr-write-btn { width:100%;padding:7px;background:#2563eb;color:#fff;border:none;border-radius:7px;font-size:.78rem;font-weight:600;cursor:pointer;font-family:inherit; }
.rr-login-box { background:#fef9c3;border:1px solid #fde68a;padding:7px;border-radius:6px;font-size:.72rem;color:#92400e;text-align:center; }
.rr-bar-row { display:flex;align-items:center;gap:5px;margin-bottom:5px; }
.rr-bar-stars { display:flex;gap:1px;min-width:54px; }
.rr-bar-track { flex:1;height:5px;background:#f3f4f6;border-radius:3px;overflow:hidden; }
.rr-bar-fill { height:100%;background:#f59e0b; }
.rr-bar-cnt { min-width:16px;text-align:right;font-size:.8rem;color:#6b7280; }

/* Review form */
.rr-form { display:none;padding:14px;background:#f8fafc;border-top:1px solid #e5e7eb; }
.rr-form-title { font-size:.88rem;font-weight:700;margin-bottom:10px;color:#111; }
.rr-star-picker { display:flex;gap:6px;margin-bottom:10px; }
.rr-star-icon { font-size:1.8rem;color:#d1d5db;cursor:pointer;transition:color .15s; }
.rr-low-label { font-size:.75rem;font-weight:600;color:#374151;display:block;margin-bottom:4px; }
.rr-textarea { width:100%;border:1px solid #e5e7eb;border-radius:7px;padding:7px;font-size:.8rem;font-family:inherit;resize:none;box-sizing:border-box;outline:none; }
.rr-img-upload { margin-bottom:10px; }
.rr-img-preview { display:none;margin-top:6px; }
.rr-img-preview img { width:60px;height:60px;object-fit:cover;border-radius:6px;border:1px solid #e5e7eb; }
.rr-upload-btn { padding:5px 12px;background:transparent;border:1px solid #e5e7eb;border-radius:6px;font-size:.75rem;cursor:pointer;font-family:inherit; }
.rr-form-actions { display:flex;gap:7px;justify-content:flex-end; }
.rr-btn-cancel { padding:7px 14px;background:transparent;border:1px solid #e5e7eb;border-radius:7px;font-size:.8rem;cursor:pointer;font-family:inherit; }
.rr-btn-submit { padding:7px 14px;background:#2563eb;color:#fff;border:none;border-radius:7px;font-size:.8rem;font-weight:600;cursor:not-allowed;opacity:.5;font-family:inherit; }

/* Review list controls */
.rr-list-header { padding:0 14px 6px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px; }
.rr-list-count { font-size:.9rem;color:#03b912; }
.rr-sort-select { padding:4px 9px;border:1px solid #e5e7eb;border-radius:5px;font-size:.78rem;background:#fff;cursor:pointer;font-family:inherit; }
.rr-list { padding:0 14px 10px; }
.rr-more-wrap { text-align:center;padding:0 4px 4px; }
.rr-more-btn { padding:7px 18px;background:transparent;border:1px solid #e5e7eb;border-radius:7px;font-size:.8rem;cursor:pointer;font-family:inherit; }

/* Review card */
.rr-card { background:#fff;border:1px solid #f3f4f6;border-radius:10px;padding:14px;margin-bottom:10px; }
.rr-card-header { display:flex;align-items:flex-start;gap:8px;margin-bottom:8px;flex-wrap:wrap; }
.rr-avatar { width:34px;height:34px;border-radius:50%;background:#2563eb;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.78rem;color:#fff;flex-shrink:0;overflow:hidden; }
.rr-avatar-img { width:100%;height:100%;object-fit:cover;border-radius:50%; }
.rr-user-info { flex:1;min-width:0; }
.rr-user-name { font-weight:600;font-size:.83rem;color:#111; }
.rr-stars-row { display:flex;gap:1px;margin-top:2px; }
.rr-date { font-size:.9rem;color:#9ca3af;flex-shrink:0; }
.rr-text { font-size:.9rem;color:#374151;line-height:1.6;margin-bottom:6px; }
.rr-low-msg { margin-top:6px;padding:6px 10px;background:#fef9c3;border-radius:6px;font-size:.78rem;color:#92400e; }
.rr-img-wrap { margin-top:8px; }
.rr-img-thumb { width:72px;height:72px;object-fit:cover;border-radius:7px;border:1px solid #e5e7eb;cursor:pointer; }
.rr-reply-box { margin-top:8px;padding:8px 12px;background:#f0fdf4;border-left:3px solid #16a34a;border-radius:6px;font-size:.9rem;color:#023a96; }
.rr-reply-author { color:#16a34a;font-size:.9rem;display:block;margin-bottom:3px;font-weight:700; }
.rr-actions { display:flex;gap:6px;margin-top:8px;flex-wrap:wrap; }
.rr-btn { font-size:.9rem;padding:4px 10px;border:1px solid #e5e7eb;border-radius:5px;background:transparent;color:#6b7280;cursor:pointer;font-family:inherit; }
.rr-login-hint { font-size:.9rem;color:#9ca3af; }
.rr-reply-area { display:none;margin-top:8px;flex-direction:column;gap:6px; }
.rr-reply-btns { display:flex;gap:6px;justify-content:flex-end;margin-top:4px; }
.rr-btn-sm-cancel { padding:5px 12px;background:transparent;border:1px solid #e5e7eb;border-radius:6px;font-size:.9rem;cursor:pointer;font-family:inherit; }
.rr-btn-sm-send { padding:5px 12px;background:#2563eb;color:#fff;border:none;border-radius:6px;font-size:.9rem;font-weight:600;cursor:pointer;font-family:inherit; }

/* Report */ 
.rr-report-wrap { padding:14px;border-top:1px solid #e5e7eb;text-align:center; }
.rr-report-btn { padding:7px 14px;background:transparent;border:1px solid #dc3545;border-radius:7px;font-size:.9rem;cursor:pointer;color:#ef4444;font-family:inherit; }
.rr-report-form { display:none;margin-top:10px;background:#fef9c3;border:1px solid #fde68a;border-radius:9px;padding:12px;text-align:left; }
.rr-select { width:100%;padding:7px;border:1px solid #e5e7eb;border-radius:6px;font-size:.9rem;margin-bottom:7px;background:#fff;font-family:inherit; }
.rr-report-img-wrap { display:none;margin-top:5px; }
.rr-report-img-wrap img { width:55px;height:55px;object-fit:cover;border-radius:6px;border:1px solid #e5e7eb; }
.rr-report-actions { display:flex;gap:6px;justify-content:flex-end; }
.rr-btn-submit-report { padding:6px 12px;background:#d97706;color:#fff;border:none;border-radius:6px;font-size:.9rem;font-weight:600;cursor:pointer;font-family:inherit; }

/* Product description HTML (TinyMCE content) */
.pd-desc-html { word-break:break-word; }
.pd-desc-html img { max-width:100%;height:auto;border-radius:6px;display:block;margin:8px auto; }
.pd-desc-html table { max-width:100%;overflow-x:auto;display:block; }
.pd-desc-html p { margin:0 0 8px; }
.pd-desc-html ul,.pd-desc-html ol { padding-left:20px;margin:0 0 8px; }


/* Product section scroll + arrows */
.pd-scroll-track { display:flex;gap:10px;overflow-x:auto;scrollbar-width:none;padding:4px 2px;scroll-behavior:smooth; }
.pd-scroll-track::-webkit-scrollbar { display:none; }
.pd-sarr { position:absolute;top:40%;transform:translateY(-50%);width:18px;height:28px;border-radius:20%;border:none;background:rgba(255, 255, 255, 0.651);box-shadow:0 2px 8px rgba(114, 231, 5, 0.514);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;font-size:1.5rem;font-weight: 700; color:#000000;padding:0;line-height:1;transition:background .15s,color .15s; }
.pd-sarr-l { left:0; }
.pd-sarr-r { right:0; }
.pd-sarr:hover { background:#000000a6;  color:#fff; }

/* FAQ Section */
.pd-faq-section { padding:16px 14px 20px;background:linear-gradient(135deg,#f0fdf4 0%,#f8fafc 100%);border-top:1px solid #e5e7eb; }
.pd-faq-header { display:flex;align-items:center;gap:8px;margin-bottom:14px; }
.pd-faq-title { font-size:.95rem;font-weight:700;color:#111;margin:0; }
.pd-faq-list { display:flex;flex-direction:column;gap:8px; }
.pd-faq-item { background:#fff;border:1px solid #e5e7eb;border-radius:10px;overflow:hidden;transition:box-shadow .2s; }
.pd-faq-item:hover { box-shadow:0 2px 10px rgba(0,0,0,.07); }
.pd-faq-item.pd-faq-open { border-color:var(--primary);box-shadow:0 0 0 2px #dcfce7; }
.pd-faq-btn { width:100%;text-align:left;background:none;border:none;padding:12px 14px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:10px;font-family:inherit;font-size:.84rem;font-weight:600;color:#111; }
.pd-faq-btn:hover { background:#f9fafb; }
.pd-faq-icon { font-size:.72rem;color:#9ca3af;flex-shrink:0;transition:transform .3s; }
.pd-faq-item.pd-faq-open .pd-faq-icon { transform:rotate(180deg);color:var(--primary); }
.pd-faq-ans { padding:0 14px 14px;font-size:.9rem;color:#4b5563;line-height:1.75; }

.cr-section-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-top: 0px; }
.affiliate-section { background:linear-gradient(135deg,#0369a1,#0ea5e9);color:#fff;padding:64px 0 48px;background:linear-gradient(135deg,#0369a1,#0ea5e9);color:#fff;padding:64px 0 48px; margin-top: 180px; } 

.cd-special-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0 4px; }
.cd-special-row .special-section { margin: 0; }



/* ── Homemaker carousel & sub-page grid ─────────────────── */
.hm-card-cover { position: relative; width: 100%; height: 155px; overflow: hidden; }
.hm-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-card-info { padding: 10px 12px 12px; }
.hm-card-stars { display: flex; align-items: center; justify-content: center; gap: 3px; margin: 4px 0; flex-wrap: wrap; }
.hm-card-disc { font-size: 11px; font-weight: 700; color: #ef4444; text-align: center; margin-top: 3px; }

.hm-carousel-wrap { overflow-x: auto; padding-bottom: 8px; }
.hm-carousel-wrap::-webkit-scrollbar { height: 4px; }
.hm-carousel-wrap::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
.hm-carousel-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 12px;
  width: max-content;
  padding: 4px 0 4px;
}

.hm-sub-grid { display: flex; flex-wrap: wrap; gap: 16px; padding: 4px 0 12px; }

.cd-acc-head--active {
  background: #f0fdf4 !important;
  border-left: 3px solid var(--cat-color, #16a34a);
  padding-left: 11px;
}

/* ═══════════════════════════════════════════════════════════════
   Chat Widget — floating FAB + panel
   ═══════════════════════════════════════════════════════════════ */

.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1990;
}
.chat-fab-button {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary, #16a34a);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(22,163,74,0.38);
  transition: transform 0.18s, box-shadow 0.18s;
}
.chat-fab-button:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(22,163,74,0.48); }
.chat-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  padding: 0 4px;
  border: 2px solid #fff;
}

.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 600px;
  max-height: calc(100vh - 110px);
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  z-index: 9989;
  overflow: hidden;
}
.chat-panel-header {
  background: var(--primary, #16a34a);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}
.chat-panel-title { font-weight: 700; font-size: 15px; letter-spacing: 0.3px; }
.chat-header-actions { display: flex; gap: 8px; align-items: center; }
.chat-close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.35); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.chat-msg { display: flex; flex-direction: column; max-width: 80%; }
.chat-msg-user  { align-self: flex-end;   align-items: flex-end; }
.chat-msg-agent { align-self: flex-start; align-items: flex-start; }
.chat-msg-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.chat-msg-user .chat-msg-meta { flex-direction: row-reverse; }
.chat-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.08);
}
.chat-avatar-icon {
  display: flex; align-items: center; justify-content: center;
  background: #e2e8f0; font-size: 11px;
}
.chat-sender-name { font-size: 11px; color: var(--text-muted, #6b7280); font-weight: 500; }
.chat-bubble {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  word-break: break-word;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.chat-msg-user  .chat-bubble { background: var(--primary, #16a34a); color: #fff; border-top-right-radius: 4px; }
.chat-msg-agent .chat-bubble { background: var(--surface-alt, #f3f4f6); color: var(--text, #111827); border-top-left-radius: 4px; }
.chat-time { display: block; font-size: 10px; margin-top: 3px; opacity: 0.65; text-align: right; }
.chat-msg-pending .chat-bubble { opacity: 0.7; }
.chat-msg-error   .chat-bubble { border: 1.5px dashed #ef4444; }
.chat-closed-note {
  text-align: center; padding: 12px 16px;
  font-size: 13px; color: var(--text-muted, #6b7280);
  border-top: 1px solid var(--border, #e5e7eb);
  background: var(--surface-alt, #f9fafb);
}
.chat-char-warning {
  background: #ef4444; color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px;
  margin-top: 4px; text-align: center;
}

/* ── Chat Attachment UI ─────────────────────────────────────── */
.chat-input-row {
  display: flex; align-items: flex-end; gap: 1px;
}
.chat-attach-btn {
  display: flex; align-items: center; justify-content: center;
  width: 16px; height: 36px; flex-shrink: 0;
  font-size: 28px; cursor: pointer; border-radius: 8px;
  transition: background .15s;
}
.chat-attach-btn:hover { background: #f1f5f9; }
.chat-attach-preview {
  margin-bottom: 6px; padding: 6px 8px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.chat-attach-prev-inner {
  display: flex; align-items: center; gap: 8px;
}
.chat-attach-prev-img {
  width: 48px; height: 48px; object-fit: cover; border-radius: 6px;
}
.chat-attach-prev-icon { font-size: 28px; line-height: 1; }
.chat-attach-prev-name { font-size: 12px; color: #475569; flex: 1; word-break: break-all; }
.chat-attach-remove {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: #94a3b8; padding: 2px 4px; border-radius: 4px;
  flex-shrink: 0;
}
.chat-attach-remove:hover { color: #ef4444; }
.chat-attach-wrap { margin-bottom: 4px; }
.chat-attach-img {
  max-width: 220px; max-height: 160px;
  border-radius: 8px; display: block; cursor: pointer;
}
.chat-attach-video {
  max-width: 220px; border-radius: 8px; display: block;
}
.chat-attach-pdf-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; background: #f1f5f9;
  border: 1px solid #e2e8f0; border-radius: 8px;
  font-size: 13px; color: #475569; text-decoration: none;
  word-break: break-all;
}
.chat-attach-pdf-link:hover { background: #e2e8f0; }
.chat-attach-pending {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: #f0fdfa;
  border: 1px dashed #99f6e4; border-radius: 8px;
  font-size: 12px; color: #0f766e; margin-bottom: 6px;
}
.chat-attach-audio {
      max-width: 220px;
    border-radius: 8px;
    display: block; 
}
.chat-tool-btn {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 32px; flex-shrink: 0;
  font-size: 17px; cursor: pointer; border: none;
  background: none; border-radius: 7px; padding: 0;
  transition: background .15s;
}
.chat-tool-btn:hover { background: #f1f5f9; }
.chat-mic-recording {
  animation: chat-mic-pulse 1s infinite;
  background: #fee2e2 !important;
}
@keyframes chat-mic-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.chat-emoji-picker {
  position: absolute; bottom: 100%; left: 0; right: 0;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 10px; padding: 8px;
  display: flex; flex-wrap: wrap; gap: 2px;
  max-height: 160px; overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 50;
}
.chat-emoji-btn {
  background: none; border: none; cursor: pointer;
  font-size: 20px; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: background .1s;
}
.chat-emoji-btn:hover { background: #f1f5f9; }
#chat-input-area { position: relative; }
.chat-attach-limits {
  font-size: 10px; color: #94a3b8; text-align: center;
  padding: 2px 0 4px; letter-spacing: .01em;
}

.chat-faq-section {
  padding: 6px 12px;
  border-top: 1px solid var(--border, #e5e7eb);
  flex-shrink: 0;
}
.chat-faq-label { font-size: 11px; color: var(--text-muted, #6b7280); margin-bottom: 5px; font-weight: 600; }
.chat-faq-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chat-faq-chip {
  background: var(--primary-light, #dcfce7);
  color: var(--primary-dark, #15803d);
  border: 1px solid var(--primary-border, #86efac);
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-faq-chip:hover { background: var(--primary, #16a34a); color: #fff; }

.chat-input-area {
  padding: 10px 12px;
  border-top: 1px solid var(--border, #e5e7eb);
  flex-shrink: 0;
  background: var(--surface, #fff);
}
.chat-input-row { display: flex; gap: 1px; align-items: flex-end; }
.chat-textarea {
  flex: 1;
  border: 1px solid var(--border, #d1d5db);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  background: var(--surface-alt, #f9fafb);
  color: var(--text, #111827);
  transition: border-color 0.15s;
  max-height: 40px;
  overflow-y: auto;
}
.chat-textarea:focus { outline: none; border-color: var(--primary, #16a34a); background: var(--surface, #fff); }
.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary, #16a34a);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, background 0.15s;
}
.chat-send-btn:hover { background: var(--primary-dark, #15803d); transform: scale(1.08); }
.chat-login-prompt { text-align: center; padding: 8px; font-size: 14px; color: var(--text-muted, #6b7280); }
.chat-login-prompt a { color: var(--primary, #16a34a); font-weight: 600; }

@media (prefers-color-scheme: dark) {
  .chat-panel { background: #1f2937; border-color: #374151; }
  .chat-msg-agent .chat-bubble { background: #374151; color: #f9fafb; }
  .chat-faq-chip { background: #14532d; color: #86efac; border-color: #166534; }
  .chat-faq-chip:hover { background: #16a34a; color: #fff; }
  .chat-textarea { background: #374151; border-color: #4b5563; color: #f9fafb; }
  .chat-textarea:focus { border-color: #22c55e; background: #1f2937; }
  .chat-input-area { background: #1f2937; }
}
:root[data-theme="dark"] .chat-panel { background: #1f2937; border-color: #374151; }
:root[data-theme="dark"] .chat-msg-agent .chat-bubble { background: #374151; color: #f9fafb; }
:root[data-theme="dark"] .chat-faq-chip { background: #14532d; color: #86efac; border-color: #166534; }
:root[data-theme="dark"] .chat-textarea { background: #374151; border-color: #4b5563; color: #f9fafb; }
:root[data-theme="dark"] .chat-textarea:focus { background: #1f2937; border-color: #22c55e; }
:root[data-theme="dark"] .chat-input-area { background: #1f2937; }

/* ═══════════════════════════════════════════════════════════════
   Admin Chat Styles
   ═══════════════════════════════════════════════════════════════ */

.ac-page-header { margin-bottom: 16px; }
.ac-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  height: calc(100vh - 180px);
  min-height: 500px;
}

.ac-sidebar {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ac-filter-tabs { display: flex; border-bottom: 1px solid var(--border, #e5e7eb); flex-shrink: 0; }
.ac-tab {
  flex: 1;
  padding: 10px 6px;
  border: none;
  background: none;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-muted, #6b7280);
  transition: color 0.15s, border-bottom 0.15s;
  border-bottom: 2px solid transparent;
}
.ac-tab.active, .ac-tab:hover { color: var(--primary, #16a34a); border-bottom-color: var(--primary, #16a34a); }
.ac-conv-list { overflow-y: auto; flex: 1; }
.ac-conv-list::-webkit-scrollbar { width: 4px; }
.ac-conv-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.ac-conv-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border, #f3f4f6);
  cursor: pointer;
  transition: background 0.12s;
}
.ac-conv-item:hover { background: var(--surface-alt, #f9fafb); }
.ac-conv-item.ac-conv-selected { background: var(--primary-light, #dcfce7); }
.ac-conv-unread { border-left: 3px solid var(--primary, #16a34a); }
.ac-conv-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 3px; }
.ac-conv-name { font-weight: 600; font-size: 14px; color: var(--text, #111827); }
.ac-conv-time { font-size: 11px; color: var(--text-muted, #9ca3af); }
.ac-conv-preview { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.ac-conv-last { font-size: 13px; color: var(--text-muted, #6b7280); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
.ac-unread-badge {
  background: var(--primary, #16a34a);
  color: #fff;
  border-radius: 10px;
  min-width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  flex-shrink: 0;
}
.ac-conv-foot { display: flex; gap: 8px; align-items: center; }
.ac-conv-phone { font-size: 11px; color: var(--text-muted, #9ca3af); }

.ac-thread-panel {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ac-empty-thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted, #9ca3af);
}
.ac-empty-icon { font-size: 48px; margin-bottom: 12px; }

.ac-thread-wrap { display: flex; flex-direction: column; height: 100%; }
.ac-thread-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: var(--surface, #fff);
}
.ac-thread-name  { font-weight: 700; font-size: 15px; }
.ac-thread-phone { font-size: 12px; color: var(--text-muted, #6b7280); }
.ac-thread-controls { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.ac-thread-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.ac-thread-messages::-webkit-scrollbar { width: 4px; }
.ac-thread-messages::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.ac-msg { display: flex; flex-direction: column; }
.ac-msg-user  { align-items: flex-end; }
.ac-msg-agent { align-items: flex-start; }
.ac-msg-meta { font-size: 11px; color: var(--text-muted, #9ca3af); margin-bottom: 2px; padding: 0 4px; }
.ac-bubble {
  max-width: 75%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  word-break: break-word;
}
.ac-msg-user  .ac-bubble { background: var(--primary-light, #dcfce7); color: var(--primary-dark, #15803d); border-bottom-right-radius: 4px; }
.ac-msg-agent .ac-bubble { background: var(--primary, #16a34a); color: #fff; border-bottom-left-radius: 4px; }
.ac-time { display: block; font-size: 10px; margin-top: 3px; opacity: 0.65; text-align: right; }

.ac-reply-area { padding: 12px 16px; border-top: 1px solid var(--border, #e5e7eb); flex-shrink: 0; }
.ac-reply-textarea {
  width: 100%;
  border: 1px solid var(--border, #d1d5db);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  background: var(--surface-alt, #f9fafb);
  color: var(--text, #111827);
}
.ac-reply-textarea:focus { outline: none; border-color: var(--primary, #16a34a); }
.ac-reply-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.ac-closed-note {
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  flex-shrink: 0;
  border-top: 1px solid var(--border, #e5e7eb);
}

.ac-status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.ac-status-open   { background: #dcfce7; color: #15803d; }
.ac-status-closed { background: #fee2e2; color: #b91c1c; }
.ac-status-mini { font-size: 11px; padding: 2px 7px; border-radius: 10px; font-weight: 600; }

.btn-sm-action {
  padding: 5px 10px;
  border-radius: 7px;
  border: 1px solid var(--border, #d1d5db);
  background: var(--surface, #fff);
  color: var(--text, #374151);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.13s;
  text-decoration: none;
  display: inline-block;
}
.btn-sm-action:hover { background: var(--surface-alt, #f3f4f6); }
.btn-assign      { border-color: #16a34a; color: #15803d; }
.btn-close-chat  { border-color: #ef4444; color: #b91c1c; }
.btn-reopen      { border-color: #2563eb; color: #1d4ed8; }
.btn-danger-sm   { border-color: #ef4444; color: #b91c1c; }
.btn-primary-sm {
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  background: var(--primary, #16a34a);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.13s;
}
.btn-primary-sm:hover { background: var(--primary-dark, #15803d); }

.ac-loading { display: flex; align-items: center; justify-content: center; padding: 40px; color: var(--text-muted, #9ca3af); }
.ac-empty { text-align: center; padding: 32px 16px; color: var(--text-muted, #9ca3af); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   Admin FAQ Styles
   ═══════════════════════════════════════════════════════════════ */

.faq-admin-list { margin-top: 4px; }
.faq-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.faq-table th, .faq-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  vertical-align: top;
  text-align: left;
}
.faq-table th {
  font-weight: 600;
  background: var(--surface-alt, #f9fafb);
  color: var(--text-muted, #6b7280);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.faq-display-text { display: block; padding: 3px 0; line-height: 1.5; }
.faq-sort-input { width: 58px; }
.faq-save-row { display: flex; gap: 6px; }

@media (prefers-color-scheme: dark) {
  .ac-sidebar, .ac-thread-panel { background: #1f2937; border-color: #374151; }
  .ac-conv-item:hover { background: #111827; }
  .ac-conv-item.ac-conv-selected { background: #14532d; }
  .ac-thread-header { background: #1f2937; border-color: #374151; }
  .ac-msg-user .ac-bubble { background: #14532d; color: #86efac; }
  .ac-reply-textarea { background: #374151; border-color: #4b5563; color: #f9fafb; }
  .faq-table th { background: #111827; }
  .faq-table th, .faq-table td { border-color: #374151; }
  .btn-sm-action { background: #1f2937; border-color: #4b5563; color: #d1d5db; }
  .btn-sm-action:hover { background: #374151; }
}


.hmp-root{min-height:60vh; padding: 10px;}
.hmp-addr{ background:var(--surface);padding:10px 16px;font-size:13px;color: #198754;}
.hmp-addr i{color: #2563eb;margin-right:4px}
.hmp-main-grid{display:grid;grid-template-columns:1fr 2fr;gap:24px;}

.hmp-main-img-wrap{position:relative;background:var(--surface);border-radius:var(--radius);overflow:hidden}
.hmp-main-img{width:100%;max-height:220px;object-fit:cover;cursor:zoom-in;display:block}
.hmp-fullbtn{position:absolute;bottom:8px;right:8px;background:rgba(0,0,0,.45);color:#fff;border:none;border-radius:4px;padding:5px 9px;cursor:pointer;font-size:13px}
.hmp-thumb-row{display:flex;align-items:center;gap:6px;margin-top:8px}
.hmp-tarr{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:4px 8px;cursor:pointer;color:var(--text);flex-shrink:0}
.hmp-thumbs{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;flex:1;scroll-behavior:smooth}
.hmp-thumbs::-webkit-scrollbar{display:none}
.hmp-thumb{width:68px;height:68px;object-fit:cover;border-radius:6px;cursor:pointer;border:2px solid transparent;flex-shrink:0;transition:border-color .15s}
.hmp-thumb.active{border-color:var(--primary)}
.hmp-col-info{display:flex;flex-direction:column;gap:12px}
.hmp-cats{display:flex;flex-wrap:nowrap;gap:6px;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}.hmp-cats::-webkit-scrollbar{display:none}
.hmp-cat-badge{background:var(--primary-light,#e8f5e9);color:var(--primary);border-radius:20px;padding:3px 12px;font-size:12px;flex-shrink:0}
.hmp-name-row{display:flex;align-items:center;gap:10px}
.hmp-logo{width:44px;height:44px;border-radius:50%;object-fit:cover;border:2px solid var(--border)}
.hmp-name{font-size:22px;font-weight:700;margin:0}
.hmp-desc{font-size:14px;color: #111;line-height:1.6;margin:0}
.hmp-sched{display:flex;flex-wrap:wrap;gap:12px;font-size:13px;color: #198754;}
.hmp-rating-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.hmp-stars{color:#f59e0b;letter-spacing:1px}
.hmp-rating-num{font-weight:700;font-size:15px}
.hmp-review-btn{background: #2ea52a52;border:1px solid var(--border);border-radius:6px;padding:3px 10px;font-size:13px;cursor:pointer;color: #000000}
.hmp-save-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.hmp-badge-save{background:#dcfce7;color:#16a34a;border-radius:4px;padding:4px 10px;font-size:13px;font-weight:600}
.hmp-fav-btn{background:none;border:1px solid #ffc107;color: #198754;border-radius:8px;padding:7px 16px;cursor:pointer;font-size:14px;display:flex;align-items:center;gap:6px;transition:background .15s,color .15s}
.hmp-fav-btn.active{background:#ef4444;color:#fff}
.hmp-order-info{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.hmp-badge-fast{background:#dbeafe;color:#1d4ed8;border-radius:4px;padding:4px 10px;font-size:13px;font-weight:600}
.hmp-min-ord{font-size:13px; color: #ef4444; font-weight: 700;}
.hmp-divider{margin:10px 0;border-color: #198754}
.hmp-breadcrumb{margin-top: 10px; display:flex;align-items:center;gap:8px;font-size:13px;flex-wrap:wrap;padding:6px 10px; border-top: 2px solid #16a34a;}
.hmp-breadcrumb a{color:var(--primary);text-decoration:none}
.hmp-breadcrumb a:hover{text-decoration:underline}
.hmp-breadcrumb>span{color:var(--text-muted)}
.hmp-banner-wrap{ padding: 10px;}
.hmp-banner{width:100%;max-height:220px;object-fit:cover;display:block}
.hmp-cat-scroll{display:flex;gap:8px;overflow-x:auto;padding:7px 0; border-bottom: 2px solid #ffc107; scrollbar-width:none}
.hmp-cat-scroll::-webkit-scrollbar{display:none}
.hmp-cat-pill{background: #20a11659; border:1px solid var(--border);border-radius:20px;padding:5px 14px;font-size:13px;cursor:pointer;white-space:nowrap;color:#000;transition:background .15s,color .15s}
.hmp-cat-pill.active{background:var(--primary);border-color:var(--primary);color:#fff}
.hmp-cat-section{margin-bottom:20px}
.hmp-cat-header{display:flex;align-items:center;gap:7px;background: #e7fee0;border:1px solid #c0fdba;border-left:4px solid #40e90e;border-radius:8px;padding:7px 14px;font-size:14px;font-weight:600;color:#15803d;margin-bottom:10px}
.hmp-cat-header .fa-tag{color: #16a34a;font-size:13px}
.hmp-cat-cnt{font-weight:400;color: #15803d;margin-left:2px}
@media(prefers-color-scheme:dark){.hmp-cat-header{background:#0c2d48;border-color:#164e63;color:#7dd3fc}.hmp-cat-header .fa-tag{color:#38bdf8}}
.hmp-prod-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:8px}

.hmp-prod-card{background:var(--surface);border-radius:var(--radius);overflow:hidden;cursor:pointer;box-shadow:0 1px 4px rgba(0,0,0,.1);transition:transform .15s}
.hmp-prod-card:hover{transform:translateY(-2px)}
.hmp-prod-img-wrap{position:relative;overflow:hidden}
.hmp-prod-img-wrap img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.hmp-prod-save{position:absolute;top:6px;left:6px;background:#16a34a;color:#fff;font-size:11px;font-weight:700;padding:2px 7px;border-radius:4px}
.hmp-stk{position:absolute;top:6px;right:6px;font-size:10px;font-weight:700;padding:2px 6px;border-radius:4px}
.hmp-stk-vlow{background:#fee2e2;color:#dc2626}
.hmp-stk-low{background:#fef3c7;color:#d97706}
.hmp-prod-body{padding:8px 10px 10px;position:relative}
.hmp-prod-name{font-size:13px;font-weight:700;margin-bottom:3px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.hmp-prod-rat-row{display:flex;justify-content: center;align-items:center;gap:6px;margin-bottom:3px}
.hmp-prod-stars{display:inline-flex;align-items:center;gap:1px}
.hmp-prod-rat-num{font-size:11px;color:var(--text-muted);margin-left:2px}
.hmp-star{color:#f59e0b;font-size:11px}
.hmp-star-e{opacity:.2}
.hmp-prod-rev-btn{background:none;border:1px solid var(--border);border-radius:4px;padding:1px 6px;font-size:11px;cursor:pointer;color:var(--primary);white-space:nowrap}
.hmp-prod-price-row{display:flex;align-items:baseline;flex-wrap:wrap;gap:4px;margin-bottom:2px}
.hmp-prod-price{font-size:15px;color:var(--primary);font-weight:700}
.hmp-prod-orig{font-size:13px;color:#dc2626;text-decoration:line-through}
.hmp-prod-vol{font-size:13px;color:#16a34a;font-weight:600;margin-left:auto}
.hmp-prod-desc{font-size:12px;color:#111;margin-top:3px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.hmp-add-btn{position:absolute;bottom:90%;right:8px;width:32px;height:32px;border-radius:50%;background:var(--primary,#16a34a);color:#fff;border:none;cursor:pointer;font-size:16px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 6px rgba(0,0,0,.2);transition:transform .15s,background .15s}
.hmp-add-btn:hover{transform:scale(1.1);background:#15803d}
@media(prefers-color-scheme:dark){.hmp-prod-desc{color:#e5e7eb}}
.hmp-full-modal{position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;display:flex;align-items:center;justify-content:center}
.hmp-full-modal img{max-width:95vw;max-height:95vh;object-fit:contain;border-radius:4px}
.hmp-modal-close{position:absolute;top:14px;right:14px;background:rgba(255,255,255,.15);border:none;color:#fff;border-radius:50%;width:36px;height:36px;cursor:pointer;font-size:16px;display:flex;align-items:center;justify-content:center}
.hmp-modal-arr{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.18);border:none;color:#fff;border-radius:50%;width:42px;height:42px;cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;z-index:10;transition:background .15s}
.hmp-modal-arr:hover{background:rgba(255,255,255,.35)}
.hmp-modal-arr-l{left:14px}
.hmp-modal-arr-r{right:60px}
.hmp-rev-modal{position:fixed;inset:0;z-index:8000;display:flex;align-items:center;justify-content:center;padding:16px}
.hmp-rev-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.4)}
.hmp-rev-inner{position:relative;z-index:1;background:var(--bg,#fff);border-radius:16px;width:100%;max-width:640px;max-height:80vh;display:flex;flex-direction:column}
.hmp-rev-head{padding:16px 20px;font-size:16px;font-weight:700;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center}
.hmp-rev-close{background:none;border:1px solid var(--border);color:var(--text);border-radius:50%;width:28px;height:28px;cursor:pointer;font-size:13px;display:flex;align-items:center;justify-content:center}
.hmp-rev-list{overflow-y:auto;padding:8px 20px 20px;flex:1}
.hmp-rev-item{padding:12px 0;border-bottom:1px solid var(--border)}
.hmp-rev-item:last-child{border-bottom:none}
.hmp-rev-name{font-weight:600;font-size:14px}
.hmp-rev-rating{color:#f59e0b;font-size:12px;margin-left:6px}
.hmp-rev-text{font-size:13px;color:var(--text-muted);margin-top:4px}
@media(prefers-color-scheme:dark){
  .hmp-rev-inner{background:var(--surface,#1e1e1e)}
  .hmp-badge-save{background:#14532d;color:#4ade80}
  .hmp-badge-fast{background:#1e3a5f;color:#60a5fa}
  .hmp-cat-badge{background:#1a2e1a;color:var(--primary)}
}

.hmp-promo{margin-top: 190px; font-family:inherit;color:var(--text,#111)}
.hmp-hero{background:linear-gradient(135deg,#14532d 0%,#166534 40%,#15803d 100%);color:#fff;padding:60px 20px 50px;text-align:center;position:relative;overflow:hidden}
.hmp-hero::before{content:'';position:absolute;inset:0;pointer-events:none;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hmp-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);border-radius:20px;padding:5px 14px;font-size:12px;font-weight:700;letter-spacing:.5px;margin-bottom:18px}
.hmp-hero h1{font-size:clamp(24px,5vw,42px);font-weight:900;line-height:1.2;margin:0 0 14px}
.hmp-hero h1 span{color:#fbbf24}
.hmp-hero-sub{font-size:clamp(14px,2.5vw,18px);opacity:.9;max-width:580px;margin:0 auto 28px;line-height:1.6}
.hmp-hero-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.hmp-btn-primary{background:#fbbf24;color:#000;font-weight:800;border:none;border-radius:10px;padding:13px 28px;font-size:15px;cursor:pointer;transition:transform .15s,box-shadow .15s;text-decoration:none;display:inline-flex;align-items:center;gap:8px}
.hmp-btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(251,191,36,.4)}
.hmp-btn-outline{background:transparent;color:#fff;font-weight:700;border:2px solid rgba(255,255,255,.6);border-radius:10px;padding:13px 28px;font-size:15px;cursor:pointer;transition:all .15s;text-decoration:none;display:inline-flex;align-items:center;gap:8px}
.hmp-btn-outline:hover{background:rgba(255,255,255,.12)}
.hmp-section{padding:50px 20px;max-width:1100px;margin:0 auto}
.hmp-section-title{text-align:center;font-size:clamp(20px,4vw,30px);font-weight:800;margin:0 0 8px}
.hmp-section-sub{text-align:center;color:var(--text-muted,#6b7280);font-size:14px;margin:0 0 36px;max-width:500px;margin-left:auto;margin-right:auto}
.hmp-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
.hmp-step{background:var(--surface,#fff);border-radius:14px;padding:28px 22px;text-align:center;border:1px solid var(--border,#e5e7eb);position:relative;overflow:hidden}
.hmp-step::before{content:attr(data-n);position:absolute;top:-10px;right:12px;font-size:80px;font-weight:900;color:#16a34a0d;line-height:1}
.hmp-step-icon{font-size:36px;margin-bottom:14px;display:block}
.hmp-step h3{font-size:17px;font-weight:800;margin:0 0 8px;color:#15803d}
.hmp-step p{font-size:13px;color:var(--text-muted,#6b7280);line-height:1.6;margin:0}
.hmp-cats-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:12px}
.hmp-cat-item{background:var(--surface,#fff);border:1px solid var(--border,#e5e7eb);border-radius:12px;padding:16px 10px;text-align:center;transition:border-color .15s,transform .15s}
.hmp-cat-item:hover{border-color:#16a34a;transform:translateY(-3px)}
.hmp-cat-item-icon{font-size:28px;margin-bottom:8px;display:block}
.hmp-cat-item-name{font-size:12px;font-weight:700;color:var(--text,#111);line-height:1.3}
.hmp-pricing{background:linear-gradient(135deg,#f0fdf4,#dcfce7);border-radius:20px;padding:36px 28px;border:1px solid #86efac}
.hmp-pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;margin-top:24px}
.hmp-pricing-card{background:#fff;border-radius:12px;padding:20px;border:2px solid #bbf7d0;text-align:center}
.hmp-pricing-card.highlight{border-color:#16a34a;background:#f0fdf4}
.hmp-pricing-val{font-size:28px;font-weight:900;color:#15803d;margin:8px 0 4px}
.hmp-pricing-label{font-size:12px;color:#6b7280;font-weight:600}
.hmp-pricing-note{font-size:11px;color:#16a34a;margin-top:6px;font-weight:600}
.hmp-features-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px}
.hmp-feat{display:flex;gap:14px;align-items:flex-start;background:var(--surface,#fff);border-radius:12px;padding:18px;border:1px solid var(--border,#e5e7eb)}
.hmp-feat-icon{font-size:24px;flex-shrink:0;width:44px;height:44px;background:#f0fdf4;border-radius:10px;display:flex;align-items:center;justify-content:center}
.hmp-feat h4{font-size:14px;font-weight:800;margin:0 0 4px;color:#15803d}
.hmp-feat p{font-size:12px;color:var(--text-muted,#6b7280);margin:0;line-height:1.5}
.hmp-women-banner{background:linear-gradient(135deg,#7c3aed,#a855f7);color:#fff;border-radius:20px;padding:36px 28px;text-align:center;margin:0 20px}
.hmp-women-banner h2{font-size:clamp(18px,3.5vw,26px);font-weight:900;margin:0 0 10px}
.hmp-women-banner p{font-size:14px;opacity:.9;line-height:1.6;max-width:560px;margin:0 auto 20px}
.hmp-women-stat{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.2);border-radius:10px;padding:10px 20px;font-weight:800;font-size:18px}
.hmp-cta-section{background:linear-gradient(135deg,#14532d,#15803d);color:#fff;padding:60px 20px;text-align:center}
.hmp-cta-section h2{font-size:clamp(22px,4vw,34px);font-weight:900;margin:0 0 12px}
.hmp-cta-section p{font-size:15px;opacity:.85;max-width:480px;margin:0 auto 28px;line-height:1.6}
.hmp-faq{max-width:700px;margin:0 auto}
.hmp-faq-item{border:1px solid var(--border,#e5e7eb);border-radius:10px;margin-bottom:10px;overflow:hidden}
.hmp-faq-q{padding:16px 20px;font-weight:700;font-size:14px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:var(--surface,#fff)}
.hmp-faq-q:hover{background:#f9fafb}
.hmp-faq-a{padding:0 20px;max-height:0;overflow:hidden;transition:max-height .25s,padding .25s;font-size:13px;color:var(--text-muted,#6b7280);line-height:1.7;background:#fafafa}
.hmp-faq-a.open{max-height:200px;padding:14px 20px}

@media (prefers-color-scheme:dark) {
  .svc-ic-benefit { background:#422006;border-color:#a16207;color:#fde68a; }
}
:root[data-theme="dark"] .svc-ic-benefit { background:#422006;border-color:#a16207;color:#fde68a; }
:root[data-theme="light"] .svc-ic-benefit { background:#fef9c3;border-color:#ca8a04;color:#92400e; }



:root[data-theme="dark"] .ac-sidebar,
:root[data-theme="dark"] .ac-thread-panel { background: #1f2937; border-color: #374151; }
:root[data-theme="dark"] .ac-thread-header { background: #1f2937; border-color: #374151; }
:root[data-theme="dark"] .ac-msg-user .ac-bubble { background: #14532d; color: #86efac; }
:root[data-theme="dark"] .ac-reply-textarea { background: #374151; border-color: #4b5563; color: #f9fafb; }
:root[data-theme="dark"] .faq-table th { background: #111827; }
:root[data-theme="dark"] .faq-table th,
:root[data-theme="dark"] .faq-table td { border-color: #374151; }
:root[data-theme="dark"] .btn-sm-action { background: #1f2937; border-color: #4b5563; color: #d1d5db; }

  #checkoutFixedFooter { display: none !important; }
  .checkout-payable-dt { display: block !important; }



/* --- RESPONSIVE --- */

@media (max-width: 992px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid-home { grid-template-columns: repeat(5, 1fr); }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); }
  .main-content { padding-bottom: 0px;  margin-top: 180px; }
  .main-footer { margin-bottom:60px; }
  .footer-strip-right { display:none; }
  .footer-bottom-inner { flex-direction:column; align-items:flex-start; gap:8px; }
  .footer-app-btns { flex-direction:column; }
  .app-download-btn { width:100%; max-width:180px; }
}

@media (max-width: 960px) { 
  .cd-layout-cat { grid-template-columns: 1fr; } 
  .cd-layout { grid-template-columns: 1fr; } 
  .cd-sidebar { position: static; max-height: none; } 
}

@media (max-width: 900px) {
  .ac-layout { grid-template-columns: 1fr; }
  .ac-sidebar { position: static; }
  .svc-detail-layout { grid-template-columns: 1fr; margin-top: 0; }
  .svc-detail-layout .cd-sidebar { display: none; }
}


@media (max-width: 768px) { 
  .hero-dual { flex-direction: column; gap: 10px; margin-top: 150px;}
  .hero-dual-main {display: none;}
  .hero-dual-side { flex: none; width: 100%; height: 200px; }
  .hero-dual-title { font-size: 20px; }
  .hero-dual-side .hero-dual-title { font-size: 17px; }
  .hero-single { height: 200px; margin-top: 150px; }
  .hero-single-inner { height: 160px; }
  .product-source-row {font-size: 12px;}
  .rtcsub-card { width: 240px; } .rtcsub-wrap { padding: 0 2px; } 
  .hm-card { width: 220px; } .hm-pro-card {width: 100%;} .hm-wrap { padding: 0 1px; } .hm-card-img-wrap { height: 135px; }
  .qd-track .product-card { width: 205px; min-width: 205px; }
  .rtc-carousel-wrap { padding: 8px 12px 20px; }
  .rtc-track { grid-auto-columns: 195px; gap: 10px; }
  .rtc-track .product-card { width: 205px; min-width: 205px; }
  .cd-sub-all-mobile { display: flex; }
  .cd-carousel-wrap { padding: 4px 12px 16px; }
  .cd-track { grid-auto-columns: 170px; gap: 10px; }
  .cd-track .product-card { width: 170px; min-width: 170px; }
  .qd-header { padding: 10px 12px 0px 12px; gap: 8px; } .qd-title { font-size: 16px; } .qd-tab { font-size: 11px; padding: 5px 11px; white-space: nowrap; } .qd-card { width: 138px; } .qd-card img { height: 110px; }
  .chat-panel {
  bottom: 62px;
  right: 14px;
  height: 600px;
  }
  .chat-fab-button {
    display: none;
  }  
  .ac-layout { grid-template-columns: 1fr; height: auto; } 
   #checkoutFixedFooter { display: block !important; }
  .checkout-payable-dt { display: none !important; }
  .checkout-page { padding-bottom: 0 !important; }
  .cd-track { grid-auto-columns: 195px; gap: 10px; }
  .cd-track .product-card { width: 195px; min-width: 195px; }
  .cd-ads-row { gap: 10px; }
  .cd-ad-img { height: 90px; }
  .cd-layout { margin-top: 130px; }
  .top { margin-top: 130px; }
  .spd-grid {  grid-template-columns: repeat(4, minmax(190px, 1fr)); overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .spd-topbar { flex-direction: column; align-items: flex-start; }
  .spd-combo-card img { width: 60px; height: 60px; }
  .hero-main { display: none; }
  .cd-special-row {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 14px 0 4px;
    grid-auto-flow: row;
    flex-direction: column;
  }
 .product-body {
    padding: 5px;
  }
  .product-name {
    margin-bottom: 0px;
  }
  .product-rating {
    margin-bottom: 0px;
  }
  .add-to-cart-btn {
    top: 48%;
    right: 6px;
    position: absolute;
    width: 30px;
    height: 30px;
  }
  .hero-slide { height: 220px; }
  .hero-title { font-size: 22px; }
  .cat-grid-home { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .product-grid { grid-template-columns: repeat(4, minmax(195px, 1fr)); gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .special-section { padding: 32px 24px; }
  .payment-method-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .notif-dropdown { right: 8px; width: calc(100vw - 16px); }
  .container { max-width: 1120px; --bs-gutter-x: rem; padding: 0px 10px;}
  /* Offset for fixed mobile header (~116px tall) */
  .heart-btn {display: none; }
  .balence-btn {display: none;}
  .search-input {
  width: 100%; padding: 5px 50px 5px 10px;
  }
  .cr-section-title { margin-top: 0px; }
  .affiliate-section { margin-top: 120px; }
  .search-btn {
    width: 26px; height: 26px; border-radius: 50%;
  }
  .cart-drawer-header {
      padding: 5px 20px;
  }
  .cart-page-item {
    padding: 6px;
    margin-bottom: 6px;
  }
   .mobile-nav {
  position: fixed; bottom: -2px; left: 0; right: 0;
  background: #fffaea; border-top: 1px solid var(--border);
  display: flex; z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  padding: 0px 0 env(safe-area-inset-bottom, 8px);
 }

  .hmp-main-grid{grid-template-columns:1fr} 
  .hmp-promo{margin-top: 130px;}
}

@media (max-width: 768px) {
  
  .ad-sec-wrap { height: 140px; }
  .svc-cards-grid { grid-template-columns: 1fr 1fr; }
  .svc-cat-hero { padding: 28px 16px 24px; }
  .svc-cat-hero h1 { font-size: 20px; }
  .svc-detail-hero { padding: 24px 18px; }
  .svc-section { padding: 18px 16px; }
  .sched-shop-hdr { top: 135px; }
  .section-title-ch { margin-top: 0px;}
  .rr-overview { gap:16px; margin-left: 0px; margin-right: 0px;}
  .search-results-dropdown { width: 320px;}
  .mobile-none { display: none;}
  .cat-nav {

  position: sticky;
  top: 130px;
  left: 0;
  right: 0;
  z-index: 100;
  }
}

@media (max-width: 600px) {
  .spd-grid {  grid-template-columns: repeat(3, minmax(190px, 1fr)); overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .svc-stat-row { flex-direction:column; }
  .svc-feature-grid { grid-template-columns:repeat(2,1fr); }
  .svc-compare-row { grid-template-columns:1fr; }
  .spd-hero .spd-hero-inner { height: 120px; } 
  .hmp-hero{padding:40px 16px 36px}.hmp-section{padding:36px 16px}.hmp-women-banner{margin:0 12px}.hmp-pricing{padding:24px 16px}
  .svc-ic-bullets { grid-template-columns:1fr; }
  .svc-inline-card { padding:16px 14px; }
  .ac-breadcrumb { font-size: 12px; }
  .cat-grid-home{ grid-template-columns: repeat(3, 1fr); gap: 6px; }
}

@media (max-width: 480px) { 
  .main-content { margin-top: 130px;}
  .addr-cards-grid { grid-template-columns:repeat(1,1fr);}
  .rtc-carousel-wrap { padding: 1px 1px 1px; }
  .rtc-track { grid-auto-columns: 170px; gap: 8px; }
  .rtc-track .product-card { width: 175px; min-width: 175px; }
  .cd-carousel-wrap { padding: 0px 0px 0px; }
  .cd-track { grid-auto-columns: 170px; gap: 8px; }
  .cd-track .product-card { width: 170px; min-width: 170px; }
  .product-source-row {font-size: 10px;}
  .cd-track { grid-auto-columns: 170px; gap: 8px; padding: 0px 0px; }
  .cd-track .product-card { width: 170px; min-width: 170px; }
  .cd-ads-row { grid-template-columns: 1fr; }
  .spd-filter-bar { gap: 6px; }
  .spd-grid { grid-template-columns: repeat(2, minmax(170px, 1fr)); overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .spd-combo-body { gap: 4px; }
  .add-to-cart-btn {
    top: 45%;
    right: 6px;
    position: absolute;
    width: 30px;
    height: 30px;
 }
 .product-stock-very-low {
    top: 26px;
    right: 6px;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-home { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .product-name { font-size: 13px; }
  .price-main { font-size: 15px; }
  .hero-title { font-size: 18px; }
  .otp-input { width: 40px; height: 48px; font-size: 20px; }
  .checkout-card { padding: 20px 16px; }
  .cart-drawer-inner { max-width: 100%; }
  .cart-page-main {gap: 4px;}
  .cart-page-right { min-width: 50px;}
  .cart-qty-color-row {gap: 4px;}
  .qd-track .product-card {
    width: 175px;
    min-width: 175px;
  }
  .hmp-prod-grid{grid-template-columns:repeat(2,1fr)}
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 18px 16px; }
  .top { margin-top: 90px; }
  .hmp-prod-orig {
    font-size: 11px;}
    .hmp-prod-price {
    font-size: 13px;}
    .hmp-prod-vol {
    font-size: 11px;}
    .hmp-star {
    font-size: 9px;}
    .hmp-prod-rat-num {
    font-size: 10px;}
    .hmp-prod-desc {
    font-size: 10px;}
    .hmp-prod-rat-row {
    gap: 1px;}
    .hmp-prod-save {
    font-size: 10px;}
    .hmp-prod-body {
    padding: 4px 5px 2px;}
}

@media (max-width: 350px) {
  .user-name {font-size: 10px;}
  .checkout-card-title { font-size: 13px; font-weight: 600;}
  .spd-filter-bar { padding: 6px 2px; }
  .spd-sel { padding: 6px 2px;}
}



/* ===== Investor / Green Page ===== */
.green-page {
  --ink:#1B2A22; --paper:#F1EEE2; --paper-2:#E9E4D2; --gold:#B9862B;
  --gold-deep:#8C6417; --forest:#1F5C46; --forest-deep:#153F31;
  --brick:#8B4332; --line:#D3CBAE; --white:#FBFAF5;
  --gp-shadow: 0 10px 30px rgba(27,42,34,0.12);
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  line-height: 1.7;
}

/* --- layout --- */
.gp-wrap { max-width:1080px; margin:0 auto; padding:0 28px; }
.gp-section { padding:40px 0; }
.gp-tint { background:var(--paper-2); }
.gp-section-head { max-width:640px; margin-bottom:4px; }
.gp-section-sub { color:#4a5850; margin-top:12px; font-size:15.5px; text-align: justify;}

/* --- typography --- */
.gp-eyebrow-pre { font-size:18px; letter-spacing:.1em; color:var(--gold-deep); font-weight:600; text-transform:uppercase; display:block; padding-top: 20px;}
.gp-eyebrow { font-size:18px; letter-spacing:.1em; color:var(--gold-deep); font-weight:600; text-transform:uppercase; display:block; }
.gp-eyebrow-sm { font-size:12px; letter-spacing:.08em; color:var(--gold-deep); font-weight:600; text-transform:uppercase; }
.gp-h1 { font-family:'Tiro Bangla',serif; font-size:42px; line-height:1.28; color:var(--white); margin-bottom:22px; font-weight:400; }
.gp-h1 em { font-style:normal; color:var(--gold); border-bottom:3px solid var(--gold-deep); padding-bottom:2px; }
.gp-h2 { font-family:'Tiro Bangla',serif; font-size:30px; margin-top:10px; font-weight:400; color:var(--forest-deep); }
.gp-h3 { font-family:'Tiro Bangla',serif; font-size:18px; margin-bottom:8px; color:var(--forest-deep); font-weight:400; }

/* --- buttons --- */
.gp-btn { display:inline-block; padding:14px 26px; border-radius:3px; font-weight:600; font-size:15px; text-decoration:none; transition:transform .18s ease,box-shadow .18s ease; border:1px solid transparent; cursor:pointer; font-family:'Hind Siliguri',sans-serif; }
.gp-btn-gold { background:var(--gold); color:var(--forest-deep); }
.gp-btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 18px rgba(185,134,43,.4); }
.gp-btn-outline { border-color:rgba(255,255,255,.5); color:var(--white); background:transparent; }
.gp-btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,.06); }

/* --- hero --- */
.gp-hero { position:relative; background:linear-gradient(180deg,var(--forest-deep) 0%,var(--forest) 100%); color:var(--white); padding:64px 0 96px; overflow:hidden; }
.gp-hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:36px; background:var(--paper); clip-path:polygon(0 100%,100% 100%,100% 0,96% 30%,92% 4%,88% 26%,84% 2%,80% 24%,76% 3%,72% 27%,68% 5%,64% 22%,60% 3%,56% 26%,52% 4%,48% 24%,44% 2%,40% 27%,36% 5%,32% 23%,28% 3%,24% 26%,20% 4%,16% 24%,12% 2%,8% 27%,4% 5%,0 22%); }
.gp-grain { position:absolute; inset:0; pointer-events:none; opacity:.05; z-index:0; background-image:radial-gradient(var(--ink) 0.6px,transparent 0.6px); background-size:4px 4px; }
.gp-brandbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:56px; position:relative; z-index:1; }
.gp-mark { font-family:'Tiro Bangla',serif; font-size:22px; letter-spacing:.02em; }
.gp-mark b { color:var(--gold); }
.gp-tag { font-size:13px; opacity:.75; }
.gp-hero-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:center; position:relative; z-index:1; }
.gp-lead { font-size:17px; color:#DCE6DF; max-width:52ch; margin-bottom:30px; text-align: justify;}
.gp-hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }

/* --- seal --- */
.gp-seal-wrap { display:flex; justify-content:center; }
.gp-seal { width:190px; height:190px; border-radius:50%; border:2.5px dashed rgba(212,177,105,.65); display:flex; align-items:center; justify-content:center; transform:rotate(-8deg); transition:transform .4s ease; }
.gp-seal:hover { transform:rotate(0deg) scale(1.03); }
.gp-seal-inner { width:150px; height:150px; border-radius:50%; border:1.5px solid rgba(212,177,105,.85); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:var(--gold); }
.gp-seal-big { font-family:'Tiro Bangla',serif; font-size:30px; line-height:1; }
.gp-seal-small { font-size:11px; letter-spacing:.1em; margin-top:6px; color:#DCE6DF; }

/* --- stats strip --- */
.gp-stats-strip { display:grid; grid-template-columns:repeat(4,1fr); background:var(--white); border:1px solid var(--line); border-radius:6px; margin-top:-56px; position:relative; z-index:2; box-shadow:var(--gp-shadow); }
.gp-stat { padding:22px 18px; border-right:1px solid var(--line); text-align:center; }
.gp-stat:last-child { border-right:none; }
.gp-stat-num { font-family:'Tiro Bangla',serif; font-size:26px; color:var(--forest); }
.gp-stat-lbl { font-size:12.5px; color:#5b6b62; margin-top:4px; }

/* --- fields --- */
.gp-fields-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:8px; margin-bottom: 20px; }
.gp-field-card { background:var(--white); border:1px solid var(--line); border-radius:6px; padding:16px 12px; position:relative; transition:transform .2s ease,box-shadow .2s ease; overflow:hidden; }
.gp-field-card:hover { transform:translateY(-4px); box-shadow:var(--gp-shadow); }
.gp-field-idx { position:absolute; top:24px; right:18px; font-family:'Tiro Bangla',serif; font-size:18px; color: #af742f; }
.gp-field-icon { width:44px; height:44px; border-radius:50%; background:var(--forest-deep); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:29px; margin-bottom:16px; }
.gp-field-desc { font-size:13.5px; color: #5b6b62; margin-bottom:14px; min-height:40px; }
.gp-limit { display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; background:var(--paper-2); color:var(--gold-deep); padding:6px 12px; border-radius:20px; }

/* --- rules --- */
.gp-rules-panel { display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:start; }
.gp-rules-list { list-style:none; padding:0; margin:0; }
.gp-rules-list li { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.gp-rules-list li:last-child { border-bottom:none; }
.gp-rule-n { font-family:'Tiro Bangla',serif; color:var(--gold-deep); font-size:20px; min-width:26px; }
.gp-rule-t b { display:block; color:var(--forest-deep); margin-bottom:3px; font-size:15.5px; }
.gp-rule-t span { font-size:14px; color:#4a5850; }
.gp-diversify-box { background:var(--forest-deep); color:var(--white); border-radius:8px; padding:22px; margin-top: 24px; }
.gp-diversify-h3 { font-family:'Tiro Bangla',serif; color:var(--gold); font-size:20px; margin-bottom:14px; font-weight:400; }
.gp-diversify-box p { font-size:14.5px; color:#DCE6DF; margin-bottom:14px; text-align: justify;}
.gp-example { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); border-radius:6px; padding:16px; font-size:13.5px; color:#EFEAD9; }

/* --- passbook --- */
.gp-passbook { background:var(--white); border-radius:4px; box-shadow:var(--gp-shadow); border:1px solid var(--line); position:relative; overflow:hidden; }
.gp-passbook-head { background:var(--forest-deep); color:var(--white); padding:12px 13px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.gp-pb-t1 { font-family:'Tiro Bangla',serif; font-size:20px; color:var(--gold); }
.gp-pb-t2 { font-size:13px; color:#DCE6DF; }
.gp-ledger { width:100%; border-collapse:collapse; font-size:14.5px; }
.gp-ledger thead th { text-align:right; padding:14px 24px; font-weight:600; color:var(--forest-deep); border-bottom:2px solid var(--forest-deep); font-size:13px; letter-spacing:.02em; }
.gp-ledger thead th:first-child { text-align:right; }
.gp-ledger tbody td { padding:16px 24px; border-bottom:1px dashed var(--line); text-align:right; }
.gp-ledger tbody tr:hover { background:var(--paper-2); }
.gp-ledger tbody td:first-child { text-align:right; font-weight:600; color:var(--forest); }
.gp-pill { display:inline-block; padding:3px 10px; border-radius:20px; font-size:12px; font-weight:600; }
.gp-pill-good { background:#E4EFE8; color:var(--forest); }
.gp-pill-low { background:#F5E8DE; color:var(--brick); }
.gp-pill-catch { background:#F6EAC7; color:var(--gold-deep); }
.gp-passbook-foot { padding:20px 30px; border-top:1px solid var(--line); font-size:13px; color:#5b6b62; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; align-items:center; }
.gp-stampmini { font-family:'Tiro Bangla',serif; color:var(--gold-deep); border:1px solid var(--gold-deep); border-radius:50%; width:52px; height:52px; display:flex; align-items:center; justify-content:center; font-size:11px; text-align:center; transform:rotate(-6deg); flex-shrink:0; }
.gp-formula-note { margin-top:22px; background:var(--paper-2); border-left:3px solid var(--gold-deep); padding:16px 20px; font-size:14px; border-radius:0 6px 6px 0; color:#3d4a43; }

/* --- steps --- */
.gp-steps { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.gp-step { background:var(--white); border:1px solid var(--line); border-radius:6px; padding:20px 16px; position:relative; text-align: justify;}
.gp-step-num { font-family:'Tiro Bangla',serif; font-size:22px; color:var(--gold-deep); margin-bottom:10px; }
.gp-step-h4 { font-size:16.5px; color:var(--forest-deep); margin-bottom:6px; font-weight:600; }
.gp-step p { font-size:14.5px; color:#5b6b62; margin:0; }

/* --- verify --- */
.gp-verify-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.gp-verify-card { background:var(--white); border:1px solid var(--line); border-radius:8px; padding:30px 28px; position:relative; }
.gp-verify-premium { border-color:var(--gold-deep); box-shadow:var(--gp-shadow); }
.gp-verify-badge { position:absolute; top:-13px; right:26px; background:var(--gold); color:var(--forest-deep); font-size:12px; font-weight:700; padding:5px 14px; border-radius:20px; }
.gp-price { font-family:'Tiro Bangla',serif; font-size:22px; color:var(--gold-deep); margin-bottom:16px; }
.gp-ol { padding-left:20px; font-size:14px; color:#4a5850; }
.gp-ol li { margin-bottom:11px; }
.gp-bank-note { margin-top:26px; background:var(--forest-deep); color:var(--white); border-radius:8px; padding:24px 28px; display:flex; gap:18px; align-items:flex-start; flex-direction: column;}
.gp-bank-ic { font-size:24px; color:var(--gold); flex-shrink:0; }
.gp-bank-note b { display:block; color:var(--gold); margin-bottom:10px; font-size:15px; }
.gp-bank-note p { font-size:13.5px; color:#DCE6DF; margin: -10px; padding-left: 20px; }

/* --- dashboard preview --- */
.gp-dash-panel { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; background:var(--white); border:1px solid var(--line); border-radius:10px; padding:44px; box-shadow:var(--gp-shadow); }
.gp-dash-list { list-style:none; padding:0; margin:0; }
.gp-dash-list li { display:flex; gap:12px; padding:11px 0; font-size:14.5px; color:#3d4a43; border-bottom:1px dashed var(--line); }
.gp-dash-list li:last-child { border-bottom:none; }
.gp-dot { width:7px; height:7px; border-radius:50%; background:var(--gold-deep); margin-top:8px; flex-shrink:0; }
.gp-dash-visual { background:var(--paper-2); border:1px solid var(--line); border-radius:8px; padding:24px; }
.gp-dv-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.gp-dv-head span { font-family:'Tiro Bangla',serif; color:var(--forest-deep); font-size:16px; }
.gp-dv-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); font-size:13px; color:#4a5850; }
.gp-dv-row:last-child { border-bottom:none; }
.gp-dv-row b { color:var(--forest); }

/* --- trust/risk --- */
.gp-trust-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:40px; }
.gp-risk-card { background:#F6EFE4; border:1px solid var(--line); border-radius:8px; padding:26px; }
.gp-risk-h3 { font-family:'Tiro Bangla',serif; color:var(--brick); font-size:17px; margin-bottom:12px; font-weight:400; }
.gp-risk-ul { padding-left:18px; font-size:14px; color:#4a5850; }
.gp-risk-ul li { margin-bottom:8px; }

/* --- faq --- */
.gp-faq-item { border-bottom:1px solid var(--line); padding:20px 0; }
.gp-faq-sum { cursor:pointer; font-family:'Tiro Bangla',serif; font-size:17px; color:var(--forest-deep); list-style:none; display:flex; justify-content:space-between; align-items:center; }
.gp-faq-sum::-webkit-details-marker { display:none; }
.gp-faq-sum::after { content:"+"; font-size:20px; color:var(--gold-deep); }
.gp-faq-item[open] .gp-faq-sum::after { content:"−"; }
.gp-faq-p { margin-top:12px; font-size:14.5px; color:#4a5850; max-width:70ch; }

/* --- footer --- */
.gp-footer { background:var(--forest-deep); color:var(--white); padding:70px 0 40px; }
.gp-cta-box { text-align:center; max-width:600px; margin:0 auto 50px; }
.gp-cta-h2 { font-family:'Tiro Bangla',serif; color:var(--white); font-size:30px; margin-bottom:14px; font-weight:400; }
.gp-cta-p { color:#DCE6DF; margin-bottom:26px; font-size:15px; }
.gp-contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; border-top:1px solid rgba(255,255,255,.15); padding-top:34px; font-size:13.5px; color:#c9d6cd; }
.gp-contact-grid b { display:block; color:var(--gold); margin-bottom:6px; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; }
.gp-fine { margin-top:40px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); font-size:12px; color:#93a49a; text-align:center; line-height:1.8; }



  /* ===== SECTIONS ===== */
  section{padding:88px 0;}
  section.tint{background:var(--paper-2);}
  .section-head{max-width:640px; margin-bottom:44px;}
  .section-head h2{font-size:32px; margin-top:10px;}
  .section-head p{color:#4a5850; margin-top:12px; font-size:15.5px;}

  /* investment fields grid */
  .fields-grid{
    display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:18px;
  }
  .field-card{
    background:var(--white); border:1px solid var(--line); border-radius:6px; padding:26px 22px;
    position:relative; transition:transform .2s ease, box-shadow .2s ease; overflow:hidden;
  }
  .field-card:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
  .field-card .idx{
    position:absolute; top:14px; right:18px; font-family:'Tiro Bangla',serif; font-size:34px; color:var(--paper-2);
  }
  .field-card .icon{
    width:44px; height:44px; border-radius:50%; background:var(--forest-deep); color:var(--gold);
    display:flex; align-items:center; justify-content:center; font-size:19px; margin-bottom:16px;
  }
  .field-card h3{font-size:18px; margin-bottom:8px; color:var(--forest-deep);}
  .field-card p{font-size:13.5px; color:#5b6b62; margin-bottom:14px;}
  .field-card .limit{
    display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600;
    background:var(--paper-2); color:var(--gold-deep); padding:6px 12px; border-radius:20px;
  }
  .field-card .tagline{font-size:13px; font-style:italic; color:var(--forest); margin-bottom:12px;}
  .field-card ul.benefits{list-style:none; margin-bottom:16px;}
  .field-card ul.benefits li{font-size:13px; color:#4a5850; padding:4px 0 4px 16px; position:relative;}
  .field-card ul.benefits li::before{content:"•"; color:var(--gold-deep); position:absolute; left:0; font-weight:700;}
  .field-card .badges{display:flex; gap:8px; flex-wrap:wrap;}
  .limit-flat{background:#E4EFE8; color:var(--forest);}
  .same-rate-note{
    display:flex; gap:14px; align-items:flex-start; background:var(--paper-2);
    border:1px solid var(--line); border-left:3px solid var(--gold-deep); border-radius:0 8px 8px 0;
    padding:18px 22px; margin-bottom:36px; font-size:14px; color:#3d4a43;
  }
  .same-rate-note .ic{font-size:20px; color:var(--gold-deep); flex-shrink:0;}
  .same-rate-note b{color:var(--forest-deep);}

  /* tab navigation */
  .tab-nav{
    display:flex; gap:6px; margin-bottom:40px; border-bottom:1px solid var(--line);
    overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none;
  }
  .tab-nav::-webkit-scrollbar{display:none;}
  .tab-btn{
    background:none; border:none; padding:13px 20px; font-family:'Hind Siliguri',sans-serif;
    font-size:14px; font-weight:600; color:#7a887f; cursor:pointer; white-space:nowrap;
    border-bottom:3px solid transparent; transition:color .2s ease, border-color .2s ease;
  }
  .tab-btn:hover{color:var(--forest);}
  .tab-btn.active{color:var(--forest-deep); border-bottom-color:var(--gold-deep);}

  .tab-panel{display:none;}
  .tab-panel.active{display:block; animation:panelin .35s ease;}
  @keyframes panelin{from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);}}

  .panel-head{display:flex; align-items:flex-start; gap:18px; margin-bottom:6px; flex-wrap:wrap;}
  .panel-head .icon-lg{
    width:54px; height:54px; border-radius:50%; background:var(--forest-deep); color:var(--gold);
    display:flex; align-items:center; justify-content:center; font-size:23px; flex-shrink:0;
  }
  .panel-head h3{font-size:25px; color:var(--forest-deep);}
  .panel-head .p-tagline{font-style:italic; color:var(--forest); font-size:14.5px; margin-top:3px;}
  .panel-badges{display:flex; gap:10px; margin:8px 0 15px; flex-wrap:wrap;}

  .detail-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:16px; margin-bottom:26px;}
  .detail-block{background:var(--white); border:1px solid var(--line); border-radius:8px; padding:20px 22px;}
  .detail-block .db-label{font-size:11.5px; letter-spacing:.07em; text-transform:uppercase; color:var(--gold-deep); font-weight:700; margin-bottom:9px;}
  .detail-block p{font-size:13.5px; color:#4a5850; margin:0;}

  .pitch-quote{background:var(--forest-deep); color:var(--white); border-radius:8px; padding:28px 32px 28px 44px; position:relative; overflow:hidden; margin-top: 25px;}
  .pitch-quote::before{content:"“"; font-family:'Tiro Bangla',serif; font-size:70px; color:var(--gold); position:absolute; top:-14px; left:10px; opacity:.55;}
  .pitch-quote p{font-size:15px; color:#EFEAD9; font-style:italic; position:relative; z-index:1;}

  

/* --- inv-* classes still used in investor-page.js --- */
.inv-sec-head { text-align:center; margin-bottom:36px; }
.inv-sec-head h2 { font-size:1.7rem; font-weight:700; color:var(--forest-deep); font-family:'Tiro Bangla',serif; }
.inv-sec-head p { color:#5b6b62; margin-top:6px; }
.inv-why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.inv-why-card { background:var(--white); border-radius:6px; padding:28px 24px; border:1px solid var(--line); }
.inv-why-icon { width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:16px; }
.inv-why-card h4 { font-size:15px; font-weight:700; margin-bottom:8px; color:var(--forest-deep); }
.inv-why-card p { font-size:13.5px; color:#5b6b62; line-height:1.65; margin:0; }
.inv-field-limit { display:flex; gap:6px; flex-wrap:wrap; margin-top:10px; }
.inv-limit-badge { background:#f0f9ff; color:#0369a1; font-size:11.5px; padding:4px 10px; border-radius:20px; font-weight:600; display:inline-flex; align-items:center; }
.inv-limit-max { background:#fef9c3; color:#b45309; }
.inv-return-card { background:var(--white); border-radius:6px; border:1px solid var(--line); overflow:hidden; margin-top: 28px;}
.inv-return-head { background:var(--forest-deep); color:#fff; padding:14px 20px; font-size:14px; font-weight:600; }
.inv-table { width:100%; border-collapse:collapse; font-size:13.5px; }
.inv-table th { background:#f8fafc; padding:10px 14px; font-weight:600; text-align:left; border-bottom:1px solid var(--line); color:#5b6b62; font-size:12px; }
.inv-table td { padding:10px 14px; border-bottom:1px solid var(--line); color:var(--ink); }
.inv-table tr:last-child td { border-bottom:none; }
.inv-note { padding:12px 16px; font-size:12px; color:#6b7280; background:#f8fafc; border-top:1px solid var(--line); }
.inv-projection-list { padding:16px 20px; display:flex; flex-direction:column; gap:14px; }
.inv-proj-row { display:flex; align-items:center; gap:12px; }
.inv-proj-yr { min-width:50px; font-size:13px; font-weight:600; color:var(--forest-deep); }
.inv-proj-bar-wrap { flex:1; background:#e5e7eb; border-radius:4px; height:8px; }
.inv-proj-bar { background:linear-gradient(90deg,#15803d,#4ade80); height:8px; border-radius:4px; }
.inv-proj-val { min-width:140px; font-size:13px; text-align:right; color:#4a5850; }
@media(max-width:992px) { .inv-why-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:768px) {
  .pitch-quote{ padding: 28px 14px 8px 14px;  text-align: justify; }
  .pitch-quote::before {font-size: 50px;}
  .inv-why-grid { grid-template-columns:1fr; }
  .inv-proj-val { min-width:100px; font-size:12px; }
}

/* --- responsive --- */
@media(max-width:860px) {
  .gp-hero-grid { grid-template-columns:1fr;}
  
  .gp-stats-strip { grid-template-columns:repeat(2,1fr); }
  .gp-stat:nth-child(2) { border-right:none; }
  .gp-rules-panel { grid-template-columns:1fr; }
  .gp-steps { grid-template-columns:repeat(1,1fr); }
  .gp-trust-grid { grid-template-columns:1fr; }
  .gp-verify-grid { grid-template-columns:1fr; }
  .gp-dash-panel { grid-template-columns:1fr; padding:26px; }
  .gp-contact-grid { grid-template-columns:1fr; text-align:center; }
  .gp-ledger { font-size:12.5px; }
  .gp-ledger thead th, .gp-ledger tbody td { padding:10px 12px; }
  .gp-h1 { font-size:27px; }
  .gp-h2 { font-size:24px; }
  .gp-hero { padding:8px 0 80px; }
  .gp-stat-num {
    font-family: 'Tiro Bangla', serif;
    font-size: 16px;
  }
  .gp-brandbar {
    margin-bottom: 46px;
  }
  .gp-bank-ic { font-size:18px;}
}

/* ===== Pitch Deck Modal ===== */
.green-page .pd-modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .25s ease; }
.green-page .pd-modal.pd-open { opacity:1; pointer-events:all; }
.green-page .pd-overlay { position:absolute; inset:0; background:rgba(10,20,15,.92); }
.green-page .pd-container { position:relative; z-index:1; width:min(880px,96vw); max-height:101vh; border-radius:14px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 32px 100px rgba(0,0,0,.7); border:1px solid rgba(185,134,43,.2); }
.green-page .pd-header { background:linear-gradient(135deg,#1a4a35,#0d2a1e); padding:11px 18px; display:flex; align-items:center; justify-content:space-between; flex-shrink:0; border-bottom:1px solid rgba(185,134,43,.2); }
.green-page .pd-title-bar { color:#c9a84c; font-size:12px; font-family:'Hind Siliguri',sans-serif; display:flex; align-items:center; gap:8px; flex-wrap: wrap;  }
.green-page .pd-close { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:#FBFAF5; width:28px; height:28px; border-radius:50%; font-size:15px; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s; }
.green-page .pd-close:hover { background:rgba(255,255,255,.18); }
.green-page .pd-slides { overflow:hidden; flex:1; min-height:0; }
.green-page .pd-slide { display:none; }
.green-page .pd-slide.pd-active { display:block; }
.green-page .pd-body { padding:30px 42px; background:linear-gradient(160deg,#1b3028,#0e2018); overflow-y:auto; max-height:calc(91vh - 128px); }
.green-page .pd-foot { background:#0a1e12; padding:9px 16px; display:flex; align-items:center; justify-content:space-between; flex-shrink:0; border-top:1px solid rgba(185,134,43,.15); gap:10px; }
.green-page .pd-navbtn { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:#FBFAF5; padding:5px 16px; border-radius:6px; font-family:'Hind Siliguri',sans-serif; font-size:12.5px; cursor:pointer; transition:background .2s; white-space:nowrap; }
.green-page .pd-navbtn:hover:not(:disabled) { background:rgba(185,134,43,.25); border-color:rgba(185,134,43,.4); }
.green-page .pd-navbtn:disabled { opacity:.3; cursor:default; }
.green-page .pd-dots { display:flex; gap:5px; flex-wrap:wrap; justify-content:center; }
.green-page .pd-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.2); cursor:pointer; transition:all .2s; border:none; padding:0; flex-shrink:0; }
.green-page .pd-dot.pd-dot-active { background:#D4B469; transform:scale(1.3); }
/* slide typography */
.green-page .pd-s-label { font-size:10px; text-transform:uppercase; color:#D4B469; font-family:'Hind Siliguri',sans-serif; margin-top:8px; opacity:.8; }
.green-page .pd-s-h1 { font-size:2.1rem; font-family:'Tiro Bangla',serif; color:#FBFAF5; line-height:1.25; margin:0; }
.green-page .pd-s-h2 { font-size:1.4rem; font-family:'Tiro Bangla',serif; color:#FBFAF5; margin:0 0 14px; }
.green-page .pd-s-sub { font-size:13px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; line-height:1.6; }
/* cards */
.green-page .pd-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }
.green-page .pd-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); border-radius:10px; padding:15px 17px; }
.green-page .pd-card-icon { font-size:20px; margin-bottom:7px; }
.green-page .pd-card-title { font-size:11.5px; font-weight:700; color:#D4B469; font-family:'Hind Siliguri',sans-serif; margin-bottom:4px; }
.green-page .pd-card-stat { font-size:22px; font-weight:800; color:#FBFAF5; font-family:'Hind Siliguri',sans-serif; line-height:1.1; }
.green-page .pd-card-text { font-size:11px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; margin-top:4px; line-height:1.55; }
/* table */
.green-page .pd-table { width:100%; border-collapse:collapse; font-family:'Hind Siliguri',sans-serif; font-size:12px; }
.green-page .pd-table th { background:rgba(185,134,43,.12); color:#D4B469; padding:6px 11px; text-align:left; font-weight:600; border-bottom:1px solid rgba(185,134,43,.22); }
.green-page .pd-table td { padding:6px 11px; color:#FBFAF5; border-bottom:1px solid rgba(255,255,255,.04); }
.green-page .pd-table tr:last-child td { border-bottom:none; }
.green-page .pd-ck { color:#4ade80; font-weight:700; }
.green-page .pd-cx { color:#f87171; }
.green-page .pd-hr { border:none; border-top:1px solid rgba(255,255,255,.07); margin:16px 0; }
/* big number */
.green-page .pd-big { font-size:3.6rem; font-weight:800; color:#D4B469; font-family:'Hind Siliguri',sans-serif; line-height:1; }
/* revenue stream bars */
.green-page .pd-srow { display:flex; align-items:center; gap:8px; margin-bottom:7px; }
.green-page .pd-slabel { font-size:11.5px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; width:185px; flex-shrink:0; }
.green-page .pd-sbwrap { flex:1; height:21px; background:rgba(255,255,255,.05); border-radius:3px; overflow:hidden; }
.green-page .pd-sb { height:100%; border-radius:3px; background:linear-gradient(90deg,#1F5C46,#B9862B); }
.green-page .pd-spct { font-size:12px; color:#D4B469; font-family:'Hind Siliguri',sans-serif; width:34px; text-align:right; flex-shrink:0; font-weight:700; }
/* market bars */
.green-page .pd-mrow { display:flex; align-items:center; gap:12px; margin-bottom:9px; }
.green-page .pd-mkey { font-size:10px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; text-align:right; flex-shrink:0; width:38px; font-weight:700; letter-spacing:.5px; }
.green-page .pd-mbar { height:33px; border-radius:6px; display:flex; align-items:center; padding:0 13px; font-size:11.5px; font-family:'Hind Siliguri',sans-serif; font-weight:700; color:#1B2A22; flex-shrink:0; }
.green-page .pd-mnote { font-size:11px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; }
/* team */
.green-page .pd-tg { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-top:14px; }
.green-page .pd-tc { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:10px; padding:13px 14px; }
.green-page .pd-tav { width:34px; height:34px; border-radius:50%; background:linear-gradient(135deg,#1F5C46,#B9862B); display:flex; align-items:center; justify-content:center; font-size:15px; margin-bottom:7px; }
.green-page .pd-tn { font-size:12.5px; font-weight:700; color:#FBFAF5; font-family:'Hind Siliguri',sans-serif; }
.green-page .pd-tr { font-size:10px; color:#D4B469; font-family:'Hind Siliguri',sans-serif; margin-top:1px; }
.green-page .pd-td { font-size:10px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; margin-top:4px; line-height:1.5; }
/* slide-12 contact */
.green-page .pd-cg { display:grid; grid-template-columns:repeat(3,1fr); gap:11px; margin-top:20px; }
.green-page .pd-cc { background:rgba(255,255,255,.05); border-radius:10px; padding:13px; text-align:center; }
.green-page .pd-cci { font-size:19px; margin-bottom:5px; }
.green-page .pd-ccl { font-size:10px; color:#9DB8AA; font-family:'Hind Siliguri',sans-serif; }
.green-page .pd-ccv { font-size:12px; color:#FBFAF5; font-family:'Hind Siliguri',sans-serif; font-weight:600; margin-top:2px; }
/* open button */
.green-page .pd-open-btn { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#B9862B,#D4A44B); color:#1B2A22; font-weight:700; font-size:14px; padding:11px 12px; border-radius:8px; border:none; cursor:pointer; font-family:'Hind Siliguri',sans-serif; transition:transform .15s,box-shadow .15s; }
.green-page .pd-open-btn:hover { transform:translateY(-1px); box-shadow:0 8px 20px rgba(185,134,43,.35); }
@media(max-width:640px) {
  .green-page .pd-body { padding:18px 14px; }
  .green-page .pd-grid2 { grid-template-columns:1fr; }
  .green-page .pd-tg { grid-template-columns:1fr 1fr; }
  .green-page .pd-cg { grid-template-columns:1fr; }
  .green-page .pd-s-h1 { font-size:1.2rem; }
  .green-page .pd-big { font-size:2.6rem; }
  .green-page .pd-slabel { width:110px; }
}

/* ===== APPLICATION FORM MODAL ===== */
.green-page .af-modal{display:none;position:fixed;inset:0;z-index:9000;align-items:center;justify-content:center;}
.green-page .af-modal.af-open{display:flex;}
.green-page .af-overlay{position:absolute;inset:0;background:rgba(0,0,0,.72);backdrop-filter:blur(4px);}
.green-page .af-container{position:relative;background:#fff;border-radius:16px;width:min(720px,96vw);max-height:92vh;display:flex;flex-direction:column;box-shadow:0 24px 64px rgba(0,0,0,.45);overflow:hidden;}
.green-page .af-header{background:linear-gradient(135deg,#0c2318,#1a4a32);padding:18px 22px 16px;display:flex;align-items:flex-start;gap:14px;flex-shrink:0;}
.green-page .af-title-bar{display:flex;flex-direction:column;gap:3px;flex:1;}
.green-page .af-brand{font-family:'Tiro Bangla',serif;color:#D4B469;font-size:15px;font-weight:700;}
.green-page .af-subtitle{color:#9DB8AA;font-size:12px;font-family:'Hind Siliguri',sans-serif;}
.green-page .af-progress{display:flex;gap:8px;align-items:center;flex-shrink:0;}
.green-page .af-dot{width:32px;height:32px;border-radius:50%;border:2px solid rgba(212,180,105,.3);background:rgba(255,255,255,.08);color:#9DB8AA;font-size:13px;font-family:'Hind Siliguri',sans-serif;display:flex;align-items:center;justify-content:center;transition:all .25s;}
.green-page .af-dot.af-dot-active{background:#D4B469;border-color:#D4B469;color:#1B2A22;font-weight:700;}
.green-page .af-dot.af-dot-done{background:rgba(212,180,105,.2);border-color:#D4B469;color:#D4B469;}
.green-page .af-close{background:rgba(255,255,255,.13);border:none;color:#FBFAF5;width:32px;height:32px;border-radius:50%;cursor:pointer;font-size:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;transition:.2s;}
.green-page .af-close:hover{background:rgba(255,255,255,.25);}
.green-page .af-body{flex:1;overflow-y:auto;padding:24px 26px 10px;}
.green-page .af-pane{display:none;}
.green-page .af-pane.af-pane-active{display:block;}
.green-page .af-pane-h3{font-family:'Tiro Bangla',serif;color:#0c2318;font-size:19px;margin:0 0 5px;}
.green-page .af-pane-sub{color:#627a6e;font-size:13px;margin:0 0 18px;font-family:'Hind Siliguri',sans-serif;line-height:1.5;}
.green-page .af-upload-row{display:flex;gap:12px;margin-bottom:18px;}
.green-page .af-upload-box{flex:1;border:2px dashed rgba(185,134,43,.4);border-radius:10px;padding:18px 14px;text-align:center;cursor:pointer;transition:.2s;font-family:'Hind Siliguri',sans-serif;}
.green-page .af-upload-box:hover{border-color:#B9862B;background:rgba(185,134,43,.05);}
.green-page .af-upload-box i{display:block;font-size:24px;color:#B9862B;margin-bottom:6px;}
.green-page .af-upload-box span{font-size:12px;color:#627a6e;}
.green-page .af-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px 18px;}
.green-page .af-field{display:flex;flex-direction:column;gap:5px;}
.green-page .af-field.af-full{grid-column:1/-1;}
.green-page .af-field label{font-size:12.5px;color:#3d5248;font-family:'Hind Siliguri',sans-serif;font-weight:600;}
.green-page .af-field label sup{color:#b9462b;}
.green-page .af-field input,.green-page .af-field select,.green-page .af-field textarea{border:1.5px solid #cdd8d2;border-radius:8px;padding:9px 12px;font-size:13.5px;font-family:'Hind Siliguri',sans-serif;color:#1a2e24;outline:none;transition:.2s;background:#fff;}
.green-page .af-field input:focus,.green-page .af-field select:focus,.green-page .af-field textarea:focus{border-color:#B9862B;box-shadow:0 0 0 3px rgba(185,134,43,.12);}
.green-page .af-field textarea{resize:vertical;}
.green-page .af-scheme-hdr{display:grid;grid-template-columns:1fr 130px 90px;gap:8px;font-size:12px;font-weight:700;color:#627a6e;font-family:'Hind Siliguri',sans-serif;padding:7px 10px;border-bottom:2px solid #e4ece8;background:#f7faf8;border-radius:8px 8px 0 0;}
.green-page .af-scheme-row{display:grid;grid-template-columns:1fr 130px 90px;gap:8px;align-items:center;padding:9px 10px;border-bottom:1px solid #f0f5f2;font-size:13.5px;font-family:'Hind Siliguri',sans-serif;}
.green-page .af-scheme-row:hover{background:#f7faf8;}
.green-page .af-scheme-name{display:flex;align-items:center;gap:9px;cursor:pointer;color:#1a2e24;}
.green-page .af-scheme-cb{width:16px;height:16px;accent-color:#B9862B;cursor:pointer;flex-shrink:0;}
.green-page .af-unit-inp{border:1.5px solid #cdd8d2;border-radius:6px;padding:5px 8px;width:75px;font-size:13px;font-family:'Hind Siliguri',sans-serif;text-align:center;transition:.2s;}
.green-page .af-unit-inp:disabled{background:#f0f5f2;color:#bbb;}
.green-page .af-unit-inp:focus{border-color:#B9862B;outline:none;box-shadow:0 0 0 2px rgba(185,134,43,.1);}
.green-page .af-amt{color:#B9862B;font-weight:700;font-size:13px;text-align:right;font-family:'Hind Siliguri',sans-serif;}
.green-page .af-total-row{display:flex;justify-content:flex-end;align-items:center;gap:14px;padding:12px 10px 4px;font-family:'Hind Siliguri',sans-serif;font-size:14px;color:#3d5248;border-top:2px solid #B9862B;margin-top:8px;}
.green-page .af-total-row strong{color:#B9862B;font-size:17px;}
.green-page .af-check-group{display:flex;flex-direction:column;gap:11px;margin-bottom:14px;}
.green-page .af-chk-lbl{display:flex;align-items:flex-start;gap:10px;cursor:pointer;font-family:'Hind Siliguri',sans-serif;font-size:13.5px;color:#1a2e24;line-height:1.55;}
.green-page .af-chk-lbl input[type=checkbox]{width:16px;height:16px;accent-color:#B9862B;flex-shrink:0;margin-top:2px;cursor:pointer;}
.green-page .af-chk-lbl.af-chk-required span{color:#1a2e24;font-weight:600;}
.green-page .af-chk-other{align-items:center;}
.green-page .af-other-txt{border:none;border-bottom:1.5px solid #cdd8d2;font-size:13px;font-family:'Hind Siliguri',sans-serif;color:#1a2e24;outline:none;padding:2px 6px;flex:1;min-width:80px;}
.green-page .af-divider{height:1px;background:#e4ece8;margin:16px 0;}
.green-page .af-footer{padding:14px 24px;border-top:1px solid #e8eee9;display:flex;align-items:center;justify-content:space-between;flex-shrink:0;background:#f7faf8;}
.green-page .af-step-lbl{font-size:13px;color:#627a6e;font-family:'Hind Siliguri',sans-serif;}
.green-page .af-btn-back,.green-page .af-btn-next{border:none;border-radius:8px;padding:10px 22px;font-size:13.5px;font-family:'Hind Siliguri',sans-serif;cursor:pointer;font-weight:600;transition:.2s;}
.green-page .af-btn-back{background:rgba(0,0,0,.08);color:#3d5248;}
.green-page .af-btn-back:hover:not(:disabled){background:rgba(0,0,0,.14);}
.green-page .af-btn-back:disabled{opacity:.38;cursor:default;}
.green-page .af-btn-next{background:linear-gradient(135deg,#B9862B,#D4B469);color:#1B2A22;box-shadow:0 4px 12px rgba(185,134,43,.32);}
.green-page .af-btn-next:hover{background:linear-gradient(135deg,#a47028,#c4a451);}
.green-page .af-open-btn{display:inline-flex;align-items:center;gap:9px;background:linear-gradient(135deg,#1F5C46,#0c2318);color:#D4B469;border:1.5px solid rgba(212,180,105,.4);border-radius:10px;padding:13px 30px;font-size:15px;font-family:'Hind Siliguri',sans-serif;font-weight:700;cursor:pointer;transition:.2s;}
.green-page .af-open-btn:hover{background:linear-gradient(135deg,#2a7a5e,#1F5C46);border-color:#D4B469;}
@media(max-width:600px){
  .green-page .af-form-grid{grid-template-columns:1fr;}
  .green-page .af-field.af-full{grid-column:1;}
  .green-page .af-upload-row{flex-direction:column;}
  .green-page .af-scheme-hdr,.green-page .af-scheme-row{grid-template-columns:1fr 90px 72px;}
  .green-page .af-unit-inp{width:56px;}
  .green-page .af-progress{gap:5px;}
  .green-page .af-dot{width:26px;height:26px;font-size:11px;}
}
.green-page .af-upload-box{position:relative;}
.green-page .af-upload-box img{display:block;width:100%;height:90px;object-fit:contain;border-radius:6px;}
.green-page .af-char-note{display:block;font-size:11px;font-family:'Hind Siliguri',sans-serif;margin-top:3px;transition:color .2s;}
.green-page .af-upload-err{display:block;font-size:11px;color:#b9462b;font-family:'Hind Siliguri',sans-serif;margin-top:4px;}

/* ===== About Page ===== */
.ab-page { font-family: var(--font); }
.ab-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.ab-hero { position: relative; background: linear-gradient(160deg, var(--forest-deep) 0%, #0d3520 60%, #1F5C46 100%); color: #fff; padding: 64px 0 100px; overflow: hidden; }
.ab-grain { position: absolute; inset: 0; pointer-events: none; opacity: .05; background-image: radial-gradient(#fff 0.6px, transparent 0.6px); background-size: 4px 4px; }
.ab-hero-wave { position: absolute; left: 0; right: 0; bottom: 0; height: 40px; background: var(--bg); clip-path: polygon(0 100%,100% 100%,100% 0,96% 30%,92% 4%,88% 26%,84% 2%,80% 24%,76% 3%,72% 27%,68% 5%,64% 22%,60% 3%,56% 26%,52% 4%,48% 24%,44% 2%,40% 27%,36% 5%,32% 23%,28% 3%,24% 26%,20% 4%,16% 24%,12% 2%,8% 27%,4% 5%,0 22%); }
.ab-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.ab-eyebrow { font-size: 12px; color: #a7f3d0; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.ab-h1 { font-family: "Tiro Bangla", serif; font-size: 3.2rem; line-height: 1.2; margin: 0 0 12px; color: #fff; }
.ab-h1 em { color: #D4B469; font-style: normal; }
.ab-tagline { font-size: 15px; color: #a7f3d0; margin-bottom: 16px; font-weight: 600; }
.ab-hero-lead { font-size: 16px; color: #dce6df; margin-bottom: 28px; line-height: 1.7; max-width: 48ch; }
.ab-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-btn-gold { background: linear-gradient(135deg,#B9862B,#D4B469); color: #1B2A22; border: none; border-radius: 8px; padding: 11px 22px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; transition: .2s; }
.ab-btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(185,134,43,.35); }
.ab-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); border-radius: 8px; padding: 11px 22px; font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s; }
.ab-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* Chairman card */
.ab-chairman-wrap { display: flex; justify-content: center; }
.ab-chairman-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 28px; backdrop-filter: blur(8px); max-width: 400px; }
.ab-chairman-avatar-ring { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg,#B9862B,#1F5C46); padding: 3px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.ab-chairman-avatar { width: 84px; height: 84px; border-radius: 50%; background: rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center; font-size: 36px; color: #D4B469; }
.ab-quote-mark { font-family: Georgia, serif; font-size: 60px; color: #D4B469; line-height: .5; margin-bottom: 10px; opacity: .7; }
.ab-chairman-quote { font-family: "Tiro Bangla", serif; font-size: 15px; line-height: 1.8; color: #dce6df; margin: 0 0 20px; border: none; padding: 0; font-style: italic; }
.ab-chairman-sig { border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; }
.ab-chairman-name { font-size: 15px; font-weight: 700; color: #D4B469; }
.ab-chairman-title { font-size: 12px; color: #9DB8AA; margin-top: 2px; }

/* Stats bar */
.ab-stats-bar { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.ab-stats-row { display: flex; align-items: center; justify-content: center; gap: 0; padding: 20px 0; flex-wrap: wrap; }
.ab-stat { text-align: center; padding: 10px 32px; }
.ab-stat-n { display: block; font-size: 1.7rem; font-weight: 800; color: var(--forest-deep); line-height: 1.1; }
.ab-stat-l { display: block; font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.ab-stat-div { width: 1px; height: 40px; background: var(--line); }

/* Section base */
.ab-section { padding: 64px 0; }
.ab-dark { background: linear-gradient(160deg, #0f2b1a 0%, #0d2a1e 100%); color: #dce6df; }
.ab-green { background: linear-gradient(160deg, #0f2b1a 0%, #1F5C46 100%); color: #dce6df; }
.ab-sec-bg { background: linear-gradient(135deg, #0c2318 0%, #0f2b1a 100%); color: #dce6df; }
.ab-seo-strip { background: #f8faf9; border-top: 1px solid var(--line); }
.ab-lt { color: #fff !important; }
.ab-sec-badge { display: inline-flex; align-items: center; background: rgba(22,163,74,.1); color: #16a34a; border: 1px solid rgba(22,163,74,.2); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 700; margin-bottom: 12px; font-family: var(--font); }
.ab-badge-lt { background: rgba(255,255,255,.12); color: #a7f3d0; border-color: rgba(255,255,255,.2); }
.ab-badge-gold { background: rgba(185,134,43,.1); color: #B9862B; border-color: rgba(185,134,43,.2); }
.ab-sec-h2 { font-family: "Tiro Bangla", serif; font-size: 2rem; color: var(--forest-deep); margin: 0 0 8px; }
.ab-sec-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; max-width: 600px; }

/* Who we are */
.ab-who-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; margin-top: 28px; }
.ab-who-lead { font-size: 16px; line-height: 1.8; color: var(--dark); margin-bottom: 14px; }
.ab-who-text p { font-size: 14.5px; line-height: 1.8; color: var(--text-muted); margin-bottom: 12px; }
.ab-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.ab-tag { background: #dcfce7; color: #166534; border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.ab-who-facts { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.ab-fact { display: flex; align-items: flex-start; gap: 14px; }
.ab-fact-ico { width: 36px; height: 36px; border-radius: 8px; background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ab-fact-lbl { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.ab-fact-val { font-size: 14px; font-weight: 600; color: var(--dark); }

/* Services */
.ab-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.ab-svc-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 24px; transition: .2s; }
.ab-svc-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.ab-svc-ico { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin-bottom: 16px; }
.ab-svc-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ab-svc-card p { font-size: 13.5px; color: #9DB8AA; line-height: 1.65; margin-bottom: 12px; }
.ab-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ab-svc-tags span { background: rgba(255,255,255,.1); color: #D4B469; border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; }

/* Mission / Vision */
.ab-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
.ab-mv-box { border-radius: 16px; padding: 32px; border: 1px solid var(--line); }
.ab-mv-mission { background: #f0fdf4; }
.ab-mv-vision { background: #fffbeb; }
.ab-mv-ico { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg,#166534,#16a34a); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.ab-mv-ico-gold { background: linear-gradient(135deg,#B9862B,#D4B469); }
.ab-mv-h3 { font-family: "Tiro Bangla", serif; font-size: 1.3rem; color: var(--forest-deep); margin-bottom: 20px; }
.ab-mv-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ab-mv-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.6; color: #3d5248; }
.ab-mv-list li i { color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.ab-mv-list-gold li i { color: #B9862B; }

/* Why choose us */
.ab-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 32px; }
.ab-why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 22px 18px; transition: .2s; }
.ab-why-card:hover { background: rgba(255,255,255,.13); }
.ab-why-ico { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.12); color: #a7f3d0; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.ab-why-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ab-why-card p { font-size: 13px; color: #9DB8AA; line-height: 1.6; margin: 0; }

/* Core values */
.ab-val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.ab-val-item { border-left: 3px solid #16a34a; padding: 20px 20px 20px 24px; background: var(--bg); border-radius: 0 10px 10px 0; }
.ab-val-num { font-size: 28px; font-weight: 800; color: #e2f0e8; line-height: 1; margin-bottom: 8px; font-family: var(--font); }
.ab-val-item h4 { font-size: 15px; font-weight: 700; color: var(--forest-deep); margin-bottom: 8px; }
.ab-val-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* How we work */
.ab-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.ab-step { flex: 1; min-width: 140px; max-width: 200px; text-align: center; position: relative; }
.ab-step-n { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #D4B469; color: #1B2A22; width: 24px; height: 24px; border-radius: 50%; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ab-step-ico { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.1); color: #a7f3d0; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 10px auto 14px; border: 1.5px solid rgba(255,255,255,.15); }
.ab-step h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ab-step p { font-size: 12.5px; color: #9DB8AA; line-height: 1.6; margin: 0; }
.ab-step-arr { display: flex; align-items: center; padding: 0 8px; color: rgba(255,255,255,.25); font-size: 18px; margin-top: 36px; }

/* Achievements */
.ab-ach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.ab-ach-card { border: 2px solid var(--line); border-radius: 12px; padding: 28px 20px; text-align: center; position: relative; overflow: hidden; transition: .2s; }
.ab-ach-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ac, #16a34a); }
.ab-ach-card:hover { border-color: var(--ac, #16a34a); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.ab-ach-ico { font-size: 28px; color: var(--ac, #16a34a); margin-bottom: 12px; }
.ab-ach-n { font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.ab-ach-l { font-size: 14px; font-weight: 700; color: var(--dark); margin-top: 4px; }
.ab-ach-s { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Team */
.ab-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 32px; }
.ab-team-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 28px 20px; text-align: center; transition: .2s; }
.ab-team-card:hover { background: rgba(255,255,255,.1); }
.ab-team-av { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; margin: 0 auto 16px; }
.ab-team-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ab-team-role { font-size: 12px; color: #D4B469; margin-bottom: 10px; }
.ab-team-bio { font-size: 12.5px; color: #9DB8AA; line-height: 1.6; margin: 0; }

/* Technology */
.ab-tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.ab-tech-item { border: 1px solid var(--line); border-radius: 12px; padding: 24px; background: #fff; transition: .2s; }
.ab-tech-item:hover { border-color: #16a34a; box-shadow: 0 4px 16px rgba(22,163,74,.1); }
.ab-tech-ico { font-size: 36px; margin-bottom: 14px; }
.ab-tech-item h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ab-tech-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Security */
.ab-security-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 32px; }
.ab-security-item { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 18px; }
.ab-si-ico { font-size: 22px; color: #a7f3d0; flex-shrink: 0; margin-top: 2px; }
.ab-security-item h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.ab-security-item p { font-size: 13px; color: #9DB8AA; line-height: 1.6; margin: 0; }

/* Commitment */
.ab-commit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 32px; }
.ab-commit-card { border: 1px solid var(--line); border-radius: 12px; padding: 24px; background: #fff; text-align: center; transition: .2s; }
.ab-commit-card:hover { border-color: #16a34a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,.1); }
.ab-commit-ico { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 16px; }
.ab-commit-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ab-commit-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* FAQ */
.ab-faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.ab-faq-item { border: 1px solid rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; }
.ab-faq-q { width: 100%; background: rgba(255,255,255,.06); border: none; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font); font-size: 15px; font-weight: 600; color: #fff; cursor: pointer; text-align: left; transition: .2s; }
.ab-faq-q:hover { background: rgba(255,255,255,.1); }
.ab-faq-icon { flex-shrink: 0; transition: transform .3s; color: #a7f3d0; }
.ab-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ab-faq-a p { padding: 0 20px 16px; font-size: 14px; color: #9DB8AA; line-height: 1.7; margin: 0; }
.ab-faq-item.ab-open .ab-faq-icon { transform: rotate(180deg); }
.ab-faq-item.ab-open .ab-faq-a { max-height: 300px; }
.ab-faq-item.ab-open .ab-faq-q { background: rgba(255,255,255,.1); color: #D4B469; }

/* Info table */
.ab-info-tbl { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 28px; background: #fff; }
.ab-info-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); }
.ab-info-row:last-child { border-bottom: none; }
.ab-info-k { background: #f0fdf4; padding: 14px 18px; font-size: 13px; font-weight: 700; color: #166534; border-right: 1px solid var(--line); }
.ab-info-v { padding: 14px 18px; font-size: 14px; color: var(--dark); line-height: 1.6; }

/* Responsive */
@media (max-width: 992px) {
  .ab-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .ab-svc-grid { grid-template-columns: repeat(2,1fr); }
  .ab-why-grid { grid-template-columns: repeat(2,1fr); }
  .ab-team-grid { grid-template-columns: repeat(2,1fr); }
  .ab-tech-grid { grid-template-columns: repeat(2,1fr); }
  .ab-commit-grid { grid-template-columns: repeat(2,1fr); }
  .ab-stat { padding: 8px 18px; }
  .ab-stat-div { display: none; }
}
@media (max-width: 768px) {
  .ab-h1 { font-size: 2.2rem; }
  .ab-hero { padding: 40px 0 80px; }
  .ab-who-grid { grid-template-columns: 1fr; }
  .ab-mv-grid { grid-template-columns: 1fr; }
  .ab-ach-grid { grid-template-columns: repeat(2,1fr); }
  .ab-val-grid { grid-template-columns: 1fr; }
  .ab-security-grid { grid-template-columns: 1fr; }
  .ab-tech-grid { grid-template-columns: 1fr; }
  .ab-team-grid { grid-template-columns: repeat(2,1fr); }
  .ab-svc-grid { grid-template-columns: 1fr; }
  .ab-commit-grid { grid-template-columns: 1fr; }
  .ab-steps { flex-direction: column; align-items: center; }
  .ab-step-arr { transform: rotate(90deg); margin: 0; padding: 6px 0; }
  .ab-step { max-width: 260px; }
  .ab-info-row { grid-template-columns: 130px 1fr; }
  .ab-sec-h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-ach-grid { grid-template-columns: 1fr; }
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-info-row { grid-template-columns: 1fr; }
  .ab-info-k { border-right: none; border-bottom: 1px solid var(--line); }
  .sched-cart-btn { padding: 8px 8px;}
}

/* ── About page - Service Category Cards ────────────────── */
.ab-cat-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; margin-top:32px; }
.ab-cat-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,0.09); border:1px solid #e2e8f0; display:flex; flex-direction:column; }
.ab-cat-head { display:flex; align-items:center; gap:16px; padding:22px 24px; }
.ab-cat-ico { font-size:36px; color:#fff; flex-shrink:0; opacity:.95; }
.ab-cat-name { font-size:18px; font-weight:700; margin:0 0 2px; color:#fff; }
.ab-cat-tag { font-size:12px; margin:0; opacity:.82; color:#fff; font-weight:400; }
.ab-cat-body { padding:20px 24px; flex:1; display:flex; flex-direction:column; }
.ab-cat-desc { font-size:14px; color:#4b5563; margin-bottom:16px; line-height:1.65; }
.ab-cat-subs { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px; flex:1; }
.ab-cat-subs span { font-size:12px; background:#f3f4f6; color:#374151; padding:5px 11px; border-radius:20px; border:1px solid #e5e7eb; line-height:1.3; }
.ab-cat-btn { display:inline-flex; align-items:center; gap:6px; color:#fff; border:none; padding:10px 20px; border-radius:10px; font-size:13px; font-weight:600; cursor:pointer; transition:opacity .2s; align-self:flex-start; }
.ab-cat-btn:hover { opacity:.82; }

@media (prefers-color-scheme:dark) {
  .ab-cat-card { background:#1a2e22; border-color:#2d4a38; }
  .ab-cat-desc { color:#9ca3af; }
  .ab-cat-subs span { background:#1f3b2a; color:#d1d5db; border-color:#2d4a38; }
}
:root[data-theme="dark"] .ab-cat-card { background:#1a2e22; border-color:#2d4a38; }
:root[data-theme="dark"] .ab-cat-desc { color:#9ca3af; }
:root[data-theme="dark"] .ab-cat-subs span { background:#1f3b2a; color:#d1d5db; border-color:#2d4a38; }
:root[data-theme="light"] .ab-cat-card { background:#fff; border-color:#e2e8f0; }
:root[data-theme="light"] .ab-cat-desc { color:#4b5563; }
:root[data-theme="light"] .ab-cat-subs span { background:#f3f4f6; color:#374151; border-color:#e5e7eb; }

/* ── FAQ Page ────────────────────────────────────────────── */
.fq-page { font-family:'Hind Siliguri',sans-serif; }
.fq-hero { background:linear-gradient(160deg,#0f2b1a 0%,#1F5C46 100%); color:#dce6df; padding:60px 20px 48px; text-align:center; }
.fq-hero-inner { max-width:680px; margin:0 auto; }
.fq-eyebrow { font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:#86efac; margin-bottom:12px; }
.fq-h1 { font-size:clamp(26px,5vw,40px); font-weight:800; color:#fff; margin-bottom:10px; }
.fq-sub { font-size:15px; color:#dce6df; opacity:.8; margin-bottom:28px; }
.fq-search-wrap { position:relative; max-width:480px; margin:0 auto; }
.fq-search-ico { position:absolute; left:16px; top:50%; transform:translateY(-50%); color:#6b7280; font-size:14px; }
.fq-search { width:100%; padding:14px 16px 14px 44px; border-radius:12px; border:none; font-size:15px; font-family:'Hind Siliguri',sans-serif; box-shadow:0 4px 20px rgba(0,0,0,.25); outline:none; }
.fq-search:focus { box-shadow:0 0 0 3px #16a34a55; }
.fq-body { padding-top:32px; padding-bottom:60px; }
.fq-cat-nav { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:36px; }
.fq-cat-pill { font-family:'Hind Siliguri',sans-serif; background:#fff; border:1.5px solid var(--pc,#16a34a); color:var(--pc,#16a34a); border-radius:20px; padding:7px 16px; font-size:13px; font-weight:600; cursor:pointer; transition:all .2s; }
.fq-cat-pill:hover { background:var(--pc,#16a34a); color:#fff; }
.fq-section { margin-bottom:28px; background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,.07); border:1px solid #e2e8f0; }
.fq-sec-head { display:flex; align-items:center; gap:14px; padding:18px 24px; border-bottom:1px solid #f3f4f6; }
.fq-sec-ico { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.fq-sec-h2 { font-size:17px; font-weight:700; color:#111827; margin:0 0 2px; }
.fq-sec-count { font-size:12px; color:#6b7280; margin:0; }
.fq-item { border-bottom:1px solid #f3f4f6; }
.fq-item:last-child { border-bottom:none; }
.fq-q { width:100%; text-align:left; background:none; border:none; padding:16px 20px; cursor:pointer; display:flex; align-items:flex-start; gap:12px; font-family:'Hind Siliguri',sans-serif; font-size:15px; font-weight:600; color:#1f2937; transition:background .15s; }
.fq-q:hover { background:#f9fafb; }
.fq-q-num { font-size:13px; font-weight:700; min-width:22px; margin-top:1px; flex-shrink:0; }
.fq-q > span:not(.fq-q-num) { flex:1; line-height:1.5; text-align:left; }
.fq-icon { font-size:12px; margin-top:4px; transition:transform .25s; flex-shrink:0; }
.fq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.fq-a p { padding:4px 20px 18px 54px; font-size:14px; color:#374151; line-height:1.8; margin:0; }
.fq-item.fq-open .fq-a { max-height:400px; }
.fq-item.fq-open .fq-icon { transform:rotate(45deg); }
.fq-item.fq-open .fq-q { background:#f9fafb; }
.fq-cta { text-align:center; background:linear-gradient(135deg,#f0fdf4,#dcfce7); border-radius:16px; padding:44px 24px; border:1px solid #bbf7d0; margin-top:44px; }
.fq-cta-ico { font-size:44px; color:#16a34a; display:block; margin-bottom:14px; }
.fq-cta h3 { font-size:22px; font-weight:700; color:#166534; margin-bottom:8px; }
.fq-cta p { font-size:14px; color:#4b5563; margin-bottom:22px; }

@media (max-width:600px) { .fq-a p { padding-left:32px; } .fq-q { padding:14px 14px; } }

@media (prefers-color-scheme:dark) {
  .fq-section { background:#1a2e22; border-color:#2d4a38; }
  .fq-sec-head { border-bottom-color:#2d4a38; }
  .fq-sec-h2 { color:#e5e7eb; }
  .fq-item { border-bottom-color:#2d4a38; }
  .fq-q { color:#e5e7eb; }
  .fq-q:hover,.fq-item.fq-open .fq-q { background:#0f2318; }
  .fq-a p { color:#9ca3af; }
  .fq-cat-pill { background:#1a2e22; }
  .fq-cta { background:linear-gradient(135deg,#0c2318,#0f2b1a); border-color:#2d4a38; }
  .fq-cta h3 { color:#86efac; }
  .fq-cta p { color:#9ca3af; }
}
:root[data-theme="dark"] .fq-section { background:#1a2e22; border-color:#2d4a38; }
:root[data-theme="dark"] .fq-sec-head { border-bottom-color:#2d4a38; }
:root[data-theme="dark"] .fq-sec-h2 { color:#e5e7eb; }
:root[data-theme="dark"] .fq-item { border-bottom-color:#2d4a38; }
:root[data-theme="dark"] .fq-q { color:#e5e7eb; }
:root[data-theme="dark"] .fq-q:hover,:root[data-theme="dark"] .fq-item.fq-open .fq-q { background:#0f2318; }
:root[data-theme="dark"] .fq-a p { color:#9ca3af; }
:root[data-theme="dark"] .fq-cat-pill { background:#1a2e22; }
:root[data-theme="dark"] .fq-cta { background:linear-gradient(135deg,#0c2318,#0f2b1a); border-color:#2d4a38; }
:root[data-theme="dark"] .fq-cta h3 { color:#86efac; }
:root[data-theme="dark"] .fq-cta p { color:#9ca3af; }
:root[data-theme="light"] .fq-section { background:#fff; }
:root[data-theme="light"] .fq-q { color:#1f2937; }
:root[data-theme="light"] .fq-a p { color:#374151; }

/* ============================================================
   PRIVACY PAGE  (pp-*)
   ============================================================ */
.pp-page{font-family:inherit;color:#1a2e1a}
.pp-hero{background:linear-gradient(135deg,#0d3321 0%,#1a5e3a 50%,#0f4a2e 100%);padding:4rem 1.5rem 3rem;text-align:center;position:relative;overflow:hidden}
.pp-hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.pp-hero-inner{position:relative;max-width:760px;margin:0 auto}
.pp-eyebrow{display:inline-block;background:rgba(255,255,255,.12);color:#a7f3d0;font-size:.78rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:.35rem .9rem;border-radius:20px;margin-bottom:1rem;border:1px solid rgba(255,255,255,.15)}
.pp-h1{color:#fff;font-size:clamp(1.6rem,4vw,2.4rem);font-weight:700;margin:.5rem 0 1rem;line-height:1.2}
.pp-hero-sub{color:#d1fae5;font-size:1rem;margin-bottom:1.5rem;opacity:.9}
.pp-meta-row{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center}
.pp-badge{background:rgba(255,255,255,.1);color:#a7f3d0;border:1px solid rgba(255,255,255,.2);border-radius:20px;padding:.25rem .75rem;font-size:.78rem;font-weight:500}

.pp-body{display:grid;grid-template-columns:240px 1fr;gap:2rem;max-width:1200px;margin:0 auto;padding:10px;align-items:start}
@media(max-width:900px){.pp-body{grid-template-columns:1fr}.pp-toc{display:none}}

/* TOC Sidebar */
.pp-toc{position:sticky;top:80px}
.pp-toc-inner{background:#f0fdf4;border:1px solid #bbf7d0;border-radius:12px;padding:1.2rem;overflow:hidden}
.pp-toc-title{font-weight:700;color:#166534;margin-bottom:.8rem;font-size:.85rem;text-transform:uppercase;letter-spacing:.06em}
.pp-toc-link{display:block;width:100%;text-align:left;background:none;border:none;color:#374151;font-size:.82rem;padding:.35rem .5rem;border-radius:6px;cursor:pointer;transition:all .2s;line-height:1.4}
.pp-toc-link:hover{background:#dcfce7;color:#166534;padding-left:.9rem}

/* Section */
.pp-sec{background:#fff;border:1px solid #e5f0e8;border-radius:16px;padding:10px;margin-bottom:1.5rem;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.pp-sec-head{display:flex;align-items: center; gap:1rem;margin-bottom:1.5rem;padding-bottom:1.2rem;border-bottom:2px solid #f0fdf4}
.pp-sec-ico{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;margin-top:.1rem}
.pp-sec-h2{font-size:1.15rem;font-weight:700;color:#1a2e1a;margin:0;line-height:1.3}
.pp-sec-body{color:#374151;font-size:.93rem;line-height:1.7}
.pp-sec-body p{margin-bottom:1rem}
.pp-sec-body p:last-child{margin-bottom:0}

/* Sub-blocks */
.pp-sub-block{background:#f9fafb;border-left:3px solid #bbf7d0;border-radius:0 8px 8px 0;padding:1rem 1.2rem;margin:1.2rem 0}
.pp-sub-h3{font-size:.95rem;font-weight:700;color:#1a2e1a;margin:0 0 .7rem}
.pp-ul{list-style:none;padding:0;margin:0}
.pp-ul li{padding:.3rem 0 .3rem 1.4rem;position:relative;color:#374151;font-size:.9rem}
.pp-ul li::before{content:'›';position:absolute;left:0;color:#16a34a;font-weight:700;font-size:1rem}

/* Highlights & Notes */
.pp-highlight{display:flex;gap:1rem;align-items:flex-start;background:#f0fdf4;border:1px solid #bbf7d0;border-radius:10px;padding:1rem 1.2rem;margin:1.2rem 0;font-size:.9rem;color:#14532d}
.pp-highlight-red{background:#fff1f2;border-color:#fecdd3;color:#9f1239}
.pp-hl-ico{font-size:1.3rem;margin-top:.15rem;flex-shrink:0;color:#16a34a}
.pp-highlight-red .pp-hl-ico{color:#dc2626}
.pp-note{display:flex;align-items:flex-start;gap:.6rem;background:#fffbeb;border:1px solid #fde68a;border-radius:8px;padding:.8rem 1rem;margin:.8rem 0;font-size:.85rem;color:#92400e}

/* Table */
.pp-table-wrap{overflow-x:auto;margin:.8rem 0}
.pp-table{width:100%;border-collapse:collapse;font-size:.85rem}
.pp-table th{background:#f0fdf4;color:#166534;font-weight:600;padding:.6rem .8rem;text-align:left;border:1px solid #d1fae5}
.pp-table td{padding:.55rem .8rem;border:1px solid #e5f0e8;color:#374151;vertical-align:top}
.pp-table tr:nth-child(even) td{background:#fafcfa}

/* Reason grid */
.pp-reason-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:.9rem;margin:.8rem 0}
.pp-reason{display:flex;gap:.8rem;align-items:flex-start;font-size:.9rem}
.pp-reason i{font-size:1rem;margin-top:.15rem;flex-shrink:0}
.pp-reason p{margin:0;color:#6b7280;font-size:.85rem}
.pp-reason strong{display:block;color:#1a2e1a;margin-bottom:.2rem}

/* Share list */
.pp-share-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin:1rem 0}
.pp-share-item{background:#f9fafb;border:1px solid #e5e7eb;border-radius:10px;padding:1rem}
.pp-share-item h4{font-size:.9rem;font-weight:700;color:#1a2e1a;margin:0 0 .4rem}
.pp-share-item p{font-size:.83rem;color:#6b7280;margin:0}

/* Security grid */
.pp-security-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin:.8rem 0}
.pp-sec-card{background:#f0fdf4;border:1px solid #bbf7d0;border-radius:10px;padding:1rem;text-align:center}
.pp-sec-card i{font-size:1.5rem;color:#16a34a;margin-bottom:.6rem;display:block}
.pp-sec-card h4{font-size:.88rem;font-weight:700;color:#166534;margin:0 0 .4rem}
.pp-sec-card p{font-size:.8rem;color:#374151;margin:0}

/* Rights grid */
.pp-rights-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin:1rem 0}
.pp-right-item{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:1.2rem;text-align:center}
.pp-right-ico{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin:0 auto .7rem}
.pp-right-item h4{font-size:.9rem;font-weight:700;color:#1a2e1a;margin:0 0 .4rem}
.pp-right-item p{font-size:.82rem;color:#6b7280;margin:0}

/* SEO section */
.pp-seo-sec{background:linear-gradient(135deg,#f0fdf4,#f9fafb)}
.pp-seo-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem}
.pp-seo-card{background:#fff;border:1px solid #d1fae5;border-radius:10px;padding:1.2rem}
.pp-seo-label{font-size:.73rem;font-weight:700;color:#16a34a;text-transform:uppercase;letter-spacing:.07em;margin-bottom:.4rem}
.pp-seo-val{font-size:.9rem;color:#1a2e1a;font-weight:500;margin-bottom:.3rem;line-height:1.5}
.pp-seo-en{font-size:.78rem;color:#9ca3af;font-style:italic}

/* Contact CTA */
.pp-contact-cta{background:linear-gradient(135deg,#0d3321,#1a5e3a);border-radius:16px;padding:2.5rem 2rem;text-align:center;color:#fff;margin-bottom:1rem}
.pp-cta-ico{font-size:2.5rem;color:#6ee7b7;margin-bottom:1rem;display:block}
.pp-contact-cta h3{color:#fff;font-size:1.2rem;margin:0 0 .6rem}
.pp-contact-cta p{color:#a7f3d0;font-size:.9rem;margin-bottom:1.5rem}
.pp-cta-btns{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}
.pp-cta-btns .ab-btn-outline{color:#a7f3d0;border-color:rgba(255,255,255,.3);font-size:.88rem}
.pp-cta-btns .ab-btn-outline:hover{background:rgba(255,255,255,.15);color:#fff}
.pp-cta-btns a.ab-btn-outline{display:inline-flex;align-items:center;text-decoration:none}

/* Dark mode */
@media(prefers-color-scheme:dark){
  .pp-page{color:#dce6df}
  .pp-sec{background:#1e2d22;border-color:#2a3d2e}
  .pp-sec-head{border-bottom-color:#2a3d2e}
  .pp-sec-h2{color:#dce6df}
  .pp-sec-body{color:#c4d4c7}
  .pp-sub-block{background:#162018;border-left-color:#16a34a}
  .pp-sub-h3{color:#dce6df}
  .pp-ul li{color:#c4d4c7}
  .pp-highlight{background:#132a1a;border-color:#16a34a;color:#a7f3d0}
  .pp-highlight-red{background:#2a1a1a;border-color:#7f1d1d;color:#fca5a5}
  .pp-note{background:#2a2200;border-color:#92400e;color:#fcd34d}
  .pp-table th{background:#132a1a;color:#6ee7b7;border-color:#2a3d2e}
  .pp-table td{border-color:#2a3d2e;color:#c4d4c7}
  .pp-table tr:nth-child(even) td{background:#162018}
  .pp-reason p,.pp-right-item p,.pp-share-item p{color:#9ca3af}
  .pp-reason strong,.pp-right-item h4,.pp-share-item h4{color:#dce6df}
  .pp-share-item,.pp-right-item{background:#162018;border-color:#2a3d2e}
  .pp-sec-card{background:#132a1a;border-color:#166534}
  .pp-sec-card h4{color:#6ee7b7}
  .pp-sec-card p{color:#c4d4c7}
  .pp-seo-card{background:#162018;border-color:#2a3d2e}
  .pp-seo-val{color:#dce6df}
  .pp-toc-inner{background:#162018;border-color:#2a3d2e}
  .pp-toc-title{color:#6ee7b7}
  .pp-toc-link{color:#c4d4c7}
  .pp-toc-link:hover{background:#132a1a;color:#6ee7b7}
  .pp-seo-sec{background:linear-gradient(135deg,#132a1a,#162018)}
}
:root[data-theme="dark"] .pp-page{color:#dce6df}
:root[data-theme="dark"] .pp-sec{background:#1e2d22;border-color:#2a3d2e}
:root[data-theme="dark"] .pp-sec-head{border-bottom-color:#2a3d2e}
:root[data-theme="dark"] .pp-sec-h2{color:#dce6df}
:root[data-theme="dark"] .pp-sec-body{color:#c4d4c7}
:root[data-theme="dark"] .pp-sub-block{background:#162018;border-left-color:#16a34a}
:root[data-theme="dark"] .pp-sub-h3{color:#dce6df}
:root[data-theme="dark"] .pp-ul li{color:#c4d4c7}
:root[data-theme="dark"] .pp-highlight{background:#132a1a;border-color:#16a34a;color:#a7f3d0}
:root[data-theme="dark"] .pp-highlight-red{background:#2a1a1a;border-color:#7f1d1d;color:#fca5a5}
:root[data-theme="dark"] .pp-note{background:#2a2200;border-color:#92400e;color:#fcd34d}
:root[data-theme="dark"] .pp-table th{background:#132a1a;color:#6ee7b7;border-color:#2a3d2e}
:root[data-theme="dark"] .pp-table td{border-color:#2a3d2e;color:#c4d4c7}
:root[data-theme="dark"] .pp-table tr:nth-child(even) td{background:#162018}
:root[data-theme="dark"] .pp-reason p,:root[data-theme="dark"] .pp-right-item p,:root[data-theme="dark"] .pp-share-item p{color:#9ca3af}
:root[data-theme="dark"] .pp-reason strong,:root[data-theme="dark"] .pp-right-item h4,:root[data-theme="dark"] .pp-share-item h4{color:#dce6df}
:root[data-theme="dark"] .pp-share-item,:root[data-theme="dark"] .pp-right-item{background:#162018;border-color:#2a3d2e}
:root[data-theme="dark"] .pp-sec-card{background:#132a1a;border-color:#166534}
:root[data-theme="dark"] .pp-sec-card h4{color:#6ee7b7}
:root[data-theme="dark"] .pp-sec-card p{color:#c4d4c7}
:root[data-theme="dark"] .pp-seo-card{background:#162018;border-color:#2a3d2e}
:root[data-theme="dark"] .pp-seo-val{color:#dce6df}
:root[data-theme="dark"] .pp-toc-inner{background:#162018;border-color:#2a3d2e}
:root[data-theme="dark"] .pp-toc-title{color:#6ee7b7}
:root[data-theme="dark"] .pp-toc-link{color:#c4d4c7}
:root[data-theme="dark"] .pp-toc-link:hover{background:#132a1a;color:#6ee7b7}
:root[data-theme="dark"] .pp-seo-sec{background:linear-gradient(135deg,#132a1a,#162018)}
:root[data-theme="light"] .pp-page{color:#1a2e1a}

/* ============================================================
   TERMS & CONDITIONS PAGE  (tc-*)
   ============================================================ */
.tc-page{font-family:inherit;color:#1a2e1a}
.tc-hero{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);padding:4rem 1.5rem 3rem;text-align:center;position:relative;overflow:hidden}
.tc-hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none}
.tc-hero-inner{position:relative;max-width:800px;margin:0 auto}
.tc-eyebrow{display:inline-block;background:rgba(255,255,255,.1);color:#93c5fd;font-size:.78rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:.35rem .9rem;border-radius:20px;margin-bottom:1rem;border:1px solid rgba(255,255,255,.15)}
.tc-h1{color:#fff;font-size:clamp(1.6rem,4vw,2.4rem);font-weight:700;margin:.5rem 0 1rem;line-height:1.2}
.tc-hero-sub{color:#bfdbfe;font-size:1rem;margin-bottom:1.5rem;opacity:.9}
.tc-meta-row{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin-bottom:1.5rem}
.tc-badge{background:rgba(255,255,255,.1);color:#93c5fd;border:1px solid rgba(255,255,255,.2);border-radius:20px;padding:.25rem .75rem;font-size:.78rem;font-weight:500}
.tc-alert-banner{background:rgba(251,191,36,.12);border:1px solid rgba(251,191,36,.3);border-radius:10px;color:#fde68a;font-size:.85rem;padding:.85rem 1.2rem;max-width:680px;margin:0 auto;text-align:left;line-height:1.6}

.tc-body{display:grid;grid-template-columns:220px 1fr;gap:2rem;max-width:1200px;margin:0 auto;padding:2rem 1.5rem 3rem;align-items:start}
@media(max-width:900px){.tc-body{grid-template-columns:1fr}.tc-toc{display:none}}

/* TOC */
.tc-toc{position:sticky;top:80px}
.tc-toc-inner{background:#eff6ff;border:1px solid #bfdbfe;border-radius:12px;padding:1.2rem;overflow:hidden}
.tc-toc-title{font-weight:700;color:#1d4ed8;margin-bottom:.8rem;font-size:.85rem;text-transform:uppercase;letter-spacing:.06em}
.tc-toc-link{display:block;width:100%;text-align:left;background:none;border:none;color:#374151;font-size:.8rem;padding:.3rem .5rem;border-radius:6px;cursor:pointer;transition:all .2s;line-height:1.4}
.tc-toc-link:hover{background:#dbeafe;color:#1d4ed8;padding-left:.9rem}

/* Section */
.tc-sec{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:2rem;margin-bottom:1.5rem;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.tc-sec-head{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;padding-bottom:1.2rem;border-bottom:2px solid #f0f9ff}
.tc-sec-num{width:36px;height:36px;border-radius:8px;background:linear-gradient(135deg,#1d4ed8,#3b82f6);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;flex-shrink:0;margin-top:.1rem}
.tc-sec-h2{font-size:1.1rem;font-weight:700;color:#1a2e1a;margin:0;line-height:1.3}
.tc-en{font-size:.78rem;font-weight:400;color:#6b7280;margin-left:.5rem;font-style:italic}
.tc-sec-body{color:#374151;font-size:.93rem;line-height:1.7}
.tc-sec-body p{margin-bottom:1rem}

.tc-ul{list-style:none;padding:0;margin:.5rem 0}
.tc-ul li{padding:.3rem 0 .3rem 1.4rem;position:relative;font-size:.9rem;color:#374151}
.tc-ul li::before{content:'›';position:absolute;left:0;color:#3b82f6;font-weight:700;font-size:1rem}

.tc-important{display:flex;gap:1rem;align-items:flex-start;background:#eff6ff;border:1px solid #bfdbfe;border-radius:10px;padding:1rem 1.2rem;margin:1rem 0;font-size:.9rem;color:#1e40af}
.tc-imp-red{background:#fff1f2;border-color:#fecdd3;color:#9f1239}
.tc-imp-ico{font-size:1.3rem;margin-top:.15rem;flex-shrink:0;color:#3b82f6}
.tc-imp-red .tc-imp-ico{color:#dc2626}
.tc-note{display:flex;align-items:flex-start;gap:.6rem;background:#fffbeb;border:1px solid #fde68a;border-radius:8px;padding:.8rem 1rem;margin:.8rem 0;font-size:.85rem;color:#92400e}

/* Definitions */
.tc-def-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:.8rem;margin:.8rem 0}
.tc-def{background:#f8fafc;border:1px solid #e2e8f0;border-radius:8px;padding:.8rem 1rem;font-size:.87rem}
.tc-term{display:block;font-weight:700;color:#1d4ed8;margin-bottom:.3rem}
.tc-def-desc{color:#475569}

/* Two-col */
.tc-two-col{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1rem 0}
@media(max-width:600px){.tc-two-col{grid-template-columns:1fr}}
.tc-col-card{background:#f9fafb;border:1px solid #e5e7eb;border-radius:10px;padding:1rem}
.tc-col-green{border-left:3px solid #16a34a}
.tc-col-blue{border-left:3px solid #3b82f6}
.tc-col-card h4{font-size:.9rem;font-weight:700;color:#1a2e1a;margin:0 0 .5rem}
.tc-col-card p{font-size:.85rem;color:#6b7280;margin:0}
.tc-sub-h4{font-size:.93rem;font-weight:700;color:#1a2e1a;margin:1rem 0 .4rem}

/* Steps */
.tc-steps{display:flex;flex-direction:column;gap:.7rem;margin:1rem 0}
.tc-step{display:flex;gap:.9rem;align-items:flex-start;font-size:.9rem}
.tc-step-n{width:28px;height:28px;border-radius:50%;background:#3b82f6;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.8rem;flex-shrink:0;margin-top:.1rem}

/* Payment grid */
.tc-payment-grid{display:flex;flex-wrap:wrap;gap:.6rem;margin:1rem 0}
.tc-pay-badge{background:#eff6ff;border:1px solid #bfdbfe;color:#1d4ed8;border-radius:20px;padding:.35rem .85rem;font-size:.85rem;font-weight:500}

/* Table */
.tc-table-wrap{overflow-x:auto;margin:.8rem 0}
.tc-table{width:100%;border-collapse:collapse;font-size:.85rem}
.tc-table th{background:#eff6ff;color:#1d4ed8;font-weight:600;padding:.6rem .8rem;text-align:left;border:1px solid #bfdbfe}
.tc-table td{padding:.55rem .8rem;border:1px solid #e5e7eb;color:#374151;vertical-align:top}
.tc-table tr:nth-child(even) td{background:#f8fafc}

/* Service cards */
.tc-service-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem;margin:1rem 0}
.tc-svc{background:#f9fafb;border:1px solid #e5e7eb;border-radius:10px;padding:1.1rem}
.tc-svc h4{font-size:.9rem;font-weight:700;color:#1a2e1a;margin:0 0 .7rem}

/* Privacy link block */
.tc-privacy-link{display:flex;gap:1.2rem;align-items:center;background:#f0fdf4;border:2px solid #bbf7d0;border-radius:12px;padding:1.2rem 1.5rem;margin:1rem 0}
.tc-privacy-link strong{display:block;color:#166534;font-size:1rem;margin-bottom:.3rem}
.tc-privacy-link p{font-size:.85rem;color:#374151;margin:.3rem 0 .7rem}
.tc-link-btn{background:#16a34a;color:#fff;border:none;border-radius:8px;padding:.5rem 1rem;font-size:.85rem;cursor:pointer;font-weight:600;transition:background .2s}
.tc-link-btn:hover{background:#15803d}

/* Force majeure tags */
.tc-fm-grid{display:flex;flex-wrap:wrap;gap:.6rem;margin:.8rem 0}
.tc-fm-tag{background:#f3f4f6;border:1px solid #d1d5db;color:#374151;border-radius:20px;padding:.35rem .85rem;font-size:.84rem}

/* Contact grid */
.tc-contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1rem;margin:1rem 0}
.tc-contact-card{background:#f9fafb;border:1px solid #e5e7eb;border-radius:12px;padding:1.2rem;text-align:center}
.tc-contact-card h4{font-size:.9rem;font-weight:700;color:#1a2e1a;margin:0 0 .3rem}
.tc-contact-card p{font-size:.88rem;color:#374151;margin:0 0 .2rem}
.tc-contact-card small{font-size:.76rem;color:#9ca3af}

/* SEO Section */
.tc-seo-sec{background:linear-gradient(135deg,#eff6ff,#f8fafc)}
.tc-seo-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem}
.tc-seo-card{background:#fff;border:1px solid #bfdbfe;border-radius:10px;padding:1.2rem}
.tc-seo-label{font-size:.72rem;font-weight:700;color:#1d4ed8;text-transform:uppercase;letter-spacing:.07em;margin-bottom:.4rem}
.tc-seo-val{font-size:.9rem;color:#1a2e1a;font-weight:500;margin-bottom:.3rem;line-height:1.5}
.tc-seo-en{font-size:.78rem;color:#9ca3af;font-style:italic}

/* Bottom CTA */
.tc-bottom-cta{background:linear-gradient(135deg,#1a1a2e,#16213e);border-radius:16px;padding:2.5rem 2rem;text-align:center;color:#fff;margin-top:.5rem}
.tc-cta-ico{font-size:2.5rem;color:#93c5fd;margin-bottom:1rem;display:block}
.tc-bottom-cta h3{color:#fff;font-size:1.2rem;margin:0 0 .6rem}
.tc-bottom-cta p{color:#bfdbfe;font-size:.9rem;margin-bottom:1.5rem}
.tc-cta-row{display:flex;gap:.8rem;justify-content:center;flex-wrap:wrap}
.tc-cta-row .ab-btn-outline{color:#93c5fd;border-color:rgba(255,255,255,.25);font-size:.88rem}
.tc-cta-row .ab-btn-outline:hover{background:rgba(255,255,255,.12);color:#fff}
.tc-cta-row a.ab-btn-outline{display:inline-flex;align-items:center;text-decoration:none}

/* Dark mode */
@media(prefers-color-scheme:dark){
  .tc-page{color:#dce6df}
  .tc-sec{background:#1e2533;border-color:#2a3445}
  .tc-sec-head{border-bottom-color:#2a3445}
  .tc-sec-h2{color:#dce6df}
  .tc-sec-body,.tc-ul li,.tc-def-desc{color:#c4d4c7}
  .tc-important{background:#1a2440;border-color:#1d4ed8;color:#93c5fd}
  .tc-imp-red{background:#2a1a1a;border-color:#7f1d1d;color:#fca5a5}
  .tc-note{background:#2a2200;border-color:#92400e;color:#fcd34d}
  .tc-def{background:#1a2533;border-color:#2a3445}
  .tc-term{color:#60a5fa}
  .tc-col-card{background:#1a2533;border-color:#2a3445}
  .tc-col-card h4,.tc-sub-h4{color:#dce6df}
  .tc-col-card p{color:#9ca3af}
  .tc-pay-badge{background:#1a2440;border-color:#1d4ed8;color:#93c5fd}
  .tc-table th{background:#1a2440;color:#60a5fa;border-color:#2a3445}
  .tc-table td{border-color:#2a3445;color:#c4d4c7}
  .tc-table tr:nth-child(even) td{background:#1a2533}
  .tc-svc{background:#1a2533;border-color:#2a3445}
  .tc-svc h4{color:#dce6df}
  .tc-privacy-link{background:#132a1a;border-color:#16a34a}
  .tc-privacy-link strong{color:#6ee7b7}
  .tc-fm-tag{background:#1a2533;border-color:#2a3445;color:#c4d4c7}
  .tc-contact-card{background:#1a2533;border-color:#2a3445}
  .tc-contact-card h4{color:#dce6df}
  .tc-contact-card p{color:#c4d4c7}
  .tc-toc-inner{background:#1a2440;border-color:#2a3445}
  .tc-toc-title{color:#60a5fa}
  .tc-toc-link{color:#c4d4c7}
  .tc-toc-link:hover{background:#1a2533;color:#60a5fa}
  .tc-seo-sec{background:linear-gradient(135deg,#1a2440,#1a2533)}
  .tc-seo-card{background:#1a2533;border-color:#2a3445}
  .tc-seo-val{color:#dce6df}
  .tc-def-grid,.tc-seo-grid{color:#c4d4c7}
}
:root[data-theme="dark"] .tc-page{color:#dce6df}
:root[data-theme="dark"] .tc-sec{background:#1e2533;border-color:#2a3445}
:root[data-theme="dark"] .tc-sec-head{border-bottom-color:#2a3445}
:root[data-theme="dark"] .tc-sec-h2{color:#dce6df}
:root[data-theme="dark"] .tc-sec-body,:root[data-theme="dark"] .tc-ul li,:root[data-theme="dark"] .tc-def-desc{color:#c4d4c7}
:root[data-theme="dark"] .tc-important{background:#1a2440;border-color:#1d4ed8;color:#93c5fd}
:root[data-theme="dark"] .tc-imp-red{background:#2a1a1a;border-color:#7f1d1d;color:#fca5a5}
:root[data-theme="dark"] .tc-note{background:#2a2200;border-color:#92400e;color:#fcd34d}
:root[data-theme="dark"] .tc-def{background:#1a2533;border-color:#2a3445}
:root[data-theme="dark"] .tc-term{color:#60a5fa}
:root[data-theme="dark"] .tc-col-card{background:#1a2533;border-color:#2a3445}
:root[data-theme="dark"] .tc-col-card h4,:root[data-theme="dark"] .tc-sub-h4{color:#dce6df}
:root[data-theme="dark"] .tc-pay-badge{background:#1a2440;border-color:#1d4ed8;color:#93c5fd}
:root[data-theme="dark"] .tc-table th{background:#1a2440;color:#60a5fa;border-color:#2a3445}
:root[data-theme="dark"] .tc-table td{border-color:#2a3445;color:#c4d4c7}
:root[data-theme="dark"] .tc-table tr:nth-child(even) td{background:#1a2533}
:root[data-theme="dark"] .tc-svc{background:#1a2533;border-color:#2a3445}
:root[data-theme="dark"] .tc-svc h4{color:#dce6df}
:root[data-theme="dark"] .tc-privacy-link{background:#132a1a;border-color:#16a34a}
:root[data-theme="dark"] .tc-privacy-link strong{color:#6ee7b7}
:root[data-theme="dark"] .tc-fm-tag{background:#1a2533;border-color:#2a3445;color:#c4d4c7}
:root[data-theme="dark"] .tc-contact-card{background:#1a2533;border-color:#2a3445}
:root[data-theme="dark"] .tc-contact-card h4{color:#dce6df}
:root[data-theme="dark"] .tc-toc-inner{background:#1a2440;border-color:#2a3445}
:root[data-theme="dark"] .tc-toc-title{color:#60a5fa}
:root[data-theme="dark"] .tc-toc-link{color:#c4d4c7}
:root[data-theme="dark"] .tc-toc-link:hover{background:#1a2533;color:#60a5fa}
:root[data-theme="dark"] .tc-seo-sec{background:linear-gradient(135deg,#1a2440,#1a2533)}
:root[data-theme="dark"] .tc-seo-card{background:#1a2533;border-color:#2a3445}
:root[data-theme="dark"] .tc-seo-val{color:#dce6df}
:root[data-theme="light"] .tc-page{color:#1a2e1a}

/* ============================================================
   SCROLL TO TOP BUTTON  (mobile <=768px only)
   ============================================================ */
#scrollTopBtn{
  display:none;
  position:fixed;
  bottom:80px;
  right:16px;
  z-index:1999;
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg, #ffc107, #15803d);
  color:#fff;
  border:none;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
  font-size:1rem;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .25s,transform .25s;
}
@media(max-width:768px){
  #scrollTopBtn{ display:flex; }
}
@media (max-width: 990px) {
    .hero-dual-side {
        height: 285px;
    }
    .ad-sec-wrap {
        height: 285px;
    }
}
@media (max-width: 850px) {
    .hero-dual-side {
        height: 250px;
    }
        .ad-sec-wrap {
        height: 250px;
    }
}
@media (max-width: 700px) {
    .hero-dual-side {
        height: 210px;
    }
        .ad-sec-wrap {
        height: 210px;
    }
}
@media (max-width: 550px) {
    .hero-dual-side {
        height: 170px;
    }
        .ad-sec-wrap {
        height: 170px;
    }
}
@media (max-width: 450px) {
    .hero-dual-side {
        height: 140px;
    }
    .ad-sec-wrap {
        height: 140px;
    }
}
@media (max-width: 350px) {
    .hero-dual-side {
        height: 110px;
    }
    .ad-sec-wrap {
        height: 110px;
    }
}
#scrollTopBtn.stt-visible{
  opacity:1;
  transform:translateY(0);
}
#scrollTopBtn:hover{
  background:linear-gradient(135deg,#15803d,#166534);
}
