/* ==========================================================================
   RETAILDOKAN - PREMIUM E-COMMERCE STYLESHEET (PERFECTED FINAL)
   Matches exact layout, colors, typography, and aesthetics of RetailDokan
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Caveat:wght@600;700&display=swap');

:root {
  --primary-red: #E52E2D;
  --primary-red-hover: #CC1D1C;
  --primary-red-light: #FEE2E2;
  --accent-pink: #FFF0F2;
  --text-main: #191C21;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg-page: #F8F9FA;
  --bg-card: #FFFFFF;
  --border-light: #E5E7EB;
  --border-subtle: #F0F2F5;
  --star-gold: #F59E0B;
  --dark-banner: #111827;
  --dark-footer: #111827;
  --success-green: #10B981;
  --blue-badge: #3B82F6;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  font-size: 13.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark-banner);
  color: #D1D5DB;
  font-size: 11.5px;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-item svg {
  color: #FBBF24;
}

.top-bar-right a {
  color: #9CA3AF;
  transition: color 0.2s;
}

.top-bar-right a:hover {
  color: #FFFFFF;
}

.top-separator {
  color: #4B5563;
}

/* ==========================================================================
   2. MAIN HEADER
   ========================================================================== */
.main-header {
  background: #FFFFFF;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #FF453A, #E52E2D);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(229, 46, 45, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-title span {
  color: var(--primary-red);
}

.logo-sub {
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Search Box */
.header-search {
  flex: 1;
  max-width: 580px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #F9FAFB;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: all 0.2s ease;
}

.search-form:focus-within {
  border-color: var(--primary-red);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(229, 46, 45, 0.1);
}

.search-input {
  flex: 1;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--text-main);
  background: transparent;
}

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

.search-btn {
  background: var(--primary-red);
  color: #FFFFFF;
  width: 38px;
  height: 34px;
  margin-right: 3px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.search-btn:hover {
  background: var(--primary-red-hover);
}

/* User Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #374151;
  font-size: 11px;
  font-weight: 600;
  gap: 2px;
  position: relative;
  transition: color 0.2s;
  cursor: pointer;
}

.action-item:hover {
  color: var(--primary-red);
}

.action-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFFFFF;
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  font-size: 20px;
  color: var(--text-main);
}

/* ==========================================================================
   3. NAVIGATION BAR
   ========================================================================== */
.main-nav {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light, #E5E7EB);
  position: relative;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.main-nav .container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Category Dropdown Container */
.nav-categories-wrap {
  position: relative;
  flex-shrink: 0;
  padding: 6px 0;
}

/* Category Dropdown Button */
.nav-categories-btn {
  background: var(--primary-red, #E52E2D);
  color: #FFFFFF;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm, 6px);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.nav-categories-btn:hover {
  background: var(--primary-red-hover, #C5221F);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 46, 45, 0.25);
}

.nav-categories-btn:active {
  transform: translateY(0);
}

/* Categories Popup Dropdown Menu */
.categories-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 250px;
  background: #FFFFFF;
  border: 1px solid var(--border-light, #E5E7EB);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 8px 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
  animation: navDropdownAnim 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navDropdownAnim {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show on Hover or Active Class */
.nav-categories-wrap:hover .categories-dropdown-menu,
.categories-dropdown-menu.active {
  display: flex !important;
}

/* Dropdown Menu Items */
.cat-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: #374151;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.cat-dropdown-item:hover {
  background: #FEF2F2;
  color: var(--primary-red, #E52E2D);
  border-left-color: var(--primary-red, #E52E2D);
  padding-left: 22px;
}

.cat-dropdown-item.active {
  color: var(--primary-red, #E52E2D);
  font-weight: 700;
  background: #FEF2F2;
  border-left-color: var(--primary-red, #E52E2D);
}

/* Nav Links List */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
  flex-grow: 1;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #4B5563;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  color: var(--primary-red, #E52E2D);
}

.nav-link.active {
  color: var(--primary-red, #E52E2D);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary-red, #E52E2D);
  border-radius: 2px;
}

/* ==========================================================================
   4. HERO BANNER
   ========================================================================== */
.hero-section {
  padding: 16px 0 10px;
}

.hero-banner {
  background: #FCECEF;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 46, 45, 0.08);
  box-shadow: var(--shadow-sm);
  min-height: 360px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 58px;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-left {
  max-width: 480px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #9CA3AF;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: block;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.08;
  color: #111827;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--primary-red);
  display: block;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  margin-bottom: 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(229, 46, 45, 0.3);
  transition: all 0.25s ease;
  margin-bottom: 28px;
}

.hero-btn:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(229, 46, 45, 0.4);
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
}

.hero-feature-item svg {
  color: #10B981;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 580px;
}

.hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hero-phones-img {
  width: 100%;
  max-height: 310px;
  object-fit: cover;
}

.hero-doodle {
  position: absolute;
  top: 10px;
  right: -8px;
  color: #374151;
  font-family: var(--font-script);
  font-size: 23px;
  line-height: 1.15;
  transform: rotate(4deg);
  pointer-events: none;
}

.hero-doodle span {
  color: var(--primary-red);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: #FFFFFF;
  color: var(--primary-red);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  right: 40px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111827;
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: var(--primary-red);
  width: 18px;
  border-radius: 4px;
}

/* ==========================================================================
   5. SHOP BY CATEGORY
   ========================================================================== */
.section {
  padding: 20px 0;
}

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

.section-title {
  font-size: 19px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.4px;
}

.section-view-all {
  font-size: 12.5px;
  font-weight: 700;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.section-view-all:hover {
  color: var(--primary-red);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.category-icon-box {
  width: 76px;
  height: 76px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.25s ease;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.category-card:hover .category-icon-box {
  border-color: var(--primary-red);
  box-shadow: 0 6px 16px rgba(229, 46, 45, 0.12);
  transform: translateY(-3px);
}

.category-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-name {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
}

.deals-box {
  background: #FFF1F2;
  border-color: #FECDD3;
}

.deals-icon {
  color: var(--primary-red);
  font-size: 28px;
  font-weight: 800;
}

/* ==========================================================================
   6. FIND ACCESSORIES FOR YOUR PHONE (BRANDS)
   ========================================================================== */
.brands-section-inner {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.brands-header {
  margin-bottom: 12px;
}

.brands-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}

.brands-subtitle {
  font-size: 11.5px;
  color: var(--text-muted);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}

.brand-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-pill:hover, .brand-pill.active {
  border-color: var(--primary-red);
  background: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.brand-icon {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon svg, .brand-icon img {
  height: 18px;
  width: auto;
}

.brand-name {
  font-size: 10.5px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

/* ==========================================================================
   7. 3-COLUMN PROMO BANNERS
   ========================================================================== */
.promo-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 165px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.promo-card-left {
  max-width: 58%;
  z-index: 2;
}

.promo-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}

.promo-desc {
  font-size: 11.5px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.promo-price {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.promo-card-img {
  width: 42%;
  max-height: 135px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Card 1: Custom Phone Cases */
.promo-card-custom {
  background: linear-gradient(135deg, #FFF0F2 0%, #FFE4E8 100%);
  border: 1px solid #FECDD3;
}
.promo-card-custom .promo-title { color: #111827; }
.promo-card-custom .promo-desc { color: #4B5563; }
.promo-card-custom .promo-btn {
  background: var(--primary-red);
  color: #FFFFFF;
}
.promo-card-custom .promo-btn:hover {
  background: var(--primary-red-hover);
}

/* Card 2: MagSafe Collection (Dark) */
.promo-card-magsafe {
  background: linear-gradient(135deg, #1E232E 0%, #111827 100%);
  color: #FFFFFF;
}
.promo-card-magsafe .promo-title { color: #FFFFFF; }
.promo-card-magsafe .promo-desc { color: #9CA3AF; }
.promo-card-magsafe .promo-btn {
  background: #FFFFFF;
  color: #111827;
}
.promo-card-magsafe .promo-btn:hover {
  background: #F3F4F6;
}

/* Card 3: Bundle & Save */
.promo-card-bundle {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border: 1px solid var(--border-light);
}
.promo-card-bundle .promo-title { color: #111827; }
.promo-card-bundle .promo-desc { color: #4B5563; }
.promo-card-bundle .promo-price { color: var(--primary-red); }
.promo-card-bundle .promo-btn {
  background: var(--primary-red);
  color: #FFFFFF;
}
.promo-card-bundle .promo-btn:hover {
  background: var(--primary-red-hover);
}

/* ==========================================================================
   8. TRUST / VALUE PROPOSITION BAR
   ========================================================================== */
.trust-bar {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 16px 0;
}

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

.trust-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-green  { background: #ECFDF5; color: #10B981; }
.trust-icon-blue   { background: #EFF6FF; color: #2563EB; }
.trust-icon-teal   { background: #F0FDFA; color: #0D9488; }
.trust-icon-cyan   { background: #ECFEFF; color: #0891B2; }
.trust-icon-indigo { background: #EEF2FF; color: #4F46E5; }

.trust-info-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.trust-info-sub {
  font-size: 10.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   9. BEST SELLING PRODUCTS
   ========================================================================== */
.products-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tab-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
  cursor: pointer;
}

.tab-btn.active {
  color: var(--primary-red);
  font-weight: 700;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary-red);
}

.products-carousel-wrap {
  position: relative;
}

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

.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0 12px 14px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s ease;
}

.product-card:hover {
  border-color: #FECDD3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  z-index: 3;
}

.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  z-index: 3;
  transition: all 0.2s;
}

.btn-wishlist:hover, .btn-wishlist.active {
  color: var(--primary-red);
}

.product-thumb {
  width: calc(100% + 24px);
  margin: 0 -12px 12px -12px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #F8F9FA;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-title {
  font-size: 12px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.35;
  margin-bottom: 6px;
  height: 32px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.price-current {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-red);
}

.price-original {
  font-size: 11.5px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars {
  color: var(--star-gold);
  display: flex;
  gap: 1px;
}

.rating-count {
  font-size: 10.5px;
  color: var(--text-muted);
}

.btn-add-cart {
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  transition: background 0.2s;
}

.btn-add-cart:hover {
  background: var(--primary-red-hover);
}

/* Carousel Side Arrows */
.products-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  z-index: 5;
  cursor: pointer;
  transition: all 0.2s;
}

.products-arrow:hover {
  color: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.products-arrow.prev { left: -14px; }
.products-arrow.next { right: -14px; }

/* ==========================================================================
   10. DUAL PROMO BANNERS
   ========================================================================== */
.dual-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.banner-item {
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 185px;
  box-shadow: var(--shadow-sm);
}

/* Left: 50% Off Banner */
.banner-offer {
  background: linear-gradient(135deg, #18181B 0%, #09090B 100%);
  color: #FFFFFF;
}

.banner-tag {
  color: #EF4444;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.banner-heading {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 4px;
}

.banner-subhead {
  font-size: 12px;
  color: #A1A1AA;
  margin-bottom: 16px;
}

.btn-banner-white {
  background: #FFFFFF;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-banner-white:hover {
  background: #F3F4F6;
  transform: translateY(-2px);
}

.banner-img-offer {
  max-width: 48%;
  max-height: 145px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Right: Download Our App Banner */
.banner-app {
  background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #4F46E5 100%);
  color: #FFFFFF;
}

.banner-app-left {
  max-width: 52%;
}

.banner-app-left .banner-heading {
  font-size: 22px;
}

.banner-app-left .banner-subhead {
  color: #E9D5FF;
  font-size: 11.5px;
  margin-bottom: 14px;
}

.app-store-badges {
  display: flex;
  gap: 8px;
}

.store-badge {
  background: #111827;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.store-badge span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
}

.banner-app-right {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 46%;
}

.app-phone-mockup {
  max-height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.qr-code-box {
  background: #FFFFFF;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.qr-code-box svg {
  width: 50px;
  height: 50px;
  display: block;
}

.qr-code-box span {
  font-size: 8px;
  color: #374151;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* ==========================================================================
   11. CUSTOMER REVIEWS & INSTAGRAM
   ========================================================================== */
.social-proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #111827;
}

.review-stars {
  color: var(--star-gold);
  display: flex;
  gap: 1px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 11px;
  color: #4B5563;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

.review-date {
  font-size: 10px;
  color: var(--text-light);
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.ig-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #E5E7EB;
  cursor: pointer;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ig-item:hover img {
  transform: scale(1.1);
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

/* ==========================================================================
   12. NEWSLETTER BAR
   ========================================================================== */
.newsletter-section {
  padding: 16px 0;
}

.newsletter-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.newsletter-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFF1F2;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-title {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.newsletter-sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 420px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: #F9FAFB;
}

.newsletter-form:focus-within {
  border-color: var(--primary-red);
}

.newsletter-input {
  flex: 1;
  padding: 9px 18px;
  font-size: 12.5px;
  background: transparent;
}

.newsletter-btn {
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  margin: 2px;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: var(--primary-red-hover);
}

.newsletter-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.discount-gift-icon {
  color: var(--primary-red);
  font-size: 24px;
}

.discount-text {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.discount-text span {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.main-footer {
  background: var(--dark-footer);
  color: #9CA3AF;
  padding: 44px 0 20px;
  margin-top: 24px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Brand Bio */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
}

.footer-logo-title span {
  color: var(--primary-red);
}

.logo.logo-white .logo-title {
  color: #FFFFFF !important;
}

.logo.logo-white .logo-title span {
  color: var(--primary-red) !important;
}

.logo.logo-white .logo-sub {
  color: #9CA3AF !important;
}

.footer-bio {
  font-size: 11.5px;
  line-height: 1.5;
  color: #9CA3AF;
  margin-bottom: 16px;
}

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

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--primary-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Footer Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 12px;
  color: #9CA3AF;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FFFFFF;
}

/* Payment Badges */
.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.payment-badge {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 4px 8px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-badge img, .payment-badge svg {
  height: 16px;
  width: auto;
}

/* Footer Trust Column */
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-trust-text {
  font-size: 11px;
  color: #D1D5DB;
  line-height: 1.3;
}

.footer-trust-text strong {
  display: block;
  color: #FFFFFF;
  font-size: 12px;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #6B7280;
}

.footer-bottom a {
  color: #9CA3AF;
}

/* ==========================================================================
   14. CART DRAWER & TOAST NOTIFICATION
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open,
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cart-drawer.open,
.cart-drawer.active {
  right: 0;
}

.cart-header,
.cart-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  flex-shrink: 0;
}

.cart-title-wrap,
.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.2px;
}

.cart-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FEF2F2;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F4F6;
  border: none;
  color: #6B7280;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.cart-close-btn:hover {
  background: #FEE2E2;
  color: var(--primary-red);
  transform: rotate(90deg);
}

/* Dynamic Free Shipping Meter */
.cart-shipping-meter {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 12px 20px;
  flex-shrink: 0;
}

.meter-text-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.35;
}

.meter-text-row strong {
  color: #0F172A;
  font-weight: 700;
}

.meter-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 9999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.meter-badge.unlocked {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.meter-badge.progress {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.meter-track {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.meter-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.cart-items-list,
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: #E5E7EB transparent;
}

.cart-items-list::-webkit-scrollbar,
.cart-drawer-items::-webkit-scrollbar {
  width: 5px;
}

.cart-items-list::-webkit-scrollbar-thumb,
.cart-drawer-items::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 9999px;
}

.cart-item-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.cart-item-card:hover {
  border-color: #D1D5DB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.cart-item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 11.5px;
  color: #6B7280;
  font-weight: 500;
}

.cart-item-price-tag {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-red);
}

.cart-qty-pill {
  display: inline-flex;
  align-items: center;
  background: #F3F4F6;
  border-radius: 9999px;
  padding: 2px;
  gap: 2px;
  flex-shrink: 0;
}

.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.15s ease;
  line-height: 1;
  padding: 0;
}

.cart-qty-btn:hover {
  background: var(--primary-red);
  color: #FFFFFF;
}

.cart-qty-val {
  min-width: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}

.cart-remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
}

.cart-remove-btn:hover {
  background: #FEE2E2;
  color: #EF4444;
}

.cart-footer,
.cart-drawer-footer {
  padding: 16px 20px 20px;
  background: #FFFFFF;
  border-top: 1px solid #F3F4F6;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  max-height: 52vh;
  overflow-y: auto;
}

/* Coupon Section inside Cart Drawer */
.cart-coupon-section {
  background: #F9FAFB;
  border: 1px dashed #D1D5DB;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 2px;
  transition: all 0.2s ease;
}

.cart-coupon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.coupon-title-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.coupon-title-left svg {
  color: var(--primary-red);
}

.cart-coupon-input-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.coupon-input-group {
  display: flex;
  gap: 6px;
}

.coupon-input-group input {
  flex: 1;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #D1D5DB;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.coupon-input-group input:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(229, 46, 45, 0.1);
}

.coupon-input-group input::placeholder {
  text-transform: none;
  font-weight: 400;
  color: #9CA3AF;
  font-size: 11.5px;
}

.coupon-input-group button {
  padding: 0 14px;
  height: 35px;
  background: #111827;
  color: #FFFFFF;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.coupon-input-group button:hover {
  background: var(--primary-red);
  box-shadow: 0 2px 8px rgba(229, 46, 45, 0.25);
}

.quick-coupon-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.coupon-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px dashed #CBD5E1;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
}

.coupon-pill:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: #FEF2F2;
  transform: translateY(-1px);
}

.coupon-pill .badge-saving {
  background: #DCFCE7;
  color: #15803D;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

/* Applied Coupon State Tag */
.cart-coupon-applied-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 7px;
  padding: 7px 10px;
  animation: fadeInTag 0.25s ease;
}

@keyframes fadeInTag {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-coupon-applied-tag .applied-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #065F46;
}

.cart-coupon-applied-tag .applied-left svg {
  color: #059669;
}

.applied-savings {
  background: #059669;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 9999px;
  margin-left: 4px;
}

.btn-remove-coupon {
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.btn-remove-coupon:hover {
  background: #D1FAE5;
  color: #EF4444;
}

.cart-subtotal-row,
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #4B5563;
}

.cart-subtotal-row strong,
.cart-summary-row strong {
  color: #111827;
  font-weight: 700;
}

.cart-discount-row {
  color: #059669 !important;
  font-weight: 600;
  font-size: 13px;
}

.cart-discount-row .discount-val {
  font-weight: 800;
  color: #059669;
}

.cart-shipping-row {
  font-size: 12.5px;
  color: #10B981;
  font-weight: 700;
}

.cart-divider-line {
  height: 1px;
  background: #F3F4F6;
  margin: 1px 0;
}

.cart-total-row {
  font-size: 15.5px;
  font-weight: 800;
  color: #111827;
}

.cart-total-row strong,
.cart-total-row #cartTotalText {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-red);
  letter-spacing: -0.3px;
}

/* Savings Highlight Pill */
.cart-savings-highlight {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  font-size: 11.5px;
  color: #166534;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cart-savings-highlight strong {
  color: #15803D;
  font-weight: 800;
}

.cart-checkout-btn,
.btn-checkout {
  width: 100%;
  height: 48px;
  background: var(--primary-red);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(229, 46, 45, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.2px;
}

.cart-checkout-btn:hover,
.btn-checkout:hover {
  background: var(--primary-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(229, 46, 45, 0.35);
  color: #FFFFFF;
}

.btn-continue-shopping {
  width: 100%;
  height: 38px;
  background: #F3F4F6;
  color: #4B5563;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-continue-shopping:hover {
  background: #E5E7EB;
  color: #111827;
}

/* Payment Icons Mini Badges */
.cart-payment-methods-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 3px;
}

.pm-badge {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
}

.pm-badge.cod {
  background: #F3F4F6;
  color: #374151;
}

.pm-badge.bkash {
  background: #FFF1F6;
  color: #D8236B;
  border-color: #FBCFE8;
}

.pm-badge.nagad {
  background: #FFF7ED;
  color: #EA580C;
  border-color: #FED7AA;
}

.pm-badge.visa {
  background: #EFF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}

.pm-badge.mc {
  background: #FEF2F2;
  color: #DC2626;
  border-color: #FECACA;
}

.cart-trust-micro {
  text-align: center;
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 1px;
}

/* Toast */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111827;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notice.success svg {
  color: #10B981;
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-banner {
    min-height: auto;
  }
  .hero-content {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .hero-features {
    justify-content: center;
  }
  .promo-trio-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .dual-banners-grid {
    grid-template-columns: 1fr;
  }
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-left span:not(:first-child), .top-separator {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-categories-btn {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-card {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-left {
    flex-direction: column;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
