:root {
  /* ===== Brand palette matched to Gear Bear BD logo ===== */
  --navy: #15171c;
  /* deep charcoal-black (replaces navy blue) */
  --navy-dark: #000000;
  /* pure black for hover/active states */
  --silver: #c9ccd2;
  /* metallic silver, from logo ring */
  --silver-light: #eceef1;
  /* light silver for subtle borders/bg */
  --red: #e63946;
  /* accent pop — cart badge, hover underline */
  --blue-accent: #3b82f6;
  /* secondary accent — focus rings, links */
  --light-bg: #f5f6f8;
  --green: #22a83f;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --bg-color: #f7f9fc;
  --card-bg: #ffffff;
  --text-color: #1a1a1a;
  --card-border-radius: 18px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  --dark: #1a1a2e;
  --red: #b91c3c;
  --border: #eee;
  --text-muted: #888;

  --wa-green: #25D366;
  --wa-green-dark: #1EBE5A;

  --dark: #0f1c3f;
  --green: #22a83f;
  --green-light: #f0fbf1;
  --blue: #3d6fd9;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --link-blue: #2563eb;

  --bw-bg-main: #0a0a0a;         /* Deep Rich Black */
  --bw-bg-card: #141414;         /* Dark Graphite Card Background */
  --bw-bg-card-hover: #1f1f1f;   /* Elevated Card Hover */
  --bw-border: #262626;          /* Subtle Divider Line */
  --bw-text-head: #ffffff;       /* Pure White Text */
  --bw-text-sub: #a3a3a3;        /* Silver Muted Text */
  --bw-white: #ffffff;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  margin: 0;
  background: #f6f8fb;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
}

img {
  max-width: 100%;
  display: block;
}
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--silver-light, #e0e0e0);
  position: relative;
  z-index: 2;
}

.topbar .container-fluid {
  max-width: 1400px;
}

.logo-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  text-decoration: none;
}

/* Bigger logo image with balanced negative margin to prevent topbar overflow */
.logo-img {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--silver-light, #e0e0e0);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-top: 7px;
  margin-bottom: 0px;
}

.logo-block:hover .logo-img {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.logo-icon-fallback {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #3a3d44);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-head, sans-serif);
  font-size: 24px;
  flex-shrink: 0;
  border: 2px solid var(--silver-light, #e0e0e0);
  margin-top: -10px;
  margin-bottom: -10px;
}

.search-wrap {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.search-wrap .form-control {
  border-radius: 6px 0 0 6px;
  border: 1px solid #dfe3e8;
  padding: 10px 16px;
  height: 44px;
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  transition: box-shadow .2s ease, border-color .2s ease;
  box-shadow: none;
}

.search-wrap .form-control:focus {
  border-color: var(--blue-accent, #1f8fe0);
  box-shadow: 0 0 0 3px rgba(31, 143, 224, 0.15);
}

.search-wrap .btn-search {
  border-radius: 0 6px 6px 0;
  background: var(--navy, #142850);
  border: 1px solid var(--navy, #142850);
  color: #fff;
  padding: 0 20px;
  transition: background .2s ease;
}

.search-wrap .btn-search:hover {
  background: var(--navy-dark, #0c1a36);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.top-actions .action-item {
  display: flex;
  align-items: center;
  gap: 0px;
  color: var(--navy, #142850);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.top-actions .action-item:hover {
  color: var(--blue-accent, #1f8fe0);
  transform: translateY(-1px);
}

.top-actions .action-item i {
  font-size: 19px;
  color: inherit;
  transition: color .2s ease;
}

.top-actions .cart-badge {
  position: absolute;
  top: -9px;
  right: -10px;
  background: var(--green, #28a745);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== DESKTOP NAVBAR ===================== */
.main-nav {
  background: var(--navy, #142850);
}

.main-nav .container-fluid {
  max-width: 1400px;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 15px 12px;
  color: #e9edf5;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
  border-bottom: 2px solid transparent;
}

.nav-list > li > a i {
  font-size: 11px;
  margin-left: 5px;
  transition: transform .18s ease;
}

.nav-list > li:hover > a i {
  transform: rotate(180deg);
}

.nav-list > li:hover > a {
  background: var(--navy-dark, #0c1a36);
  color: #fff;
  border-bottom-color: var(--red, #dc3545);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 6px 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
  z-index: 1000;
}

/* Alignment fix for last dropdown item */
.dropdown-panel-right {
  left: auto;
  right: 0;
}

.nav-list > li:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 9px 18px;
  color: var(--navy, #142850);
  font-size: 13.5px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.dropdown-panel a:hover {
  background: #f4f6f9;
  color: var(--blue-accent, #1f8fe0);
}

/* Sticky Header */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-spacer {
  display: none;
}

.header-spacer.active {
  display: block;
}

/* ===================== MOBILE HEADER ===================== */
.mobile-header {
  display: none;
  background: #fff;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  align-items: center;
  justify-content: space-between;
}

.mobile-header .hamburger-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy, #142850);
}

.mobile-header .mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.mobile-header .mobile-logo .logo-img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--silver-light, #e0e0e0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.mobile-header .mobile-logo .logo-icon-fallback {
  width: 52px;
  height: 52px;
  font-size: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #3a3d44);
  border: 2px solid var(--silver-light, #e0e0e0);
  margin: 0;
}

.mobile-cart-wrap {
  position: relative;
  text-decoration: none;
}

.mobile-cart-wrap i {
  font-size: 20px;
  color: var(--navy, #142850);
}

.mobile-cart-wrap .cart-badge {
  position: absolute;
  top: -8px;
  right: -9px;
  background: var(--green, #28a745);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search {
  display: none;
  padding: 12px 14px;
  background: #fff;
}

.mobile-search .input-group .form-control {
  height: 42px;
  border: 1px solid #dfe3e8;
}

.mobile-search .btn-search {
  background: var(--navy, #142850);
  border: 1px solid var(--navy, #142850);
  color: #fff;
}

/* ===================== SIDEBAR OFFCANVAS ===================== */
.offcanvas.custom-offcanvas {
  z-index: 1065;
}

.offcanvas-backdrop {
  z-index: 1060;
}

.custom-offcanvas {
  width: 300px !important;
}

.custom-offcanvas .offcanvas-header {
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.custom-offcanvas .offcanvas-header .oc-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy, #142850);
}

.custom-offcanvas .offcanvas-body {
  padding: 0;
}

.sb-block {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f1f1;
}

.sb-block .sb-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy, #142850);
}

.sb-block .sb-sub {
  font-size: 12.5px;
  color: #8a94a3;
  margin-top: 2px;
}

.sb-cat-heading {
  padding: 14px 18px 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy, #142850);
}

.sb-cat-item {
  border-bottom: 1px solid #f1f1f1;
}

.sb-cat-item .sb-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.sb-cat-item .sb-cat-toggle .toggle-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #f3f5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--navy, #142850);
  transition: all .15s ease;
}

.sb-cat-item.open .sb-cat-toggle .toggle-icon {
  background: var(--navy, #142850);
  color: #fff;
}

.sb-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8fafc;
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}

.sb-cat-item.open .sb-submenu {
  max-height: 300px;
}

.sb-submenu li a {
  display: block;
  padding: 10px 18px 10px 34px;
  font-size: 13.5px;
  color: #5c6b7a;
  text-decoration: none;
}

.sb-submenu li a:hover {
  color: var(--blue-accent, #1f8fe0);
}

/* ===================== RESPONSIVE SWITCH ===================== */
@media (max-width: 991.98px) {
  .topbar,
  .main-nav {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-search {
    display: block;
  }
}

@media (min-width: 992px) {
  .mobile-header,
  .mobile-search {
    display: none;
  }
}

@media (min-width: 1600px) {
  .topbar .container-fluid,
  .main-nav .container-fluid {
    max-width: 1520px;
  }
}

/* strat */
/* banner css start */
/* ── Hero wrapper ── */
.hero-section {
  padding-top: 15px;
  padding-bottom: 20px;
}

/* ── Shared image behaviour ── */
.hero-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ══════════════════════════════
      MOBILE  (< 992 px)
   ══════════════════════════════ */
.mobile-hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Two-column promo row */
.mobile-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mobile-promo-row .hero-img {
  border-radius: 12px;
  aspect-ratio: 164 / 98;
}

/* ── MOBILE SLIDER ── */
.mobile-slider-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 343 / 185;
  /* FIX: Prevent background show-through */
  background: #f5f5f5;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
}

.mobile-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* FIX: Hardware acceleration */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Prevent sub-pixel issues */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mobile-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  /* FIX: Ensure no gaps */
  overflow: hidden;
}

.mobile-slide>a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Mobile dots */
.mobile-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.mobile-dots .msdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.mobile-dots .msdot.active {
  background: #fff;
  transform: scale(1.4);
}

/* Mobile progress */
.mobile-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

/* Mobile arrows */
.mobile-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  transition: background 0.2s;
}

.mobile-arrow:hover {
  background: rgba(255, 255, 255, 0.42);
}

.mobile-arrow.ms-prev {
  left: 8px;
}

.mobile-arrow.ms-next {
  right: 8px;
}

/* ══════════════════════════════
      DESKTOP  (≥ 992 px)
   ══════════════════════════════ */
.desktop-hero-wrap {
  display: none;
}

@media (min-width: 992px) {
  .mobile-hero-wrap {
    display: none !important;
  }

  .desktop-hero-wrap {
    display: flex;
    gap: 20px;
    height: 432px;
    align-items: stretch;
  }

  /* Left banner – 68% */
  .desktop-main {
    flex: 0 0 68%;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    /* FIX: Prevent background show-through */
    background: #f5f5f5;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
  }

  .desktop-main a,
  .desktop-main .hero-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .desktop-main .hero-img {
    object-fit: cover;
    border-radius: 0;
  }

  /* Right column – 32% */
  .desktop-side {
    flex: 0 0 32%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
  }

  .desktop-side .promo-card {
    flex: 1;
    min-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
  }

  .desktop-side .promo-card a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
  }

  .desktop-side .hero-img {
    height: 100%;
    border-radius: 12px;
  }
}

/* ── 22-inch monitor tweak ── */
@media (min-width: 1600px) {
  .desktop-hero-wrap {
    height: 480px;
  }

  .desktop-main {
    background: #f5f5f5;
  }
}

/* ── hover effect ── */
a .hero-img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

a:hover .hero-img {
  transform: scale(1.015);
  filter: brightness(0.93);
}

.mobile-hero-wrap a {
  overflow: hidden;
  border-radius: 12px;
  display: block;
}

/* ══════════════════════════════
   DESKTOP MAIN BANNER SLIDER
══════════════════════════════ */
.main-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  /* FIX: Prevent background show-through */
  background: #f5f5f5;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
}

.main-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  /* FIX: Hardware acceleration */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Prevent sub-pixel issues */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  /* FIX: Ensure no gaps */
  overflow: hidden;
}

.main-slide>a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease, filter 0.35s ease;
  display: block;
}

.main-slide>a:hover .hero-img {
  transform: scale(1.015);
  filter: brightness(0.93);
}

/* Desktop Arrows */
.main-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  padding: 0;
}

.main-arrow:hover {
  background: rgba(255, 255, 255, 0.42);
}

.main-prev {
  left: 12px;
}

.main-next {
  right: 12px;
}

/* Desktop Dots */
.main-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.main-dots .mdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.main-dots .mdot.active {
  background: #fff;
  transform: scale(1.4);
}

/* Desktop Progress bar */
.main-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

/* banner css end */
/* end */


/* start */
/* Section Title Styling */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}

/* Professional Category Card Style */
.category-card-wrapper {
  perspective: 1000px;
}

.category-card {
  background-color: #FFFFFF;
  border-radius: 14px;              /* ✅ বেশি soft round কোণা */
  padding: 15px 5px;               /* ✅ বেশি ভেতরের জায়গা */
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);   /* ✅ softer shadow */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.08);
}


.category-image-container {
  width: 100%;
  height: 100px;    /* ✅ 75px থেকে বাড়ানো হলো */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Professional Image Styling */
.category-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* Typography for Category Titles */
.category-title {
  font-size: 12px;
  font-weight: 500;
  color: #222;
  margin: 0;
  width: 100%;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Custom Responsive Grid: 8 columns on large screens, centering other rows */
.row-large-cols-8>.col {
  flex: 0 0 auto;
  width: 12.5%;
}


@media (max-width: 1199.98px) {
  .row-large-cols-8>.col {
    width: 16.6667%;   /* 6 columns - Tablet landscape */
  }
}

@media (max-width: 991.98px) {
  .row-large-cols-8>.col {
    width: 25%;
    /* 4 columns - Tablet portrait */
  }
}

@media (max-width: 767.98px) {

  .row-large-cols-8>.col,
  .row-cols-md-4>.col {
    width: 33.3333%;
    /* 3 columns - Large phone */
  }
}

@media (max-width: 575.98px) {

  .row-large-cols-8>.col,
  .row-cols-md-4>.col,
  .row-cols-lg-5>.col {
    width: 33.3333%;
    /* 2 columns - Mobile portrait */
  }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}

  .category-image-container {
    height: 75px !important;
  }

  .category-title {
    font-size: 10px;
  }
}

/* end */

/* product css start */
.product-section {
  padding: 4px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background .3s ease, box-shadow .3s ease, transform .2s ease;
}

.view-all-link i {
  font-size: 12px;
  transition: transform .3s ease;
}

.view-all-link:hover {
  background: var(--red);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
  transform: translateY(-2px);
}

.view-all-link:hover i {
  transform: translateX(5px);
}

.view-all-link:active {
  transform: translateY(0);
}


.productSlider {
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 8px;
  padding-bottom: 8px;
}

.swiper-slide {
  position: relative;
  z-index: 1;
}

.swiper-slide:hover {
  z-index: 20;
}

.product-card {
  background: #ffffff;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.25s ease;
}

.product-card:hover {
  animation: borderPulse 0.5s ease forwards;
}

.product-card-inner {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card img,
.product-card:hover img {
  transform: none !important;
  transition: none !important;
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
  }
  30% {
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px #7ed957;
  }
}



/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #4c84ff;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0 8px 0 8px;   /* top-right sharp, বাকিটা curve */
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
}
/* Fixed Image Container & Aspect Ratio */
.product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Keep square ratio 1:1 */
  overflow: hidden;
  border-radius: 6px;
  background-color: #f0f0f0;
  margin-bottom: 12px;
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures fixed dimensions without distortion */
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}

/* Product Title */
.product-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

/* Price Box */
.price-box {
  text-align: center;
  margin-bottom: 12px;
}

.old-price {
  font-size: 13px;
  color: #4c84ff;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 500;
}

.current-price {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

/* Action Buttons */
.btn-action {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.btn-action:hover {
  opacity: 0.9;
}

.btn-add-cart {
  background-color: #0d0e12;
  color: #ffffff;
  margin-bottom: 6px;
}

.btn-buy-now {
  background-color: #4c84ff;
  color: #ffffff;
}

.swiper{
    padding:10px !important;
}

/* Swiper Navigation Custom Styling */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: bold;
}

/* product css end */



/* start */
/* ===================== OUR BRAND MARQUEE ===================== */
.brand-marquee-section {
  background: var(--light-bg);
  padding: 10px 0 10px;
  overflow: hidden;
}

.bm-heading {
  text-align: center;
  margin-bottom: 38px;
}

.bm-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.bm-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  position: relative;
  display: inline-block;
}

.bm-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--navy), var(--silver));
}

/* ---- marquee track ---- */
.bm-track-wrap {
  width: 100%;
  overflow-x: hidden;
  padding: 26px 0 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.bm-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  animation: bmScroll 30s linear infinite;
}

.bm-track-wrap:hover .bm-track {
  animation-play-state: paused;
}

@keyframes bmScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Circle frame — no inner padding now, image fills the full circle */
.bm-item {
  flex: 0 0 auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  outline: 1px solid var(--silver-light);
  box-shadow: 0 4px 14px rgba(20, 23, 28, 0.10);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, outline-color .3s ease;
}

.bm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(45%) brightness(0.98);
  transition: filter .35s ease, transform .35s ease;
}

.bm-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(20, 23, 28, 0.18);
  outline-color: var(--red);
}

.bm-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.12);
}

.bm-item:focus,
.bm-item img:focus {
  outline: 1px solid var(--silver-light);
}

/* ===================== RESPONSIVE (Mobile First → Large Desktop) ===================== */

/* ---- Extra small phones (<=359.98px) ---- */
@media (max-width: 359.98px) {
  .brand-marquee-section {
    padding: 30px 0 26px;
  }

  .bm-heading {
    margin-bottom: 20px;
  }

  .bm-title {
    font-size: 19px;
  }

  .bm-item {
    width: 66px;
    height: 66px;
    border-width: 2px;
  }

  .bm-track {
    gap: 14px;
    animation-duration: 15s;
  }

  .bm-track-wrap {
    padding: 14px 0 20px;
  }
}

/* ---- Small phones (360px - 575.98px) ---- */
@media (min-width: 360px) and (max-width: 575.98px) {
  .brand-marquee-section {
    padding: 34px 0 30px;
  }

  .bm-heading {
    margin-bottom: 24px;
  }

  .bm-eyebrow {
    font-size: 10.5px;
    letter-spacing: 2px;
  }

  .bm-title {
    font-size: 22px;
  }

  .bm-title::after {
    width: 42px;
    height: 3px;
    bottom: -8px;
  }

  .bm-item {
    width: 78px;
    height: 78px;
    border-width: 2px;
  }

  .bm-track {
    gap: 18px;
    animation-duration: 17s;
  }

  .bm-track-wrap {
    padding: 16px 0 24px;
  }
}

/* ---- Large phones / small tablets (576px - 767.98px) ---- */
@media (min-width: 576px) and (max-width: 767.98px) {
  .brand-marquee-section {
    padding: 40px 0 34px;
  }

  .bm-title {
    font-size: 24px;
  }

  .bm-item {
    width: 92px;
    height: 92px;
  }

  .bm-track {
    gap: 24px;
    animation-duration: 20s;
  }

  .bm-track-wrap {
    padding: 18px 0 26px;
  }
}

/* ---- Tablets (768px - 991.98px) ---- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .brand-marquee-section {
    padding: 46px 0 40px;
  }

  .bm-title {
    font-size: 26px;
  }

  .bm-item {
    width: 104px;
    height: 104px;
  }

  .bm-track {
    gap: 30px;
    animation-duration: 24s;
  }
}

/* ---- Small laptops (992px - 1199.98px) ---- */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .bm-title {
    font-size: 28px;
  }

  .bm-item {
    width: 114px;
    height: 114px;
  }

  .bm-track {
    gap: 38px;
    animation-duration: 27s;
  }
}

/* ---- Standard desktops (1200px - 1439.98px) ---- */
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .bm-item {
    width: 122px;
    height: 122px;
  }

  .bm-track {
    gap: 42px;
  }
}

/* ---- Large desktops (1440px - 1599.98px) ---- */
@media (min-width: 1440px) and (max-width: 1599.98px) {
  .bm-item {
    width: 130px;
    height: 130px;
  }

  .bm-track {
    gap: 48px;
  }
}

/* ---- 22 inch monitors (1600px - 1919.98px) ---- */
@media (min-width: 1600px) and (max-width: 1919.98px) {
  .bm-item {
    width: 148px;
    height: 148px;
  }

  .bm-track {
    gap: 56px;
    animation-duration: 32s;
  }
}

/* ---- 24-27 inch monitors (1920px - 2559.98px) ---- */
@media (min-width: 1920px) and (max-width: 2559.98px) {
  .brand-marquee-section {
    padding: 70px 0 60px;
  }

  .bm-heading {
    margin-bottom: 46px;
  }

  .bm-title {
    font-size: 36px;
  }

  .bm-title::after {
    width: 64px;
    height: 4px;
    bottom: -12px;
  }

  .bm-track-wrap {
    padding: 32px 0 40px;
  }

  .bm-item {
    width: 170px;
    height: 170px;
    border-width: 4px;
  }

  .bm-track {
    gap: 64px;
    animation-duration: 36s;
  }
}

/* ---- Ultra-wide / 4K monitors (2560px+) ---- */
@media (min-width: 2560px) {
  .brand-marquee-section {
    padding: 80px 0 68px;
  }

  .bm-title {
    font-size: 42px;
  }

  .bm-item {
    width: 200px;
    height: 200px;
    border-width: 4px;
  }

  .bm-track {
    gap: 80px;
    animation-duration: 42s;
  }
}

/* end */



/* start */
.about-section {
  padding: 20px 0;
  background-color: #ffffff;
  color: #333333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title Styling */
.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1a30;
  margin-bottom: 20px;
}

/* Paragraph Styling */
.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.about-subtitle {
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* List Item Styling */
.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.about-list li {
  font-size: 15px;
  color: #333333;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.about-list li i {
  color: #333333;
  font-size: 14px;
  margin-right: 8px;
  font-weight: bold;
}

/* Banner Image Styling */
.about-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .about-section {
    padding: 30px 0;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-image-wrapper {
    margin-top: 25px;
  }
}

/* end */


/* start */


/* ===== Floating Cart Button ===== */
.floating-cart-btn {
  position: fixed !important;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 999999 !important;
  border: none;
  padding: 0;
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-cart-btn.cart-btn-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-cart-btn .cart-items {
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.floating-cart-btn .cart-total {
  background: var(--blue-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
}

.floating-cart-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ✅ cart sidebar খোলা থাকলে floating button hide */
body:has(.cart-sidebar.active) .floating-cart-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===== Overlay ===== */
.cart-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999997 !important;
  margin: 0;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Sidebar ===== */
.cart-sidebar {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  height: 100vh;
  width: 400px;
  max-width: 90vw;
  background: #fff;
  z-index: 999998 !important;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 4px;
  transition: color 0.2s;
}

.cart-close:hover {
  color: #111;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

/* ===== Cart Item ===== */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-info h4,
.cart-item-title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-variant {
  font-size: 12.5px;
  color: var(--text-muted);
}

.cart-item-qty {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 6px;
}

/* ✅ qty box + price একই লাইনে */
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-box button {
  width: 26px;
  height: 26px;
  border: none;
  background: #fafafa;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-box button:hover {
  background: #f0f0f0;
}

.qty-box span {
  width: 30px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-price {
  font-size: 14.5px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

/* ✅ Delete বাটন — JS-এ ব্যবহার হওয়া .cart-item-remove class-ও কভার করা হলো */
.cart-item-remove,
.cart-item-delete {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--red);
  padding: 6px;
  align-self: flex-start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
}

.cart-item-remove:hover,
.cart-item-delete:hover {
  background: #fdeceb;
}

.cart-item-remove i,
.cart-item-remove svg,
.cart-item-delete svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
  font-size: 14px;
}

.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
}

.cart-subtotal-row span:last-child {
  font-weight: 700;
  color: #111;
  font-size: 16px;
}

.checkout-btn {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-btn:hover {
  background: #000;
}

@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
    max-width: 100%;
  }
}

/* end */

/* start */

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.whatsapp-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.whatsapp-btn:hover {
  background: var(--wa-green-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 2;
}

/* Pulse rings */
.whatsapp-btn::before,
.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.6;
  z-index: 1;
  animation: wa-pulse 2.2s ease-out infinite;
}

.whatsapp-btn::after {
  animation-delay: 0.6s;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes wa-bounce-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a2e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1a1a2e;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 100px;
    right: 16px;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* end */


/* START product -detals */

/* ===== Breadcrumb ===== */
/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--link-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .current {
  color: #111;
  font-weight: 600;
}

/* ===== Product Layout ===== */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ===== Left Column (Gallery + Tab Section) ===== */
.left-column {
  width: 100%;
}

.gallery {
  width: 100%;
}

.main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f4;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(15, 28, 63, 0.85);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
  background: #fff;
}

.slider-arrow.prev {
  left: 14px;
}

.slider-arrow.next {
  right: 14px;
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.thumb {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.thumb.active {
  border-color: var(--dark);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Description & Reviews Tab Section (Image Layout Match) ===== */
.product-tabs-container {
  margin-top: 35px;
  width: 100%;
}

.tab-headers {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 25px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.tab-btn.active {
  color: #000000;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  /* background-color: #000000; */
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Review Tab Specific Styling */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.stars-outer {
  color: #cbd5e1;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-count-text {
  color: #64748b;
  font-size: 14px;
}

.login-prompt {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

.login-prompt a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.no-reviews-box {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
  background-color: #ffffff;
}

/* Description Tab Styling */
.description-text {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
}

/* ===== Product Info ===== */
.product-info h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.meta-row {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.meta-row .brand-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}

.price-now {
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.price-old {
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.field-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.watt-options {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.watt-pill {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.watt-pill.active {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.qty-wishlist-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: #fafafa;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

.qty-btn:hover {
  background: #f0f0f0;
}

.qty-value {
  width: 46px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  transition: background 0.2s;
}

.wishlist-btn:hover {
  background: #fafafa;
}

.wishlist-btn svg {
  width: 16px;
  height: 16px;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.btn {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: filter 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:active {
  transform: scale(0.98);
}

.btn:hover {
  filter: brightness(0.92);
}

.btn-cart {
  background: var(--dark);
  color: #fff;
}

.btn-buy {
  background: var(--blue);
  color: #fff;
}

.btn-call {
  background: #0d1b3f;
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
}

.btn-ask {
  background: var(--green);
  color: #fff;
  width: 100%;
  margin-bottom: 22px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.share-section {
  margin-bottom: 26px;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.share-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 11.5px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.share-btn:hover {
  background: #fafafa;
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== Details Table ===== */
.details-section {
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.details-table th {
  text-align: left;
  padding: 6px 0;
  width: 45%;
  font-weight: 700;
  color: #111;
  vertical-align: top;
}

.details-table td {
  padding: 6px 0;
  color: #333;
}

.details-table td a,
.details-table .link-text {
  color: var(--link-blue);
}

.safety-heading {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
}

.safety-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.9;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0px 14px 10px;
  }

  .product-info h1 {
    font-size: 21px;
  }

  .price-now {
    font-size: 22px;
  }

  .action-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn {
    padding: 13px 6px;
    font-size: 13.5px;
  }

  .share-icons {
    grid-template-columns: repeat(4, 1fr);
  }

  .share-btn {
    font-size: 10px;
  }

  .qty-wishlist-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .details-table th {
    width: 42%;
    font-size: 13px;
  }

  .details-table td {
    font-size: 13px;
  }
}

/* end */


/* start */
.site-footer {
  font-family: var(--font-body, sans-serif);
  background: var(--bw-bg-main);
  color: var(--bw-text-head);
}

/* ---- Main section ---- */
.footer-main {
  background: var(--bw-bg-main);
  padding: 55px 0 35px;
  text-align: center;
  border-bottom: 1px solid var(--bw-border);
}

/* Footer Logo Wrapper */
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.footer-logo img {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-follow-label {
  color: var(--bw-text-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

/* Social Media Buttons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bw-bg-card);
  border: 1px solid var(--bw-border);
  color: var(--bw-white);
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--bw-white);
  color: #000000;
  border-color: var(--bw-white);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Contact Info Grid */
.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-info-box {
  background: var(--bw-bg-card);
  border: 1px solid var(--bw-border);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all var(--transition);
}

.footer-info-box:hover {
  background: var(--bw-bg-card-hover);
  border-color: #404040;
}

.footer-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bw-white);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.footer-info-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bw-text-sub);
}

.footer-info-text a {
  color: var(--bw-text-head);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.footer-info-text a:hover {
  color: var(--bw-white);
  text-decoration: underline;
}

/* Quick Links Section */
.footer-important {
  padding-top: 24px;
  border-top: 1px solid var(--bw-border);
}

.footer-important-title {
  color: var(--bw-text-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-important-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer-important-links a {
  color: var(--bw-text-sub);
  font-size: 13px;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
}

.footer-important-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bw-white);
  transition: width var(--transition);
}

.footer-important-links a:hover {
  color: var(--bw-white);
}

.footer-important-links a:hover::after {
  width: 100%;
}

/* Bottom Bar */
.footer-bottom {
  background: #000000;
  border-top: 1px solid var(--bw-border);
  padding: 20px 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.footer-copy {
  color: var(--bw-text-sub);
  font-size: 12.5px;
  margin: 0;
  font-weight: 400;
}

.footer-copy .highlight-text {
  color: var(--bw-white);
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
  }
  .footer-logo img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    padding: 8px 18px;
  }
  .footer-logo img {
    height: 60px;
  }
}
/* end */

/* mobile  bttom navigation bar start css  */
/* ===================== MOBILE BOTTOM NAVIGATION ===================== */
.mobile-bottom-nav {
  display: none;
  /* default off — only shows on mobile */
}

@media (max-width: 767.98px) {
  .mobile-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #fff;
    border-top: 1px solid var(--silver-light, #e5e7eb);
    box-shadow: 0 -4px 14px rgba(20, 23, 28, 0.08);
    padding: 6px 4px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
    /* notch/home-bar safe area */
  }

  .mbn-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #6b7280;
    padding: 4px 2px;
    transition: color .25s ease;
  }

  .mbn-icon {
    font-size: 18px;
    line-height: 1;
  }

  .mbn-label {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
  }

  .mbn-item.active,
  .mbn-item:hover {
    color: var(--red, #e5352c);
  }

  /* push page content up so bottom nav doesn't cover footer/content */
  body {
    padding-bottom: 62px;
  }
}

/* Desktop / tablet — completely hidden */
@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

/* mobile  bttom navigation bar end css  */





.search-wrap {
    position: relative;
}

/* ===== Dropdown (search-wrap এর width follow করবে) ===== */
.search-results-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 999;
    max-height: 380px;
    overflow-y: auto;
    box-sizing: border-box;
}

.search-results-dropdown.show {
    display: block;
}

.search-results-dropdown .no-result,
.search-results-dropdown p.text-muted {
    padding: 24px 16px;
    text-align: center;
    color: #999;
    font-size: .88rem;
}

/* ===== Search Result Item Design ===== */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
    transition: background .2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    min-width: 0;
    flex: 1;
}

.sr-brand {
    font-size: .72rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 2px;
}

.sr-name {
    font-size: .86rem;
    font-weight: 600;
    color: #1c1c1c;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sr-regular-price {
    font-size: .76rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 1px;
}

.sr-sale-price {
    font-size: .9rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}