/* ═══════════════════════════════════════════════════════════
   ABHIJAN LIFE — Premium Frontend CSS
   Design tokens + components + responsive
   ═══════════════════════════════════════════════════════════ */

:root {
  --green: #0a934c;
  --green-dark: #063f35;
  --green-mid: #087a43;
  --green-light: #e6f7ee;
  --yellow: #f4c430;
  --yellow-dark: #d4a820;
  --orange: #f08a16;
  --red: #e52d3d;
  --blue: #174c8f;
  --text: #1a2420;
  --text-2: #3a4f48;
  --muted: #6b7c75;
  --line: #e0eae5;
  --line-2: #f0f7f3;
  --soft: #f5faf7;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(10, 60, 40, .07);
  --shadow-md: 0 4px 18px rgba(10, 60, 40, .11);
  --shadow-lg: 0 12px 36px rgba(6, 63, 53, .15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --transition: .2s ease;
  --container: min(1380px, calc(100% - 32px));
  --header-h: 74px;
  --topbar-h: 36px;
  --nav-h: 48px;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #f4f8f5;
  color: var(--text);
  font-family: "Noto Sans Bengali", "Noto Sans", -apple-system, Arial, sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1;
}

.top-bar-inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.top-bar-divider {
  opacity: .3;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .78);
  transition: color var(--transition);
}

.top-bar-link:hover {
  color: #fff;
}

.top-bar-phone {
  color: var(--yellow);
  font-weight: 700;
}

.top-bar-auth {
  font-weight: 700;
  color: #fff;
}

.top-bar-register {
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.top-bar-register:hover {
  background: var(--yellow-dark);
  color: var(--green-dark);
}

.top-bar-brand {
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.top-bar-tagline {
  opacity: .65;
}


/* ══════════════════════════════════════════════════════════
   STICKY SITE HEAD WRAPPER
══════════════════════════════════════════════════════════ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(6, 63, 53, .12);
}


/* ══════════════════════════════════════════════════════════
   HEADER — white background
══════════════════════════════════════════════════════════ */
.header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-main {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 147, 76, .28);
}

.logo-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-text small {
  display: block;
  font-size: 9.5px;
  color: var(--muted);
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 400;
}

/* Search */
.search {
  flex: 1;
  max-width: 520px;
  height: 46px;
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .12);
  background: #fff;
}

.search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 16px;
  font-size: 13.5px;
  color: var(--text);
}

.search input::placeholder {
  color: var(--muted);
}

.search button {
  width: 50px;
  height: 100%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.search button:hover {
  background: var(--green-mid);
}

/* Header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.hdr-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  color: var(--text-2);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.hdr-action:hover {
  background: var(--line-2);
  color: var(--green-dark);
}

.hdr-action-icon {
  width: 38px;
  height: 38px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: background var(--transition);
}

.hdr-action:hover .hdr-action-icon {
  background: var(--green-light);
  border-color: rgba(10, 147, 76, .25);
}

.hdr-action-text small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 2px;
}

.hdr-action-text {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* Hotline special style */
.hdr-hotline .hdr-action-icon {
  background: rgba(10, 147, 76, .08);
  border-color: rgba(10, 147, 76, .2);
  color: var(--green);
}

.hdr-hotline .hdr-action-text {
  color: var(--green-dark);
}

/* Cart button reset (it's a <button> not <a>) */
.hdr-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
}

/* Cart badge */
.cart-bubble {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(229, 45, 61, .35);
}

.cart-bubble-mobile {
  position: absolute;
  top: -5px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 9px;
  padding: 0 3px;
}

/* Mobile top (hamburger) — hidden on desktop */
.mobile-top {
  display: none;
}

.hamburger {
  width: 40px;
  height: 40px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}


/* ══════════════════════════════════════════════════════════
   DESKTOP NAV — green bar
══════════════════════════════════════════════════════════ */
.nav {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0;
}

/* Categories dropdown button */
.nav-cat-wrap {
  position: relative;
  flex-shrink: 0;
}

.nav-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-h);
  padding: 0 18px;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
  border-right: 1px solid rgba(0, 0, 0, .08);
  transition: background var(--transition);
  white-space: nowrap;
}

.nav-cat-btn:hover {
  background: var(--yellow-dark);
}

.nav-cat-chevron {
  transition: transform var(--transition);
}

.nav-cat-btn[aria-expanded="true"] .nav-cat-chevron {
  transform: rotate(180deg);
}

.nav-cat-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 300;
}

.nav-cat-dropdown.open {
  display: block;
  animation: dropDown .18s ease;
}

@keyframes dropDown {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.nav-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.nav-cat-item:hover {
  background: var(--green-light);
  color: var(--green);
}

.nav-cat-item svg {
  opacity: .4;
}

.nav-cat-item:hover svg {
  opacity: 1;
}

.nav-cat-all {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 11px;
  font-weight: 800;
  color: var(--green);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: var(--nav-h);
  padding: 0 14px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* Nav dropdown items */
.nav-item-wrap {
  position: relative;
}

.nav-link-drop {
  padding-right: 10px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 300;
}

.nav-item-wrap:hover .nav-dropdown {
  display: block;
  animation: dropDown .18s ease;
}

.nav-drop-item {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: background var(--transition);
}

.nav-drop-item:hover {
  background: var(--green-light);
  color: var(--green);
}

/* Nav right: Live Chat */
.nav-right {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-livechat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  transition: background var(--transition), transform var(--transition);
}

.nav-livechat:hover {
  background: #1eb956;
  color: #fff;
  transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════════════
   HERO SLIDER — full width, full image visible
══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--green-dark);
  /* Let the image set the height naturally — no fixed max-height clip */
  line-height: 0;
}

.hs-slide {
  display: none;
  position: relative;
  width: 100%;
}

.hs-slide.active {
  display: block;
  animation: hsFadeIn .7s ease;
}

@keyframes hsFadeIn {
  from {
    opacity: .3
  }

  to {
    opacity: 1
  }
}

/* The key: contain = see entire image; cover = fill */
.hs-img {
  width: 100%;
  height: auto;
  /* natural height — shows full image */
  display: block;
  object-fit: contain;
  /* never clips the image */
}

.hs-img-mobile {
  display: none;
}

/* Overlay text */
.hs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(20px, 5vw, 72px);
  background: linear-gradient(90deg, rgba(4, 44, 36, .78) 0%, rgba(4, 44, 36, .42) 52%, transparent 100%);
  color: #fff;
}

.hs-overlay h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 900;
  margin: 0 0 10px;
  max-width: 600px;
  line-height: 1.15;
}

.hs-overlay p {
  color: #e6f5ee;
  font-size: clamp(13px, 1.7vw, 18px);
  margin: 0 0 6px;
  max-width: 520px;
  line-height: 1.6;
}

.hs-overlay .hs-text {
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: clamp(12px, 1.4vw, 16px);
}

.hs-overlay .btn-yellow {
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
  padding: .65rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}

.hs-overlay .btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

/* Prev/Next arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, .35);
}

.hs-arrow-prev {
  left: 16px;
}

.hs-arrow-next {
  right: 16px;
}

/* Dot indicators */
.hs-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hs-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all .25s ease;
  border: none;
}

.hs-dot.active {
  background: var(--yellow);
  width: 26px;
  border-radius: var(--radius-pill);
}


/* ══════════════════════════════════════════════════════════
   BENEFITS STRIP
══════════════════════════════════════════════════════════ */
.benefits {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefit {
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: none;
}

.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit strong {
  font-size: 12.5px;
  font-weight: 800;
  display: block;
}

.benefit small {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}


/* ══════════════════════════════════════════════════════════
   GENERAL SECTION
══════════════════════════════════════════════════════════ */
.section {
  padding: 36px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  position: relative;
  padding-left: 14px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--green), var(--green-mid));
  border-radius: 2px;
}

.view-all {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.view-all:hover {
  gap: 8px;
}


/* ══════════════════════════════════════════════════════════
   SHOP BY CATEGORIES
══════════════════════════════════════════════════════════ */
.cat-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.cat-scroll::-webkit-scrollbar {
  height: 5px;
}

.cat-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}

.cat-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.cat-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.cat-card .cat-icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--green-light), #dff3e8);
}

.cat-card .cat-name {
  font-weight: 800;
  font-size: 12.5px;
  padding: 10px 8px 2px;
  color: var(--green-dark);
}

.cat-card .cat-count {
  font-size: 11px;
  color: var(--muted);
  padding: 0 8px 10px;
}


/* ══════════════════════════════════════════════════════════
   PRODUCT GRID & CARD
══════════════════════════════════════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 16px;
}

.prod-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(6, 63, 53, .13);
  border-color: rgba(10, 147, 76, .3);
}

/* Hover action buttons */
.prod-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.prod-card:hover .prod-actions {
  opacity: 1;
  transform: none;
}

.pa-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 14px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.pa-btn:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}

.pa-btn.active {
  color: #e52d3d;
}

/* Product image */
.prod-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
  position: relative;
}

.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.prod-card:hover .prod-media img {
  transform: scale(1.07);
}

.prod-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

/* Badges on image */
.prod-badge {
  position: absolute;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  z-index: 3;
  line-height: 1.4;
}

.prod-badge-discount {
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
}

.prod-badge-flash {
  bottom: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--green-dark);
}

/* Product body */
.prod-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.prod-name {
  font-weight: 800;
  font-size: 13.5px;
  color: var(--green-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  transition: color var(--transition);
}

.prod-name:hover {
  color: var(--green);
}

.prod-brand {
  font-size: 11.5px;
  color: var(--muted);
}

.prod-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.prod-price b {
  font-size: 17px;
  font-weight: 900;
  color: var(--red);
}

.prod-price del {
  font-size: 12px;
  color: #9aa5a0;
}

.prod-stock {
  font-size: 11.5px;
  font-weight: 700;
}

.prod-stock.in {
  color: var(--green);
}

.prod-stock.out {
  color: var(--red);
}

/* CTA area */
.prod-cta {
  margin-top: auto;
  padding-top: 4px;
}

.prod-cart {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.prod-cart:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}

.prod-cart:disabled,
.prod-cart-out {
  background: #d0d9d5;
  color: var(--muted);
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
}

.prod-cart-variants {
  background: var(--soft);
  color: var(--green);
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 9px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  transition: background var(--transition);
}

.prod-cart-variants:hover {
  background: var(--green-light);
}

/* Loading spinner for AJAX button */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* ══════════════════════════════════════════════════════════
   FLASH SALE SECTION
══════════════════════════════════════════════════════════ */
.flash-section {
  background: linear-gradient(180deg, #fff6f6, #fff);
  border-top: 1px solid #fbe3e3;
  border-bottom: 1px solid #fbe3e3;
}

.flash-countdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
}

.flash-countdown b {
  background: rgba(255, 255, 255, .2);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  min-width: 28px;
  text-align: center;
}

.flash-countdown i {
  font-style: normal;
  opacity: .7;
}

.flash-countdown span {
  font-weight: 600;
  font-size: 12px;
  margin-right: 2px;
}


/* ══════════════════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--muted);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.empty-state span {
  font-size: 42px;
  display: block;
  margin-bottom: 10px;
}


/* ══════════════════════════════════════════════════════════
   REWARDS / HOW IT WORKS CARDS
══════════════════════════════════════════════════════════ */
.rewards-section {
  background: var(--soft);
}

.rewards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.reward {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 20px 10px;
  min-height: 140px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.reward:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reward-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.reward strong {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
}

.reward small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin-top: 5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
  min-height: 145px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 13px;
  margin: 0 0 5px;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════
   FOOTER — dark teal
══════════════════════════════════════════════════════════ */
.footer {
  background: #07243d;
  color: #ccdad6;
}

.footer-wave {
  line-height: 0;
  background: #f4f8f5;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

.footer-body {
  padding: 52px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 36px;
}

/* Brand col */
.footer-col-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.footer-brand-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 1px;
  margin-top: 3px;
}

.footer-about {
  font-size: 12.5px;
  line-height: 1.75;
  color: #aabfb9;
  margin-bottom: 18px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
  transition: background var(--transition), color var(--transition);
}

.footer-social-btn:hover {
  background: var(--green);
  color: #fff;
}

.footer-social-wa:hover {
  background: #25d366;
  color: #fff;
}

/* Payment badges */
.footer-payments {
  margin-top: 4px;
}

.footer-pay-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fpay {
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .12);
}

.fpay.bkash {
  background: rgba(220, 60, 100, .2);
  border-color: rgba(220, 60, 100, .3);
  color: #f5a0b5;
}

.fpay.nagad {
  background: rgba(240, 100, 20, .2);
  border-color: rgba(240, 100, 20, .3);
  color: #f5b88a;
}

.fpay.rocket {
  background: rgba(140, 50, 180, .2);
  border-color: rgba(140, 50, 180, .3);
  color: #c9a0f5;
}

.fpay.visa {
  background: rgba(29, 92, 191, .2);
  border-color: rgba(29, 92, 191, .3);
  color: #9ab8f5;
}

.fpay.amex {
  background: rgba(20, 130, 160, .2);
  border-color: rgba(20, 130, 160, .3);
  color: #8acfe5;
}

/* Column heading */
.footer-heading {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-heading-line {
  display: inline-block;
  width: 20px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Links list */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links li a {
  font-size: 12.5px;
  color: #aabfb9;
  line-height: 1;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links li a::before {
  content: '›';
  color: var(--green);
  font-size: 14px;
  opacity: .7;
  transition: opacity var(--transition);
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links li a:hover::before {
  opacity: 1;
}

/* Contact info */
.footer-contact-info {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fci-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #aabfb9;
}

.fci-item svg {
  flex-shrink: 0;
  color: var(--green);
}

.fci-item a {
  color: #aabfb9;
  transition: color var(--transition);
}

.fci-item a:hover {
  color: #fff;
}

/* Action buttons in footer */
.footer-action-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 12.5px;
  text-decoration: none;
  transition: filter var(--transition), transform var(--transition);
}

.footer-action-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.footer-wa-btn {
  background: #25d366;
  color: #fff;
}

.footer-hotline-btn {
  background: var(--orange);
  color: #fff;
}

.footer-merchant-btn {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
}

/* App download */
.footer-app {
  margin-top: 2px;
}

.footer-app-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-app-btns {
  display: flex;
  gap: 8px;
}

.footer-app-btn {
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.footer-app-btn:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0, 0, 0, .18);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-bottom-inner {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .8);
}

/* Back to Top button (footer bottom bar, left side) */
.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.back-to-top-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.back-to-top-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════
   AJAX CART SIDEBAR
══════════════════════════════════════════════════════════ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(6, 30, 24, .55);
  backdrop-filter: blur(3px);
}

.cart-overlay.open {
  display: block;
  animation: fadeIn .22s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -440px;
  width: min(420px, 100vw);
  height: 100%;
  background: #fff;
  z-index: 501;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
  transition: right .3s cubic-bezier(.22, 1, .36, 1);
}

.cart-sidebar.open {
  right: 0;
}

.cs-head {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--line);
  background: var(--green-dark);
  flex-shrink: 0;
}

.cs-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.cs-count {
  background: var(--yellow);
  color: var(--green-dark);
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 900;
}

.cs-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cs-close:hover {
  background: rgba(255, 255, 255, .28);
}

.cs-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cs-body::-webkit-scrollbar {
  width: 4px;
}

.cs-body::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.cs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
}

.cs-empty p {
  font-size: 14px;
}

.cs-shop-link {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  transition: color var(--transition);
}

.cs-shop-link:hover {
  color: var(--green-dark);
}

.cs-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--soft);
  border: 1px solid var(--line);
}

.cs-item-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-item-ph {
  font-size: 26px;
}

.cs-item-info {
  flex: 1;
  min-width: 0;
}

.cs-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cs-item-variant {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.cs-item-price {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--green);
  margin-top: 4px;
}

.cs-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fde8e8;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.cs-item-remove:hover {
  background: var(--red);
  color: #fff;
}

.cs-footer {
  padding: 16px 18px;
  border-top: 1.5px solid var(--line);
  background: var(--soft);
  flex-shrink: 0;
}

.cs-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
}

.cs-total-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
}

.cs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  transition: filter var(--transition), transform var(--transition);
  margin-bottom: 8px;
}

.cs-btn:last-child {
  margin-bottom: 0;
}

.cs-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cs-btn-primary {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
}

.cs-btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
  background: #fff;
}

.cs-btn-outline:hover {
  background: var(--green-light);
}


/* ══════════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  z-index: 9999;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.toast-error {
  background: var(--red);
}

.toast.toast-success {
  background: var(--green);
}

.toast.toast-info {
  background: #174c8f;
}


/* ══════════════════════════════════════════════════════════
   SPLASH SCREEN
══════════════════════════════════════════════════════════ */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, var(--green-dark), #0a5c4a 55%, var(--green));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: splashOut .45s ease 1.1s forwards;
}

.splash-logo {
  font-size: 56px;
  animation: splashBounce .9s ease;
}

.splash-screen h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 14px 0 4px;
  letter-spacing: .5px;
}

.splash-screen small {
  opacity: .8;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes splashBounce {
  0% {
    transform: scale(.4);
    opacity: 0
  }

  60% {
    transform: scale(1.14)
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes splashOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}


/* ══════════════════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, .42);
}

.mobile-menu-panel {
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  box-shadow: 6px 0 28px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
}

.mobile-menu-head {
  background: var(--green-dark);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.mobile-menu-head strong {
  font-size: 16px;
}

.close-menu {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-links {
  flex: 1;
  padding: 8px 0;
}

.mobile-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid #f0f5f2;
  color: var(--text-2);
  transition: background var(--transition);
}

.mobile-links a:hover {
  background: var(--green-light);
  color: var(--green);
}

.mobile-links a svg {
  flex-shrink: 0;
  color: var(--muted);
}

.mobile-links a:hover svg {
  color: var(--green);
}

.m-register {
  background: var(--yellow) !important;
  color: var(--green-dark) !important;
  margin: 12px 16px;
  border-radius: var(--radius-sm);
  justify-content: center;
  border-bottom: none !important;
  font-weight: 800 !important;
}


/* ══════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════════════════ */
.mobile-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  z-index: 180;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  color: #7a8c84;
  font-weight: 600;
  padding: 6px 4px;
  background: none;
  border: none;
  transition: color var(--transition);
}

.mobile-bottom-item.active,
.mobile-bottom-item:hover {
  color: var(--green);
}

.mobile-bottom-item svg {
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 300;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
  animation: waPulse 2.5s infinite;
  transition: transform var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* ══════════════════════════════════════════════════════════
   QUICK VIEW MODAL
══════════════════════════════════════════════════════════ */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
}

.qv-modal.open {
  display: block;
}

.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 40, 33, .5);
  backdrop-filter: blur(3px);
}

.qv-dialog {
  position: relative;
  margin: 7vh auto 0;
  max-width: 760px;
  width: calc(100% - 24px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
  max-height: 84vh;
  overflow: auto;
  animation: qvIn .24s ease;
}

@keyframes qvIn {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.qv-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv-content {
  padding: 20px;
}

.qv-loading {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

.qv-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
}

.qv-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.qv-ph {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: var(--soft);
  border-radius: var(--radius-md);
}

.qv-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.qv-name {
  font-size: 19px;
  font-weight: 900;
  color: var(--green-dark);
  margin: 0 0 8px;
}

.qv-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 6px;
}

.qv-price del {
  color: #9aa5a0;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
}

.qv-stock {
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 10px;
}

.qv-stock.in {
  color: var(--green);
}

.qv-stock.out {
  color: var(--red);
}

.qv-desc {
  font-size: 13px;
  color: #44504b;
  line-height: 1.65;
  margin: 0 0 14px;
}

.qv-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════
   UTILITIES / MISC
══════════════════════════════════════════════════════════ */
.btn-yellow {
  background: var(--yellow);
  color: var(--green-dark);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 900;
  cursor: pointer;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .75);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 800;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: filter .2s;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn.green {
  background: var(--green);
  color: #fff;
  border: none;
}

.text-muted {
  color: var(--muted);
  font-size: 13px;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  font-size: 44px;
}

.blog-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--text);
}

.blog-card-body h3 a:hover {
  color: var(--green);
}

.blog-meta {
  font-size: 12px;
  color: var(--muted);
}

.blog-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.blog-read {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

/* Static page content */
.page-content {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  line-height: 1.9;
  font-size: 15px;
}

.page-content h2,
.page-content h3 {
  margin-top: 24px;
  color: var(--green-dark);
}

/* Panel */
.panel {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.panel-body {
  padding: 16px;
}

.p-0 {
  padding: 0 !important;
}

.page-title {
  font-size: 24px;
  font-weight: 900;
  margin: 24px 0 18px;
  color: var(--text);
}

/* Nav category dropdown (legacy — keep for backward compat) */
.category-menu-wrap {
  position: relative;
}

.category-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 300;
}

.category-menu-wrap:hover .category-dropdown {
  display: block;
}

.category-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
}

.category-dropdown a:hover {
  background: var(--green-light);
  color: var(--green);
}

.category-dropdown a.all {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 10px;
  font-weight: 800;
  color: var(--green);
}


/* ══════════════════════════════════════════════════════════
   HERO SLIDER JS  (inline slider script attached here as CSS comment)
   actual slider init is in @yield('scripts') area via home.blade
══════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1100px
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .rewards {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit:nth-child(3) {
    border-right: none;
  }

  .benefit:nth-child(4),
  .benefit:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 767px
══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --header-h: 62px;
  }

  body {
    padding-bottom: 64px;
  }

  /* top bar hidden on mobile */
  .top-bar {
    display: none;
  }

  /* header mobile layout */
  .header-main {
    height: var(--header-h);
    gap: 10px;
    flex-wrap: nowrap;
  }

  .logo-text small {
    display: none;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .logo-text strong,
  .logo-name {
    font-size: 15px;
  }

  /* search goes below on mobile */
  .search {
    order: 10;
    width: 100%;
    max-width: none;
    flex-basis: 100%;
  }

  .header-main {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 0 10px;
    gap: 8px;
  }

  /* header actions collapse on mobile */
  .header-actions {
    display: none !important;
  }

  /* show hamburger */
  .mobile-top {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  /* nav hidden on mobile */
  .nav {
    display: none;
  }

  /* slider: keep full image on mobile too */
  .hs-img-desktop {
    display: none;
  }

  .hs-img-mobile {
    display: block;
  }

  .hs-slide.no-mobile .hs-img-desktop {
    display: block !important;
  }

  .hs-slide.no-mobile .hs-img-mobile {
    display: none !important;
  }

  .hs-overlay {
    padding: 16px;
  }

  .hs-overlay h2 {
    font-size: 18px;
  }

  .hs-overlay p {
    font-size: 12px;
  }

  .hs-arrow {
    width: 32px;
    height: 32px;
  }

  /* benefits */
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .benefit:nth-child(2),
  .benefit:nth-child(4) {
    border-right: none;
  }

  .benefit {
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }

  /* sections */
  .section {
    padding: 22px 0;
  }

  .section-title {
    font-size: 18px;
  }

  /* categories */
  .cat-card {
    flex-basis: 115px;
  }

  .cat-card img,
  .cat-card .cat-icon {
    height: 86px;
  }

  /* products */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .prod-actions {
    opacity: 1;
    transform: none;
  }

  /* rewards */
  .rewards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* footer */
  .footer-wave {
    display: none;
  }

  .footer-body {
    padding: 36px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* mobile bottom nav */
  .mobile-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  /* cart sidebar full-width on mobile */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* quick view */
  .qv-wrap {
    grid-template-columns: 1fr;
  }

  .qv-media img,
  .qv-ph {
    height: 200px;
  }

  .qv-dialog {
    margin-top: 3vh;
  }

  /* toast above bottom nav */
  .toast {
    bottom: 76px;
    font-size: 12px;
  }

  /* wa-float above bottom nav */
  .wa-float {
    bottom: 76px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 420px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cat-card {
    flex-basis: 100px;
  }
}


/* ═══════════════════════════════════════════════════════════
   SHARED PAGE COMPONENTS  (catalog, contact, cart, checkout,
   track, static pages, faq)
   ═══════════════════════════════════════════════════════════ */

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  margin-bottom: 8px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, .7);
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, .4);
}

.breadcrumb-nav .active {
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

/* light variant */
.page-hero-light .breadcrumb-nav a {
  color: var(--muted);
}

.page-hero-light .breadcrumb-nav a:hover {
  color: var(--green);
}

.page-hero-light .breadcrumb-nav span {
  color: #c5d4cc;
}

.page-hero-light .breadcrumb-nav .active {
  color: var(--text);
}

/* ── Page Hero Banner ───────────────────────────────────── */
.page-hero {
  padding: 28px 0 24px;
}

.page-hero-green {
  background: linear-gradient(115deg, var(--green-dark) 0%, var(--green-mid) 60%, #0fae74 100%);
  color: #fff;
}

.page-hero-light {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero-title {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 6px;
  color: inherit;
}

.page-hero-sub {
  font-size: 14px;
  opacity: .82;
  margin: 0;
  line-height: 1.6;
  max-width: 560px;
}

.page-hero-light .page-hero-title {
  color: var(--text);
}

/* ── Alert strips ───────────────────────────────────────── */
.alert-success-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #d4f3e0;
  color: #0a6e39;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  border-left: 4px solid #0a6e39;
}

.alert-error-strip {
  background: #fde2e2;
  color: #a33;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  border-left: 4px solid #e52d3d;
}

/* ── Pagination wrap ────────────────────────────────────── */
.pagination-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.pagination-wrap nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────
   CATALOG PAGE
───────────────────────────────────────────────────────── */
.catalog-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 0 16px;
}

.catalog-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.catalog-page-title {
  font-size: 26px;
  font-weight: 900;
  margin: 0;
  color: var(--text);
}

.catalog-result-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.crc-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.crc-label {
  font-size: 12px;
  color: var(--muted);
}

/* Filter bar */
.filter-bar {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.filter-search {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0 12px;
  background: var(--soft);
  transition: border-color var(--transition);
}

.filter-search:focus-within {
  border-color: var(--green);
}

.filter-search svg {
  flex-shrink: 0;
  color: var(--muted);
}

.filter-input {
  flex: 1;
  min-width: 0;
  height: 38px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
}

.filter-select {
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.filter-select:focus {
  border-color: var(--green);
}

.filter-price-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.filter-price-input {
  width: 100px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  outline: none;
  transition: border-color var(--transition);
}

.filter-price-input:focus {
  border-color: var(--green);
}

.filter-price-sep {
  font-size: 13px;
  color: var(--muted);
}

.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  color: var(--text-2);
}

.filter-check input {
  accent-color: var(--green);
}

.filter-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 38px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  transition: background var(--transition);
  flex-shrink: 0;
}

.filter-submit:hover {
  background: var(--green-mid);
}

/* Chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.filter-chips-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-right: 2px;
  flex-shrink: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--soft);
  color: var(--text-2);
  border: 1.5px solid var(--line);
  transition: all var(--transition);
}

.chip:hover {
  border-color: var(--green);
  color: var(--green);
}

.chip-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.chip-yellow {
  background: #fff8e6;
  color: #8a6d1a;
  border-color: #f0d9a0;
}

.chip-yellow.chip-active {
  background: var(--yellow);
  color: var(--green-dark);
  border-color: var(--yellow);
}

.chip-red {
  background: #fdeaea;
  color: #a33;
  border-color: #f0c4c4;
}

.chip-red.chip-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.chip-clear {
  background: #fde8e8;
  color: var(--red);
  border-color: #fac5c5;
  font-weight: 700;
}

.chip-clear:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

@media (max-width: 767px) {
  .catalog-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .catalog-page-title {
    font-size: 20px;
  }

  .filter-form {
    gap: 6px;
  }

  .filter-price-group {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
}

.contact-section-heading {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 8px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-info-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.cic-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cic-green {
  background: var(--green-light);
  color: var(--green);
}

.cic-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.cic-wa {
  background: #dcfce7;
  color: #16a34a;
}

.cic-orange {
  background: #fff7ed;
  color: #ea580c;
}

.cic-label {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 2px;
}

.cic-value {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--text);
}

.cic-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.contact-quick-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cqb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13.5px;
  transition: filter var(--transition), transform var(--transition);
}

.cqb:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.cqb-wa {
  background: #25d366;
  color: #fff;
}

.cqb-call {
  background: var(--green);
  color: #fff;
}

/* Contact form card */
.contact-form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cfc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 800;
}

.cfc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Shared form field styles */
.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cf-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.cf-req {
  color: var(--red);
  margin-left: 2px;
}

.cf-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}

.cf-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .1);
}

.cf-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.cf-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 2px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: filter var(--transition), transform var(--transition);
  align-self: flex-start;
}

.cf-submit:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cf-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────
   CART PAGE
───────────────────────────────────────────────────────── */
.empty-cart-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
}

.ecb-icon {
  margin-bottom: 16px;
  opacity: .6;
}

.ecb-title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px;
}

.ecb-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

.ecb-btn {
  font-size: 14px;
  padding: 11px 26px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}

.cart-items-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cart-items-head {
  display: grid;
  grid-template-columns: 3fr 1fr 1.3fr 1fr 44px;
  padding: 12px 16px;
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  border-bottom: 1.5px solid var(--line);
}

.cart-item-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1.3fr 1fr 44px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-row:hover {
  background: #fafdfb;
}

.cart-item-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  font-weight: 800;
  font-size: 13.5px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color var(--transition);
}

.cart-item-name:hover {
  color: var(--green);
}

.cart-item-variant {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

.cart-item-cat {
  display: block;
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}

.cart-item-price {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  justify-content: center;
}

.cart-item-total {
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
}

.cart-item-remove {
  display: flex;
  justify-content: center;
}

/* Quantity stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 34px;
  background: var(--soft);
  font-size: 16px;
  font-weight: 700;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--green-light);
  color: var(--green);
}

.qty-val {
  width: 46px;
  height: 34px;
  border: none;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.cart-remove-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: #fde8e8;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.cart-remove-btn:hover {
  background: var(--red);
  color: #fff;
}

.cart-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1.5px solid var(--line);
}

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  transition: gap var(--transition);
}

.cart-continue-link:hover {
  gap: 10px;
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  transition: background var(--transition);
}

.btn-outline-green:hover {
  background: var(--green-light);
}

/* Cart summary */
.cart-summary-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-summary-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cart-total-card {}

.csc-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.coupon-form {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
}

.coupon-input {
  flex: 1;
}

.coupon-apply-btn {
  padding: 0 16px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition);
}

.coupon-apply-btn:hover {
  background: var(--green-mid);
}

.coupon-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
}

.coupon-remove-btn {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid #fac5c5;
  border-radius: var(--radius-sm);
  background: #fde8e8;
  transition: background var(--transition);
}

.coupon-remove-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.cart-total-rows {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctr-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.ctr-discount strong {
  color: var(--green);
}

.ctr-grand {
  padding-top: 10px;
  border-top: 1.5px solid var(--line);
  font-size: 16px;
  font-weight: 800;
}

.ctr-amount {
  font-size: 20px;
  color: var(--red);
}

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 16px 14px;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  transition: filter var(--transition), transform var(--transition);
}

.cart-checkout-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff;
}

.cart-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  padding: 0 16px 14px;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-items-head {
    display: none;
  }

  .cart-item-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .cart-item-price::before {
    content: 'দাম: ';
    font-weight: 400;
    color: var(--muted);
  }

  .cart-item-total::before {
    content: 'মোট: ';
    font-weight: 400;
    color: var(--muted);
  }

  .cart-item-price,
  .cart-item-total {
    text-align: left;
  }

  .cart-item-qty {
    justify-content: flex-start;
  }

  .cart-item-remove {
    justify-content: flex-start;
  }
}

/* ─────────────────────────────────────────────────────────
   CHECKOUT PAGE
───────────────────────────────────────────────────────── */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}

.cs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.cs-active {
  color: #fff;
  font-weight: 700;
}

.cs-done {
  color: var(--yellow);
  font-weight: 700;
}

.cs-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .7);
}

.cs-active .cs-dot {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-dark);
}

.cs-done .cs-dot {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
}

.cs-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  margin: 0 6px 14px;
}

.cs-done-line {
  background: var(--yellow);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  align-items: start;
}

.checkout-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.checkout-card:last-of-type {
  margin-bottom: 0;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  font-size: 14.5px;
  font-weight: 800;
  background: var(--soft);
  border-bottom: 1.5px solid var(--line);
  color: var(--text);
}

.checkout-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Shipping option */
.shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.shipping-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-light);
}

.so-body {
  flex: 1;
}

.so-name {
  font-size: 13.5px;
  font-weight: 700;
  display: block;
}

.so-desc {
  font-size: 12px;
  color: var(--muted);
}

.so-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
}

/* Payment methods */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.payment-method-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.payment-method-option:hover {
  border-color: var(--green);
}

.pmo-selected {
  border-color: var(--green);
  background: var(--green-light);
}

.pmo-radio {
  accent-color: var(--green);
}

.pmo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.pmo-account {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

.checkout-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  transition: filter var(--transition), transform var(--transition);
}

.checkout-submit-btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* Order summary panel */
.checkout-order-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + var(--nav-h) + 16px);
}

.co-items {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.co-item-img {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.co-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-item-qty {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-item-name {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.co-item-name small {
  color: var(--muted);
}

.co-item-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}

.co-totals {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-order-card {
    position: static;
  }

  .cs-line {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────
   TRACK PAGE
───────────────────────────────────────────────────────── */
.track-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.track-form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.track-form-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  background: var(--green-dark);
  color: #fff;
}

.track-form-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.track-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  transition: filter var(--transition), transform var(--transition);
}

.track-submit-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Result card */
.track-result-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.trc-order-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--green-dark);
}

.trc-date {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.trc-status-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  border: 1.5px solid;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Timeline */
.trc-timeline {
  display: flex;
  align-items: center;
  padding: 20px;
  overflow-x: auto;
}

.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}

.tl-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.tl-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.tl-done .tl-dot {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
  font-size: 16px;
}

.tl-done .tl-label {
  color: var(--green);
}

.tl-current .tl-dot {
  background: var(--green);
  border-color: var(--green-mid);
  color: #fff;
}

.tl-current .tl-label {
  color: var(--green-dark);
  font-weight: 800;
}

.tl-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 4px 22px;
  min-width: 20px;
}

.tl-line-done {
  background: var(--green);
}

.trc-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.trc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: var(--soft);
  border-radius: var(--radius-sm);
}

.tdi-label {
  font-size: 11.5px;
  color: var(--muted);
}

.tdi-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.trc-items {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.trc-items-head {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 10px;
}

.trc-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.trc-item-row:last-child {
  border-bottom: none;
}

.trc-item-info {
  flex: 1;
  min-width: 0;
}

.trc-item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.trc-item-var {
  font-size: 11.5px;
  color: var(--muted);
}

.trc-item-qty {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}

.trc-item-price {
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.track-not-found {
  background: #fff;
  border: 1.5px solid #fac5c5;
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
}

.track-not-found h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  margin: 12px 0 6px;
}

.track-not-found p {
  font-size: 13.5px;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
   STATIC PAGE (page.blade.php)
───────────────────────────────────────────────────────── */
.static-page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

.static-page-content {}

.static-page-banner {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
}

.page-prose {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.page-prose h2 {
  font-size: 19px;
  margin-top: 24px;
  color: var(--green-dark);
}

.page-prose h3 {
  font-size: 16px;
  margin-top: 18px;
  color: var(--green-dark);
}

.page-prose p {
  margin: 0 0 12px;
}

.page-prose ul,
.page-prose ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.page-prose li {
  margin-bottom: 4px;
}

.page-prose a {
  color: var(--green);
  text-decoration: underline;
}

.page-prose strong {
  color: var(--text);
}

/* Sidebar */
.sidebar-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}

.sidebar-help {
  text-align: center;
}

.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--green);
}

.sidebar-help h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 6px;
}

.sidebar-help p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.sc-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13px;
  transition: background var(--transition);
}

.sc-btn:hover {
  background: var(--green-mid);
}

.sc-heading {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--line);
}

.sc-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sc-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--line-2);
  transition: color var(--transition), padding-left var(--transition);
}

.sc-links li:last-child a {
  border-bottom: none;
}

.sc-links li a:before {
  content: '›';
  color: var(--green);
  font-size: 14px;
}

.sc-links li a:hover {
  color: var(--green);
  padding-left: 4px;
}

.sidebar-contact-quick .scq-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--soft);
  color: var(--text);
  transition: background var(--transition);
}

.scq-item:last-child {
  margin-bottom: 0;
}

.scq-item:hover {
  background: var(--green-light);
  color: var(--green);
}

.scq-wa:hover {
  background: #dcfce7;
  color: #16a34a;
}

@media (max-width: 900px) {
  .static-page-layout {
    grid-template-columns: 1fr;
  }

  .page-prose {
    padding: 18px;
  }
}

/* ─────────────────────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

.faq-main {}

.faq-sidebar {}

.faq-category-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-dark);
  margin: 24px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.faq-open {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(10, 147, 76, .1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  background: none;
  transition: color var(--transition);
}

.faq-item.faq-open .faq-question {
  color: var(--green-dark);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-body {
  padding: 4px 18px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAILS PAGE (PDP)
   ═══════════════════════════════════════════════════════════ */

/* Breadcrumb bar */
.pdp-breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.pdp-breadcrumb-bar .breadcrumb-nav a {
  color: var(--muted);
}

.pdp-breadcrumb-bar .breadcrumb-nav a:hover {
  color: var(--green);
}

.pdp-breadcrumb-bar .breadcrumb-nav span {
  color: #c5d4cc;
}

.pdp-breadcrumb-bar .breadcrumb-nav .active {
  color: var(--text);
  font-weight: 600;
}

/* Main 2-column layout */
.pdp-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 36px;
  align-items: start;
  padding-top: 24px;
}

/* ── Gallery ──────────────────────────────────────────── */
.pdp-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--nav-h) + 16px);
}

.pdp-main-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: var(--soft);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
  transform-origin: 50% 50%;
}

.pdp-main-img-wrap:hover .pdp-main-img {
  transform: scale(1.65);
}

.pdp-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #c5d4cc;
}

/* Badges on image */
.pdp-img-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 4;
  pointer-events: none;
}

.pdp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pdp-badge-red {
  background: var(--red);
  color: #fff;
}

.pdp-badge-yellow {
  background: var(--yellow);
  color: var(--green-dark);
}

.pdp-badge-flash {
  background: linear-gradient(90deg, #f59e0b, #e74c3c);
  color: #fff;
}

/* Wishlist button on image */
.pdp-wishlist-form {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
}

.pdp-wishlist-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.pdp-wishlist-btn:hover {
  color: var(--red);
  transform: scale(1.1);
}

.pdp-wishlisted {
  color: var(--red);
  background: #fdeaea;
}

/* Thumbnails */
.pdp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pdp-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--soft);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb:hover {
  border-color: var(--green);
}

.pdp-thumb-active {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .18);
}

/* ── Product info ─────────────────────────────────────── */
.pdp-info {
  padding-top: 4px;
}

/* Tags */
.pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.pdp-tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  transition: opacity var(--transition);
}

.pdp-tag:hover {
  opacity: .8;
}

.pdp-tag-cat {
  background: var(--green-light);
  color: var(--green);
}

.pdp-tag-brand {
  background: #dbeafe;
  color: #1d4ed8;
}

.pdp-tag-offer {
  background: #fff7ed;
  color: #ea580c;
}

/* Product name */
.pdp-product-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 10px;
}

/* Rating row */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pdp-stars {
  display: flex;
  gap: 2px;
}

.pdp-rating-num {
  font-size: 14px;
  font-weight: 800;
  color: #f59e0b;
}

.pdp-rating-count {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline dotted;
}

/* Price block */
.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pdp-price-main {
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.pdp-price-del {
  font-size: 16px;
  color: #9aa5a0;
}

.pdp-price-badge {
  font-size: 12px;
  font-weight: 700;
  background: #fdeaea;
  color: var(--red);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* Flash countdown */
.pdp-flash-countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #fdeaea, #fff5f5);
  border: 1.5px solid #fac5c5;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 14px;
}

.pdp-flash-countdown>span {
  font-size: 12.5px;
  color: var(--red);
  font-weight: 700;
}

.pdp-cd-blocks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pdp-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  min-width: 44px;
}

.pdp-cd-block b {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.pdp-cd-block small {
  font-size: 9.5px;
  opacity: .85;
  margin-top: 1px;
}

.cd-sep {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
}

/* Meta row */
.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pdp-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pdp-meta-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.pdp-meta-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}

.pdp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.pdp-instock {
  background: #d4f3e0;
  color: #0a6e39;
}

.pdp-outstock {
  background: #fdeaea;
  color: var(--red);
}

/* Short desc */
.pdp-short-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 14px;
}

.pdp-divider {
  border: none;
  border-top: 1.5px solid var(--line);
  margin: 16px 0;
}

/* Variants */
.pdp-variants {
  margin-bottom: 16px;
}

.pdp-field-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pdp-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-variant-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.pdp-variant-chip:hover {
  border-color: var(--green);
  color: var(--green);
}

.pdp-variant-selected {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
}

.pdp-variant-disabled {
  opacity: .45;
  cursor: not-allowed;
}

.pdp-variant-radio {
  display: none;
}

.pdp-variant-out {
  font-size: 10.5px;
  color: var(--red);
}

.pdp-variant-price-note {
  font-size: 12.5px;
  color: var(--red);
  margin-top: 6px;
  font-weight: 600;
  min-height: 18px;
}

/* CTA row */
.pdp-cta-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pdp-qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdp-action-btns {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.pdp-btn-cart {
  flex: 1;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  transition: filter var(--transition), transform var(--transition);
}

.pdp-btn-cart:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #fff;
}

.pdp-btn-cart:disabled {
  background: #d0d9d5;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.pdp-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
}

.pdp-btn-buy:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #fff;
}

.pdp-btn-buy:disabled {
  background: #d0d9d5;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

/* Trust badges */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 600;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: var(--soft);
  border: 1px solid var(--line);
}

.pdp-trust-item svg {
  flex-shrink: 0;
  color: var(--green);
}

/* Share */
.pdp-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-share-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.pdp-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), filter var(--transition);
  border: none;
}

.pdp-share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.pdp-share-wa {
  background: #25d366;
  color: #fff;
}

.pdp-share-fb {
  background: #1877f2;
  color: #fff;
}

.pdp-share-copy {
  background: var(--soft);
  border: 1.5px solid var(--line);
  color: var(--muted);
}

/* ── Tabs ──────────────────────────────────────────────── */
.pdp-tabs-section {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pdp-tab-nav {
  display: flex;
  border-bottom: 1.5px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--soft);
}

.pdp-tab-nav::-webkit-scrollbar {
  display: none;
}

.pdp-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  transition: color var(--transition), border-color var(--transition);
  background: none;
}

.pdp-tab-btn:hover {
  color: var(--green);
}

.pdp-tab-btn.pdp-tab-active {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}

.pdp-tab-count {
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0 5px;
  border-radius: var(--radius-pill);
}

.pdp-tab-panel {
  display: none;
  padding: 24px 28px;
}

.pdp-tab-panel.pdp-tab-active {
  display: block;
}

/* Description prose */
.pdp-prose {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 820px;
}

.pdp-prose p {
  margin-bottom: 12px;
}

.pdp-prose h2 {
  font-size: 18px;
  color: var(--green-dark);
  margin-top: 20px;
}

.pdp-prose h3 {
  font-size: 16px;
  color: var(--green-dark);
  margin-top: 16px;
}

/* Specifications table */
.pdp-specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-specs-table tr:nth-child(even) {
  background: var(--soft);
}

.pdp-specs-table th {
  width: 36%;
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--green-dark);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.pdp-specs-table td {
  padding: 11px 16px;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.pdp-specs-table tr:last-child th,
.pdp-specs-table tr:last-child td {
  border-bottom: none;
}

/* Video */
.pdp-video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.pdp-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pdp-video-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--soft);
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition);
}

.pdp-video-link:hover {
  background: var(--green-light);
  color: var(--green);
}

/* Review summary */
.pdp-review-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--soft);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1.5px solid var(--line);
}

.pdp-rs-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pdp-rs-big {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.pdp-rs-stars {
  display: flex;
  gap: 3px;
}

.pdp-rs-total {
  font-size: 12.5px;
  color: var(--muted);
}

/* Review list */
.pdp-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.pdp-review-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--soft);
  border: 1px solid var(--line);
}

.pdp-ri-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-ri-body {
  flex: 1;
  min-width: 0;
}

.pdp-ri-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pdp-ri-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.pdp-ri-stars {
  display: flex;
  gap: 2px;
}

.pdp-ri-date {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}

.pdp-ri-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pdp-ri-comment {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}

.pdp-no-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px;
  color: var(--muted);
  text-align: center;
}

.pdp-no-review p {
  font-size: 14px;
}

/* Review form */
.pdp-review-form {
  border-top: 1.5px solid var(--line);
  margin-top: 8px;
  padding-top: 20px;
}

.pdp-review-form-head {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.pdp-rf-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-rf-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Star picker */
.pdp-star-picker {
  display: flex;
  gap: 4px;
}

.pdp-star-pick {
  background: none;
  padding: 2px;
  transition: transform var(--transition);
}

.pdp-star-pick:hover {
  transform: scale(1.2);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .pdp-layout {
    grid-template-columns: 420px 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-product-name {
    font-size: 22px;
  }

  .pdp-price-main {
    font-size: 26px;
  }

  .pdp-tab-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .pdp-tab-panel {
    padding: 16px 18px;
  }

  .pdp-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-rf-row2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pdp-thumbs .pdp-thumb {
    width: 58px;
    height: 58px;
  }

  .pdp-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pdp-action-btns {
    flex-direction: column;
  }

  .pdp-btn-cart,
  .pdp-btn-buy {
    width: 100%;
  }

  .pdp-trust {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   PDP INFO PANEL — REDESIGNED (v2)
   ═══════════════════════════════════════════════════════════ */

/* ── Price section ─────────────────────────────────────── */
.pdp-price-section {
  margin-bottom: 14px;
  padding: 14px 16px;
  background: #fff9f9;
  border: 1.5px solid #fde8e8;
  border-radius: var(--radius-md);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-disc-pill {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.pdp-offer-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  margin-top: 6px;
}

/* ── Info line (stock / SKU / brand) ───────────────────── */
.pdp-info-line {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.pdp-info-kv {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pdp-kv-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.pdp-kv-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.pdp-kv-link {
  color: var(--green);
  text-decoration: underline dotted;
}

/* ── Attribute groups (variants) ───────────────────────── */
.pdp-attr-group {
  margin-bottom: 16px;
}

.pdp-attr-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-attr-selected-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

.pdp-attr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-attr-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  line-height: 1.3;
  position: relative;
}

.pdp-attr-chip:hover:not(.pdp-attr-disabled) {
  border-color: var(--green);
  color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .1);
}

.pdp-attr-selected {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .12);
}

.pdp-attr-disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pdp-variant-radio {
  display: none;
}

.pdp-attr-out {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  background: #fde8e8;
  padding: 1px 6px;
  border-radius: 4px;
}

/* Color dot inside chip */
.pdp-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .12);
  flex-shrink: 0;
  display: inline-block;
}

/* Variant feedback */
.pdp-variant-feedback {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  min-height: 18px;
}

.pdp-vf-error {
  color: var(--red);
  font-weight: 600;
}

/* ── Quantity row ─────────────────────────────────────── */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.pdp-qty-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  min-width: 46px;
}

.pdp-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.pdp-qty-btn {
  width: 36px;
  height: 40px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.pdp-qty-btn:hover {
  background: var(--green-light);
  color: var(--green);
}

.pdp-qty-input {
  width: 52px;
  height: 40px;
  border: none;
  outline: none;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
  background: #fff;
  color: var(--text);
}

.pdp-qty-max {
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ── CTA buttons — side by side row ──────────────────────── */
.pdp-cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.pdp-btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(6, 63, 53, .22);
}

.pdp-btn-cart:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(6, 63, 53, .28);
}

.pdp-btn-cart:disabled {
  background: #d0d9d5;
  color: #a0a8a3;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

.pdp-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .25);
}

.pdp-btn-buy:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(249, 115, 22, .32);
}

.pdp-btn-buy:disabled {
  background: #d0d9d5;
  color: #a0a8a3;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

/* ── Purchase form wrapper ──────────────────────────────── */
.pdp-purchase-form {
  margin-bottom: 6px;
}

/* Override old styles that may conflict */
.pdp-cta-row {
  display: none !important;
}

.pdp-action-btns {
  display: none !important;
}

.pdp-qty-wrap {
  display: none !important;
}

@media (max-width: 600px) {
  .pdp-info-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pdp-attr-chip {
    padding: 6px 12px;
    font-size: 13px;
  }

  /* Stack buttons on very small screens */
  .pdp-cta-buttons {
    grid-template-columns: 1fr;
  }
}
}


/* ═══════════════════════════════════════════════════════════
   PDP v3 FIXES — Gallery + Button layout
   ═══════════════════════════════════════════════════════════ */

/* Gallery layout — main image + thumbs below */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Main image box — fixed reasonable height, not stretched */
.pdp-main-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: var(--soft);
  aspect-ratio: 1 / 1;
  max-height: 460px;
  /* prevent huge on big screens */
  cursor: zoom-in;
}

/* Thumbnails strip — horizontal scroll row */
.pdp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 2px 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.pdp-thumbs::-webkit-scrollbar {
  height: 4px;
}

.pdp-thumbs::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.pdp-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--soft);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.pdp-thumb-active {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .18);
}

.pdp-thumb-ph {
  font-size: 28px;
  color: #c5d4cc;
  cursor: default;
}

/* Fix right column layout: keep compact, no overstretch */
.pdp-layout {
  grid-template-columns: 460px 1fr;
  align-items: start;
}

@media (max-width: 1100px) {
  .pdp-layout {
    grid-template-columns: 380px 1fr;
  }
}

@media (max-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1fr;
  }

  .pdp-main-img-wrap {
    max-height: 360px;
  }
}

/* CTA buttons — FINAL: side by side, compact */
.pdp-cta-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  flex-direction: unset !important;
  margin-bottom: 16px;
}

.pdp-btn-cart,
.pdp-btn-buy {
  width: auto !important;
  padding: 11px 14px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  gap: 7px !important;
}

.pdp-btn-cart svg,
.pdp-btn-buy svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

/* On mobile stack them */
@media (max-width: 480px) {
  .pdp-cta-buttons {
    grid-template-columns: 1fr !important;
  }
}

/* Trust badges — more compact */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.pdp-trust-item {
  padding: 7px 10px;
  font-size: 12px;
}

/* Info panel spacing tighten */
.pdp-info {
  padding-top: 0;
}

.pdp-product-name {
  font-size: 22px;
  margin-bottom: 6px;
}

.pdp-price-section {
  margin-bottom: 10px;
  padding: 10px 14px;
}

.pdp-price-main {
  font-size: 28px;
}

.pdp-info-line {
  margin-bottom: 10px;
  padding: 8px 12px;
}

.pdp-qty-row {
  margin-bottom: 12px;
  padding: 10px 12px;
}

.pdp-attr-group {
  margin-bottom: 12px;
}

.pdp-divider {
  margin: 12px 0;
}

.pdp-short-desc {
  font-size: 13.5px;
  margin-bottom: 10px;
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM CHECKOUT PAGE  (ckp-*)
   ═══════════════════════════════════════════════════════════ */

/* ── Progress bar ───────────────────────────────────────── */
.ckp-progress-wrap {
  background: #fff;
  border-bottom: 1.5px solid var(--line);
  padding: 16px 0;
}

.ckp-progress-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.ckp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ckp-step-info {
  display: flex;
  flex-direction: column;
}

.ckp-step-num {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
}

.ckp-step-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 2px;
}

.ckp-step-done .ckp-step-name {
  color: var(--green);
}

.ckp-step-active .ckp-step-name {
  color: var(--text);
  font-weight: 800;
}

.ckp-step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}

.ckp-dot-done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.ckp-dot-active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(6, 63, 53, .12);
}

.ckp-connector {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 10px;
}

.ckp-connector-done {
  background: var(--green);
}

/* ── Page body ──────────────────────────────────────────── */
.ckp-body {
  padding: 28px 0 60px;
}

.ckp-alert {
  margin-bottom: 20px;
}

.ckp-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

/* ── Section card ───────────────────────────────────────── */
.ckp-section {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.ckp-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--line);
  background: var(--soft);
}

.ckp-section-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ckp-icon-green {
  background: var(--green-light);
  color: var(--green);
}

.ckp-icon-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.ckp-icon-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.ckp-section-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.ckp-section-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.ckp-section-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Member banner (logged in) ─────────────────────────── */
.ckp-member-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--green-light);
  border: 1.5px solid rgba(10, 147, 76, .2);
  border-radius: var(--radius-md);
}

.ckp-mb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ckp-mb-info {
  flex: 1;
  min-width: 0;
}

.ckp-mb-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
}

.ckp-mb-tag {
  font-size: 11.5px;
  color: var(--green);
  margin-top: 1px;
}

.ckp-mb-edit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid rgba(10, 147, 76, .25);
  transition: background var(--transition);
  white-space: nowrap;
}

.ckp-mb-edit:hover {
  background: var(--green);
  color: #fff;
}

/* ── Guest notice ─────────────────────────────────────── */
.ckp-guest-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fffbeb;
  color: #92400e;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.ckp-guest-notice a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

/* ── Form fields ──────────────────────────────────────── */
.ckp-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ckp-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ckp-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ckp-label-hint {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

.ckp-input-wrap {
  position: relative;
}

.ckp-input-wrap.ckp-input-icon svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}

.ckp-input-wrap.ckp-input-icon .ckp-input {
  padding-left: 40px;
}

.ckp-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.ckp-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .1);
}

.ckp-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2366726d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.ckp-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}

.ckp-err {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin-top: 3px;
}

/* ── Shipping options ─────────────────────────────────── */
.ckp-shipping-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ckp-shipping-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
}

.ckp-shipping-opt:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.ckp-opt-selected {
  border-color: var(--green);
  background: var(--green-light);
}

.ckp-opt-radio {
  display: none;
}

.ckp-opt-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.ckp-opt-body {
  flex: 1;
  min-width: 0;
}

.ckp-opt-name {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.ckp-opt-desc {
  font-size: 12px;
  color: var(--muted);
}

.ckp-opt-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  flex-shrink: 0;
}

.ckp-price-free {
  color: var(--green);
}

/* ── Payment method cards ─────────────────────────────── */
.ckp-payment-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ckp-pay-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.ckp-pay-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.ckp-pay-selected {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(10, 147, 76, .1);
}

.ckp-pay-radio {
  display: none;
}

.ckp-pay-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  flex-shrink: 0;
  overflow: hidden;
}

.ckp-pay-logo-bkash {
  background: #fde8f3;
  border-color: #f5a0c5;
}

.ckp-pay-logo-nagad {
  background: #fff3e8;
  border-color: #f5c5a0;
}

.ckp-pay-logo-rocket {
  background: #f3e8ff;
  border-color: #c5a0f5;
}

.ckp-pay-logo-online {
  background: #dbeafe;
  border-color: #93c5fd;
}

.ckp-pay-info {
  flex: 1;
  min-width: 0;
}

.ckp-pay-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.ckp-pay-number {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  font-family: monospace;
}

.ckp-pay-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  opacity: 0;
}

.ckp-pay-selected .ckp-pay-check {
  background: var(--green);
  color: #fff;
  opacity: 1;
}

/* Payment instructions */
.ckp-pay-instructions {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  margin-top: 6px;
}

.ckp-instructions-hidden {
  display: none;
}

.ckp-instr-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
}

.ckp-instr-body {
  font-size: 13px;
  color: #78350f;
  line-height: 1.7;
  white-space: pre-line;
}

.ckp-no-payment {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  background: var(--soft);
  border-radius: var(--radius-md);
}

/* ── Place order button ───────────────────────────────── */
.ckp-place-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(6, 63, 53, .28);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

.ckp-place-btn:hover:not(:disabled) {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 63, 53, .32);
}

.ckp-place-btn:disabled {
  background: #d0d9d5;
  box-shadow: none;
  cursor: not-allowed;
}

.ckp-place-total {
  background: rgba(255, 255, 255, .18);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
}

.ckp-secure-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ckp-secure-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ── Summary card ─────────────────────────────────────── */
.ckp-summary-col {
  position: sticky;
  top: calc(var(--header-h) + var(--nav-h) + 16px);
}

.ckp-summary-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ckp-summary-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  background: var(--green-dark);
  color: #fff;
}

.ckp-item-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, .18);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* Item list */
.ckp-items {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  max-height: 320px;
  overflow-y: auto;
}

.ckp-items::-webkit-scrollbar {
  width: 4px;
}

.ckp-items::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.ckp-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ckp-item-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.ckp-item-img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: var(--soft);
}

.ckp-item-ph {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.ckp-item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.ckp-item-details {
  flex: 1;
  min-width: 0;
}

.ckp-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ckp-item-variant {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

.ckp-item-unit {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.ckp-item-total {
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Totals */
.ckp-totals {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ckp-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-2);
}

.ckp-tr-discount span:last-child,
.ckp-tr-discount {
  color: var(--green);
  font-weight: 700;
}

.ckp-coupon-code {
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}

.ckp-tr-delivery {
  color: var(--muted);
}

.ckp-delivery-note {
  font-size: 11.5px;
  color: var(--muted);
}

.ckp-tr-grand {
  padding-top: 10px;
  border-top: 2px solid var(--line);
  font-size: 16px;
  font-weight: 800;
}

.ckp-tr-grand strong {
  font-size: 20px;
  color: var(--red);
}

/* Coupon */
.ckp-coupon-area {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
}

.ckp-coupon-form {
  display: flex;
  gap: 8px;
}

.ckp-coupon-input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.ckp-coupon-input:focus {
  border-color: var(--green);
}

.ckp-coupon-btn {
  padding: 9px 16px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition);
}

.ckp-coupon-btn:hover {
  background: var(--green-mid);
}

.ckp-coupon-applied {
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  background: var(--green-light);
  font-size: 12.5px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ckp-coupon-remove {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  background: #fde8e8;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid #fac5c5;
  transition: background var(--transition);
}

.ckp-coupon-remove:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.ckp-back-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: color var(--transition);
}

.ckp-back-cart:hover {
  color: var(--green);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1050px) {
  .ckp-layout {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 860px) {
  .ckp-layout {
    grid-template-columns: 1fr;
  }

  .ckp-summary-col {
    position: static;
    order: -1;
  }

  .ckp-items {
    max-height: 220px;
  }

  .ckp-field-grid {
    grid-template-columns: 1fr;
  }

  .ckp-progress-inner {
    gap: 4px;
  }

  .ckp-step-info {
    display: none;
  }

  .ckp-connector {
    min-width: 20px;
  }
}

@media (max-width: 480px) {
  .ckp-pay-card {
    padding: 11px 12px;
  }

  .ckp-place-btn {
    font-size: 14px;
    padding: 14px;
  }
}


/* ═══════════════════════════════════════════════════════════
   NAV: Download App button  +  Footer App premium buttons
   ═══════════════════════════════════════════════════════════ */

/* Nav — Download App (replaces Live Chat) */
.nav-download-app {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 12.5px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav-download-app:hover {
  background: var(--yellow-dark);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.nav-download-app svg {
  flex-shrink: 0;
}

/* Footer — premium App download buttons */
.footer-app {
  margin-top: 16px;
}

.footer-app-title {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.footer-app-btns-premium {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-app-premium-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, .18);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-app-premium-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .05), transparent);
  transition: opacity var(--transition);
}

.footer-app-premium-btn:hover {
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.footer-app-ios {
  background: rgba(0, 0, 0, .35);
  color: #fff;
}

.footer-app-android {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.footer-app-ios:hover {
  background: rgba(0, 0, 0, .55);
  color: #fff;
}

.footer-app-android:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.footer-app-premium-btn svg {
  flex-shrink: 0;
  opacity: .9;
}

.fapb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fapb-sub {
  font-size: 10px;
  opacity: .65;
  letter-spacing: .3px;
}

.fapb-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
}

.footer-app-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* Footer merchant-only action button */
.footer-action-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-merchant-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  transition: filter var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(10, 147, 76, .28);
}

.footer-merchant-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE MASTER FIX  — Android friendly
   All breakpoints: 767px (phone), 480px (small phone)
   ═══════════════════════════════════════════════════════════ */

/* ── Fly-to-cart animation ──────────────────────────────── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cart-fly-dot {
  will-change: left, top, opacity, transform;
}

.cart-btn-bounce {
  animation: cartBounce .35s cubic-bezier(.36, .07, .19, .97);
}

@keyframes cartBounce {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.35);
  }

  70% {
    transform: scale(.88);
  }

  100% {
    transform: scale(1);
  }
}

/* ── Cart sidebar: mobile = bottom sheet ────────────────── */
@media (max-width: 767px) {
  .cart-sidebar {
    /* slide UP from bottom instead of from right */
    top: auto !important;
    bottom: -100% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    transition: bottom .32s cubic-bezier(.22, 1, .36, 1) !important;
  }

  .cart-sidebar.open {
    bottom: 0 !important;
    right: 0 !important;
  }

  /* drag handle */
  .cs-head::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, .35);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cs-head {
    position: relative;
    padding-top: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TASK 1 — MOBILE HEADER FIX
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Top bar: hidden ── */
  .top-bar {
    display: none;
  }

  /* ── Header: single row logo + search + hamburger ── */
  .header-main {
    height: auto !important;
    min-height: 56px;
    padding: 8px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    flex-wrap: unset !important;
    align-items: center;
  }

  /* Logo row 1 col 1 */
  .logo {
    grid-column: 1;
    grid-row: 1;
    gap: 7px;
    min-width: 0;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 17px;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-text small {
    display: none;
  }

  /* Search: row 2, full width */
  .search {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 40px;
    border-radius: 20px;
    order: unset !important;
    flex-basis: unset !important;
    max-width: none !important;
    width: 100% !important;
  }

  .search input {
    font-size: 13px;
  }

  /* Mobile hamburger: row 1 col 3 */
  .mobile-top {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    margin-left: 0;
    position: static !important;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    background: var(--green-dark);
    border: none;
    border-radius: 8px;
    gap: 4px;
  }

  .hamburger span {
    background: #fff;
    width: 18px;
  }

  /* Cart badge row 1 col 2 — show a compact cart icon */
  .header-actions {
    display: none !important;
  }

  /* Nav: hidden on mobile */
  .nav {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   TASK 2 — SLIDER MOBILE FIX
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero-slider {
    /* no fixed height — let image dictate */
    min-height: 0 !important;
    background: var(--green-dark);
  }

  .hs-slide {
    min-height: 0 !important;
    max-height: none !important;
  }

  /* If mobile image exists — show it, hide desktop */
  .hs-img-desktop {
    display: none !important;
  }

  .hs-img-mobile {
    display: block !important;
  }

  /* No mobile image — show desktop image fully */
  .hs-slide.no-mobile .hs-img-desktop {
    display: block !important;
  }

  .hs-slide.no-mobile .hs-img-mobile {
    display: none !important;
  }

  /* All slider images: show full, no crop */
  .hs-img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
  }

  /* Overlay: sit on bottom of image, don't cover much */
  .hs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: linear-gradient(transparent, rgba(4, 44, 36, .82));
    padding: 20px 14px 14px;
    justify-content: flex-end;
  }

  .hs-overlay h2 {
    font-size: 15px;
    margin-bottom: 4px;
    max-width: 100%;
  }

  .hs-overlay p {
    font-size: 11.5px;
    display: none;
  }

  .hs-overlay .hs-text {
    display: none;
  }

  .hs-overlay .btn-yellow {
    font-size: 11.5px;
    padding: 6px 14px;
  }

  /* Arrows: smaller, positioned */
  .hs-arrow {
    width: 28px;
    height: 28px;
  }

  .hs-arrow-prev {
    left: 8px;
  }

  .hs-arrow-next {
    right: 8px;
  }

  /* Dots: bottom */
  .hs-dots {
    bottom: 6px;
  }

  .hs-dot {
    width: 7px;
    height: 7px;
  }

  .hs-dot.active {
    width: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TASK 3 — SECTION HEADINGS: no truncation
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Section head: wrap if needed, no overflow */
  .section-head {
    flex-wrap: wrap;
    gap: 6px 8px;
    align-items: center;
  }

  .section-title {
    font-size: 16px !important;
    white-space: normal !important;
    word-break: keep-all;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.35;
    padding-left: 11px;
  }

  .section-title::before {
    height: 18px;
  }

  .view-all {
    font-size: 12px;
    white-space: nowrap;
    margin-left: auto;
  }

  /* Flash countdown: smaller, no overflow */
  .flash-countdown {
    font-size: 11px;
    padding: 5px 10px;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  .flash-countdown b {
    font-size: 12px;
    min-width: 22px;
    padding: 2px 5px;
  }

  .flash-countdown span {
    display: none;
  }

  /* Section head with countdown — stack on mobile */
  .flash-section .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .flash-section .section-head .view-all {
    align-self: flex-end;
    margin-top: -4px;
  }

  /* Page padding */
  .section {
    padding: 18px 0;
  }

  /* Container */
  .container {
    width: calc(100% - 24px);
  }
}

/* ═══════════════════════════════════════════════════════════
   TASK 5 — ALL RESPONSIVE AUDITS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Benefits strip ── */
  .benefits {
    margin-top: 0 !important;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
  }

  .benefit:nth-child(1),
  .benefit:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .benefit:nth-child(2),
  .benefit:nth-child(4) {
    border-right: none;
  }

  .benefit:last-child {
    grid-column: 1 / -1;
    border-bottom: none;
  }

  .benefit-icon {
    font-size: 22px;
    width: 38px;
    height: 38px;
  }

  .benefit strong {
    font-size: 11.5px;
  }

  .benefit small {
    font-size: 10px;
  }

  /* ── Categories scroll ── */
  .cat-scroll {
    gap: 10px;
    padding: 4px 2px 10px;
  }

  .cat-card {
    flex: 0 0 100px !important;
  }

  .cat-card img,
  .cat-card .cat-icon {
    height: 80px;
  }

  .cat-card .cat-icon {
    font-size: 30px;
  }

  .cat-card .cat-name {
    font-size: 11.5px;
    padding: 7px 6px 2px;
  }

  .cat-card .cat-count {
    font-size: 10px;
    padding: 0 6px 8px;
  }

  /* ── Product grid: 2 columns ── */
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .prod-card {
    border-radius: 12px;
  }

  .prod-name {
    font-size: 12.5px;
    min-height: 32px;
  }

  .prod-price b {
    font-size: 15px;
  }

  .prod-price del {
    font-size: 11px;
  }

  .prod-brand {
    font-size: 10.5px;
  }

  .prod-stock {
    font-size: 10.5px;
  }

  .prod-cart {
    font-size: 11.5px;
    padding: 8px 6px;
    gap: 4px;
  }

  .prod-cart svg {
    width: 12px;
    height: 12px;
  }

  /* Product action buttons always visible on mobile */
  .prod-actions {
    opacity: 1 !important;
    transform: none !important;
  }

  .pa-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  /* ── Flash section ── */
  .flash-section {
    padding: 0;
  }

  /* ── Desktop footer: hidden on mobile ── */
  .footer {
    display: none !important;
  }

  /* ── Mobile bottom nav ── */
  .mobile-bottom {
    display: flex !important;
    height: 60px;
    border-top: 1px solid var(--line);
    box-shadow: 0 -3px 16px rgba(0, 0, 0, .09);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-bottom-item {
    font-size: 9.5px;
    gap: 2px;
    padding: 4px 2px;
  }

  .mobile-bottom-item svg {
    width: 21px;
    height: 21px;
  }

  /* ── Body bottom padding (above mobile nav) ── */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  /* ── Toast: above bottom nav ── */
  .toast {
    bottom: 72px;
  }

  /* ── WhatsApp float: above bottom nav ── */
  .wa-float {
    bottom: 72px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  /* ── Quick view modal ── */
  .qv-dialog {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 88vh;
    animation: qvSheetIn .28s ease;
  }

  @keyframes qvSheetIn {
    from {
      transform: translateY(100%);
      opacity: .6;
    }

    to {
      transform: none;
      opacity: 1;
    }
  }

  /* ── Catalog filter bar ── */
  .filter-bar {
    padding: 10px 12px;
  }

  .filter-form {
    gap: 6px;
  }

  .filter-search {
    height: 36px;
  }

  .filter-input {
    font-size: 13px;
  }

  .filter-select {
    height: 36px;
    font-size: 12.5px;
    padding: 0 8px;
  }

  .filter-submit {
    height: 36px;
    padding: 0 14px;
    font-size: 12.5px;
  }

  /* ── Cart sidebar: bottom sheet (override) ── */
  .cart-sidebar {
    top: auto !important;
    bottom: -100% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: 86vh;
    border-radius: 20px 20px 0 0;
  }

  .cart-sidebar.open {
    bottom: 0 !important;
    right: 0 !important;
  }

  /* ── Page hero ── */
  .page-hero {
    padding: 18px 0 16px;
  }

  .page-hero-title {
    font-size: 20px;
  }

  .page-hero-sub {
    font-size: 12.5px;
  }

  /* ── Checkout steps: compact ── */
  .ckp-progress-inner {
    gap: 0;
  }

  .ckp-step-info {
    display: none;
  }

  .ckp-step-dot {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .ckp-connector {
    min-width: 16px;
    margin: 0 4px;
  }

  .ckp-layout {
    grid-template-columns: 1fr;
  }

  .ckp-summary-col {
    position: static;
    order: -1;
  }

  .ckp-field-grid {
    grid-template-columns: 1fr;
  }

  .ckp-place-btn {
    font-size: 14px;
    padding: 14px;
  }

  /* ── Product detail ── */
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-main-img-wrap {
    max-height: 320px;
  }

  .pdp-product-name {
    font-size: 19px;
  }

  .pdp-price-main {
    font-size: 24px;
  }

  .pdp-cta-buttons {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .pdp-btn-cart,
  .pdp-btn-buy {
    font-size: 12.5px !important;
    padding: 10px 8px !important;
  }

  .pdp-trust {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .pdp-trust-item {
    font-size: 11.5px;
    padding: 7px 8px;
  }

  .pdp-tab-btn {
    font-size: 12.5px;
    padding: 11px 14px;
  }

  .pdp-tab-panel {
    padding: 14px 14px;
  }

  .pdp-thumb {
    width: 60px;
    height: 60px;
  }

  /* ── Cart page ── */
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-items-head {
    display: none;
  }

  .cart-item-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    padding: 12px;
  }

  .cart-item-product {
    grid-column: 1 / -1;
  }

  .cart-item-price {
    grid-column: 1;
    text-align: left;
  }

  .cart-item-qty {
    grid-column: 2;
    justify-content: flex-end;
  }

  .cart-item-total {
    display: none;
  }

  .cart-item-remove {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .cart-summary-col {
    order: -1;
  }

  /* ── Track page ── */
  .track-layout {
    max-width: 100%;
  }

  .trc-timeline {
    padding: 14px 10px;
  }

  .tl-step {
    min-width: 56px;
  }

  .tl-label {
    font-size: 10px;
  }

  /* ── FAQ ── */
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    display: none;
  }

  /* ── Static pages ── */
  .static-page-layout {
    grid-template-columns: 1fr;
  }

  .static-page-sidebar {
    display: none;
  }

  /* ── Contact page ── */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cf-row-2 {
    grid-template-columns: 1fr;
  }

  .cfc-head {
    font-size: 14px;
  }

  /* ── Blog ── */
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Very small phones (≤ 380px) ────────────────────────── */
@media (max-width: 380px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .prod-name {
    font-size: 11.5px;
    min-height: 30px;
  }

  .prod-price b {
    font-size: 13.5px;
  }

  .prod-cart {
    font-size: 10.5px;
    padding: 7px 4px;
  }

  .cat-card {
    flex: 0 0 88px !important;
  }

  .section-title {
    font-size: 15px !important;
  }

  .pdp-cta-buttons {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .logo-text {
    font-size: 13px;
  }
}

/* ── Tablet (768px – 1050px) ────────────────────────────── */
@media (min-width: 768px) and (max-width: 1050px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .pdp-layout {
    grid-template-columns: 360px 1fr;
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .ckp-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* ── Safe area for notch phones ─────────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-bottom {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(60px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

/* ── Smooth scroll & font rendering ────────────────────── */
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Prevent horizontal scroll ─────────────────────────── */
@media (max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    overflow-x: hidden;
  }
}