@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   Native Sell E-Commerce UI
   Author: Senior Frontend Engineer & UI/UX Designer
   Description: Complete production-ready stylesheet with design tokens,
                semantic brand utility classes, and custom responsive components.
   ========================================================================== */

/* ==========================================================================
   1. Design Tokens (:root)
   ========================================================================== */
:root {
  /* Primary Brand Color (Native Sell Green) */
  --base-color: #0b7b3e;
  --base-color-rgb: 11, 123, 62;
  --base-color-hover: #086131;
  --base-color-active: #064e27;
  --base-color-light: #eef8f2;
  --base-color-subtle: #d7ede1;
  --base-color-dark: #063c1f;

  /* Secondary Accent Color (Vibrant Orange / Tag) */
  --base-two-color: #ff6b00;
  --base-two-rgb: 255, 107, 0;
  --base-two-hover: #e65c00;
  --base-two-light: #fff5ee;
  --base-two-dark: #cc5200;

  /* Semantic Framework Aliases */
  --primary-color: var(--base-color);
  --primary-color-rgb: var(--base-color-rgb);
  --secondary-color: var(--base-two-color);
  --secondary-color-rgb: var(--base-two-rgb);

  /* Semantic Component & Theme Tokens (Linked to Brand) */
  --footer-bg: var(--base-color-dark);
  --footer-border: var(--base-color-active);
  --footer-text: var(--base-color-subtle);
  --footer-link: var(--base-color-subtle);
  --footer-link-hover: var(--white);
  --trust-bar-bg: var(--base-color-light);
  --trust-bar-border: var(--base-color-subtle);

  /* Status Colors */
  --danger-color: #e53935;
  --danger-light: #fdeaea;
  --warning-color: #f59e0b;
  --warning-light: #fef3c7;
  --info-color: #0288d1;
  --info-light: #e1f5fe;

  /* Typography & Neutrals */
  --font-bn: 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-fr: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-main: var(--font-bn);
  --heading-color: #1e293b;
  --text-color: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-color-light: #f1f5f9;
  --body-bg: #f8faf9;
  --card-bg: #ffffff;
  --white: #ffffff;
  --black: #0f172a;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 28px rgba(11, 123, 62, 0.12);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 50rem;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.25s ease-in-out;
  --transition-slow: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Specific Progress & Component Sizing Utilities */
.deal--w-60 { width: 60% !important; }
.deal--w-53 { width: 53% !important; }
.deal--w-45 { width: 45% !important; }
.deal--w-46 { width: 46% !important; }
.deal--w-50 { width: 50% !important; }
.user-avatar-placeholder { width: 40px; height: 40px; }
.qv-img { max-height: 240px; }
.qv-cart-btn { width: auto !important; height: auto !important; }
.qv-wishlist-btn { position: static !important; width: 44px !important; height: 44px !important; }


/* ==========================================================================
   2. Global & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 0.9375rem; /* 15px */
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--base-color);
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Enhanced Wide Container for Modern Desktop */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ==========================================================================
   3. Semantic Brand Classes (Framework Agnostic)
   ========================================================================== */
.text--base { color: var(--base-color) !important; }
.text--base-two { color: var(--base-two-color) !important; }
.text--primary { color: var(--primary-color) !important; }
.text--secondary { color: var(--secondary-color) !important; }
.text--heading { color: var(--heading-color) !important; }
.text--muted { color: var(--text-muted) !important; }

.bg--base { background-color: var(--base-color) !important; color: var(--white) !important; }
.bg--base-two { background-color: var(--base-two-color) !important; color: var(--white) !important; }
.bg--base-light { background-color: var(--base-color-light) !important; }
.bg--base-subtle { background-color: var(--base-color-subtle) !important; }
.bg--primary { background-color: var(--primary-color) !important; color: var(--white) !important; }
.bg--secondary { background-color: var(--secondary-color) !important; }
.bg--surface { background-color: var(--white) !important; }

.border--base { border-color: var(--base-color) !important; }
.border--base-two { border-color: var(--base-two-color) !important; }
.border--light { border-color: var(--border-color) !important; }

/* Reusable Buttons */
.btn--base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--base-color);
  color: var(--white);
  border: 1px solid var(--base-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn--base:hover, .btn--base:focus-visible {
  background-color: var(--base-color-hover);
  border-color: var(--base-color-hover);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(var(--base-color-rgb), 0.35);
  transform: translateY(-1px);
}

.btn--base:active {
  background-color: var(--base-color-active);
  transform: translateY(0);
}

.btn--base-two {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--base-two-color);
  color: var(--white);
  border: 1px solid var(--base-two-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn--base-two:hover {
  background-color: var(--base-two-hover);
  border-color: var(--base-two-hover);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(var(--base-two-rgb), 0.35);
  transform: translateY(-1px);
}

.btn--outline-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--base-color);
  border: 1.5px solid var(--base-color);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn--outline-base:hover {
  background-color: var(--base-color);
  color: var(--white);
}

.btn--pill {
  border-radius: var(--radius-pill) !important;
}

/* Reusable Custom Components */
.custom--card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.custom--card:hover {
  border-color: rgba(var(--base-color-rgb), 0.3);
  box-shadow: var(--shadow-hover);
}

.custom--badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  line-height: 1.2;
}

.custom--badge-discount {
  background-color: var(--danger-color);
  color: var(--white);
}

.custom--badge-base {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

.custom--badge-pill {
  border-radius: var(--radius-pill);
}

.custom--input {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-color);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.custom--input:focus {
  outline: none;
  border-color: var(--base-color);
  box-shadow: 0 0 0 3px rgba(var(--base-color-rgb), 0.18);
}

/* Password Input with Show/Hide Toggle */
.password--input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password--input-wrap .custom--input {
  padding-right: 2.75rem;
}

.password--toggle-btn {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.15rem;
  padding: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color var(--transition-fast);
}

.password--toggle-btn:hover {
  color: var(--base-color);
}

.custom--section {
  padding: 2.25rem 0;
}

.section--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section--title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section--link {
  color: var(--base-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition-fast);
}

.section--link:hover {
  color: var(--base-color-hover);
  transform: translateX(3px);
}

/* ==========================================================================
   4. Desktop Header & Navigation
   ========================================================================== */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: var(--shadow-xs);
}

/* Top Bar */
.header--top {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color-light);
}

/* Vertical centering for all header--top columns */
.header--top .row > [class*="col"] {
  display: flex;
  align-items: center;
}

.header--top .row > .col {
  display: flex;
  align-items: center;
}

.header--brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.header--brand-logo {
  height: 48px;
  width: auto;
}

/* Location Selector */
.header--location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--border-color-light);
  border: 1px solid var(--border-color);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header--location-btn:hover {
  border-color: var(--base-color);
  color: var(--base-color);
  background-color: var(--base-color-light);
}

.header--location-btn i {
  color: var(--base-color);
}

/* Search Bar */
.header--search-form {
  position: relative;
  width: 100%;
}

.header--search-group {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border: 2px solid var(--base-color);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.header--search-group:focus-within {
  box-shadow: 0 0 0 4px rgba(var(--base-color-rgb), 0.15);
}

.header--search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-color);
  outline: none;
}

.header--search-input::placeholder {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.header--search-mic {
  background: none;
  border: none;
  color: var(--base-color);
  font-size: 1.15rem;
  padding: 0 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.header--search-mic:hover {
  transform: scale(1.1);
}

.header--search-btn {
  background-color: var(--base-color);
  border: none;
  color: var(--white);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background-color var(--transition-fast);
}

.header--search-btn:hover {
  background-color: var(--base-color-hover);
}

/* Search Suggestions Dropdown */
.search--suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  display: none;
  overflow: hidden;
}

.search--suggestions.show {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.search--suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color-light);
  font-size: 0.9rem;
  transition: background var(--transition-fast);
}

.search--suggestion-item:last-child {
  border-bottom: none;
}

.search--suggestion-item:hover {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

/* Right Header Actions */
.header--actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header--action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--border-color-light);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all var(--transition-fast);
}

/* Fix Bootstrap Icons default line-height causing bottom padding illusion */
.header--action-btn i,
.header--location-btn i,
.header--user-btn i,
.header--lang-dropdown .dropdown-toggle i,
.header--search-btn i,
.header--search-mic i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal;
}

.header--action-btn:hover {
  background-color: var(--base-color-light);
  color: var(--base-color);
  border-color: var(--base-color);
}

.header--action-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: var(--base-color);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  padding: 0 4px;
}

.header--lang-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  flex-shrink: 0;
}

.header--lang-dropdown .dropdown-toggle::after {
  margin-left: 0.25rem;
}

/* Language Dropdown Menu Theming */
.header--lang-dropdown .dropdown-menu {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 0.35rem;
  min-width: 135px;
  margin-top: 0.5rem !important;
}

.header--lang-dropdown .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  transition: all var(--transition-fast);
}

.header--lang-dropdown .dropdown-item:hover,
.header--lang-dropdown .dropdown-item:focus {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

.header--lang-dropdown .dropdown-item.active,
.header--lang-dropdown .dropdown-item:active {
  background-color: var(--base-color) !important;
  color: var(--white) !important;
  font-weight: 600;
}

/* Global Bootstrap Dropdown Active State Theme Override */
.dropdown-item.active, 
.dropdown-item:active {
  background-color: var(--base-color) !important;
  color: var(--white) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

/* Form Check / Inputs Theme Override */
.form-check-input:checked {
  background-color: var(--base-color) !important;
  border-color: var(--base-color) !important;
}

.form-check-input:focus {
  border-color: var(--base-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(var(--base-color-rgb), 0.25) !important;
}

.header--user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.header--user-btn:hover {
  background-color: var(--base-color-light);
  border-color: var(--base-color);
  color: var(--base-color);
}

/* Secondary Navigation Row */
.header--bottom {
  padding: 0.4rem 0;
  background-color: var(--white);
}

.header--category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background-color: var(--base-color);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 220px;
  transition: background-color var(--transition-fast);
}

.header--category-btn:hover {
  background-color: var(--base-color-hover);
  color: var(--white);
}

.header--category-btn .bi-chevron-down {
  display: inline-block;
  transition: transform var(--transition-normal);
}

.header--category-btn.show .bi-chevron-down,
.header--category-btn[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.header--category-menu {
  width: 275px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0;
  margin-top: 0.5rem !important;
  overflow: visible !important;
}

.header--category-menu .category--item {
  list-style: none;
  position: static;
}

.header--category-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: all var(--transition-fast);
  cursor: pointer;
  border-left: 3px solid transparent;
}

.header--category-menu .category--item:hover > .dropdown-item,
.header--category-menu .category--item.active-hover > .dropdown-item,
.header--category-menu .dropdown-item:hover {
  background-color: var(--base-color-light);
  color: var(--base-color);
  padding-left: 1.45rem;
  border-left-color: var(--base-color);
  font-weight: 600;
}

.header--category-menu .dropdown-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.header--category-menu .cat--arrow {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.header--category-menu .category--item:hover .cat--arrow,
.header--category-menu .category--item.active-hover .cat--arrow {
  transform: translateX(4px);
  color: var(--base-color);
}

/* Subcategory Flyout Panel */
.subcat--flyout {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 660px;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-left: 1px solid #e2e8f0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 18px 18px 36px rgba(0, 0, 0, 0.09);
  padding: 1.25rem 1.5rem;
  z-index: 1055;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(8px);
  flex-direction: column;
}

.header--category-menu .category--item:hover .subcat--flyout,
.header--category-menu .category--item.active-hover .subcat--flyout {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

/* Subcategory Panel Header */
.subcat--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-color-light);
}

.subcat--header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
}

.subcat--header-title img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.subcat--header-badge {
  font-size: 0.72rem;
  background-color: var(--base-color-light);
  color: var(--base-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.subcat--view-all-link {
  font-size: 0.82rem;
  color: var(--base-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.subcat--view-all-link:hover {
  gap: 0.55rem;
  color: var(--base-color-dark);
}

/* 3-Level Subcategory Hierarchy (Category -> Subcategory -> Sub-subcategory) */
.subcat--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.subcat--col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.subcat--group-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--border-color-light);
}

.subcat--group-link {
  color: var(--heading-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.15s ease;
}

.subcat--group-link i {
  color: var(--base-color);
  font-size: 0.9rem;
}

.subcat--group-link:hover {
  color: var(--base-color);
}

.subcat--list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.subcat--link {
  font-size: 0.84rem;
  color: #4b5563;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
  transition: all 0.15s ease;
}

.subcat--link:hover {
  color: var(--base-color);
  padding-left: 5px;
  font-weight: 600;
}

.subcat--tag-hot {
  font-size: 0.68rem;
  background-color: #fee2e2;
  color: #dc2626;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.subcat--tag-new {
  font-size: 0.68rem;
  background-color: #e0f2fe;
  color: #0284c7;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
}

/* 2-Level Direct Subcategory Cards Grid (Category -> Subcategory) */
.subcat--direct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.subcat--direct-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background-color: #f8fafc;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.subcat--direct-card:hover {
  background-color: var(--base-color-light);
  border-color: rgba(11, 123, 62, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 123, 62, 0.08);
}

.subcat--direct-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.subcat--direct-info {
  display: flex;
  flex-direction: column;
}

.subcat--direct-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.15s ease;
}

.subcat--direct-card:hover .subcat--direct-title {
  color: var(--base-color);
}

.subcat--direct-count {
  font-size: 0.74rem;
  color: #64748b;
}

/* Mixed Subcategory: Leaf Subcategory without child items */
.subcat--tag-direct {
  font-size: 0.68rem;
  background-color: #f1f5f9;
  color: #475569;
  padding: 1px 7px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.subcat--leaf-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background-color: #f8fafc;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.65rem;
}

.subcat--leaf-card:last-child {
  margin-bottom: 0;
}

.subcat--leaf-card:hover {
  background-color: var(--base-color-light);
  border-color: rgba(11, 123, 62, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 123, 62, 0.08);
}

.subcat--leaf-top {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.subcat--leaf-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--base-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.subcat--leaf-details {
  display: flex;
  flex-direction: column;
}

.subcat--leaf-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
  transition: color 0.15s ease;
}

.subcat--leaf-card:hover .subcat--leaf-title {
  color: var(--base-color);
}

.subcat--leaf-desc {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
}

.subcat--leaf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #e2e8f0;
}

.subcat--leaf-badge {
  font-size: 0.7rem;
  color: var(--base-color);
  font-weight: 600;
}

.subcat--leaf-arrow {
  font-size: 0.72rem;
  color: var(--base-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.subcat--leaf-card:hover .subcat--leaf-arrow {
  gap: 0.45rem;
}

/* Subcategory Promotional Footer Card */
.subcat--promo {
  margin-top: auto;
  padding-top: 1rem;
}

.subcat--promo-box {
  background: linear-gradient(135deg, rgba(11, 123, 62, 0.08) 0%, rgba(11, 123, 62, 0.02) 100%);
  border: 1px dashed rgba(11, 123, 62, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subcat--promo-badge {
  background: var(--base-color);
  color: #ffffff;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 2px;
}

.subcat--promo-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.subcat--promo-btn {
  background: var(--base-color);
  color: #ffffff !important;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.subcat--promo-btn:hover {
  background: var(--base-color-dark);
  transform: translateY(-1px);
}

.header--nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}

.header--nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.header--nav-link:hover,
.header--nav-link.active {
  color: var(--base-color);
}

.header--nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--base-color);
  border-radius: 2px;
}

/* ==========================================================================
   5. Mobile Header & Offcanvas
   ========================================================================== */
.mobile--header {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.mobile--header.is-sticky {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.mobile--header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.mobile--menu-toggle,
.mobile--icon-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
  color: var(--heading-color);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  transition: all var(--transition-fast);
}

.mobile--menu-toggle i,
.mobile--icon-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  vertical-align: 0;
  margin: 0;
}

.mobile--menu-toggle {
  font-size: 1.25rem;
}

.mobile--menu-toggle:hover,
.mobile--menu-toggle:active,
.mobile--icon-btn:hover,
.mobile--icon-btn:active {
  background: var(--base-color-light);
  border-color: rgba(var(--base-color-rgb), 0.25);
  color: var(--base-color);
  transform: scale(0.94);
}

.mobile--brand-logo {
  height: 32px;
  width: auto;
  max-width: 135px;
  object-fit: contain;
  display: block;
}

.mobile--sidebar-logo {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.mobile--header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mobile--lang-dropdown .dropdown-menu {
  min-width: 135px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  margin-top: 6px !important;
}

.mobile--lang-btn {
  height: 34px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--heading-color);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.mobile--lang-btn:hover,
.mobile--lang-btn:focus,
.mobile--lang-btn.show {
  background: var(--base-color-light);
  border-color: rgba(var(--base-color-rgb), 0.35);
  color: var(--base-color);
  transform: scale(0.96);
}

.mobile--header-bottom {
  margin-top: 0.35rem;
  padding-bottom: 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Location Delivery Chip */
.mobile--location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  background: rgba(var(--base-color-rgb), 0.05);
  border: 1px solid rgba(var(--base-color-rgb), 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  color: var(--heading-color);
  cursor: pointer;
  align-self: flex-start;
  transition: all var(--transition-fast);
}

.mobile--location-chip:hover,
.mobile--location-chip:active {
  background: rgba(var(--base-color-rgb), 0.1);
  border-color: rgba(var(--base-color-rgb), 0.25);
  transform: scale(0.98);
}

.mobile--location-chip .location-label {
  color: var(--text-muted);
  font-weight: 500;
}

.mobile--location-chip .current-location-text {
  color: var(--heading-color);
}

/* Modern App-Style Search Bar */
.mobile--search-wrap {
  position: relative;
  width: 100%;
}

.mobile--search-bar {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.3rem 0.2rem 0.8rem;
  height: 40px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-fast);
}

.mobile--search-bar:focus-within {
  background: #ffffff;
  border-color: var(--base-color);
  box-shadow: 0 0 0 3px rgba(var(--base-color-rgb), 0.14);
}

.mobile--search-bar .mobile--search-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.mobile--search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.35rem 0.4rem;
  font-size: 0.85rem;
  outline: none;
  color: var(--text-color);
  min-width: 0;
}

.mobile--search-input::placeholder {
  color: #94a3b8;
  font-size: 0.825rem;
  transition: opacity 0.25s ease;
}

.mobile--mic-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--base-color-light);
  color: var(--base-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.mobile--mic-btn:hover,
.mobile--mic-btn:active {
  background: var(--base-color);
  color: var(--white);
  transform: scale(1.08);
}

.mobile--search-suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  display: none;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.mobile--search-suggestions.show {
  display: block;
  animation: fadeInDown 0.2s ease;
}

/* Mobile Bottom Navigation Bar (Sticky) */
.mobile--bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  z-index: 1030;
  padding: 0.4rem 0.5rem;
}

.mobile--bottom-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile--bottom-nav-item {
  flex: 1;
  text-align: center;
}

.mobile--bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.2rem;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  gap: 0.15rem;
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
  transition: color var(--transition-fast);
}

.mobile--bottom-nav-link i {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
}

.mobile--bottom-nav-link span:not(.mobile--bottom-nav-badge) {
  line-height: 1;
  display: block;
}

.mobile--bottom-nav-link.active,
.mobile--bottom-nav-link:hover {
  color: var(--base-color);
}

.mobile--bottom-nav-badge {
  position: absolute;
  top: -2px;
  right: 18%;
  background-color: var(--base-color);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Offcanvas Drawer */
.offcanvas {
  max-width: 320px;
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-color-light);
  padding: 1rem 1.25rem;
}

.offcanvas-body {
  padding: 1.25rem;
}

.mobile-nav--group {
  margin-bottom: 1.5rem;
}

.mobile-nav--heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mobile-nav--list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav--link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav--link i {
  font-size: 1.15rem;
  color: var(--base-color);
}

.mobile-nav--link:hover,
.mobile-nav--link.active {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

/* ==========================================================================
   6. Hero Slider Section
   ========================================================================== */
.hero--section {
  padding: 1.25rem 0 2rem;
}

.hero--slider-wrapper {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero--slide {
  position: relative;
  padding: 3.5rem 4rem;
  width: 100%;
  aspect-ratio: 1200 / 440;
  min-height: 220px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
}

.hero--slide-link {
  display: block;
  cursor: pointer;
}

.hero--content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero--badge {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #245738;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.hero--title {
  font-size: 2.65rem;
  font-weight: 800;
  color: #0d3d1e;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero--desc {
  font-size: 1.08rem;
  color: #375340;
  margin-bottom: 1.75rem;
  max-width: 480px;
  line-height: 1.6;
}

/* Slider Controls */
.hero--btn-prev,
.hero--btn-next {
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.hero--btn-prev { left: 1rem; }
.hero--btn-next { right: 1rem; }

.hero--btn-prev:hover,
.hero--btn-next:hover {
  background-color: var(--base-color);
  color: var(--white);
  border-color: var(--base-color);
}

.hero--btn-prev::after,
.hero--btn-next::after {
  font-size: 1rem;
  font-weight: bold;
}

.hero--pagination {
  bottom: 1rem !important;
}

.hero--pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: var(--text-muted);
  opacity: 0.4;
  transition: all var(--transition-normal);
}

.hero--pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: var(--radius-pill);
  background-color: var(--base-color);
  opacity: 1;
}

/* ==========================================================================
   7. Category Section
   ========================================================================== */
.category--section {
  padding: 1.5rem 0 2rem;
}

.category--card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem 1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  height: 100%;
}

.category--card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--base-color-rgb), 0.4);
  box-shadow: var(--shadow-hover);
}

.category--image-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform var(--transition-normal);
}

.category--card:hover .category--image-wrap {
  transform: scale(1.1);
}

.category--image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category--name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.category--card:hover .category--name {
  color: var(--base-color);
}

/* ==========================================================================
   8. Popular Products Section & Filter Pills
   ========================================================================== */
.popular--products-section {
  padding: 1.5rem 0 2.5rem;
}

/* Filter Pills Bar */
.filter--pills-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  scrollbar-width: none; /* Firefox */
}

.filter--pills-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.filter--pill {
  white-space: nowrap;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter--pill:hover {
  border-color: var(--base-color);
  color: var(--base-color);
}

.filter--pill.active {
  background-color: var(--base-color);
  color: var(--white);
  border-color: var(--base-color);
  box-shadow: 0 4px 10px rgba(var(--base-color-rgb), 0.25);
}

/* ==========================================================================
   9. Reusable Product Card Component
   ========================================================================== */
.product--card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-normal);
}

.product--card:hover {
  border-color: rgba(var(--base-color-rgb), 0.35);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product--card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
}

.product--card-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-fast);
}

.product--card-wishlist:hover {
  color: var(--danger-color);
  border-color: var(--danger-color);
  background-color: var(--danger-light);
}

.product--card-wishlist.active {
  color: var(--danger-color);
  background-color: var(--danger-light);
  border-color: var(--danger-color);
}

.product--card-image-wrap {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}

.product--card-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product--card:hover .product--card-image {
  transform: scale(1.06);
}

.product--card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product--card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product--card-title a:hover {
  color: var(--base-color);
}

.product--card-weight {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product--card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product--card-current-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--base-color);
}

.product--card-old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product--card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}

.product--card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warning-color);
}

.product--card-rating i {
  font-size: 0.95rem;
}

.product--card-cart-btn {
  background-color: var(--base-color);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product--card-cart-btn:hover {
  background-color: var(--base-color-hover);
  box-shadow: 0 4px 10px rgba(var(--base-color-rgb), 0.3);
  transform: scale(1.05);
}

.product--card-cart-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   10. Promotional Banner Section (Middle Split)
   ========================================================================== */
.promo--section {
  padding: 1.5rem 0 2.5rem;
}

.promo--card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.promo--card:hover {
  transform: translateY(-3px);
}

/* Left Promo (Business Ad) */
.promo--card-business {
  background-color: #eef7ee;
  border: 1px solid #d5ecd6;
}

.promo--card-business:hover {
  box-shadow: 0 8px 24px rgba(11, 123, 62, 0.12);
}

/* Right Promo (Big Deals) */
.promo--card-deals {
  background-color: #fff5f0;
  border: 1px solid #fedfd2;
}

.promo--card-deals:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12);
}

.promo--card-content {
  position: relative;
  z-index: 2;
  max-width: 320px;
}

.promo--card-sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.35rem;
}

.promo--card-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.promo--card-business .promo--card-title {
  color: var(--base-color);
}

.promo--card-deals .promo--card-title {
  color: var(--danger-color);
}

.promo--card-visual {
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.promo--card-visual img {
  max-height: 125px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Top Shops Section (শীর্ষ শপসমূহ)
   ========================================================================== */
.shops--section {
  padding: 1.5rem 0 2.5rem;
}

.shop--card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: all var(--transition-normal);
}

.shop--card:hover {
  border-color: rgba(var(--base-color-rgb), 0.35);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.shop--card-verified-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--base-color);
  font-size: 1.05rem;
  line-height: 1;
}

.shop--card-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--body-bg);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 0.4rem;
  transition: transform var(--transition-normal), border-color var(--transition-fast);
}

.shop--card:hover .shop--card-logo-wrap {
  transform: scale(1.06);
  border-color: var(--base-color);
}

.shop--card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop--card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.shop--card-name a {
  color: inherit;
  transition: color var(--transition-fast);
}

.shop--card-name a:hover {
  color: var(--base-color);
}

.shop--card-type {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.shop--card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.775rem;
  margin-bottom: 0.45rem;
}

.shop--card-rating {
  font-weight: 700;
  color: var(--warning-color);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.shop--card-items {
  color: var(--text-muted);
}

.shop--card-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.shop--card-location i {
  color: var(--base-color);
}

.shop--card-btn {
  margin-top: auto;
  width: 100%;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   11. Best Deals Section (সেরা অফার)
   ========================================================================== */
.deals--section {
  padding: 1.5rem 0 2.5rem;
}

.deal--product-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all var(--transition-normal);
}

.deal--product-card:hover {
  border-color: rgba(var(--danger-color), 0.35);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.deal--discount-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background-color: var(--danger-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.deal--progress-box {
  margin-top: 0.65rem;
  margin-bottom: 0.25rem;
}

.deal--progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.deal--progress-bar {
  height: 5px;
  background-color: var(--border-color);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.deal--progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--base-two-color), var(--danger-color));
  border-radius: var(--radius-pill);
  transition: width 1s ease-in-out;
}

.deal--cart-btn {
  margin-top: 0.65rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background-color: var(--base-color);
  color: var(--white);
  border: 1px solid var(--base-color);
  width: 100% !important;
  height: auto !important;
  min-height: 36px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.deal--cart-btn:hover {
  background-color: var(--base-color-hover);
  border-color: var(--base-color-hover);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(var(--base-color-rgb), 0.3);
}

.deal--cart-btn i {
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .deal--product-card {
    padding: 0.75rem 0.65rem;
  }
  .deal--cart-btn {
    padding: 0.38rem 0.35rem;
    font-size: 0.785rem;
    gap: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .deal--product-card {
    padding: 0.65rem 0.5rem;
  }
  .deal--cart-btn {
    padding: 0.35rem 0.25rem;
    font-size: 0.75rem;
    min-height: 32px;
    gap: 0.2rem;
  }
  .deal--cart-btn i {
    font-size: 0.85rem;
  }
  .deal--progress-info {
    font-size: 0.68rem;
  }
  .deal--discount-tag {
    top: 0.45rem;
    left: 0.45rem;
    font-size: 0.68rem;
    padding: 0.15rem 0.4rem;
  }
}

/* ==========================================================================
   Top Brands Section (শীর্ষ ব্র্যান্ডসমূহ)
   ========================================================================== */
.brands--section {
  background-color: var(--base-color-light);
  padding: 2.5rem 0 3rem;
  width: 100%;
}

.brands--swiper {
  padding: 0.75rem 0.25rem 1.25rem;
  overflow: hidden;
}

.brand--card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: all var(--transition-normal);
}

.brand--card-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 auto 0.85rem;
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.brand--card:hover .brand--card-circle {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(11, 123, 62, 0.18);
  border-color: rgba(var(--base-color-rgb), 0.25);
}

.brand--card-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.brand--card:hover .brand--card-logo {
  transform: scale(1.06);
}

.brand--card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.brand--card:hover .brand--card-name {
  color: var(--base-color);
}

.brand--card-category {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .brand--card-circle {
    width: 96px;
    height: 96px;
    padding: 8px;
    margin-bottom: 0.65rem;
  }
  .brand--card-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .brand--card-name {
    font-size: 0.9rem;
  }
  .brand--card-category {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   12. Free Services & Support Section (ফ্রি সার্ভিস ও সহায়তা)
   ========================================================================== */
.services--section {
  padding: 1.5rem 0 3rem;
}

.service--card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--transition-normal);
  height: 100%;
}

.service--card:hover {
  border-color: var(--base-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service--card-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service--card-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service--card-title-en {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.15rem;
}

.service--card-title-bn {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service--card-link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--base-color);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.service--card:hover .service--card-link {
  gap: 0.45rem;
}

/* ==========================================================================
   13. Floating Buttons (Scroll to Top & WhatsApp)
   ========================================================================== */
.floating--buttons-group {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 1010;
}

.floating--btn-scrolltop {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(11, 123, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.floating--btn-scrolltop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating--btn-scrolltop:hover {
  background-color: var(--base-color-hover);
  transform: translateY(-2px);
}

.floating--btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.floating--btn-whatsapp i {
  font-size: 1.35rem;
}

.floating--btn-whatsapp:hover {
  background-color: #20ba59;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   13.5. Trust / Information Bar (Directly Above Footer)
   ========================================================================== */
.trust-info-bar {
  background-color: var(--trust-bar-bg);
  border-top: 1px solid var(--trust-bar-border);
  border-bottom: 1px solid var(--trust-bar-border);
  padding: 1rem 0;
  width: 100%;
}

.trust-info-bar--wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.trust-info-bar--item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex: 1;
  text-align: center;
}

.trust-info-bar--icon {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  color: var(--base-color);
}

.trust-info-bar--text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.trust-info-bar--divider {
  width: 1px;
  height: 22px;
  background-color: var(--border-color);
  opacity: 0.7;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .trust-info-bar--text {
    font-size: 0.85rem;
  }
  .trust-info-bar--wrapper {
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .trust-info-bar {
    padding: 1rem 0;
  }
  .trust-info-bar--wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  .trust-info-bar--item {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    gap: 0.75rem;
  }
  .trust-info-bar--divider {
    display: none;
  }
  .trust-info-bar--text {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   14. Footer
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--footer-border);
}

.footer--brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer--bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--footer-text);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer--social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer--social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer--social-btn:hover {
  background-color: var(--base-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer--heading {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 8px;
}

/* Menu Underline Base Track: Matches exact Bengali text width */
.footer--heading::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* Menu Underline Highlight Sweep: Continuous seamless wrapping Left → Right */
.footer--heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(var(--base-color-rgb), 0.5) 25%,
    var(--base-color-subtle) 45%,
    #ffffff 50%,
    var(--base-color-subtle) 55%,
    rgba(var(--base-color-rgb), 0.5) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 140px 100%;
  background-repeat: repeat-x;
  background-position: 0 0;
  filter: drop-shadow(0 0 3px rgba(var(--base-color-rgb), 0.8));
  animation: menuUnderlineSweep 3.5s linear infinite;
}

/* Reusable Underline Animation Class */
.menu-underline-animated {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 8px;
}

.menu-underline-animated::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.menu-underline-animated::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(var(--base-color-rgb), 0.5) 25%,
    var(--base-color-subtle) 45%,
    #ffffff 50%,
    var(--base-color-subtle) 55%,
    rgba(var(--base-color-rgb), 0.5) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 140px 100%;
  background-repeat: repeat-x;
  background-position: 0 0;
  filter: drop-shadow(0 0 3px rgba(var(--base-color-rgb), 0.8));
  animation: menuUnderlineSweep 3.5s linear infinite;
}

@keyframes menuUnderlineSweep {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 140px 0;
  }
}

.footer--nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer--nav-item {
  margin-bottom: 0.65rem;
}

.footer--nav-link {
  font-size: 0.9rem;
  color: var(--footer-link);
  transition: all var(--transition-fast);
}

.footer--nav-link:hover {
  color: var(--footer-link-hover);
  padding-left: 4px;
}

.footer--subscribe-desc {
  font-size: 0.9rem;
  color: var(--footer-text);
  margin-bottom: 1rem;
}

.footer--subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer--subscribe-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: var(--heading-color);
  font-size: 0.9rem;
  outline: none;
}

.footer--subscribe-btn {
  background-color: var(--base-color);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.footer--subscribe-btn:hover {
  background-color: var(--base-color-hover);
}

.footer--payments {
  margin-top: 1.25rem;
}

.footer--payments-label {
  font-size: 0.8rem;
  color: var(--footer-text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer--payments-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer--payment-img {
  height: 28px;
  width: auto;
  border-radius: 4px;
}

/* Footer Bottom Bar */
.footer--bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer--copy {
  font-size: 0.85rem;
  color: var(--footer-text);
  margin: 0;
}

.footer--apps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer--app-badge {
  height: 36px;
  width: auto;
}

/* ==========================================================================
   15. Modals & Notifications
   ========================================================================== */
.custom--modal .modal-content {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.custom--modal .modal-header {
  border-bottom: 1px solid var(--border-color-light);
  padding: 1.25rem 1.5rem;
}

.custom--modal .btn-close {
  cursor: pointer;
  z-index: 10;
  position: relative;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom--modal .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.custom--modal .modal-footer {
  border-top: 1px solid var(--border-color-light);
  padding: 1rem 1.5rem;
}

/* Delivery Location Modal with Map & Search */
.location--modal .modal-dialog {
  max-width: 600px;
}

.location--modal .modal-content {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.map--search-bar-container {
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.map--search-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-pill);
  background-color: var(--white);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.map--search-input-group:focus-within {
  border-color: var(--base-color);
  box-shadow: 0 0 0 3px rgba(var(--base-color-rgb), 0.18);
}

.map--search-icon {
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.map--search-input {
  flex-grow: 1;
  border: none;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  color: var(--text-color);
  background: transparent;
}

.map--clear-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  display: none;
}

.map--clear-btn.show {
  display: inline-flex;
}

.map--clear-btn:hover {
  color: var(--danger-color);
}

.map--gps-btn {
  background-color: #dc2626;
  color: var(--white);
  border: none;
  padding: 0.65rem 0.85rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.map--gps-btn:hover {
  background-color: #b91c1c;
}

.map--go-btn {
  background-color: #f59e0b;
  color: #1e293b;
  border: none;
  padding: 0.65rem 1.15rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.map--go-btn:hover {
  background-color: #d97706;
  color: var(--white);
}

/* Interactive Map Canvas */
.map--canvas-area {
  position: relative;
  height: 290px;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
  cursor: crosshair;
  user-select: none;
}

.map--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Center Pin & Pulse Animation */
.map--pin-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: top 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), left 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map--pin-icon {
  font-size: 2.5rem;
  color: #dc2626;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.35));
  line-height: 1;
}

.map--pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 24px;
  height: 10px;
  background: rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
  0% {
    transform: translate(-50%, 50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 50%) scale(2.4);
    opacity: 0;
  }
}

/* Map Controls */
.map--controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.map--control-btn {
  width: 32px;
  height: 32px;
  background: var(--white);
  border: none;
  color: var(--text-color);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.map--control-btn:hover {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

.map--control-btn:first-child {
  border-bottom: 1px solid var(--border-color);
}

/* Address Card */
.map--address-card {
  background-color: var(--base-color-light);
  border-top: 1px solid rgba(var(--base-color-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--base-color-rgb), 0.15);
}

.map--address-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.map--address-title {
  font-size: 0.95rem;
  line-height: 1.3;
}

.map--city-pill {
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  transition: all var(--transition-fast);
}

.map--city-pill:hover,
.map--city-pill.active {
  background-color: var(--base-color);
  color: var(--white);
  border-color: var(--base-color);
}

.btn-confirm-location {
  background-color: #f59e0b;
  color: #1e293b;
  border: 1px solid #d97706;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
}

.btn-confirm-location:hover {
  background-color: #d97706;
  color: var(--white);
}

/* Toast alert notification */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1090;
}

.custom--toast {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  animation: slideInUp 0.3s ease;
}

.custom--toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--base-color-light);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Variant Selection & Quantity Stepper in Quick View Modal */
.qv-variant-btn {
  border: 1.5px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.qv-variant-btn:hover {
  border-color: var(--base-color);
  color: var(--base-color);
  background-color: var(--base-color-light);
}

.qv-variant-btn.active {
  border-color: var(--base-color);
  background-color: var(--base-color);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(var(--base-color-rgb), 0.25);
}

.product--qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background-color: var(--white);
}

.product--qty-stepper .qty-minus-btn,
.product--qty-stepper .qty-plus-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.65rem;
  font-size: 0.9rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product--qty-stepper .qty-minus-btn:hover,
.product--qty-stepper .qty-plus-btn:hover {
  background-color: var(--base-color-light);
  color: var(--base-color);
}

.product--qty-stepper .qty-input {
  width: 44px;
  border: none;
  background: transparent;
  padding: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-color);
  box-shadow: none;
}

/* ==========================================================================
   16. Responsive Media Queries
   ========================================================================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Laptops & Medium Desktops (992px - 1399px) - Prevent Header Wrapping */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .header--top .row {
    flex-wrap: nowrap !important;
  }

  .header--brand-logo {
    height: 38px;
    width: auto;
    max-width: 145px;
  }

  .header--location-btn {
    padding: 0.35rem 0.55rem;
    font-size: 0.78rem;
    gap: 0.25rem;
    max-width: 135px;
    white-space: nowrap;
  }

  .header--location-btn .current-location-text {
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
  }

  .header--search-group {
    border-width: 1.5px;
  }

  .header--search-input {
    padding: 0.4rem 0.75rem;
    font-size: 0.825rem;
  }

  .header--search-btn {
    padding: 0 0.85rem;
    font-size: 0.85rem;
  }

  .header--search-mic {
    padding: 0 0.35rem;
    font-size: 0.85rem;
  }

  .header--actions {
    gap: 0.35rem !important;
  }

  .header--lang-dropdown .dropdown-toggle {
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
    gap: 0.25rem;
  }

  .header--action-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    max-height: 36px;
    font-size: 1.05rem;
  }

  .header--user-btn {
    padding: 0.38rem 0.75rem;
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  /* Secondary Bottom Navigation Row */
  .header--category-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .header--nav-list {
    gap: 0.45rem;
  }

  .header--nav-link {
    font-size: 0.825rem;
    padding: 0.45rem 0.35rem;
    white-space: nowrap;
  }
}

/* Desktop & Tablets (<= 991px) */
@media (max-width: 991.98px) {
  .site-header {
    display: none !important; /* Switch to dedicated mobile header */
  }

  .mobile--header {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1040 !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile--bottom-nav {
    display: block;
  }

  body {
    padding-top: 56px !important; /* Offset for fixed top mobile header */
    padding-bottom: 60px; /* Offset for sticky bottom nav */
  }

  /* Hide slider pagination dots on mobile */
  .swiper-pagination,
  .hero--slider .swiper-pagination,
  .swiper-pagination-bullets,
  .swiper-horizontal > .swiper-pagination-bullets {
    display: none !important;
  }

  .hero--slide {
    padding: 2rem 1.5rem;
    min-height: 320px;
  }

  .hero--title {
    font-size: 2rem;
  }

  .hero--desc {
    font-size: 0.95rem;
  }

  .hero--image {
    max-height: 240px;
  }

  .floating--buttons-group {
    bottom: 4.5rem; /* Avoid covering bottom nav */
    right: 1rem;
  }

  .floating--btn-whatsapp span {
    display: none; /* Icon only on mobile */
  }

  .floating--btn-whatsapp {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .promo--card {
    margin-bottom: 1rem;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .category--grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

/* Mobile Screens (<= 767.98px) */
@media (max-width: 767.98px) {
  .custom--section {
    padding: 1.5rem 0;
  }

  .section--title {
    font-size: 1.25rem;
  }

  /* Hero Slider Mobile Layout */
  .hero--slide {
    flex-direction: column;
    text-align: left;
    padding: 1.5rem 1rem;
    min-height: 180px;
    justify-content: center;
  }

  .hero--content {
    order: unset;
    margin-top: 0;
    max-width: 100%;
  }

  .hero--title {
    font-size: 1.85rem;
  }

  .hero--desc {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
  }

  .hero--btn-prev, .hero--btn-next {
    display: none; /* Swipe on mobile */
  }

  /* Mobile Categories Scroll */
  .category--scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .category--scroll-container::-webkit-scrollbar {
    display: none;
  }

  .category--scroll-item {
    flex: 0 0 95px;
  }

  .category--card {
    padding: 0.85rem 0.5rem;
  }

  .category--image-wrap {
    width: 54px;
    height: 54px;
  }

  .category--name {
    font-size: 0.8rem;
  }

  /* 2-Column Product Grid for Mobile */
  .product--grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product--card {
    padding: 0.75rem;
  }

  .product--card-image-wrap {
    height: 110px;
  }

  .product--card-title {
    font-size: 0.85rem;
  }

  .product--card-current-price {
    font-size: 1rem;
  }

  .product--card-old-price {
    font-size: 0.75rem;
  }

  .product--card-cart-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  /* Shop Cards Mobile */
  .shop--card {
    padding: 0.85rem 0.5rem 0.75rem;
  }

  .shop--card-logo-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 0.5rem;
  }

  .shop--card-name {
    font-size: 0.85rem;
  }

  .shop--card-type {
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
  }

  .shop--card-meta {
    font-size: 0.7rem;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
  }

  .shop--card-location {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .shop--card-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }

  /* Brand Cards Mobile */
  .brand--card {
    padding: 0.5rem 0.25rem;
  }

  .brand--card-circle {
    width: 90px;
    height: 90px;
    padding: 8px;
    margin-bottom: 0.5rem;
  }

  .brand--card-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .brand--card-name {
    font-size: 0.85rem;
  }

  .brand--card-category {
    font-size: 0.725rem;
  }

  /* Promotional Cards */
  .promo--card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .promo--card-content {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .promo--card-visual {
    margin: 0 auto;
  }

  .promo--card-title {
    font-size: 1.4rem;
  }

  /* Footer adjustments */
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer--bottom {
    margin-top: 2rem;
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobiles (360px - 430px) */
@media (max-width: 430px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .product--card {
    padding: 0.6rem;
  }

  .product--card-image-wrap {
    height: 95px;
  }

  .product--card-title {
    font-size: 0.8rem;
  }

  .category--scroll-item {
    flex: 0 0 85px;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================
   18. AUTH / REGISTER PAGE STYLES (FULL PAGE NO-SCROLL)
========================================== */
.auth--page-wrapper {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f8f3 100%);
  min-height: 100vh;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* On desktop, lock to full viewport - no inner scroll */
@media (min-width: 992px) { body.auth-page { min-height: 100vh; }
  .auth--page-wrapper {
    height: 100vh;
    overflow: hidden;
    padding: 1rem;
  }
}

/* Subtle background decorative shapes */
.auth--bg-shape-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 123, 62, 0.08) 0%, rgba(11, 123, 62, 0) 70%);
  pointer-events: none;
}

.auth--bg-shape-2 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 123, 62, 0.06) 0%, rgba(11, 123, 62, 0) 70%);
  pointer-events: none;
}

/* Left Illustration Column */
.auth--visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
}

.auth--visual-circle {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, #fceceb 0%, rgba(252, 236, 235, 0.4) 65%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.auth--visual-svg {
  width: 92%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
}

.auth--floating-tag {
  position: absolute;
  top: 15%;
  left: 6%;
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--base-color);
  animation: floatBounce 3s ease-in-out infinite alternate;
}

.auth--floating-sale {
  position: absolute;
  top: 22%;
  right: 16%;
  background: #ef4444;
  color: #ffffff;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
  animation: floatBounce 3.5s ease-in-out infinite alternate-reverse;
}

@keyframes floatBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Right Form Card */
.auth--card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  padding: 1.75rem 2.25rem;
  max-width: 530px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.auth--card.auth--card-wide {
  max-width: 1060px;
}

.auth--card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.auth--card-logo {
  display: inline-block;
  margin-bottom: 0.45rem;
}

.auth--card-logo img {
  height: 38px;
  width: auto;
}

.auth--card-subtitle {
  font-size: 0.85rem;
  color: var(--text-color-light);
  margin-bottom: 0;
}

/* Role Switcher Tabs: Customer / Seller */
.auth--role-tabs {
  display: flex;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f8fafc;
}

.auth--role-tab {
  flex: 1;
  padding: 0.6rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-color);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
  border-radius: 0;
}

.auth--role-tab:first-child {
  border-right: 1.5px solid var(--border-color);
}

.auth--role-tab.active {
  background: var(--base-color);
  color: #ffffff;
}

.auth--role-tab:not(.active):hover {
  background: var(--base-color-light);
  color: var(--base-color);
}

.auth--role-tab i {
  font-size: 0.95rem;
}

/* Social Register Buttons at TOP (User requested) */
.auth--social-top {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.auth--social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.52rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  color: var(--heading-color);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.auth--social-btn:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.auth--social-btn.google-btn:hover {
  border-color: rgba(66, 133, 244, 0.4);
}

.auth--social-btn.facebook-btn:hover {
  border-color: rgba(24, 119, 242, 0.4);
}

.auth--social-btn img,
.auth--social-btn svg {
  width: 17px;
  height: 17px;
}

/* Divider */
.auth--divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 0.85rem;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
}

.auth--divider::before,
.auth--divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.auth--divider span {
  padding: 0 0.75rem;
  white-space: nowrap;
}

/* Form Groups & Inputs */
.auth--form-group {
  margin-bottom: 0.8rem;
}

.auth--label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.auth--input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth--input {
  width: 100%;
  height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: var(--text-color);
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.auth--input:focus {
  outline: none;
  border-color: var(--base-color);
  box-shadow: 0 0 0 3px rgba(11, 123, 62, 0.12);
  background-color: #ffffff;
}

.auth--input::placeholder {
  color: #9ca3af;
  font-size: 0.82rem;
}

/* Password Toggle Icon */
.auth--input-password {
  padding-right: 2.5rem;
}

.auth--toggle-password {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color 0.15s ease;
  z-index: 2;
}

.auth--toggle-password:hover {
  color: var(--base-color);
}

/* Terms Checkbox */
.auth--terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.65rem 0 0.85rem;
  font-size: 0.78rem;
  color: var(--text-color);
  line-height: 1.4;
}

.auth--terms input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border-radius: 4px;
  accent-color: var(--base-color);
  cursor: pointer;
}

.auth--terms a {
  color: var(--base-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.auth--terms a:hover {
  text-decoration: underline;
  color: var(--base-color-dark);
}

/* Submit Register Button */
.auth--submit-btn {
  width: 100%;
  height: 48px;
  background-color: var(--base-color);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(11, 123, 62, 0.25);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.auth--submit-btn:hover {
  background-color: var(--base-color-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11, 123, 62, 0.32);
  color: #ffffff;
}

/* Bottom Login Prompt */
.auth--footer-prompt {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-color);
}

.auth--footer-prompt a {
  color: var(--base-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.auth--footer-prompt a:hover {
  color: var(--base-color-dark);
  text-decoration: underline;
}

/* Vendor Shop CTA Box */
.auth--vendor-cta {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin-top: 1rem;
}

.auth--vendor-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--base-color);
  background: #ffffff;
  border: 1.5px solid var(--base-color);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.auth--vendor-cta-btn:hover {
  background: var(--base-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(11, 123, 62, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  html, body {
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  .auth--page-wrapper {
    padding: 1.5rem 1rem;
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden;
  }
  .auth--visual-col {
    display: none !important;
  }
  .auth--card {
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
  }
}

/* ==========================================
   19. FORGOT PASSWORD - STEP INDICATOR
========================================== */
.auth--steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.25rem;
}

.auth--step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}

.auth--step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #ffffff;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.auth--step-item.completed .auth--step-circle {
  background: var(--base-color);
  border-color: var(--base-color);
  color: #ffffff;
}

.auth--step-item.active .auth--step-circle {
  background: #ffffff;
  border-color: var(--base-color);
  color: var(--base-color);
  box-shadow: 0 0 0 4px rgba(11, 123, 62, 0.12);
}

.auth--step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

.auth--step-item.active .auth--step-label,
.auth--step-item.completed .auth--step-label {
  color: var(--base-color);
}

.auth--step-connector {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: #e2e8f0;
  margin: 0 0.25rem;
  margin-bottom: 1.1rem;
  transition: background 0.3s ease;
}

.auth--step-connector.done {
  background: var(--base-color);
}

/* Step panels */
.auth--step-panel {
  display: none;
}

.auth--step-panel.active {
  display: block;
}

.auth--step-icon-wrap {
  text-align: center;
  margin-bottom: 0.85rem;
}

.auth--step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--base-color-light);
  color: var(--base-color);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.auth--step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.auth--step-subtitle {
  font-size: 0.83rem;
  color: var(--text-color-light);
  line-height: 1.45;
  margin-bottom: 0;
}

/* OTP Input Row */
.auth--otp-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin: 1rem 0;
}

.auth--otp-input {
  width: 50px;
  height: 54px;
  border: 2px solid #d1d5db;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading-color);
  background: #ffffff;
  transition: all var(--transition-fast);
  outline: none;
}

.auth--otp-input:focus {
  border-color: var(--base-color);
  box-shadow: 0 0 0 3px rgba(11, 123, 62, 0.12);
}

.auth--otp-input.filled {
  border-color: var(--base-color);
  background: var(--base-color-light);
  color: var(--base-color);
}

/* Resend timer */
.auth--resend-row {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-color-light);
  margin-top: 0.75rem;
}

.auth--resend-link {
  color: var(--base-color);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.83rem;
}

.auth--resend-link:hover {
  text-decoration: underline;
}

.auth--resend-link:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  text-decoration: none;
}

/* Password strength indicator */
.auth--strength-bar {
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  margin-top: 0.4rem;
  overflow: hidden;
}

.auth--strength-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
}

.auth--strength-text {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
  color: #94a3b8;
}

/* Back link */
.auth--back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s ease;
}

.auth--back-link:hover {
  color: var(--base-color);
}



/* ==========================================================================
   16. Product Details Page (PDP) & Nearby Store Services
   ========================================================================== */

/* Breadcrumb Navigation */
.pdp--breadcrumb-wrap {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  margin-bottom: 1.5rem;
}

.pdp--breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.pdp--breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.pdp--breadcrumb a {
  color: var(--text-color);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.pdp--breadcrumb a:hover {
  color: var(--base-color);
}

.pdp--breadcrumb .active {
  color: var(--base-color);
  font-weight: 600;
}

/* Product Main Section */
.pdp--main-section {
  padding-bottom: 2.5rem;
}

/* Gallery Box */
.pdp--gallery-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition-normal);
}

.pdp--gallery-card:hover {
  box-shadow: var(--shadow-md);
}

.pdp--main-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: crosshair;
  border: 1px solid var(--border-color-light);
}

.pdp--main-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.25s ease;
  user-select: none;
}

.pdp--main-img-box:hover .pdp--main-img {
  transform: scale(1.04);
}

/* Floating Badges on Gallery */
.pdp--badge-group {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 3;
}

.pdp--badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdp--badge-discount {
  background: var(--base-two-color);
  color: var(--white);
}

.pdp--badge-organic {
  background: var(--base-color);
  color: var(--white);
}

.pdp--badge-stock {
  background: var(--base-color);
  color: var(--white);
}

.pdp--gallery-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-fast);
}

.pdp--gallery-wishlist-btn:hover,
.pdp--gallery-wishlist-btn.active {
  background: #fee2e2;
  color: var(--danger-color);
  border-color: #fca5a5;
  transform: scale(1.08);
}

/* Thumbnails Strip */
.pdp--thumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.pdp--thumb-item {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: #f8fafc;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdp--thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pdp--thumb-item:hover {
  border-color: var(--base-color-subtle);
  transform: translateY(-2px);
}

.pdp--thumb-item.active {
  border-color: var(--base-color);
  box-shadow: 0 0 0 3px var(--base-color-light);
  background: var(--white);
}

/* Gallery Action Buttons */
.pdp--gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color-light);
}

.pdp--gallery-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-color);
  background: var(--body-bg);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdp--gallery-tool-btn:hover {
  background: var(--base-color-light);
  color: var(--base-color);
  border-color: var(--base-color-subtle);
}

/* Product Info (Center Column) */
.pdp--info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pdp--brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.pdp--brand-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--base-color);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--base-color-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

.pdp--sku-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: monospace;
}

.pdp--title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

/* Rating & Review Summary */
.pdp--ratings-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color-light);
}

.pdp--stars-box {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.95rem;
}

.pdp--rating-val {
  font-weight: 700;
  color: var(--heading-color);
  margin-left: 0.25rem;
}

.pdp--review-count-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

.pdp--review-count-link:hover {
  color: var(--base-color);
}

.pdp--stock-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--base-color);
  background: var(--base-color-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

/* Price Box */
.pdp--price-box {
  background: #f8fafc;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85rem;
}

.pdp--current-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--base-color);
  line-height: 1;
}

.pdp--old-price {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp--save-badge {
  background: #fee2e2;
  color: var(--danger-color);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.pdp--unit-calc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* Product Key Highlights */
.pdp--highlights-box {
  margin-bottom: 1.25rem;
}

.pdp--highlights-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.pdp--highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1rem;
}

.pdp--highlight-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-color);
}

.pdp--highlight-item i {
  color: var(--base-color);
  font-size: 0.95rem;
}

/* Variant Selector */
.pdp--variant-section {
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color-light);
}

.pdp--variant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.pdp--variant-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
}

.pdp--selected-variant-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--base-color);
}

.pdp--variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pdp--variant-btn {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.pdp--variant-btn span.price-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pdp--variant-btn:hover {
  border-color: var(--base-color-subtle);
  background: var(--base-color-light);
}

.pdp--variant-btn.active {
  border-color: var(--base-color);
  background: var(--base-color-light);
  color: var(--base-color);
  box-shadow: 0 0 0 2px var(--base-color);
}

.pdp--variant-btn.active span.price-tag {
  color: var(--base-color);
  font-weight: 700;
}

/* Stock Urgency Indicator */
.pdp--urgency-box {
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.95rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pdp--urgency-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c2410c;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pdp--urgency-bar {
  height: 6px;
  background: #fed7aa;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.pdp--urgency-fill {
  height: 100%;
  width: 78%;
  background: #ea580c;
  border-radius: var(--radius-pill);
  transition: width 0.5s ease;
}

/* Quantity & Action Buttons */
.pdp--actions-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.pdp--qty-box {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  height: 48px;
  overflow: hidden;
}

.pdp--qty-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: #f8fafc;
  color: var(--heading-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.pdp--qty-btn:hover {
  background: #e2e8f0;
}

.pdp--qty-input {
  width: 50px;
  height: 100%;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading-color);
  background: transparent;
  outline: none;
}

.pdp--btn-cart {
  flex: 1 1 160px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.6rem;
}

.pdp--btn-buy {
  flex: 1 1 160px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.6rem;
}

.pdp--btn-share-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdp--btn-share-icon:hover {
  background: var(--base-color-light);
  color: var(--base-color);
  border-color: var(--base-color-subtle);
}

/* Right Sidebar: Delivery & Nearby Services */
.pdp--sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.pdp--sidebar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color-light);
}

.pdp--delivery-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pdp--delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.pdp--delivery-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--base-color-light);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.pdp--delivery-info strong {
  display: block;
  color: var(--heading-color);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.pdp--delivery-info span {
  color: var(--text-muted);
}

/* Delivery Pincode Checker */
.pdp--pincode-checker {
  background: #f8fafc;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.pdp--pincode-form {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.pdp--pincode-input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  outline: none;
}

.pdp--pincode-input:focus {
  border-color: var(--base-color);
}

.pdp--pincode-btn {
  background: var(--base-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.pdp--pincode-btn:hover {
  background: var(--base-color-hover);
}

.pdp--pincode-result {
  font-size: 0.75rem;
  margin-top: 0.4rem;
  color: var(--base-color);
  font-weight: 600;
  display: none;
}

/* Seller / Store Information Card */
.pdp--seller-card {
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #fafcfb;
  margin-bottom: 1.25rem;
}

.pdp--seller-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pdp--seller-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--base-color);
}

.pdp--seller-name {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--heading-color);
  line-height: 1.3;
}

.pdp--seller-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #0284c7;
  font-weight: 600;
}

.pdp--seller-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.35rem;
  margin-bottom: 0.85rem;
}

.pdp--stat-val {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--heading-color);
}

.pdp--stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pdp--seller-actions {
  display: flex;
  gap: 0.5rem;
}

.pdp--seller-btn {
  flex: 1;
  font-size: 0.8125rem;
  padding: 0.45rem 0.5rem;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Nearby Store Stock & Pickup Locator */
.pdp--nearby-stores-section {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.pdp--nearby-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pdp--nearby-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pdp--nearby-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp--nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.pdp--store-outlet-item {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.pdp--store-outlet-item:hover {
  border-color: var(--base-color);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pdp--store-outlet-item.in-stock {
  border-left: 4px solid var(--base-color);
}

.pdp--store-outlet-item.out-of-stock {
  border-left: 4px solid #ef4444;
  opacity: 0.8;
}

.pdp--outlet-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.pdp--outlet-distance {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pdp--outlet-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.pdp--outlet-stock-badge.badge-success {
  background: var(--base-color-light);
  color: var(--base-color-dark);
}

.pdp--outlet-stock-badge.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

/* Frequently Bought Together (Bundle Offer) */
.pdp--bundle-section {
  margin-bottom: 2.5rem;
}

.pdp--bundle-card {
  background: var(--white);
  border: 1.5px dashed var(--base-color-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pdp--bundle-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pdp--bundle-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.pdp--bundle-products {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 500px;
}

.pdp--bundle-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.85rem;
}

.pdp--bundle-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-xs);
  padding: 0.2rem;
}

.pdp--bundle-info {
  display: flex;
  flex-direction: column;
}

.pdp--bundle-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.3;
}

.pdp--bundle-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--base-color);
}

.pdp--bundle-plus-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 800;
}

.pdp--bundle-summary-box {
  background: #f0fdf4;
  border: 1px solid var(--base-color-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pdp--bundle-total-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--base-color);
}

.pdp--bundle-old-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp--bundle-save-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--base-color);
}

/* Detailed Tabs Section */
.pdp--tabs-section {
  margin-bottom: 3rem;
}

.pdp--tabs-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pdp--tabs-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 1rem 0;
}

.pdp--nav-tabs {
  border-bottom: none;
  gap: 0.5rem;
}

.pdp--nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  background: transparent;
  border-radius: 0;
  transition: all var(--transition-fast);
}

.pdp--nav-tabs .nav-link:hover {
  color: var(--base-color);
}

.pdp--nav-tabs .nav-link.active {
  color: var(--base-color);
  border-bottom-color: var(--base-color);
  background: var(--white);
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.pdp--tab-content {
  padding: 2rem 1.5rem;
}

/* Specs Table */
.pdp--specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pdp--specs-table tr {
  border-bottom: 1px solid var(--border-color-light);
}

.pdp--specs-table tr:last-child {
  border-bottom: none;
}

.pdp--specs-table td {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.pdp--specs-table td.spec-lbl {
  font-weight: 600;
  color: var(--text-muted);
  width: 32%;
  background: #f8fafc;
}

.pdp--specs-table td.spec-val {
  color: var(--heading-color);
  font-weight: 500;
}

/* Reviews Breakdown Box */
.pdp--reviews-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #f8fafc;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.pdp--review-score-box {
  text-align: center;
  min-width: 140px;
}

.pdp--score-num {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.pdp--review-bars {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pdp--bar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
}

.pdp--bar-lbl {
  width: 45px;
  font-weight: 600;
  color: var(--text-color);
}

.pdp--bar-track {
  flex-grow: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.pdp--bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: var(--radius-pill);
}

.pdp--bar-count {
  width: 35px;
  text-align: right;
  color: var(--text-muted);
}

.pdp--review-card {
  border-bottom: 1px solid var(--border-color-light);
  padding: 1.25rem 0;
}

.pdp--review-card:last-child {
  border-bottom: none;
}

.pdp--review-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.pdp--review-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pdp--review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--base-color-light);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.pdp--review-user-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.pdp--verified-badge {
  font-size: 0.75rem;
  color: var(--base-color);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
}

.pdp--review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pdp--review-text {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.pdp--review-photos {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pdp--review-photo-item {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-color);
  object-fit: cover;
  cursor: pointer;
}

.pdp--review-helpful-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.pdp--review-helpful-btn:hover {
  border-color: var(--base-color);
  color: var(--base-color);
}

/* Q&A Section */
.pdp--qa-item {
  background: #f8fafc;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.pdp--qa-q {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pdp--qa-q-tag {
  background: #e2e8f0;
  color: var(--heading-color);
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 800;
}

.pdp--qa-a {
  font-size: 0.875rem;
  color: var(--text-color);
  margin-left: 2rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pdp--qa-a-tag {
  background: var(--base-color-light);
  color: var(--base-color);
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 800;
}

.pdp--qa-seller-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  margin-left: 2rem;
}

/* Mobile Sticky Action Bar */
.pdp--mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 0.65rem 1rem;
  z-index: 1020;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.pdp--mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pdp--mobile-sticky-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
}

.pdp--mobile-sticky-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-color);
  background: #f8fafc;
}

.pdp--mobile-sticky-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdp--mobile-sticky-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp--mobile-sticky-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--base-color);
}

.pdp--mobile-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Rules for PDP */
@media (max-width: 991.98px) {
  .pdp--main-img-box {
    height: 320px;
  }
  .pdp--highlights-list {
    grid-template-columns: 1fr;
  }
  .pdp--bundle-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .pdp--bundle-summary-box {
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .pdp--main-img-box {
    height: 260px;
  }
  .pdp--title {
    font-size: 1.2rem;
  }
  .pdp--current-price {
    font-size: 1.6rem;
  }
  .pdp--actions-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .pdp--qty-box {
    justify-content: center;
  }
  .pdp--mobile-sticky-bar {
    display: block;
  }
  /* Extra bottom padding on mobile so content is not covered by sticky bar */
  body.pdp-page {
    padding-bottom: 70px;
  }
}


/* ==========================================================================
   17. Comprehensive Styles for All Marketplace Pages
   ========================================================================== */

/* Page Header & Breadcrumb */
.page--header-banner {
  background: linear-gradient(135deg, var(--base-color-light) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 2.25rem 0;
  margin-bottom: 2rem;
}

.page--title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.page--subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 0;
}

/* 1. Products Page (Filter Sidebar & Grid/List) */
.filter--sidebar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.filter--widget {
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
}

.filter--widget:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter--widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter--widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.filter--widget-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-color);
  cursor: pointer;
}

.filter--widget-item:hover {
  color: var(--base-color);
}

.filter--widget-item .badge-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
}

.filter--top-bar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.view--toggle-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view--toggle-btn.active, .view--toggle-btn:hover {
  background: var(--base-color-light);
  color: var(--base-color);
  border-color: var(--base-color);
}

/* 2. Categories Page */
.cat--browser-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
}

.cat--browser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--base-color);
}

.cat--browser-icon {
  width: 70px;
  height: 70px;
  background: var(--base-color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
}

.cat--sub-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cat--sub-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition-fast);
}

.cat--sub-link:hover {
  color: var(--base-color);
}

/* 3. Offers Page */
.offer--hero-card {
  background: linear-gradient(135deg, var(--base-color) 0%, var(--base-color-active) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.offer--badge-flash {
  background: var(--base-two-color);
  color: var(--white);
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
}

.offer--timer-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.offer--timer-digit {
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--white);
  color: var(--heading-color);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  min-width: 36px;
  text-align: center;
}

/* 4. Free Services Page */
.service--detail-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
}

.service--detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--base-color);
  box-shadow: var(--shadow-hover);
}

.service--detail-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--base-color-light);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

/* 5. Near Me Page */
.nearme--map-placeholder {
  height: 380px;
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.nearme--shop-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.nearme--shop-item:hover {
  border-color: var(--base-color);
  box-shadow: var(--shadow-sm);
}

/* 6. Blog Page */
.blog--card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog--card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--base-color);
}

.blog--card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  background: #f1f5f9;
}

.blog--card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog--card-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog--card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.blog--card-title a:hover {
  color: var(--base-color);
}

/* 7. Contact Page */
.contact--info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-xs);
}

.contact--info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--base-color-light);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact--form-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* 8. Checkout Page */
.checkout--step-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.checkout--step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color-light);
}

.checkout--step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--base-color);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout--payment-method-item {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 0.75rem;
}

.checkout--payment-method-item:hover,
.checkout--payment-method-item.active {
  border-color: var(--base-color);
  background: var(--base-color-light);
}

.checkout--summary-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

/* 9. Shop Profile Details Page */
.shop--banner-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--base-color) 0%, var(--base-color-hover) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: var(--white);
  margin-bottom: 2rem;
  overflow: hidden;
}

.shop--profile-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.shop--profile-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--base-color);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.shop--stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  backdrop-filter: blur(4px);
}

/* 10. Policy & Information Pages */
.policy--layout-wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.policy--sidebar-nav {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  width: 280px;
  flex-shrink: 0;
}

.policy--nav-link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text-color);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.policy--nav-link:hover, .policy--nav-link.active {
  background: var(--base-color-light);
  color: var(--base-color);
  font-weight: 600;
}

.policy--content-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
}

.policy--section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color-light);
}

.policy--section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy--section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy--text {
  font-size: 0.9375rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.policy--list {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy--list li {
  margin-bottom: 0.45rem;
  line-height: 1.6;
}

.policy--alert-box {
  background: #f0fdf4;
  border-left: 4px solid var(--base-color);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
}

/* 11. Order Tracking Timeline */
.track--timeline {
  position: relative;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.track--timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.track--timeline-step:last-child {
  padding-bottom: 0;
}

.track--timeline-step::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 18px;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.track--timeline-step:last-child::before {
  display: none;
}

.track--timeline-step.completed::before {
  background: var(--base-color);
}

.track--step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  z-index: 2;
}

.track--timeline-step.completed .track--step-icon {
  background: var(--base-color);
  border-color: var(--base-color);
  color: var(--white);
}

.track--timeline-step.active .track--step-icon {
  background: var(--white);
  border-color: var(--base-color);
  color: var(--base-color);
  box-shadow: 0 0 0 4px var(--base-color-light);
}

/* 12. Marketplace Other Shop Offers Matrix */
.other--shops-table-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2.5rem;
}

.other--shop-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color-light);
  transition: background var(--transition-fast);
}

.other--shop-row:hover {
  background: #f8fafc;
}

.other--shop-row:last-child {
  border-bottom: none;
}

.other--shop-row.best-value {
  background: #f0fdf4;
  border-left: 4px solid var(--base-color);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .policy--layout-wrap {
    flex-direction: column;
  }
  .policy--sidebar-nav {
    width: 100%;
    position: static;
  }
}


/* ==========================================================================
   Compact Category Cards & Popular Products Carousel Styling
   ========================================================================== */

/* 10-column grid on desktop */
@media (min-width: 992px) {
  .row-cols-lg-10 > * {
    flex: 0 0 auto;
    width: 10%;
  }
}
@media (min-width: 1200px) {
  .row-cols-xl-10 > * {
    flex: 0 0 auto;
    width: 10%;
  }
}

/* Category Card Compact */
.category--card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 10px 4px 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.category--card:hover {
  transform: translateY(-3px);
  border-color: var(--base-color);
  box-shadow: 0 6px 14px rgba(11, 123, 62, 0.12);
}

.category--image-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: transform var(--transition-fast);
}

.category--card:hover .category--image-wrap {
  transform: scale(1.08);
}

.category--image {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.category--name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.category--card:hover .category--name {
  color: var(--base-color);
}

/* Popular Products Swiper Carousel & Nav Buttons */
.popular--products-carousel-wrap {
  position: relative;
  padding: 0 6px;
}

.popular--products-swiper {
  overflow: hidden;
  padding: 8px 4px 12px;
}

.popular--products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.popular--products-swiper .product--card {
  width: 100%;
}

.popular--nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 1rem;
  z-index: 15;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.popular--nav-btn:hover {
  background: var(--base-color);
  color: var(--white);
  border-color: var(--base-color);
  box-shadow: 0 4px 14px rgba(11, 123, 62, 0.3);
}

.popular--nav-prev {
  left: -14px;
}

.popular--nav-next {
  right: -14px;
}

.popular--nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Filter Pills styling */
.filter--pills-wrapper {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.filter--pills-wrapper::-webkit-scrollbar {
  display: none;
}

.filter--pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-color);
  white-space: nowrap;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter--pill:hover,
.filter--pill.active {
  background: var(--base-color);
  color: var(--white);
  border-color: var(--base-color);
}


/* ==========================================================================
   Strict Single Line Truncation for Products & Category Lists
   ========================================================================== */
.product--card-title,
.product--card-title a,
.deal--product-title,
.deal--product-title a,
.category--name,
.cat--sub-link,
.subcat--link,
.subcat--group-link {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  max-width: 100% !important;
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
}

/* Blog Details Layout Styles */
.blog--detail-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  background: #f8fafc;
}

.blog--detail-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog--author-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.blog--content-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.blog--content-body h2, 
.blog--content-body h3, 
.blog--content-body h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog--quote-box {
  background: var(--base-color-light);
  border-left: 4px solid var(--base-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--heading-color);
  margin: 2rem 0;
}

.blog--author-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.blog--author-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--base-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.blog--sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.blog--sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--base-color-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog--recent-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color-light);
  text-decoration: none;
}

.blog--recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog--recent-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: #f1f5f9;
  padding: 6px;
}

.blog--recent-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.blog--recent-item:hover .blog--recent-title {
  color: var(--base-color);
}


/* Blog Details Sticky Sidebar */
.blog--sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 10;
}

@media (max-width: 991.98px) {
  .blog--sidebar-sticky {
    position: static;
  }
}


/* ==========================================================================
   Guaranteed Sticky Header (Desktop & Mobile)
   ========================================================================== */
.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1040 !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #eef2f6 !important;
  box-shadow: none !important;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

@media (max-width: 991.98px) {
  .mobile--header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1040 !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid #eef2f6 !important;
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
  }
}

.site-header.is-sticky,
.mobile--header.is-sticky {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}


/* ==========================================================================
   Master Pixel-Perfect Header Styling (Default & Sticky)
   ========================================================================== */
.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1040 !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #eef2f6 !important;
  box-shadow: none !important;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09) !important;
}

/* Header Top Row */
.header--top {
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.header--brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header--brand-logo {
  height: 42px;
  width: auto;
}

/* Location Badge Button */
.header--location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header--location-btn:hover {
  border-color: var(--base-color);
  background-color: var(--base-color-light);
  color: var(--base-color);
}

.header--location-btn i.bi-geo-alt-fill {
  color: var(--base-color);
  font-size: 0.95rem;
}

/* Search Group */
.header--search-form {
  position: relative;
  width: 100%;
}

.header--search-group {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid var(--base-color);
  border-radius: 9999px;
  overflow: hidden;
  height: 44px;
}

.header--search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  color: #1e293b;
  outline: none;
}

.header--search-input::placeholder {
  color: #94a3b8;
  font-size: 0.825rem;
}

.header--search-mic {
  background: none;
  border: none;
  color: var(--base-color);
  font-size: 1.1rem;
  padding: 0 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.header--search-btn {
  background-color: var(--base-color);
  border: none;
  color: #ffffff;
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.header--search-btn:hover {
  background-color: var(--base-color-hover);
}

/* Header Action Buttons (Language, Wishlist, Cart, Login) */
.header--lang-dropdown .btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  padding: 0.4rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header--action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header--action-btn:hover {
  border-color: var(--base-color);
  color: var(--base-color);
  background-color: var(--base-color-light);
}

.header--action-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: var(--base-color);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header--user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header--user-btn:hover {
  border-color: var(--base-color);
  color: var(--base-color);
  background-color: var(--base-color-light);
}

/* Header Bottom Nav Row */
.header--bottom {
  padding: 0.45rem 0;
  background-color: #ffffff;
}

.header--category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background-color: var(--base-color);
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 215px;
  transition: background-color var(--transition-fast);
}

.header--category-btn:hover {
  background-color: var(--base-color-hover);
  color: #ffffff;
}

.header--nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.85rem;
}

.header--nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: #2d3748;
  padding: 0.35rem 0;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header--nav-link:hover,
.header--nav-link.active {
  color: var(--base-color);
}

.header--nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--base-color);
  border-radius: 2px;
}


/* Header Scroll Sticky Shadow Only */
.site-header {
  box-shadow: none !important;
}
.mobile--header {
  box-shadow: none !important;
}

.site-header.is-sticky,
.mobile--header.is-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}


/* ==========================================================================
   Multi-Language Dynamic Font Controllers (bn: Noto Sans Bengali, en: Inter, fr: Inter)
   ========================================================================== */
html, body {
  font-family: var(--font-main);
}

html[lang="bn"], body[lang="bn"], .lang-bn, :lang(bn) {
  font-family: var(--font-bn) !important;
}

html[lang="en"], body[lang="en"], .lang-en, :lang(en) {
  font-family: var(--font-en) !important;
}

html[lang="fr"], body[lang="fr"], .lang-fr, :lang(fr) {
  font-family: var(--font-fr) !important;
}

h1, h2, h3, h4, h5, h6,
.btn, .form-control, .badge,
.product--card-title, .category--name,
.header--nav-link, .hero--title, .hero--desc {
  font-family: inherit;
}



