/* ============================================================
   বিশুদ্ধ প্রকৃতি — style.css
   ============================================================ */

:root {
  --green-dark: #2d5016;
  --green-mid: #4a7c2f;
  --green-light: #7ab648;
  --green-pale: #e8f2dc;
  --green-mist: #f4f9ee;
  --amber: #d4832a;
  --amber-light: #f5c842;
  --cream: #fdf8f0;
  --warm-white: #fffef9;
  --text-dark: #1a2e0a;
  --text-mid: #3d5c1e;
  --text-muted: #7a8f6a;
  --border: #dde8cc;
  --shadow-sm: 0 2px 12px rgba(45, 80, 22, .08);
  --shadow-md: 0 8px 32px rgba(45, 80, 22, .12);
  --shadow-lg: 0 20px 60px rgba(45, 80, 22, .16);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
/* ১. কন্টেইনারের স্টাইল (যাতে লেখা বাইরে না যায়) */
.topbar-container {
  background-color: #4a7c2f;
  /* আপনার টপবারের ব্যাকগ্রাউন্ড অনুযায়ী */
  padding: 4px 0;
  /* টপবারের উপরে ও নিচে প্যাডিং দিতে পারেন */
  overflow: hidden;
  /* লেখা স্ক্রিনের বাইরে গেলে হাইড হয়ে যাবে */
  white-space: nowrap;
  /* লেখা ভেঙ্গে নিচে যাবে না, এক লাইনে থাকবে */
  position: relative;
  /* এখানে আপনার বর্তমান টপবারের প্যাডিং বা অন্যান্য স্টাইল থাকবে */
}

/* ২. লেখার অ্যানিমেশন স্টাইল */
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  /* লেখা শুরু হবে কন্টেইনারের একদম ডান পাশ থেকে */
  animation: marquee 20s linear infinite;
  /* অ্যানিমেশনের নাম, সময় এবং এটি চলতেই থাকবে */
}

.marquee-content span {
  /* আপনি চাইলে এখানে লেখার কালার বা ফন্ট সাইজ দিতে পারেন */
  color: rgba(255, 255, 255, 1);
  /* আপনার টপবারের ব্যাকগ্রাউন্ড অনুযায়ী */
}

/* ৩. অ্যানিমেশনের কীফ্রেম (কোথা থেকে শুরু হবে এবং কোথায় শেষ হবে) */
@keyframes marquee {
  0% {
    transform: translate(0, 0);
    /* শুরুর অবস্থান */
  }

  100% {
    transform: translate(-100%, 0);
    /* সম্পূর্ণ লেখাটি বাম দিকে শেষ না হওয়া পর্যন্ত সরবে */
  }
}

/* ── HEADER ── */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 16px;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  line-height: 1.1;
}

.logo-text .brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Tiro Bangla', serif;
}

.logo-text .tagline {
  font-size: 11px;
  color: var(--text-muted);
}

/* Desktop search */
.desktop-search {
  flex: 1;
  max-width: 440px;
  display: flex;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .2s;
}

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

.desktop-search input {
  flex: 1;
  padding: 9px 18px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--text-dark);
}

.desktop-search button {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  font-size: 16px;
  transition: background .2s;
}

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

/* Desktop header actions */
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.header-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
  background: var(--green-mist);
}

.cart-btn {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.cart-btn:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
}

.cart-badge {
  background: var(--amber);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--green-mist);
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE RIGHT ICONS ── */
.mobile-right {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.mobile-icon-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-dark);
  transition: background .2s;
  position: relative;
}

.mobile-icon-btn:hover {
  background: var(--green-mist);
}

.cart-icon-btn {
  background: var(--green-dark);
  color: white;
  border-radius: 8px;
}

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

.cart-badge-mobile {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--amber);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── MOBILE SEARCH BAR ── */
.mobile-search-bar {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  background: var(--green-mist);
  border-top: 1px solid var(--border);
}

.mobile-search-bar.show {
  max-height: 60px;
}

.mobile-search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  width: calc(100% - 56px);
}

.mobile-search-bar button {
  width: 56px;
  height: 100%;
  border: none;
  background: var(--green-dark);
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.mobile-search-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: white;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, .15);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--green-dark);
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-sm {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.brand-sm {
  font-family: 'Tiro Bangla', serif;
  font-size: 15px;
  color: white;
  font-weight: 700;
}

.tagline-sm {
  font-size: 10px;
  color: rgba(255, 255, 255, .65);
}

.mobile-nav-close {
  background: rgba(255, 255, 255, .15);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover,
.active-link {
  background: var(--green-mist);
  color: var(--green-dark);
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
}

.mobile-subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--green-mist);
}

.mobile-nav-group.open .mobile-subnav {
  max-height: 300px;
}

.mobile-subnav-link {
  display: block;
  padding: 11px 20px 11px 36px;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .15s;
  border-bottom: 1px solid var(--border);
}

.mobile-subnav-link:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

/* ── DESKTOP NAV ── */
.desktop-nav {
  background: var(--green-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.nav-link {
  color: rgba(255, 255, 255, .85);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  border-bottom-color: var(--amber-light);
}

.nav-link.active {
  color: var(--amber-light);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  border: 1px solid var(--border);
  z-index: 200;
  overflow: hidden;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: background .15s;
}

.dropdown-item:hover {
  background: var(--green-mist);
  color: var(--green-dark);
}

/* ══════════════════════════════════════════════
   HERO SLIDER v2 — Full-Width Video Background
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  background: #111;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

.slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  line-height: 0;
  font-size: 0;
}

/* ── Slide: Full-width container ── */
.slide {
  min-width: 100%;
  height: 84vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Fallback gradient — always visible behind video ── */
.slide-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ── Video Background — sits on top of fallback ── */
.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Video shows once it can play */
.slide-video.video-ready {
  opacity: 1;
}

/* Dark overlay for text readability */
.slide-overlay-v2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* ── Text Panel — Left Side ── */
.slide-text-panel {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 680px;
  width: 55%;

  /* Hidden by default — animated in when active */
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

/* Active slide — animate text in */
.slide.slide-active .slide-text-panel {
  animation: heroSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  pointer-events: auto;
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow badge */
.slide-text-panel .slide-eyebrow {
  display: inline-block;
  background: var(--amber, #d4832a);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(212, 131, 42, 0.45);
  animation: none;
}

.slide.slide-active .slide-eyebrow {
  animation: heroItemIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* Title */
.slide-title-v2 {
  font-family: 'Tiro Bangla', serif;
  font-size: clamp(28px, 3.8vw, 52px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.slide.slide-active .slide-title-v2 {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

/* Subtitle */
.slide-subtitle-v2 {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  margin-bottom: 32px;
}

.slide.slide-active .slide-subtitle-v2 {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

/* Actions */
.slide-actions-v2 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.slide.slide-active .slide-actions-v2 {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

/* Trust Badges */
.slide-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.slide-badges span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.slide.slide-active .slide-badges {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

@keyframes heroItemIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Slide Progress Bar ── */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.slide-progress-bar {
  height: 100%;
  background: var(--amber, #d4832a);
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Slide Counter ── */
.slide-counter {
  position: absolute;
  bottom: 20px;
  right: 72px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
  letter-spacing: 1px;
}

/* ── Dots ── */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: #fff;
}

/* slider arrows removed — touch + auto only */

/* ── Buttons ── */
.btn-primary {
  background: var(--amber, #d4832a);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(212, 131, 42, 0.4);
}

.btn-primary:hover {
  background: #c07524;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 131, 42, 0.5);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}



/* ── TRUST STRIP ── */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(45, 80, 22, .06);
  margin-top: 0;
  line-height: normal;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.trust-text .t1 {
  font-size: 12px;
  color: var(--text-muted);
}

.trust-text .t2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTION WRAPPER ── */
section {
  padding: 56px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Tiro Bangla', serif;
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.view-all {
  color: var(--green-mid);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  white-space: nowrap;
}

.view-all:hover {
  gap: 8px;
  color: var(--green-dark);
}

/* ── CATEGORIES ── */
.categories-bg {
  background: var(--green-mist);
}

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

.cat-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale), transparent);
  opacity: 0;
  transition: opacity .25s;
}

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

.cat-card:hover::before {
  opacity: 1;
}

.cat-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.cat-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}

.cat-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

/* ── PRODUCTS ── */
.products-bg {
  background: white;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-mid);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Product card */
.product-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--green-dark);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .3px;
}

.product-badge.new {
  background: var(--green-mid);
}

.product-badge.sale {
  background: var(--amber);
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}

.wishlist-btn:hover {
  background: #fee;
  transform: scale(1.1);
}

.product-img-wrap {
  height: 180px;
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.4;
}

.product-weight {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Product card footer: price + cart icon */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.price-now {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
}

.price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.btn-cart-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(45, 80, 22, .3);
}

.btn-cart-icon:hover {
  background: var(--green-mid);
  transform: scale(1.05);
}

.btn-cart-icon.added {
  background: var(--amber);
}

/* ── WHY US ── */
.why-bg {
  background: var(--green-mist);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all .25s;
}

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

.why-icon {
  width: 68px;
  height: 68px;
  background: var(--green-pale);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e4010 50%, #2d5a1b 100%);
  border-radius: 20px;
  padding: 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-tag {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.promo-title {
  font-family: 'Tiro Bangla', serif;
  font-size: 34px;
  color: white;
  line-height: 1.25;
  margin-bottom: 12px;
}

.promo-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  margin-bottom: 26px;
}

.promo-emojis {
  position: relative;
  z-index: 1;
  font-size: 72px;
  line-height: 1.1;
  text-align: right;
}

/* ── REVIEWS ── */
.reviews-bg {
  background: white;
}

.review-slider-outer {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 20px;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--amber));
}

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

.review-card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-quote {
  font-size: 44px;
  line-height: 1;
  color: var(--green-pale);
  font-family: Georgia, serif;
  margin-bottom: -6px;
}

.review-stars {
  color: var(--amber);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  margin-bottom: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.reviewer-loc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.review-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--green-mid);
}

/* ── NEWSLETTER ── */
.newsletter-bg {
  background: var(--green-dark);
  padding: 60px 24px;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.newsletter-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 26px;
}

.newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.newsletter-form button {
  padding: 13px 26px;
  background: var(--amber);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  border-radius: 0 50px 50px 0;
}

.newsletter-form button:hover {
  background: #c07524;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: white;
  padding: 56px 24px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

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

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-logo-text {
  font-family: 'Tiro Bangla', serif;
  font-size: 18px;
}

.footer-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 18px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s;
}

.social-btn:hover {
  background: var(--amber);
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .95);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.footer-contact-text a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.payment-icons {
  display: flex;
  gap: 6px;
}

.payment-icon {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 380px;
  background: white;
  z-index: 301;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
}

.close-btn {
  background: var(--green-mist);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background .2s;
}

.close-btn:hover {
  background: var(--border);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 52px;
  margin-bottom: 14px;
}

.cart-empty p {
  font-size: 15px;
  margin-bottom: 18px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--green-mist);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.cart-item-weight {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--green-mist);
  color: var(--green-dark);
  font-size: 15px;
  cursor: pointer;
  transition: background .15s;
}

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

.qty-num {
  width: 34px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: white;
  outline: none;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
}

.cart-remove {
  background: none;
  border: none;
  color: #d00;
  font-size: 16px;
  cursor: pointer;
  margin-left: 6px;
  padding: 4px;
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

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

.cart-total-val {
  font-size: 13px;
  font-weight: 500;
}

.cart-grand {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 14px;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-dark);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 500;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

.fade-up-2 {
  animation: fadeUp .6s .1s ease both;
}

.fade-up-3 {
  animation: fadeUp .6s .2s ease both;
}

/* ── IMAGE UPLOAD SYSTEM ── */
.img-upload-wrap {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-upload-wrap input[type="file"] {
  display: none;
}

.img-upload-wrap .upload-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 5;
}

.img-upload-wrap:hover .upload-overlay {
  background: rgba(45, 80, 22, .55);
}

.img-upload-wrap .upload-icon {
  opacity: 0;
  color: white;
  font-size: 18px;
  transition: opacity .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.img-upload-wrap:hover .upload-icon {
  opacity: 1;
}

.img-upload-wrap .upload-icon span {
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.img-upload-wrap img.uploaded-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ── REVIEW SLIDER ── */
.review-slider-outer {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width:1024px) {
  .header-inner {
    padding: 10px 16px;
    gap: 12px;
  }

  .desktop-search {
    max-width: 280px;
  }

  .nav-link {
    padding: 12px 10px;
    font-size: 13px;
  }

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

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

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

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

  .trust-divider {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width:768px) {

  /* Show hamburger + mobile icons, hide desktop versions */
  .hamburger {
    display: flex;
  }

  .mobile-right {
    display: flex;
  }

  .desktop-search {
    display: none;
  }

  .desktop-actions {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  /* hide plain <nav> tag too (for index.html versions without .desktop-nav class) */
  nav:not(.mobile-nav-links) {
    display: none;
  }

  /* Header */
  .header-inner {
    padding: 0 14px;
    gap: 10px;
    height: 58px;
  }

  .logo-text .brand {
    font-size: 15px;
  }

  .logo-text .tagline {
    display: none;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  /* Mobile search bar hidden by default, shown on toggle */
  .mobile-search-bar {
    max-height: 0;
  }

  .mobile-search-bar.show {
    max-height: 52px;
  }

  /* Trust strip horizontal scroll */
  .trust-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-inner::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    flex-shrink: 0;
  }

  /* Hero v2 — Mobile */
  .slide {
    height: calc(94vh - 56px);
    min-height: 500px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .slider-controls {
    bottom: 16px;
  }

  /* Sections */
  section {
    padding: 36px 16px;
  }

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

  .container {
    padding: 0;
  }

  /* Categories — flex দিয়ে শেষ ২টা মাঝ বরাবর */
  .cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .cat-card {
    flex: 0 0 calc(33.333% - 7px);
    max-width: calc(33.333% - 7px);
    padding: 14px 8px;
  }

  .cat-img {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .cat-name {
    font-size: 13px;
  }

  .cat-count {
    font-size: 11px;
  }

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

  .product-img-wrap {
    height: 150px;
    font-size: 60px;
  }

  .product-name {
    font-size: 13px;
  }

  .price-now {
    font-size: 15px;
  }

  .filter-tabs {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    white-space: nowrap;
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Promo */
  .promo-banner {
    padding: 28px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .promo-title {
    font-size: 24px;
  }

  .promo-emojis {
    font-size: 50px;
    text-align: left;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 20px 14px;
  }

  .why-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .why-title {
    font-size: 14px;
  }

  .why-desc {
    font-size: 12px;
  }

  /* Reviews */
  .review-card-inner {
    padding: 18px;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-sm);
    border: none;
    gap: 10px;
    background: transparent;
  }

  .newsletter-form input {
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    background: white;
    color: var(--text-dark);
  }

  .newsletter-form button {
    border-radius: var(--radius-sm);
    padding: 13px;
  }

  .newsletter-form input::placeholder {
    color: var(--text-muted);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px 28px;
  }

  footer {
    padding: 36px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 16px;
  }

  /* Cart */
  .cart-drawer {
    width: 100%;
  }
}

@media (max-width:480px) {
  .cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .cat-card {
    flex: 0 0 calc(33.333% - 6px);
    max-width: calc(33.333% - 6px);
  }

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

  .product-img-wrap {
    height: 130px;
    font-size: 52px;
  }

  .product-info {
    padding: 10px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar {
    font-size: 11px;
    padding: 6px 12px;
  }

  .btn-cart-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* ছবির চারদিকের মিসম্যাচ দূর করার জন্য */
  #pdImage {
    padding: 0 !important;
    /* অতিরিক্ত ফাঁকা অংশ দূর করবে */
    background-color: #f5f5f5 !important;
    /* ছবির ব্যাকগ্রাউন্ডের সাথে মিলিয়ে */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }

  .pd-img-zoom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ছবিকে কন্টেইনারের ভেতরে সুন্দরভাবে ফিট করবে */
  }
}

/* ══════════════════════════════════════════
   UPLOAD OVERLAY — FRONTEND-এ DISABLE
══════════════════════════════════════════ */
.upload-overlay {
  display: none !important;
}

.img-upload-wrap {
  cursor: default !important;
  pointer-events: none !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDE — প্রিমিয়াম অ্যানিমেশন সিস্টেম
   ══════════════════════════════════════════════════════════════ */

/* ── ডিফল্ট: সব কন্টেন্ট লুকানো ── */
.slide-left-inner .slide-eyebrow,
.slide-left-inner .slide-title,
.slide-left-inner .slide-subtitle,
.slide-left-inner .slide-actions,
.slide-left-inner .slide-trust-row {
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}

.slide-right img,
.slide-emoji-fallback {
  opacity: 0;
  transform: scale(1.08) translateY(20px);
  transition: none;
}

/* ── Active Slide: স্টাগারড এন্ট্রি অ্যানিমেশন ── */
.slide.slide-active .slide-eyebrow {
  animation: heroTextIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.1s;
}

.slide.slide-active .slide-title {
  animation: heroTextIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.28s;
}

.slide.slide-active .slide-subtitle {
  animation: heroTextIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.44s;
}

.slide.slide-active .slide-actions {
  animation: heroTextIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.58s;
}

.slide.slide-active .slide-trust-row {
  animation: heroTextIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.72s;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── ছবির দিকে: জুম-ইন + ফ্লোট ── */
.slide.slide-active .slide-right img,
.slide.slide-active .slide-emoji-fallback {
  animation: heroImgReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s,
    heroFloat 5s ease-in-out infinite 1.2s;
}

@keyframes heroImgReveal {
  from {
    opacity: 0;
    transform: scale(1.12) translateY(24px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: scale(1) translateY(0px);
  }

  50% {
    transform: scale(1) translateY(-14px);
  }
}

/* ── CTA বাটন: পালস গ্লো (active slide-এ) ── */
.slide.slide-active .btn-primary {
  animation: heroBtnGlow 2.4s ease-in-out infinite 1.6s;
}

@keyframes heroBtnGlow {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(212, 131, 42, .4);
  }

  50% {
    box-shadow: 0 6px 36px rgba(212, 131, 42, .85), 0 0 0 6px rgba(212, 131, 42, .18);
  }
}

/* ── ডেকোরেটিভ: ডটেড প্যাটার্ন ওভারলে (বাম) ── */
.slide-left::after {
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  animation: dotDrift 18s linear infinite;
}

@keyframes dotDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 56px 56px;
  }
}

/* ── ডেকোরেটিভ: সার্কেল পালস ── */
.slide-left::before {
  animation: circlePulse 6s ease-in-out infinite;
}

@keyframes circlePulse {

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

  50% {
    transform: scale(1.12);
    opacity: 0.08;
  }
}

/* ── ডান পাশে: শাইন সুইপ ইফেক্ট ── */
.slide-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 40%,
      rgba(255, 255, 255, .06) 50%,
      transparent 60%);
  background-size: 200% 100%;
  z-index: 2;
  pointer-events: none;
  animation: shineSweep 4s ease-in-out infinite 2s;
}

@keyframes shineSweep {
  0% {
    background-position: -100% 0;
  }

  50% {
    background-position: 200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ── প্রোগ্রেস বার ── */
.slide-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--amber, #d4832a);
  width: 0%;
  z-index: 20;
  box-shadow: 0 0 8px rgba(212, 131, 42, .6);
  transition: none;
}

.slide-progress-bar.running {
  transition: width 5s linear;
  width: 100%;
}

/* ── ফ্লোটিং লিফ পার্টিকেলস ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  font-size: 18px;
  opacity: 0;
  animation: particleDrift linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-120px) rotate(180deg);
  }
}

/* ── স্লাইড ট্রান্সিশন স্মুথ ── */
.slides {
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

/* ── মোবাইলে অ্যানিমেশন অ্যাডজাস্ট ── */
/* Hero mobile — see HERO v2 Mobile Responsive section below */

/* ═══════════════════════════════════════
   HERO v2 — Mobile Responsive
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .slide {
    height: 90vh;
    min-height: 520px;
  }

  .slide-text-panel {
    width: 100%;
    padding: 0 22px;
    max-width: 100%;
  }

  .slide-title-v2 {
    font-size: clamp(22px, 6vw, 34px);
  }

  .slide-subtitle-v2 {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .slide-actions-v2 {
    gap: 10px;
  }

  .slide-actions-v2 .btn-primary,
  .slide-actions-v2 .btn-outline-white {
    font-size: 13px;
    padding: 10px 20px;
  }

  .slide-badges span {
    font-size: 11px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .slide-counter {
    bottom: 14px;
    right: 50px;
    font-size: 11px;
  }
}