/* ============================================================
   HoggerVR Storefront — Main Stylesheet
   Primary: #f04066 | Dark: #1a1f2e
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #f04066;
  --primary-dark:  #c8284e;
  --primary-light: #ff6b8a;
  --dark:          #1a1f2e;
  --dark-2:        #2c3247;
  --gray:          #6c757d;
  --light-gray:    #f4f6f9;
  --border:        #e8ecf0;
  --white:         #ffffff;
  --success:       #28a745;
  --warning:       #ffc107;
  --font-main:     'Inter', sans-serif;
  --font-heading:  'Inter', sans-serif;
  --radius:        4px;
  --radius-lg:     10px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
  --transition:    all .22s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s cubic-bezier(.4,0,.2,1);
}

/* ─── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ─── Global rectangular buttons (override Bootstrap) ────────── */
.btn, button, input[type="submit"], input[type="button"] {
  border-radius: 4px !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #f4f6f9;
    font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

/* Section titles — Inter bold */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 12px;
  letter-spacing: -.3px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title.center::after { left: 50%; transform: translateX(-50%); }

/* ─── TOP BAR ────────────────────────────────────────────────── */
#topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-height: 38px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}
/* Left ticker */
.topbar-left { flex: 1; min-width: 0; overflow: hidden; }
.topbar-ticker {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-ticker i {
  color: var(--primary);
  font-size: 11px;
  flex-shrink: 0;
}
.topbar-ticker strong { color: var(--primary-light); font-weight: 600; }

/* Right nav */
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.tb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 11px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease;
  text-decoration: none;
}
.tb-link i {
  font-size: 11px;
  opacity: .75;
  flex-shrink: 0;
}
.tb-link span {
  display: inline;
}
.tb-link:hover {
  color: var(--primary-light);
}
.tb-link:hover i { opacity: 1; }
.tb-sep {
  color: rgba(255,255,255,.15);
  font-size: 12px;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}
.tb-phone {
  color: var(--primary-light);
  font-weight: 600;
}
.tb-phone:hover { color: #fff; }

/* ─── MAIN NAVBAR ────────────────────────────────────────────── */
#main-navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .25s ease, padding .25s ease;
  will-change: box-shadow;
  backface-visibility: hidden;
}

/* Logo image */
.navbar-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Logo image */
.navbar-brand .logo-wrap { display: flex; align-items: center; }
.navbar-logo,
.logo-img {
  height: 52px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity .2s;
}
.navbar-logo:hover,
.logo-img:hover { opacity: .85; }

/* Search bar */
.search-form { flex: 1; max-width: 520px; margin: 0 20px; }
.search-wrap {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s;
}
.search-wrap:focus-within { border-color: var(--primary); }
.search-wrap select {
  border: none; outline: none;
  background: var(--light-gray);
  padding: 0 14px;
  font-size: 12.5px;
  color: var(--dark);
  border-right: 1px solid var(--border);
  cursor: pointer;
  min-width: 120px;
}
.search-wrap input {
  flex: 1;
  border: none; outline: none;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--dark);
  background: var(--white);
}
.search-wrap button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  font-size: 15px;
  transition: background .2s;
}
.search-wrap button:hover { background: var(--primary-dark); }

/* Navbar action icons */
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-action-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  color: var(--dark);
  transition: var(--transition);
  border: none; background: transparent;
}
.nav-action-btn:hover { background: var(--light-gray); color: var(--primary); }
.nav-action-btn .icon-wrap { position: relative; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.nav-action-btn .badge-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 3px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}


/* Account avatar (initials circle when logged in) */
.nav-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.nav-account-loggedin .btn-value { color: var(--primary); }
.nav-action-btn .btn-label { font-size: 10px; color: var(--gray); line-height: 1.1; }
.nav-action-btn .btn-value { font-size: 11.5px; font-weight: 700; line-height: 1.1; }
.nav-action-btn.cart-btn { background: var(--light-gray); }
.nav-action-btn.cart-btn:hover { background: var(--primary); color: #fff; }
.nav-action-btn.cart-btn:hover .btn-label,
.nav-action-btn.cart-btn:hover .btn-value { color: #fff; }

/* Divider */
.nav-divider { width: 1px; height: 36px; background: var(--border); margin: 0 4px; }

/* ─── CATEGORY / HERO BAND ───────────────────────────────────── */
#category-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

/* Category Sidebar */
.category-sidebar {
  width: 250px;
  background: var(--white);
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.cat-toggle-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 20px;
  height: 51px;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  letter-spacing: .3px;
  font-family: var(--font-main);
  flex-shrink: 0;
}
.cat-toggle-btn i { font-size: 14.5px; }
.cat-toggle-btn .chevron { margin-left: auto; transition: transform .3s; }
.cat-toggle-btn.open .chevron { transform: rotate(180deg); }

.category-menu {
  flex: 1;
  overflow-y: auto;
  background: var(--white);
  display: none;
}
.category-menu.show { display: block; }

.cat-menu-list { list-style: none; margin: 0; padding: 8px 0; }
.cat-menu-list li > a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.cat-menu-list li > a:hover,
.cat-menu-list li > a.active {
  background: var(--light-gray);
  color: var(--primary);
  border-left-color: var(--primary);
}
.cat-menu-list li > a i { width: 20px; text-align: center; color: var(--primary); font-size: 13.5px; }
.cat-menu-list li > a .arrow { margin-left: auto; font-size: 10px; color: var(--gray); }
.cat-menu-divider { height: 1px; background: var(--border); margin: 6px 16px; }

/* ─── HERO GRID LAYOUT ──────────────────────────────────────── */
.category-band-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 51px 520px;
}

/* ─── HERO SLIDER ────────────────────────────────────────────── */
.hero-slider-wrap { overflow: hidden; position: relative; grid-column: 2; grid-row: 2; }

/* ─── HERO NAV BAR ───────────────────────────────────────────── */
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  gap: 12px;
  grid-column: 2;
  grid-row: 1;
}
.hero-nav-links { display: flex; align-items: center; }
.hero-nav-link {
  display: flex; align-items: center;
  padding: 0 15px;
  height: 51px;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.hero-nav-link:hover,
.hero-nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.hero-nav-specials {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-nav-specials:hover { background: var(--primary-dark); color: #fff; }
.swiper-hero { height: 100%; }
.swiper-hero .swiper-slide {
  position: relative;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.swiper-hero .swiper-slide-active .slide-bg { transform: scale(1.05); }

/* Slide overlays */
.slide-1 .slide-bg { background: linear-gradient(135deg, #1a1f2e 0%, #2c3247 50%, #1a1f2e 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.05) 100%
  );
}

/* Slide visual — product image on the right */
.slide-visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  padding: 16px 40px 16px 0;
}
.slide-product-img {
  max-height: 92%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  animation: slideFloat 4s ease-in-out infinite;
  will-change: transform;
  /* Fade all edges to blend with the slide background */
  -webkit-mask-image:
    radial-gradient(ellipse 84% 78% at 58% 50%, #000 38%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 84% 78% at 58% 50%, #000 38%, transparent 100%);
  /* Subtle inner glow instead of hard drop-shadow */
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.35));
}
@keyframes slideFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.slide-content-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 60px;
}
.slide-content { max-width: 480px; color: #fff; }
.slide-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.slide-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.5px;
  color: #fff;
}
/* Slide description */
.slide-content p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 440px;
}
/* Slide price */
.slide-price { margin-bottom: 24px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.slide-price .was { font-size: 11.5px; color: rgba(255,255,255,.5); text-decoration: line-through; margin-right: 8px; }
.slide-price .now { font-size: 1.6rem; font-weight: 800; font-family: var(--font-heading); color: var(--primary); }
.slide-price .currency { font-size: 1rem; font-weight: 700; vertical-align: super; }
.btn-slide-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s ease, transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s ease;
  box-shadow: 0 4px 20px rgba(240,64,102,.35);
  will-change: transform;
}
.btn-slide-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,64,102,.5); color: #fff; }

/* Slider nav */
.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.swiper-hero .swiper-button-prev::after,
.swiper-hero .swiper-button-next::after { font-size: 12.5px; font-weight: 700; }
.swiper-hero .swiper-button-prev:hover,
.swiper-hero .swiper-button-next:hover { background: var(--primary); border-color: var(--primary); }

.swiper-hero .swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; width: 8px; height: 8px; }
.swiper-hero .swiper-pagination-bullet-active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ─── PROMO BAND ─────────────────────────────────────────────── */
#promo-band {
  background: var(--primary);
  color: #fff;
  padding: 10px 0;
}
.promo-band-items { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.promo-band-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 28px;
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.2);
}
.promo-band-item:last-child { border-right: none; }
.promo-band-item i { font-size: 16px; opacity: .85; }
.promo-band-item strong { font-weight: 700; }

/* ─── PROMO BANNERS ──────────────────────────────────────────── */
#promo-banners { padding: 32px 0; }
.promo-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 185px;
  display: flex; align-items: center;
  padding: 24px 28px;
  transition: transform .22s cubic-bezier(.4,0,.2,1),
              box-shadow .22s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}
.promo-banner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-banner-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .12;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.4'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.promo-banner-1 { background: linear-gradient(135deg, #1a1f2e 0%, #2c3247 100%); }
.promo-banner-2 { background: linear-gradient(135deg, #0c3547 0%, #0f5e8a 100%); }
.promo-banner-3 { background: linear-gradient(135deg, #1e3a1e 0%, #2d6a2d 100%); }
.promo-banner-4 { background: linear-gradient(135deg, #3d1515 0%, #7b2020 100%); }

.promo-banner-img-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.promo-banner-img {
  height: 95%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 62% 50%, #000 28%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 85% at 62% 50%, #000 28%, transparent 100%);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.45));
  animation: slideFloat 5s ease-in-out infinite;
}
.promo-banner-content { position: relative; z-index: 1; color: #fff; max-width: 58%; }
.promo-banner-content .pb-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 6px; }
.promo-banner-content h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; line-height: 1.25; margin-bottom: 8px; }
.promo-banner-content .pb-discount { font-size: 1.6rem; font-weight: 800; font-family: var(--font-heading); color: var(--primary-light); line-height: 1; margin-bottom: 12px; }
.promo-banner-content .pb-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.promo-banner-content .pb-cta:hover { background: var(--primary-dark); color: #fff; }

/* ─── TRENDING PRODUCTS ──────────────────────────────────────── */
#trending-products { padding: 36px 0 48px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 10px; }
.view-all-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.view-all-link:hover { color: var(--primary-dark); gap: 8px; }

/* Product tabs */
.product-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.product-tab-btn {
  padding: 7px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.product-tab-btn:hover,
.product-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color .22s cubic-bezier(.4,0,.2,1),
              box-shadow .22s cubic-bezier(.4,0,.2,1),
              transform .22s cubic-bezier(.4,0,.2,1);
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Product badges */
.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.badge-item {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.5;
}
.badge-new { background: #28a745; color: #fff; }
.badge-sale { background: var(--primary); color: #fff; }
.badge-hot { background: #ff6b35; color: #fff; }
.badge-out { background: var(--gray); color: #fff; }

/* Product actions overlay */
.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 34px; height: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Product image */
.product-image-wrap {
  position: relative;
  padding: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.product-card:hover .product-image-wrap img { transform: scale(1.08); }

/* Product info */
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 11px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 5px; }
.product-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name:hover { color: var(--primary); }

/* Star rating */
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { color: var(--warning); font-size: 12px; display: flex; gap: 1px; }
.rating-count { font-size: 11px; color: var(--gray); }

/* Price */
.product-price {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.price-labels { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-current { font-size: 1.15rem; font-weight: 800; font-family: var(--font-heading); color: var(--primary); }
.price-old { font-size: 12.5px; color: var(--gray); text-decoration: line-through; }
.price-save { font-size: 11px; color: var(--success); font-weight: 600; background: rgba(40,167,69,.1); padding: 2px 6px; border-radius: 4px; }

/* Cart icon button */
.btn-cart-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  will-change: transform, background;
}
.btn-cart-icon:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* ─── BRANDS SECTION ─────────────────────────────────────────── */
#brands-section { padding: 32px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-slider { display: flex; align-items: center; gap: 0; }
.brand-item {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  filter: grayscale(1);
  opacity: .5;
  transition: var(--transition);
  cursor: pointer;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { filter: grayscale(0); opacity: 1; }
.brand-item span { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; letter-spacing: -1px; color: var(--dark); }

/* ─── FEATURES SECTION ───────────────────────────────────────── */
#features-section { padding: 40px 0; background: var(--light-gray); }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.4,0,.2,1),
              box-shadow .22s cubic-bezier(.4,0,.2,1);
  height: 100%;
  will-change: transform;
  backface-visibility: hidden;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(240,64,102,.1);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-text h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature-text p { font-size: 12.5px; color: var(--gray); margin: 0; line-height: 1.5; }

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
#newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 52px 0;
  color: #fff;
}
.newsletter-content h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.newsletter-content h3 span { color: var(--primary); }
.newsletter-content p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; max-width: 460px; }
.nl-name-input {
  display: block;
  width: 100%;
  max-width: 460px;
  border: 2px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s;
}
.nl-name-input::placeholder { color: rgba(255,255,255,.3); }
.nl-name-input:focus { border-color: var(--primary); }
.nl-email-row { display: flex; gap: 0; max-width: 460px; }
.nl-email-row input {
  flex: 1;
  border: 2px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color .2s;
}
.nl-email-row input::placeholder { color: rgba(255,255,255,.35); }
.nl-email-row input:focus { border-color: var(--primary); }
.nl-email-row button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.nl-email-row button:hover { background: var(--primary-dark); }
.nl-feedback { font-size: 13px; margin-top: 8px; max-width: 460px; min-height: 18px; }
.nl-feedback--ok  { color: #6ee37c; }
.nl-feedback--err { color: #ff7c8e; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#main-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 56px 0 0; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin: 16px 0 20px; color: rgba(255,255,255,.55); }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 9px; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .fc-icon { width: 34px; height: 34px; background: rgba(240,64,102,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item .fc-text .fc-label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.35); }
.footer-contact-item .fc-text .fc-value { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; }
.footer-divider { border-top: 1px solid rgba(255,255,255,.06); margin-top: 40px; padding: 18px 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { margin: 0; font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-bottom p a { color: var(--primary); }
.footer-payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

/* ─── BACK TO TOP ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  z-index: 9999;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ─── CART SIDEBAR (off-canvas) ──────────────────────────────── */
.cart-offcanvas .offcanvas-header { border-bottom: 1px solid var(--border); }
.cart-offcanvas .offcanvas-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 68px; height: 68px; background: var(--light-gray); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-img img { max-width: 60px; max-height: 60px; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--primary); }
.cart-item-remove { color: var(--gray); font-size: 13px; cursor: pointer; transition: color .2s; }
.cart-item-remove:hover { color: var(--primary); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 2px solid var(--border); }
.cart-total-row .total-label { font-size: 15px; font-weight: 600; }
.cart-total-row .total-value { font-size: 1.2rem; font-weight: 800; font-family: var(--font-heading); color: var(--primary); }

/* ─── LOADER ─────────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .4s, visibility .4s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { text-align: center; }
.loader-logo .brand-loader { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--dark); }
.loader-logo .brand-loader span { color: var(--primary); }
.loader-bar { width: 120px; height: 3px; background: var(--border); border-radius: 2px; margin: 16px auto 0; overflow: hidden; }
.loader-bar::after { content: ''; display: block; height: 100%; background: var(--primary); border-radius: 2px; animation: loadBar 1.2s ease infinite; }
@keyframes loadBar { 0%{width:0;margin-left:0} 50%{width:80%;margin-left:0} 100%{width:0;margin-left:100%} }

/* ─── MINI PRODUCT SLIDER ────────────────────────────────────── */
.swiper-products .swiper-slide { height: auto; }
.swiper-products .product-card { height: 100%; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.text-primary-brand { color: var(--primary) !important; }
.bg-primary-brand { background: var(--primary) !important; }
.btn-primary-brand {
  background: var(--primary); color: #fff; border: 2px solid var(--primary);
  padding: 10px 24px; border-radius: 4px; font-weight: 600; font-size: 13.5px;
  transition: var(--transition); cursor: pointer; display: inline-block;
  text-align: center; text-decoration: none;
}
.btn-primary-brand.w-100 { display: block; padding: 13px 24px; font-size: 15px; }
.btn-primary-brand:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.section-bg-white { background: var(--white); }
.section-bg-gray  { background: var(--light-gray); }

/* ─── SMOOTH SCROLL ──────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* ── 1400px+ (2xl wide) ─────────────────────────────────────── */
@media (min-width: 1400px) {
  .category-band-grid   { grid-template-rows: 51px 560px; }
  .slide-content h2     { font-size: 2.7rem; }
}

/* ── ≤1199px (large tablet / small laptop) ──────────────────── */
@media (max-width: 1199px) {
  .slide-content-wrap   { padding: 0 44px; }
  .slide-content h2     { font-size: 2.1rem; }
  .slide-visual         { padding-right: 24px; }
  /* Phone hidden at this width — still visible on desktop */
  .tb-sep--phone,
  .tb-phone             { display: none; }
  .navbar-logo          { height: 44px; }
  /* Slightly smaller promo discount text */
  .promo-banner-content .pb-discount { font-size: 1.4rem; }
}

/* ── ≤991px (tablets, collapsed sidebar) ────────────────────── */
@media (max-width: 991px) {
  /* Collapse grid — sidebar is already d-none; full width for nav + slider */
  .category-band-grid   { grid-template-columns: 1fr; grid-template-rows: 48px 400px; }
  .hero-nav             { grid-column: 1; grid-row: 1; padding: 0 16px; }
  .hero-slider-wrap     { grid-column: 1; grid-row: 2; }

  /* Slider: hide product image, adjust content */
  .slide-visual         { display: none; }
  .slide-content-wrap   { padding: 0 40px; }
  .slide-content h2     { font-size: 1.9rem; }

  /* Topbar: hide ticker, center the nav */
  .topbar-left          { display: none; }
  .topbar-inner         { justify-content: center; }

  /* Search bar stretches to fill space */
  .search-form          { max-width: 100%; margin: 0; }
  .navbar-logo          { height: 40px; }

  /* Hero nav links: tighter */
  .hero-nav-link        { padding: 0 12px; font-size: 13px; }

  /* Promo band: start horizontal-scrolling */
  .promo-band-items     { flex-wrap: nowrap; justify-content: flex-start;
                          overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .promo-band-item      { flex-shrink: 0; white-space: nowrap; }

  /* Section spacing */
  #trending-products    { padding: 32px 0 44px; }
  #features-section     { padding: 32px 0; }
  #newsletter-section   { padding: 44px 0; }
  #main-footer          { padding-top: 48px; }
}

/* ── ≤767px (small tablets / large phones, portrait) ─────────── */
@media (max-width: 767px) {
  /* Hero */
  .category-band-grid   { grid-template-columns: 1fr; grid-template-rows: 44px 320px; }
  .slide-content-wrap   { padding: 0 28px; }
  .slide-content h2     { font-size: 1.45rem; line-height: 1.25; }
  .slide-badge          { font-size: 10px; padding: 3px 10px; margin-bottom: 10px; }
  .slide-content p      { display: none; }
  .slide-price          { margin-bottom: 16px; }
  .slide-price .now     { font-size: 1.55rem; }
  .btn-slide-cta        { padding: 9px 22px; font-size: 13px; }

  /* Hero nav */
  .hero-nav             { padding: 0 12px; }
  .hero-nav-link        { padding: 0 10px; font-size: 12px; }
  .hero-nav-specials    { padding: 5px 13px; font-size: 12px; }

  /* Topbar */
  .topbar-inner         { justify-content: center; }
  .tb-link.tb-hide-sm,
  .tb-sep.tb-hide-sm    { display: none; }

  /* Promo band */
  .promo-band-item      { padding: 5px 18px; font-size: 12px; }

  /* Promo banners — consistent auto height */
  #promo-banners        { padding: 20px 0; }
  .promo-banner-card    { height: auto !important; min-height: 155px; padding: 22px 24px; }
  .promo-banner-img-wrap{ width: 44%; }
  .promo-banner-content { max-width: 60%; }
  .promo-banner-content h4      { font-size: 1rem; }
  .promo-banner-content .pb-discount { font-size: 1.3rem; margin-bottom: 10px; }

  /* Product cards */
  .product-image-wrap   { height: 175px; }
  .product-info         { padding: 12px; }

  /* Section spacing */
  #promo-banners        { padding: 20px 0; }
  #trending-products    { padding: 28px 0 36px; }
  #features-section     { padding: 28px 0; }
  #newsletter-section   { padding: 36px 0; }
  .newsletter-form      { max-width: 100%; }

  /* Navbar */
  .navbar-logo          { height: 36px; }

  /* Footer */
  #main-footer          { padding-top: 40px; }
  .footer-divider       { margin-top: 32px; }
}

/* ── ≤575px (phones) ──────────────────────────────────────────── */
@media (max-width: 575px) {
  /* Topbar: hide entirely on phones — too cramped, phone is in navbar */
  #topbar               { display: none; }

  /* Navbar */
  #main-navbar          { padding: 7px 0; }
  .navbar-logo          { height: 34px; }

  /* Reduce horizontal page padding on small screens */
  .container-fluid      { padding-left: 12px !important; padding-right: 12px !important; }

  /* Hero */
  .category-band-grid   { grid-template-columns: 1fr; grid-template-rows: 40px 265px; }

  /* Hero nav: allow links to scroll horizontally rather than hiding them */
  .hero-nav             { padding: 0 8px; gap: 6px; overflow: hidden; }
  .hero-nav-links       { overflow-x: auto; -webkit-overflow-scrolling: touch;
                          flex-shrink: 1; scrollbar-width: none; }
  .hero-nav-links::-webkit-scrollbar { display: none; }
  .hero-nav-link        { white-space: nowrap; flex-shrink: 0;
                          padding: 0 10px; font-size: 11.5px; height: 40px; }
  .hero-nav-specials    { white-space: nowrap; flex-shrink: 0;
                          padding: 5px 11px; font-size: 11px; }

  /* Slider content */
  .slide-content-wrap   { padding: 0 18px; }
  .slide-content        { max-width: 100%; }
  .slide-content h2     { font-size: 1.15rem; line-height: 1.25; }
  .slide-badge          { font-size: 9.5px; padding: 3px 10px; margin-bottom: 8px; }
  .slide-price .now     { font-size: 1.3rem; }
  .slide-price .was     { display: none; }
  .btn-slide-cta        { padding: 8px 18px; font-size: 12px; gap: 6px; }
  .swiper-hero .swiper-button-prev,
  .swiper-hero .swiper-button-next { width: 32px; height: 32px; }
  .swiper-hero .swiper-button-prev::after,
  .swiper-hero .swiper-button-next::after { font-size: 11px; }

  /* Promo band */
  .promo-band-item      { padding: 5px 14px; font-size: 11.5px; }

  /* Promo banners: hide image on xs — text fills card cleanly */
  #promo-banners        { padding: 16px 0; }
  .promo-banner-card    { padding: 18px 20px; min-height: 125px; }
  .promo-banner-img-wrap{ display: none; }
  .promo-banner-content { max-width: 100%; }
  .promo-banner-content h4      { font-size: 0.95rem; line-height: 1.3; }
  .promo-banner-content .pb-sub { font-size: 10px; }
  .promo-banner-content .pb-discount { font-size: 1.2rem; margin-bottom: 8px; }
  .promo-banner-content .pb-cta { padding: 6px 14px; font-size: 11.5px; }

  /* Trending Products */
  #trending-products    { padding: 24px 0 32px; }
  .section-title        { font-size: 1.2rem; }
  .section-header       { margin-bottom: 18px; }
  .product-tabs         { gap: 4px; margin-bottom: 16px; }
  .product-tab-btn      { padding: 5px 12px; font-size: 11.5px; }
  .product-image-wrap   { height: 155px; }
  .product-info         { padding: 10px; }
  .product-name         { font-size: 12.5px; }
  .price-current        { font-size: 1rem; }
  .price-old            { font-size: 11.5px; }

  /* Brands */
  .brands-slider        { flex-wrap: wrap; }
  .brand-item           { flex: 0 0 33.33%; border-right: none;
                          border-bottom: 1px solid var(--border); }
  .brand-item span      { font-size: 0.95rem; }

  /* Features */
  #features-section     { padding: 24px 0; }
  .feature-card         { padding: 18px 16px; gap: 14px; }
  .feature-icon         { width: 46px; height: 46px; font-size: 20px; }
  .feature-text h5      { font-size: 13.5px; }
  .feature-text p       { font-size: 12px; }

  /* Newsletter */
  #newsletter-section   { padding: 32px 0; }
  .newsletter-content h3 { font-size: 1.3rem; }
  .newsletter-content p  { font-size: 13px; }
  .newsletter-form      { max-width: 100%; }

  /* Footer */
  #main-footer          { padding-top: 32px; }
  .footer-brand p       { font-size: 12.5px; margin: 12px 0 16px; }
  .footer-heading       { font-size: 13px; margin-bottom: 14px; }
  .footer-links li      { margin-bottom: 7px; }
  .footer-links a       { font-size: 12.5px; }
  .footer-contact-item  { gap: 10px; margin-bottom: 10px; }
  .fc-value             { font-size: 12.5px; }
  .footer-divider       { margin-top: 28px; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-payment-icons { flex-wrap: wrap; gap: 6px; }
  .payment-icon         { font-size: 11px; padding: 3px 8px; }

  /* Footer sections: subtle divider between stacked columns */
  #main-footer .row > [class*="col-"] + [class*="col-"] {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 4px;
  }
  /* Keep footer-heading top spacing consistent when divider is shown */
  #main-footer .row > [class*="col-"] + [class*="col-"] .footer-heading,
  #main-footer .row > [class*="col-"] + [class*="col-"] .footer-brand {
    margin-top: 4px;
  }
  /* Contact items: 2-column mini-grid on phones for icon+text pairs */
  .footer-contact-list  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-contact-list .footer-contact-item { margin-bottom: 0; }

  /* Back to top */
  #back-to-top          { bottom: 18px; right: 14px; width: 38px; height: 38px; font-size: 14px; }
}

/* ── ≤380px (very small phones — SE, Galaxy A series) ─────────── */
@media (max-width: 380px) {
  .category-band-grid   { grid-template-rows: 40px 235px; }
  .slide-content h2     { font-size: 1rem; }
  .btn-slide-cta        { font-size: 11px; padding: 7px 14px; }
  .slide-price .now     { font-size: 1.15rem; }
  .hero-nav-link        { font-size: 10.5px; padding: 0 7px; }
  .hero-nav-specials    { font-size: 10px; padding: 4px 8px; }
  .product-image-wrap   { height: 135px; }
  .product-tab-btn      { padding: 4px 10px; font-size: 11px; }
  .promo-banner-card    { min-height: 110px; padding: 14px 16px; }
  .promo-banner-content h4 { font-size: 0.88rem; }
  .newsletter-content h3 { font-size: 1.15rem; }
  .brand-item           { flex: 0 0 50%; }
  /* Contact items: single column on very small phones */
  .footer-contact-list  { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: #fff; border-radius: 12px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.widget-title { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: #1a1f2e; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid #f04066; display: inline-block; }
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li a { display: block; padding: 7px 10px; border-radius: 6px; text-decoration: none; color: #444; font-size: 13.5px; transition: all .15s; }
.sidebar-cat-list li a:hover, .sidebar-cat-list li a.active { background: #f04066; color: #fff; }
.sidebar-check-list { list-style: none; padding: 0; margin: 0; }
.sidebar-check-list li { padding: 4px 0; font-size: 13.5px; }
.shop-toolbar { background: #fff; border-radius: 10px; padding: 12px 16px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.filter-chips .badge { font-size: 12px; font-weight: 500; }

/* Price range slider labels */
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: #888; margin-top: 4px; }

/* Shop product grid — make sure cards fill their column */
.shop-product-grid .product-card { height: 100%; }

/* ============================================================
   SHOP PAGE — WORLD CLASS REDESIGN
   ============================================================ */

/* ── Shop Hero Banner ─────────────────────────────────────── */
.shop-hero-banner {
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3349 60%, #1a1f2e 100%);
  padding: 28px 0 24px;
  border-bottom: 3px solid rgba(240,64,102,.35);
  position: relative;
  overflow: hidden;
}
.shop-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(240,64,102,.12) 0%, transparent 65%);
  pointer-events: none;
}
.shop-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.shop-breadcrumb { margin-bottom: 8px; }
.shop-breadcrumb .breadcrumb { margin: 0; }
.shop-breadcrumb .breadcrumb-item,
.shop-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.55); font-size: 12.5px; }
.shop-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.8); }
.shop-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.shop-hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.3px;
  line-height: 1.2;
}
.shop-hero-title em { font-style: normal; color: #f04066; }
.shop-hero-sub { color: rgba(255,255,255,.6); font-size: 13.5px; margin: 0; }
.shop-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.hero-pill:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.hero-pill.active { background: #f04066; border-color: #f04066; color: #fff; font-weight: 600; }

/* ── Shop Body Layout ─────────────────────────────────────── */
.shop-body { padding: 0; }
.shop-layout { align-items: flex-start; }

/* ── Sidebar ─────────────────────────────────────────────── */
.shop-sidebar-col { padding-right: 0; }
.shop-sidebar {
  background: #fff;
  border-right: 1px solid #edf0f4;
  min-height: calc(100vh - 200px);
  padding: 0 0 40px;
  position: sticky;
  top: 70px;
}
.sidebar-widget {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f2f5;
}
.sidebar-widget:last-child { border-bottom: none; }
.widget-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.widget-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #1a1f2e;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.widget-title i { color: #f04066; font-size: 11px; }
.widget-clear {
  font-size: 11.5px;
  color: #f04066;
  text-decoration: none;
  font-weight: 500;
}
.widget-clear:hover { text-decoration: underline; }

/* Sidebar Search */
.sidebar-search-wrap {
  display: flex;
  border: 1.5px solid #e8ecf0;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s;
}
.sidebar-search-wrap:focus-within { border-color: #f04066; }
.sidebar-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 12px;
  font-size: 13px;
  background: transparent;
  color: #1a1f2e;
}
.sidebar-search-wrap button {
  background: #f04066;
  border: none;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-size: 12px;
  transition: background .15s;
}
.sidebar-search-wrap button:hover { background: #c8284e; }

/* Sidebar Category List */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { margin-bottom: 2px; }
.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #444;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
}
.cat-link:hover { background: #f8f9fa; color: #f04066; padding-left: 14px; }
.cat-link.active { background: #fff1f4; color: #f04066; border-left: 3px solid #f04066; }
.cat-link-name { display: flex; align-items: center; gap: 7px; }
.cat-link-name .cat-arrow { font-size: 9px; color: #bbb; transition: color .15s; }
.cat-link:hover .cat-arrow, .cat-link.active .cat-arrow { color: #f04066; }
.cat-link-count { font-size: 11px; color: #bbb; font-weight: 400; }

/* Price Filter */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e8ecf0;
  border-radius: 4px;
  overflow: hidden;
  flex: 1;
  transition: border-color .2s;
}
.price-input-wrap:focus-within { border-color: #f04066; }
.price-prefix {
  padding: 0 8px;
  font-size: 12px;
  color: #888;
  background: #f8f9fa;
  border-right: 1px solid #e8ecf0;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.price-input-wrap input {
  border: none;
  outline: none;
  padding: 8px 10px;
  font-size: 13px;
  width: 100%;
  -moz-appearance: textfield;
}
.price-input-wrap input::-webkit-outer-spin-button,
.price-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }
.price-sep { color: #bbb; font-weight: 600; flex-shrink: 0; }
.btn-apply-price {
  width: 100%;
  padding: 9px;
  background: #1a1f2e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: .3px;
}
.btn-apply-price:hover { background: #f04066; }

/* Brand List */
.brand-list { display: flex; flex-direction: column; gap: 6px; }
.brand-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1.5px solid #edf0f4;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  transition: all .15s;
}
.brand-label input[type="radio"] { display: none; }
.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  transition: all .15s;
}
.brand-label.checked, .brand-label:has(input:checked) { border-color: #f04066; background: #fff1f4; color: #f04066; }
.brand-label.checked .brand-dot, .brand-label:has(input:checked) .brand-dot { border-color: #f04066; background: #f04066; }
.brand-label:hover { border-color: #f04066; }

/* Availability Toggles */
.avail-toggle-list { display: flex; flex-direction: column; gap: 10px; }
.avail-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1.5px solid #edf0f4;
  transition: border-color .15s, background .15s;
}
.avail-toggle input[type="checkbox"] { display: none; }
.avail-switch {
  position: relative;
  width: 32px;
  height: 18px;
  background: #ddd;
  border-radius: 9px;
  flex-shrink: 0;
  transition: background .2s;
}
.avail-switch::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: left .2s;
}
.avail-toggle.on .avail-switch,
.avail-toggle:has(input:checked) .avail-switch { background: #f04066; }
.avail-toggle.on .avail-switch::after,
.avail-toggle:has(input:checked) .avail-switch::after { left: 16px; }
.avail-toggle:hover { border-color: #f04066; }
.avail-label { font-size: 13px; color: #444; display: flex; align-items: center; gap: 6px; }

/* Clear All */
.sidebar-widget--clear { border-bottom: none; }
.btn-clear-all {
  display: block;
  text-align: center;
  padding: 10px;
  background: #fff5f7;
  border: 1.5px dashed #f04066;
  border-radius: 4px;
  color: #f04066;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}
.btn-clear-all:hover { background: #f04066; color: #fff; }

/* Mobile sidebar header */
.sidebar-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #edf0f4;
  font-size: 15px;
}
.sidebar-close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  padding: 4px 8px;
}

/* ── Main Column Toolbar ──────────────────────────────────── */
.shop-main-col { padding: 0; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.toolbar-left { display: flex; align-items: center; gap: 12px; }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.toolbar-count { font-size: 13.5px; color: #555; }
.toolbar-count strong { color: #1a1f2e; font-weight: 700; }
.toolbar-count em { font-style: normal; color: #f04066; }

.btn-mobile-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: #1a1f2e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.filter-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: #f04066;
  border-radius: 50%;
  border: 1.5px solid #fff;
}

.sort-form { display: flex; align-items: center; }
.sort-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e8ecf0;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.sort-wrap:focus-within { border-color: #f04066; }
.sort-icon {
  padding: 0 10px;
  color: #888;
  font-size: 12px;
  background: #f8f9fa;
  border-right: 1px solid #e8ecf0;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.sort-wrap select {
  border: none;
  outline: none;
  padding: 9px 12px 9px 10px;
  font-size: 13px;
  color: #1a1f2e;
  background: transparent;
  cursor: pointer;
  min-width: 175px;
}
.view-toggle {
  display: flex;
  border: 1.5px solid #e8ecf0;
  border-radius: 4px;
  overflow: hidden;
}
.view-btn {
  padding: 8px 12px;
  background: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 13px;
  transition: all .15s;
}
.view-btn:first-child { border-right: 1px solid #e8ecf0; }
.view-btn.active, .view-btn:hover { background: #1a1f2e; color: #fff; }

/* ── Active Filters ───────────────────────────────────────── */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fafbfc;
  border-bottom: 1px solid #edf0f4;
}
.active-filters-label { font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #fff;
  border: 1.5px solid #e0e4ea;
  border-radius: 4px;
  font-size: 12.5px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: all .15s;
}
.filter-chip i:last-child { font-size: 9px; color: #bbb; margin-left: 2px; }
.filter-chip:hover { border-color: #f04066; color: #f04066; }
.filter-chip:hover i:last-child { color: #f04066; }
.filter-chip--green { border-color: #c3e6cb; color: #28a745; }
.filter-chip--blue  { border-color: #bee5eb; color: #17a2b8; }
.filter-chip--red   { border-color: #f5c6cb; color: #dc3545; }
.filter-chip--clear {
  background: #f04066;
  border-color: #f04066;
  color: #fff;
  font-weight: 600;
}
.filter-chip--clear:hover { background: #c8284e; border-color: #c8284e; color: #fff; }

/* ── Product Grid ─────────────────────────────────────────── */
.product-grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
  background: #f4f6f9;
}
.pgw-item {
  display: flex;
}
.pgw-item .product-card {
  width: 100%;
  height: 100%;
  border-radius: 8px !important;
  border: 1.5px solid #e8ecf0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.06) !important;
}
.pgw-item .product-card:hover {
  border-color: #f04066 !important;
  box-shadow: 0 6px 24px rgba(240,64,102,.15) !important;
  transform: translateY(-3px);
}

/* List view */
.product-grid-wrap.list-view {
  grid-template-columns: 1fr;
}
.product-grid-wrap.list-view .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product-grid-wrap.list-view .product-image-wrap {
  width: 140px;
  flex-shrink: 0;
  height: 140px !important;
}
.product-grid-wrap.list-view .product-info {
  flex: 1;
  padding: 16px 20px;
}
.product-grid-wrap.list-view .product-actions {
  flex-direction: column;
  position: relative;
  right: auto;
  top: auto;
  opacity: 1;
  padding: 16px;
  gap: 8px;
}

/* ── Empty State ──────────────────────────────────────────── */
.shop-empty-state {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
}
.empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #ccc;
}
.shop-empty-state h4 { font-size: 1.25rem; font-weight: 700; color: #1a1f2e; margin-bottom: 10px; }
.shop-empty-state p { color: #888; font-size: 14px; max-width: 380px; margin: 0 auto 24px; }

/* ── Mobile Sidebar Overlay ───────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1040;
}
.sidebar-overlay.show { display: block; }

@media (max-width: 991px) {
  .shop-hero-title { font-size: 1.35rem; }
  .shop-sidebar {
    position: fixed;
    top: 0; left: -320px;
    width: 300px;
    height: 100vh;
    z-index: 1050;
    overflow-y: auto;
    transition: left .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 30px rgba(0,0,0,.2);
    min-height: unset;
  }
  .shop-sidebar.open { left: 0; }
  .product-grid-wrap { grid-template-columns: repeat(3, 1fr); padding: 12px; gap: 12px; }
}
@media (max-width: 576px) {
  .shop-hero-inner { gap: 12px; }
  .product-grid-wrap { grid-template-columns: repeat(2, 1fr); padding: 10px; gap: 10px; }
  .shop-toolbar { padding: 10px 14px; }
  .toolbar-count { font-size: 12.5px; }
  .spb-jump, .spb-info { display: none; }
  .spb-nav { margin: 0 auto; }
}

/* ── Shop Stats Strip ─────────────────────────────────────── */
.shop-stats-strip {
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  padding: 11px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.shop-stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.shop-stat-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  white-space: nowrap;
}
.shop-stat-item strong { font-size: 15px; font-weight: 800; color: #1a1f2e; display: block; line-height: 1.2; }
.shop-stat-item span  { font-size: 11.5px; color: #888; display: block; }
.shop-stat-icon { font-size: 1.1rem; color: #f04066; }
.shop-stat-icon--green { color: #28a745; }
.shop-stat-icon--blue  { color: #007bff; }
.shop-stat-sep { width: 1px; height: 30px; background: #edf0f4; flex-shrink: 0; }
.shop-stats-search { padding: 0 20px; }
.shop-quick-search-form {
  display: flex;
  border: 1.5px solid #e8ecf0;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s;
  min-width: 220px;
}
.shop-quick-search-form:focus-within { border-color: #f04066; }
.shop-quick-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 12.5px;
  background: transparent;
  color: #1a1f2e;
}
.shop-quick-search-form button {
  background: #f04066;
  border: none;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-size: 12px;
  transition: background .15s;
}
.shop-quick-search-form button:hover { background: #c8284e; }

/* ── Toolbar sticky ───────────────────────────────────────── */
#shopToolbar.is-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 16px rgba(0,0,0,.1);
  border-bottom: 2px solid rgba(240,64,102,.25);
}
.sort-icon { display: flex; align-items: center; }
.per-page-form { display: flex; align-items: center; }

/* ── New pagination bar ───────────────────────────────────── */
.shop-pagination-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-top: 2px solid #edf0f4;
}
.spb-info { font-size: 13px; color: #888; }
.spb-info strong { color: #1a1f2e; }
.spb-nav { display: flex; align-items: center; gap: 4px; }
.spb-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  border: 1.5px solid #e0e4ea;
  background: #fff;
  transition: all .18s;
  cursor: pointer;
  line-height: 1;
}
.spb-btn:hover { background: #f04066; color: #fff; border-color: #f04066; }
.spb-btn.current { background: #f04066; color: #fff; border-color: #f04066; cursor: default; }
.spb-btn.disabled { border-color: #eee; color: #ccc; cursor: not-allowed; pointer-events: none; }
.spb-ellipsis { padding: 0 6px; color: #bbb; font-size: 14px; }
.spb-jump {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
  font-size: 12.5px;
  color: #888;
}
.spb-jump label { white-space: nowrap; }
.spb-jump input[type="number"] {
  width: 52px;
  padding: 7px 8px;
  border: 1.5px solid #e0e4ea;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  color: #1a1f2e;
  outline: none;
  -moz-appearance: textfield;
  transition: border-color .2s;
}
.spb-jump input:focus { border-color: #f04066; }
.spb-jump input::-webkit-outer-spin-button,
.spb-jump input::-webkit-inner-spin-button { -webkit-appearance: none; }
.spb-jump button {
  width: 34px;
  height: 34px;
  border: none;
  background: #1a1f2e;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background .15s;
}
.spb-jump button:hover { background: #f04066; }
.spb-jump-placeholder { min-width: 1px; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.shake { animation: shake .35s ease; }

/* ── Product card OOS overlay ─────────────────────────────── */
.product-image-wrap { position: relative; }
.product-img-overlay-oos {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.product-img-overlay-oos span {
  background: rgba(26,31,46,.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── Product card hover glow border ──────────────────────── */
.pgw-item .product-card { transition: border-color .2s, box-shadow .2s, transform .2s; }
.pgw-item .product-card:hover { border-color: #f04066 !important; box-shadow: 0 8px 32px rgba(240,64,102,.18) !important; transform: translateY(-4px); }

/* ── card shimmer loading skeleton (optional) ────────────── */

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

/* Breadcrumb bar */
.pd-breadcrumb-bar { background: #fff; border-bottom: 1px solid #edf0f4; padding: 10px 0; }
.pd-breadcrumb-bar .breadcrumb-item, .pd-breadcrumb-bar .breadcrumb-item a { font-size: 13px; color: #888; text-decoration: none; }
.pd-breadcrumb-bar .breadcrumb-item.active { color: #1a1f2e; }
.pd-breadcrumb-bar .breadcrumb-item a:hover { color: #f04066; }

/* Two-column layout */
.pd-main-grid { display: grid; grid-template-columns: 44% 56%; min-height: 70vh; }

/* Gallery column */
.pd-gallery-col { background: #f8f9fd; border-right: 1px solid #edf0f4; position: relative; }
.pd-gallery-sticky { position: sticky; top: 70px; padding: 28px 24px 24px; }
.pd-swiper-main { border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.pd-main-slide { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: #fff; }
.pd-main-slide img { max-width: 100%; max-height: 500px; object-fit: contain; padding: 20px; cursor: zoom-in; transition: transform .3s; }
.pd-main-slide:hover img { transform: scale(1.03); }
.pd-zoom-btn { position: absolute; bottom: 12px; right: 12px; background: rgba(26,31,46,.65); color: #fff; border: none; border-radius: 4px; padding: 8px 11px; font-size: 12px; cursor: pointer; opacity: 0; transition: opacity .2s; z-index: 5; }
.pd-main-slide:hover .pd-zoom-btn { opacity: 1; }
.pd-no-image { flex-direction: column; gap: 12px; color: #ccc; font-size: 3.5rem; }
.pd-no-image span { font-size: 14px; }
.pd-nav-prev, .pd-nav-next { background: rgba(26,31,46,.65) !important; color: #fff !important; border-radius: 4px !important; width: 36px !important; height: 36px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.pd-nav-prev::after, .pd-nav-next::after { display: none !important; }
.pd-main-pagination { bottom: 8px !important; }
.pd-main-pagination .swiper-pagination-bullet-active { background: #f04066 !important; }

/* Thumbnails */
.pd-swiper-thumbs { margin-top: 12px; }
.pd-swiper-thumbs .swiper-slide { width: 80px !important; }
.pd-thumb-slide { width: 80px; height: 80px; border: 2px solid #e8ecf0; border-radius: 6px; overflow: hidden; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.pd-thumb-slide img { width: 100%; height: 100%; object-fit: cover; }
.pd-swiper-thumbs .swiper-slide-thumb-active .pd-thumb-slide { border-color: #f04066; box-shadow: 0 0 0 1px #f04066; }
.pd-thumb-slide:hover { border-color: #f04066; }

/* Badges overlay */
.pd-gallery-badges { position: absolute; top: 40px; left: 36px; display: flex; flex-direction: column; gap: 6px; z-index: 10; pointer-events: none; }
.pd-badge { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; }
.pd-badge-sale { background: #f04066; color: #fff; }
.pd-badge-new  { background: #17a2b8; color: #fff; }
.pd-badge-oos  { background: #6c757d; color: #fff; }

/* Info column */
.pd-info-col { padding: 36px 44px; overflow-y: auto; }
.pd-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pd-tag { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; text-decoration: none; transition: opacity .15s; }
.pd-tag:hover { opacity: .8; }
.pd-tag-brand { background: #eef0f8; color: #1a1f2e; }
.pd-tag-cat   { background: #fff0f4; color: #f04066; }
.pd-title { font-size: 1.75rem; font-weight: 800; color: #1a1f2e; line-height: 1.25; margin-bottom: 8px; letter-spacing: -.3px; }
.pd-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #999; margin-bottom: 16px; flex-wrap: wrap; }
.pd-meta-sep { color: #e0e0e0; }

/* Rating bar */
.pd-rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.pd-stars i, .pd-stars-big i { color: #ffc107; font-size: 14px; }
.pd-rating-val { font-size: 14px; font-weight: 700; color: #1a1f2e; }
.pd-rating-count { font-size: 13px; color: #888; text-decoration: underline; cursor: pointer; }
.pd-rating-count:hover { color: #f04066; }

/* Price block */
.pd-price-block { background: linear-gradient(135deg, #f8f9fd 0%, #f0f4ff 100%); border: 1px solid #edf0f4; border-radius: 10px; padding: 22px; margin-bottom: 20px; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.pd-price-current { font-size: 2.1rem; font-weight: 800; color: #f04066; }
.pd-price-old { font-size: 1.1rem; color: #bbb; text-decoration: line-through; }
.pd-price-save { font-size: 12px; font-weight: 700; color: #28a745; background: #e8f8ed; padding: 3px 9px; border-radius: 4px; }
.pd-price-note { font-size: 12.5px; color: #888; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pd-price-note i { color: #28a745; }
.pd-price-note i.fa-truck { color: #f04066; }

/* Stock */
.pd-stock { margin-bottom: 18px; font-size: 13.5px; font-weight: 600; }
.pd-stock-in  { color: #28a745; display: flex; align-items: center; gap: 6px; }
.pd-stock-in i { font-size: 8px; }
.pd-stock-out { color: #dc3545; display: flex; align-items: center; gap: 6px; }
.pd-stock-out i { font-size: 8px; }
.pd-short-desc { font-size: 14px; color: #666; line-height: 1.75; margin-bottom: 22px; }

/* Action buttons */
.pd-actions { margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.pd-qty-row { display: flex; align-items: center; gap: 10px; }

.qty-control { display: flex; align-items: stretch; border: 1.5px solid #dee2e6; border-radius: 4px; overflow: hidden; }
.qty-btn { border: none; background: #f4f6f9; padding: 0 14px; font-size: 14px; cursor: pointer; transition: background .15s; color: #444; }
.qty-btn:hover { background: #f04066; color: #fff; }
#qty-input { border: none; border-left: 1.5px solid #dee2e6; border-right: 1.5px solid #dee2e6; text-align: center; width: 56px; padding: 10px 0; font-weight: 700; font-size: 15px; -moz-appearance: textfield; }
#qty-input::-webkit-outer-spin-button, #qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pd-btn-cart {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 20px; background: #f04066; color: #fff; border: none; border-radius: 4px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: background .18s, transform .15s; white-space: nowrap;
}
.pd-actions > .pd-btn-cart { width: 100%; display: flex; }
.pd-btn-cart:hover:not(:disabled) { background: #c8284e; transform: translateY(-1px); }
.pd-btn-wishlist {
  width: 50px; height: 50px; border: 2px solid #e8ecf0; background: #fff; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; color: #999;
  transition: all .18s; flex-shrink: 0;
}
.pd-btn-wishlist:hover, .pd-btn-wishlist.in-wishlist { border-color: #f04066; color: #f04066; background: #fff0f4; }
.pd-btn-buynow {
  width: 100%; padding: 13px; background: #1a1f2e; color: #fff; border: none; border-radius: 4px;
  font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .18s;
}
.pd-btn-buynow:hover { background: #2c3349; }

/* Trust badges */
.pd-trust-row { display: flex; border: 1px solid #edf0f4; border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.pd-trust-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 14px 6px; font-size: 11px; color: #666; border-right: 1px solid #edf0f4; text-align: center; line-height: 1.3; }
.pd-trust-item:last-child { border-right: none; }
.pd-trust-item i { font-size: 1.15rem; color: #f04066; }
.pd-trust-item small { font-size: 10.5px; color: #bbb; display: block; margin-top: 1px; }

/* Quick specs */
.pd-quick-specs { border: 1px solid #edf0f4; border-radius: 8px; padding: 18px 20px; margin-bottom: 22px; }
.pd-quick-specs-title { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #1a1f2e; margin-bottom: 14px; }
.pd-quick-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.pd-spec-item { display: flex; flex-direction: column; gap: 2px; }
.pd-spec-key { font-size: 11px; color: #aaa; font-weight: 500; text-transform: uppercase; letter-spacing: .4px; }
.pd-spec-val { font-size: 13px; color: #1a1f2e; font-weight: 600; }
.pd-specs-more { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: #f04066; margin-top: 12px; text-decoration: none; font-weight: 600; }
.pd-specs-more:hover { gap: 10px; }

/* Share */
.pd-share-row { display: flex; align-items: center; gap: 10px; }
.pd-share-label { font-size: 12.5px; color: #999; font-weight: 600; }
.pd-share-btn { width: 36px; height: 36px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; text-decoration: none; transition: opacity .15s, transform .15s; }
.pd-share-btn:hover { opacity: .85; color: #fff; transform: translateY(-1px); }
.pd-share-fb { background: #1877f2; }
.pd-share-wa { background: #25d366; }
.pd-share-em { background: #888; }

/* ── Tabs ──────────────────────────────────────────────── */
.pd-tabs-section { background: #fff; border-top: 1px solid #edf0f4; padding: 0 0 48px; }
.pd-tabs-nav { display: flex; border-bottom: 2px solid #edf0f4; overflow-x: auto; scrollbar-width: none; }
.pd-tabs-nav::-webkit-scrollbar { display: none; }
.pd-tab-btn { padding: 18px 28px; background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; font-size: 14px; font-weight: 600; color: #888; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: color .15s, border-color .15s; }
.pd-tab-btn:hover { color: #1a1f2e; }
.pd-tab-btn.active { color: #f04066; border-bottom-color: #f04066; }
.pd-tab-badge { background: #f04066; color: #fff; border-radius: 10px; padding: 1px 7px; font-size: 11px; font-weight: 700; }
.pd-tab-panels { border: 1px solid #edf0f4; border-top: none; border-radius: 0 0 8px 8px; }
.pd-tab-panel { display: none; padding: 36px; }
.pd-tab-panel.active { display: block; }
.pd-description { font-size: 14.5px; line-height: 1.85; color: #444; }
.pd-description h2, .pd-description h3 { color: #1a1f2e; margin-top: 1.5em; }

/* Specs table */
.pd-specs-table-wrap { overflow-x: auto; }
.pd-specs-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.pd-specs-table tr:nth-child(even) { background: #f8f9fa; }
.pd-specs-table th { width: 35%; padding: 12px 18px; font-weight: 600; color: #1a1f2e; border-bottom: 1px solid #edf0f4; text-align: left; }
.pd-specs-table td { padding: 12px 18px; color: #555; border-bottom: 1px solid #edf0f4; }

/* ── Reviews ───────────────────────────────────────────── */
.pd-reviews-layout { display: grid; grid-template-columns: 240px 1fr; gap: 36px; }
.pd-rating-summary { text-align: center; padding: 20px; background: #f8f9fd; border-radius: 8px; border: 1px solid #edf0f4; align-self: start; }
.pd-rating-big { font-size: 3.8rem; font-weight: 800; color: #1a1f2e; line-height: 1; }
.pd-stars-big i { color: #ffc107; font-size: 1.2rem; }
.pd-rating-label { font-size: 13px; color: #888; margin: 6px 0 18px; }
.pd-star-bars { display: flex; flex-direction: column; gap: 8px; }
.pd-star-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.pd-star-bar-lbl { width: 32px; color: #888; flex-shrink: 0; text-align: right; }
.pd-star-bar-lbl i { color: #ffc107; font-size: 10px; }
.pd-star-bar-track { flex: 1; height: 7px; background: #eee; border-radius: 4px; overflow: hidden; }
.pd-star-bar-fill { height: 100%; background: #ffc107; border-radius: 4px; transition: width .5s ease; }
.pd-star-bar-num { width: 22px; color: #aaa; font-size: 11px; text-align: right; }

.pd-reviews-list { margin-bottom: 32px; }
.pd-review-item { padding: 22px 0; border-bottom: 1px solid #edf0f4; }
.pd-review-item:last-child { border-bottom: none; }
.pd-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.pd-reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #f04066, #c8284e); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.pd-reviewer-info { flex: 1; }
.pd-reviewer-info strong { display: block; font-size: 14px; color: #1a1f2e; }
.pd-reviewer-info span { font-size: 12px; color: #bbb; }
.pd-review-stars i { color: #ffc107; font-size: 12px; }
.pd-review-title { font-size: 14px; font-weight: 700; color: #1a1f2e; margin-bottom: 6px; }
.pd-review-body { font-size: 13.5px; color: #666; line-height: 1.65; margin: 0; }
.pd-no-reviews { text-align: center; padding: 48px 24px; color: #ccc; }
.pd-no-reviews i { font-size: 2.8rem; margin-bottom: 14px; display: block; }

/* Review form */
.pd-review-form-wrap { background: #f8f9fd; border: 1px solid #edf0f4; border-radius: 8px; padding: 28px; margin-top: 8px; }
.pd-form-title { font-size: 16px; font-weight: 700; color: #1a1f2e; margin-bottom: 22px; }
.pd-form-group { margin-bottom: 18px; }
.pd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-form-label { display: block; font-size: 11.5px; font-weight: 700; color: #666; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.pd-form-input { width: 100%; padding: 11px 14px; border: 1.5px solid #e8ecf0; border-radius: 4px; font-size: 13.5px; color: #1a1f2e; background: #fff; transition: border-color .2s, box-shadow .2s; resize: vertical; font-family: inherit; box-sizing: border-box; }
.pd-form-input:focus { outline: none; border-color: #f04066; box-shadow: 0 0 0 3px rgba(240,64,102,.1); }
.pd-star-picker { display: flex; align-items: center; gap: 4px; }
.pd-star-picker label { font-size: 1.7rem; cursor: pointer; line-height: 1; }
.pd-star-picker label i { color: #ddd; transition: color .12s; }
.pd-star-hint { font-size: 12.5px; color: #aaa; margin-left: 10px; font-style: italic; }
.pd-btn-submit { padding: 12px 30px; background: #f04066; color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; transition: background .18s, transform .15s; }
.pd-btn-submit:hover { background: #c8284e; transform: translateY(-1px); }

/* ── Related products ──────────────────────────────────── */
.pd-related-section { padding: 44px 0; background: #f4f6f9; border-top: 1px solid #edf0f4; }
.pd-related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pd-related-title { font-size: 1.35rem; font-weight: 800; color: #1a1f2e; margin: 0; }
.pd-related-all { font-size: 13px; color: #f04066; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap .15s; }
.pd-related-all:hover { gap: 10px; color: #f04066; }
.pd-related-swiper .swiper-slide { height: auto; }
.pd-related-pagination { margin-top: 18px !important; position: relative !important; bottom: auto !important; }
.pd-related-pagination .swiper-pagination-bullet-active { background: #f04066 !important; }

/* ── Lightbox ──────────────────────────────────────────── */
.pd-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; transition: opacity .25s; }
.pd-lightbox.open { opacity: 1; pointer-events: all; }
.pd-lightbox-img-wrap { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.pd-lightbox-img-wrap img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,.7); }
.pd-lightbox-close, .pd-lightbox-prev, .pd-lightbox-next { position: fixed; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.1rem; border-radius: 4px; cursor: pointer; transition: background .15s; padding: 12px 16px; backdrop-filter: blur(4px); }
.pd-lightbox-close { top: 20px; right: 20px; }
.pd-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.pd-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.pd-lightbox-close:hover, .pd-lightbox-prev:hover, .pd-lightbox-next:hover { background: rgba(255,255,255,.28); }
.pd-lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity .25s; }
.pd-lightbox-overlay.open { opacity: 1; pointer-events: all; }

/* ══ Product hero / compact breadcrumb ══════════════════════════ */
.pd-hero-compact { padding: 14px 0 !important; }
.pd-hero-crumb-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.pd-hero-quick-pills { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.pd-hero-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 20px; font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.pd-hero-pill-in  { background: rgba(40,167,69,.18); color: #4ade80; border: 1px solid rgba(40,167,69,.28); }
.pd-hero-pill-out { background: rgba(220,53,69,.18); color: #fca5a5; border: 1px solid rgba(220,53,69,.28); }
.pd-hero-pill-sale { background: rgba(240,64,102,.22); color: #f87093; border: 1px solid rgba(240,64,102,.3); }
.pd-hero-price-pill { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.pd-bc-product { max-width: 320px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: inline-block; vertical-align: bottom; }

/* ══ Gallery quick actions ═════════════════════════════════ */
.pd-gallery-qactions { display: flex; gap: 8px; margin-top: 14px; }
.pd-gqa-btn { flex: 1; padding: 9px 12px; background: #f4f6f9; border: 1.5px solid #e8ecf0; border-radius: 4px; font-size: 12.5px; font-weight: 600; color: #555; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all .15s; text-decoration: none; }
.pd-gqa-btn:hover { border-color: #f04066; color: #f04066; background: #fff0f4; }
.pd-gqa-btn.in-wishlist { border-color: #f04066; color: #f04066; background: #fff0f4; }

/* ══ Delivery promise box ═══════════════════════════════════ */
.pd-delivery-box { border: 1px solid #d8f0df; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; background: #f5fdf7; display: flex; flex-direction: column; gap: 10px; }
.pd-delivery-item { display: flex; align-items: flex-start; gap: 12px; }
.pd-delivery-item i { font-size: 1.05rem; color: #28a745; margin-top: 1px; flex-shrink: 0; }
.pd-delivery-item strong { display: block; font-size: 12.5px; font-weight: 700; color: #1a1f2e; line-height: 1.4; }
.pd-delivery-item span { font-size: 11.5px; color: #666; line-height: 1.45; display: block; }

/* ══ Stock urgency levels ══════════════════════════════════ */
.pd-stock-urgent { color: #c62828; display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13.5px; animation: pd-urgency-pulse 1.8s ease-in-out infinite; }
.pd-stock-urgent i { color: #f04066; }
@keyframes pd-urgency-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }
.pd-stock-low { color: #e65100; display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: 13.5px; }
.pd-stock-low i { color: #f57c00; }
.pd-stock-in i.fa-circle-check { font-size: 12px; }
.pd-stock-out i.fa-ban { font-size: 12px; }

/* ══ Qty group + OOS block ═════════════════════════════════ */
.pd-qty-add-group { display: flex; flex-direction: column; gap: 5px; }
.pd-qty-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #aaa; }
.pd-btn-cart:disabled { opacity: .5; cursor: not-allowed; }
.pd-oos-block { display: flex; flex-direction: column; gap: 8px; }
.pd-oos-note { font-size: 12px; color: #888; margin: 0; }
.pd-oos-note a { color: #f04066; text-decoration: none; }
.pd-oos-note a:hover { text-decoration: underline; }

/* ══ Sticky add-to-cart bar ════════════════════════════════ */
.pd-sticky-bar { position: fixed; bottom: -90px; left: 0; right: 0; z-index: 490; background: #fff; border-top: 2px solid #edf0f4; box-shadow: 0 -4px 28px rgba(0,0,0,.1); display: flex; align-items: center; gap: 14px; padding: 10px 22px; transition: bottom .3s cubic-bezier(.4,0,.2,1); }
.pd-sticky-bar.visible { bottom: 0; }
.pd-sticky-thumb { width: 50px; height: 50px; object-fit: contain; border-radius: 6px; border: 1px solid #edf0f4; flex-shrink: 0; background: #f8f9fd; }
.pd-sticky-info { flex: 1; min-width: 0; }
.pd-sticky-name { display: block; font-size: 13px; font-weight: 700; color: #1a1f2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-sticky-price { font-size: 1.05rem; font-weight: 800; color: #f04066; display: block; line-height: 1.2; }
.pd-sticky-urgency { font-size: 12px; font-weight: 700; color: #d32f2f; white-space: nowrap; flex-shrink: 0; }
.pd-sticky-urgency i { color: #f04066; }
.pd-sticky-btn { padding: 10px 24px; background: #f04066; color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: background .18s, transform .15s; flex-shrink: 0; }
.pd-sticky-btn:hover { background: #c8284e; transform: translateY(-1px); }
@media (max-width: 768px) { .pd-sticky-urgency { display: none; } .pd-sticky-name { font-size: 12px; } .pd-sticky-btn { padding: 10px 16px; font-size: 13px; } }

/* ── Product detail responsive ─────────────────────────── */
@media (max-width: 1199px) {
  .pd-info-col { padding: 28px 28px; }
}
@media (max-width: 991px) {
  .pd-main-grid { grid-template-columns: 1fr; }
  .pd-gallery-col { border-right: none; border-bottom: 1px solid #edf0f4; }
  .pd-gallery-sticky { position: relative; top: 0; padding: 16px; }
  .pd-info-col { padding: 22px 18px; }
  .pd-reviews-layout { grid-template-columns: 1fr; }
  .pd-rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; text-align: left; }
  .pd-star-bars { flex: 1; min-width: 200px; }
}
@media (max-width: 576px) {
  .pd-title { font-size: 1.4rem; }
  .pd-price-current { font-size: 1.7rem; }
  .pd-form-row { grid-template-columns: 1fr; }
  .pd-quick-specs-grid { grid-template-columns: 1fr; }
  .pd-trust-row { flex-wrap: wrap; }
  .pd-trust-item { min-width: 48%; border-bottom: 1px solid #edf0f4; }
  .pd-tab-btn { padding: 14px 16px; font-size: 13px; }
  .pd-tab-panel { padding: 20px 16px; }
}

/* ============================================================
   CART PAGE
   ============================================================ */

/* Breadcrumb */
.cart-breadcrumb-bar { background: #fff; border-bottom: 1px solid #edf0f4; padding: 10px 0; }
.cart-breadcrumb-bar .breadcrumb-item, .cart-breadcrumb-bar .breadcrumb-item a { font-size: 13px; color: #888; text-decoration: none; }
.cart-breadcrumb-bar .breadcrumb-item.active { color: #1a1f2e; }
.cart-breadcrumb-bar .breadcrumb-item a:hover { color: #f04066; }

/* Steps indicator */
.cart-steps-bar { background: #fff; border-bottom: 1px solid #edf0f4; padding: 16px 0; }
.cart-steps { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 480px; margin: 0 auto; }
.cart-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cart-step-icon { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #bbb; background: #fff; transition: all .2s; }
.cart-step span { font-size: 11.5px; color: #bbb; font-weight: 600; white-space: nowrap; }
.cart-step.active .cart-step-icon { border-color: #f04066; background: #f04066; color: #fff; }
.cart-step.active span { color: #f04066; }
.cart-step-line { flex: 1; height: 2px; background: #edf0f4; min-width: 60px; max-width: 100px; margin: 0 4px; margin-bottom: 22px; }

/* Page body */
.cart-page { padding: 32px 0 60px; min-height: 60vh; }

/* Empty state */
.cart-empty-state { text-align: center; padding: 80px 24px; max-width: 480px; margin: 0 auto; }
.cart-empty-icon { font-size: 4.5rem; color: #e8ecf0; margin-bottom: 20px; }
.cart-empty-state h3 { font-size: 1.6rem; font-weight: 800; color: #1a1f2e; margin-bottom: 10px; }
.cart-empty-state p { color: #888; font-size: 14.5px; line-height: 1.7; margin-bottom: 28px; }
.cart-empty-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: #f04066; color: #fff; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .18s, transform .15s; }
.cart-empty-btn:hover { background: #c8284e; color: #fff; transform: translateY(-1px); }

/* Two-column layout */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }

/* ── LEFT COLUMN ──────────────────────────────────────────── */
.cart-items-col { display: flex; flex-direction: column; gap: 0; }

.cart-items-header { display: flex; align-items: center; justify-content: space-between; padding: 0 0 16px; border-bottom: 2px solid #edf0f4; margin-bottom: 16px; }
.cart-items-title { font-size: 1.25rem; font-weight: 800; color: #1a1f2e; margin: 0; display: flex; align-items: center; gap: 10px; }
.cart-items-title i { color: #f04066; font-size: 1.1rem; }
.cart-items-count { font-size: 13px; font-weight: 500; color: #888; background: #f4f6f9; padding: 3px 10px; border-radius: 20px; }
.cart-clear-all { background: none; border: 1.5px solid #e8ecf0; color: #888; font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all .15s; }
.cart-clear-all:hover { border-color: #dc3545; color: #dc3545; background: #fff5f5; }

/* Cart items */
.cart-items-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #edf0f4; transition: background .2s, opacity .2s; }
.cart-item:last-child { border-bottom: none; }
.cart-item-removing { opacity: 0; transform: translateX(20px); transition: all .3s ease; }

.cart-item-img-wrap { flex-shrink: 0; width: 96px; height: 96px; border-radius: 8px; overflow: hidden; border: 1.5px solid #edf0f4; background: #f8f9fd; display: flex; align-items: center; justify-content: center; }
.cart-item-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img-placeholder { color: #ccc; font-size: 1.8rem; }

.cart-item-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.cart-item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.cart-item-info { min-width: 0; }
.cart-item-name { display: block; font-size: 14.5px; font-weight: 700; color: #1a1f2e; text-decoration: none; line-height: 1.35; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 400px; }
.cart-item-name:hover { color: #f04066; }
.cart-item-sku { font-size: 11.5px; color: #bbb; }
.cart-item-remove { background: none; border: none; color: #ccc; font-size: 14px; cursor: pointer; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; transition: all .15s; }
.cart-item-remove:hover { background: #fff0f4; color: #f04066; }

.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.cart-item-qty-wrap { display: flex; align-items: stretch; border: 1.5px solid #e8ecf0; border-radius: 4px; overflow: hidden; background: #fff; }
.cart-qty-btn { border: none; background: #f4f6f9; padding: 0 12px; font-size: 12px; cursor: pointer; color: #666; transition: all .15s; min-height: 34px; display: flex; align-items: center; }
.cart-qty-btn:hover { background: #f04066; color: #fff; }
.cart-qty-val { display: flex; align-items: center; padding: 0 14px; font-size: 14px; font-weight: 700; color: #1a1f2e; border-left: 1.5px solid #e8ecf0; border-right: 1.5px solid #e8ecf0; min-width: 44px; justify-content: center; background: #fff; }
.cart-item-pricing { text-align: right; }
.cart-item-unit-price { display: block; font-size: 12px; color: #bbb; margin-bottom: 2px; }
.cart-item-sub { display: block; font-size: 1rem; font-weight: 800; color: #1a1f2e; }

/* Continue shopping */
.cart-continue-row { padding: 14px 0 20px; }
.cart-continue-link { font-size: 13px; color: #888; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; transition: color .15s; }
.cart-continue-link:hover { color: #f04066; }

/* Coupon */
.cart-coupon-card { background: #fff; border: 1.5px dashed #e8ecf0; border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.cart-coupon-header { background: #f8f9fd; padding: 12px 18px; font-size: 13px; font-weight: 700; color: #1a1f2e; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #edf0f4; }
.cart-coupon-header i { color: #f04066; }
.cart-coupon-body { padding: 16px 18px; }
.cart-coupon-row { display: flex; gap: 8px; }
.cart-coupon-input { flex: 1; padding: 10px 14px; border: 1.5px solid #e8ecf0; border-radius: 4px; font-size: 13.5px; color: #1a1f2e; font-family: inherit; transition: border-color .2s; }
.cart-coupon-input:focus { outline: none; border-color: #f04066; box-shadow: 0 0 0 3px rgba(240,64,102,.1); }
.cart-coupon-apply-btn { padding: 10px 20px; background: #1a1f2e; color: #fff; border: none; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .18s; }
.cart-coupon-apply-btn:hover { background: #2c3349; }
.cart-coupon-remove-btn { width: 40px; background: #fff0f4; border: 1.5px solid #ffd0d8; color: #f04066; border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; transition: all .15s; }
.cart-coupon-remove-btn:hover { background: #f04066; color: #fff; }
.cart-coupon-msg { font-size: 12.5px; margin-top: 8px; font-weight: 600; }
.cart-coupon-msg.success { color: #28a745; }
.cart-coupon-msg.error   { color: #dc3545; }
.cart-coupon-active { margin-top: 10px; font-size: 12.5px; color: #28a745; display: flex; align-items: center; gap: 6px; background: #e8f8ed; padding: 8px 12px; border-radius: 4px; }

/* Trust row */
.cart-trust-row { display: flex; border: 1px solid #edf0f4; border-radius: 8px; overflow: hidden; }
.cart-trust-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 14px 8px; font-size: 11px; color: #666; border-right: 1px solid #edf0f4; text-align: center; }
.cart-trust-item:last-child { border-right: none; }
.cart-trust-item i { font-size: 1.2rem; color: #f04066; }

/* ── RIGHT COLUMN (summary) ───────────────────────────────── */
.cart-summary-col { position: sticky; top: 80px; }

.cart-summary-card { background: #fff; border: 1.5px solid #edf0f4; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(26,31,46,.07); margin-bottom: 16px; }
.cart-summary-header { background: #1a1f2e; color: #fff; padding: 16px 22px; font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.cart-summary-header i { color: #f04066; }
.cart-summary-body { padding: 22px; }

.cart-summary-lines { margin-bottom: 22px; }
.cart-summary-line { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.csl-label { font-size: 13.5px; color: #777; }
.csl-items { font-size: 12px; color: #bbb; }
.csl-value { font-size: 13.5px; color: #1a1f2e; font-weight: 600; }
.csl-free { color: #28a745; font-weight: 700; }
.csl-discount { color: #28a745; }

.cart-summary-free-ship { background: #f0faf4; border: 1px solid #c3e6cb; border-radius: 6px; padding: 10px 14px; margin: 14px 0; font-size: 12.5px; color: #28a745; }
.cart-summary-free-ship i { margin-right: 5px; }
.free-ship-text { margin-bottom: 8px; }
.free-ship-bar { height: 5px; background: #d4edda; border-radius: 3px; overflow: hidden; }
.free-ship-fill { height: 100%; background: #28a745; border-radius: 3px; transition: width .6s ease; }

.cart-summary-total-row { display: flex; align-items: center; justify-content: space-between; border-top: 2px solid #edf0f4; padding-top: 16px; margin-top: 6px; }
.cst-label { font-size: 16px; font-weight: 800; color: #1a1f2e; }
.cst-right { text-align: right; }
.cst-vat { display: block; font-size: 11px; color: #aaa; margin-bottom: 2px; }
.cst-amount { font-size: 1.65rem; font-weight: 800; color: #f04066; line-height: 1; }

.cart-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 15px; background: linear-gradient(135deg, #f04066 0%, #c8284e 100%); color: #fff; border-radius: 4px; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity .18s, transform .15s; margin-bottom: 14px; letter-spacing: .2px; }
.cart-checkout-btn:hover { opacity: .9; transform: translateY(-1px); color: #fff; }

.cart-payment-icons { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.6rem; color: #bbb; }
.cart-pi-label { font-size: 11px; color: #bbb; font-weight: 600; margin-right: 4px; }
.cart-payment-icons .fab, .cart-payment-icons .fas { transition: color .15s; }
.cart-payment-icons .fab:hover, .cart-payment-icons .fas:hover { color: #1a1f2e; }

.cart-promo-card { background: linear-gradient(135deg, #fff8f0, #fff3f6); border: 1px solid #fde8d0; border-radius: 8px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 14px; font-size: 13px; color: #666; }
.cart-promo-card strong { color: #1a1f2e; display: block; margin-bottom: 3px; }
.cart-promo-icon { font-size: 1.5rem; color: #f04066; flex-shrink: 0; margin-top: 2px; }

/* Responsive */
@media (max-width: 991px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-col { position: relative; top: 0; }
}
@media (max-width: 640px) {
  .cart-steps { max-width: 320px; }
  .cart-step-line { min-width: 36px; }
  .cart-item-img-wrap { width: 72px; height: 72px; }
  .cart-item-name { font-size: 13.5px; }
  .cart-trust-row { flex-wrap: wrap; }
  .cart-trust-item { min-width: 48%; border-bottom: 1px solid #edf0f4; }
  .cst-amount { font-size: 1.4rem; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.co-page { padding: 32px 0 64px; }
.co-alert { margin: 16px 0 0; border-radius: 6px; }

/* Two-column layout */
.co-layout { display: grid; grid-template-columns: 1fr 400px; gap: 28px; align-items: start; margin-top: 24px; }

/* Guest notice */
.co-guest-notice { background: #fffbf0; border: 1px solid #ffe0a0; border-radius: 8px; padding: 13px 18px; font-size: 13px; color: #7a6000; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.co-guest-notice i { font-size: 1.2rem; color: #f04066; }
.co-guest-notice a { color: #f04066; font-weight: 700; }

/* Section cards */
.co-card { background: #fff; border: 1.5px solid #edf0f4; border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.co-hidden { display: none; }
.co-card-header { display: flex; align-items: flex-start; gap: 14px; padding: 18px 22px; border-bottom: 1px solid #edf0f4; background: #fafbfd; }
.co-card-icon { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(135deg, #f04066, #c8284e); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.co-card-title { font-size: 15px; font-weight: 800; color: #1a1f2e; margin: 0 0 2px; }
.co-card-sub { font-size: 12px; color: #aaa; margin: 0; }
.co-card-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }

/* Form elements */
.co-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-grid-3 { display: grid; grid-template-columns: 1fr 1fr 90px; gap: 14px; }
.co-field { display: flex; flex-direction: column; gap: 5px; }
.co-label { font-size: 11.5px; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: .5px; }
.co-input { width: 100%; padding: 11px 14px; border: 1.5px solid #e8ecf0; border-radius: 4px; font-size: 13.5px; color: #1a1f2e; background: #fff; font-family: inherit; transition: border-color .2s, box-shadow .2s; box-sizing: border-box; }
.co-input:focus { outline: none; border-color: #f04066; box-shadow: 0 0 0 3px rgba(240,64,102,.1); }
.co-input-error { border-color: #dc3545 !important; box-shadow: 0 0 0 3px rgba(220,53,69,.1) !important; }
.co-select { width: 100%; padding: 11px 14px; border: 1.5px solid #e8ecf0; border-radius: 4px; font-size: 13.5px; color: #1a1f2e; background: #fff; font-family: inherit; cursor: pointer; transition: border-color .2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.co-select:focus { outline: none; border-color: #f04066; }
.co-textarea { resize: vertical; min-height: 90px; }
.co-input-icon { position: relative; }
.co-input-icon i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: #bbb; font-size: 13px; pointer-events: none; }
.co-input-icon .co-input.has-icon { padding-left: 36px; }
.co-checkbox-row { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 4px 0; margin-top: 4px; }
.co-checkbox { width: 17px; height: 17px; cursor: pointer; accent-color: #f04066; flex-shrink: 0; }
.co-checkbox-label { font-size: 13.5px; color: #555; font-weight: 500; }

/* Payment options */
.co-payment-options { display: flex; flex-direction: column; gap: 10px; }
.co-payment-opt { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border: 2px solid #edf0f4; border-radius: 8px; cursor: pointer; transition: border-color .18s, background .18s; position: relative; }
.co-payment-opt:hover { border-color: #ffd0d8; background: #fffbfc; }
.co-payment-opt.selected { border-color: #f04066; background: #fff5f8; }
.co-pay-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.co-pay-icon { width: 42px; height: 42px; border-radius: 8px; background: #f4f6f9; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #1a1f2e; flex-shrink: 0; }
.co-payment-opt.selected .co-pay-icon { background: linear-gradient(135deg, #f04066, #c8284e); color: #fff; }
.co-pay-body { flex: 1; }
.co-pay-label { display: block; font-size: 14px; font-weight: 700; color: #1a1f2e; margin-bottom: 2px; }
.co-pay-hint { display: block; font-size: 12px; color: #aaa; }
.co-pay-check { font-size: 1.1rem; color: #ddd; transition: color .18s; }
.co-payment-opt.selected .co-pay-check { color: #f04066; }

/* ── Right: Summary card ────────────────────────────────── */
.co-summary-col { position: sticky; top: 80px; }
.co-summary-card { background: #fff; border: 1.5px solid #edf0f4; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(26,31,46,.07); margin-bottom: 14px; }
.co-summary-header { background: #1a1f2e; color: #fff; padding: 16px 22px; font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.co-summary-header i { color: #f04066; }

/* Order items */
.co-summary-items { padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; border-bottom: 1px solid #edf0f4; max-height: 280px; overflow-y: auto; }
.co-summary-items::-webkit-scrollbar { width: 4px; } .co-summary-items::-webkit-scrollbar-thumb { background: #edf0f4; border-radius: 2px; }
.co-order-item { display: flex; align-items: center; gap: 12px; }
.co-order-img { width: 46px; height: 46px; border-radius: 6px; border: 1.5px solid #edf0f4; overflow: hidden; position: relative; flex-shrink: 0; background: #f8f9fd; display: flex; align-items: center; justify-content: center; }
.co-order-img img { width: 100%; height: 100%; object-fit: cover; }
.co-order-img-ph { color: #ccc; font-size: 1.1rem; }
.co-order-qty { position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; background: #f04066; color: #fff; border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.co-order-name { flex: 1; font-size: 13px; color: #444; font-weight: 500; line-height: 1.35; }
.co-order-price { font-size: 13px; font-weight: 700; color: #1a1f2e; white-space: nowrap; }

/* Summary lines */
.co-summary-lines { padding: 16px 22px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid #edf0f4; }
.co-sum-line { display: flex; justify-content: space-between; align-items: baseline; }
.co-sum-lbl { font-size: 13.5px; color: #777; }
.co-sum-val { font-size: 13.5px; color: #1a1f2e; font-weight: 600; }
.co-sum-discount .co-sum-lbl, .co-sum-discount .co-sum-val { color: #28a745; }
.co-sum-discount i { font-size: 11px; }
.co-free { color: #28a745; font-weight: 700; }

/* Total row */
.co-sum-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid #edf0f4; }
.co-sum-total-lbl { font-size: 15px; font-weight: 800; color: #1a1f2e; }
.co-sum-total-lbl small { font-size: 11px; color: #aaa; font-weight: 400; }
.co-sum-total-amt { font-size: 1.6rem; font-weight: 800; color: #f04066; }

/* Summary footer */
.co-summary-footer { padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.co-place-order-btn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 15px; background: linear-gradient(135deg, #f04066 0%, #c8284e 100%); color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity .18s, transform .15s; letter-spacing: .2px; font-family: inherit; }
.co-place-order-btn:hover { opacity: .9; transform: translateY(-1px); }
.co-secure-note { text-align: center; font-size: 12px; color: #aaa; display: flex; align-items: center; justify-content: center; gap: 6px; }
.co-secure-note i { color: #28a745; }
.co-accept-icons { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.6rem; color: #bbb; }
.co-accept-icons i:hover { color: #1a1f2e; }

.co-back-cart { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: #888; font-weight: 600; text-decoration: none; transition: color .15s; }
.co-back-cart:hover { color: #f04066; }

/* Responsive */
@media (max-width: 1100px) { .co-layout { grid-template-columns: 1fr 360px; } }
@media (max-width: 900px) {
  .co-layout { grid-template-columns: 1fr; }
  .co-summary-col { position: relative; top: 0; }
}
@media (max-width: 600px) {
  .co-grid-2 { grid-template-columns: 1fr; }
  .co-grid-3 { grid-template-columns: 1fr 1fr; }
  .co-field-postal { grid-column: 1 / -1; }
  .co-card-header { padding: 14px 16px; }
  .co-card-body { padding: 16px; }
  .co-summary-footer { padding: 16px; }
  .co-sum-total { padding: 14px 16px; }
  .co-summary-lines { padding: 14px 16px; }
  .co-summary-items { padding: 14px 16px; }
}

/* Legacy payment-option-card kept for compat */
.payment-option-card { transition: border-color .2s, background .2s; cursor: pointer; }
.payment-option-card:hover { border-color: #f04066 !important; }
.payment-option-card.selected { border-color: #f04066 !important; background: #fff5f7; }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page { min-height: 70vh; display: flex; align-items: center; }
.auth-page .card { border-radius: 16px; border: none; box-shadow: 0 4px 30px rgba(0,0,0,.1); }
.auth-page .card-body { padding: 2rem 2.5rem; }
@media (max-width: 576px) {
  .auth-page .card-body { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   ACCOUNT PAGES
   ============================================================ */
.account-nav-link { font-size: 14px; font-weight: 500; transition: background .15s, color .15s; border-radius: 8px; }
.account-nav-link:not(.active):hover { background: #f8f9fa; }
.account-page .card { border-radius: 12px; }
.account-page .card-header { background: #fff; border-bottom: 1px solid #f0f0f0; font-weight: 600; }

/* ============================================================
   ORDER SUCCESS PAGE
   ============================================================ */
.success-page .success-icon { animation: bounceIn .6s ease; }
@keyframes bounceIn {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

/* ============================================================
   LIVE SEARCH DROPDOWN
   ============================================================ */
.search-live-dropdown { border-radius: 0 0 12px 12px; box-shadow: 0 8px 30px rgba(0,0,0,.15); border: 1px solid #eee; border-top: none; }
.search-live-dropdown a { padding: 10px 14px; display: flex; align-items: center; gap: 12px; text-decoration: none; color: #1a1f2e; font-size: 13.5px; transition: background .12s; }
.search-live-dropdown a:hover { background: #f8f9fa; }
.search-live-dropdown a img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.search-live-dropdown a:last-child { border-radius: 0 0 12px 12px; }

/* ============================================================
   WISHLIST BUTTON STATES
   ============================================================ */
.wishlist-btn .fa-heart { transition: color .2s, transform .2s; }
.wishlist-btn.in-wishlist .fa-heart { color: #f04066; transform: scale(1.15); }
.wishlist-btn.in-wishlist { border-color: #f04066 !important; }

/* ============================================================
   TOAST NOTIFICATIONS (store.js AppToast)
   ============================================================ */
.app-toast-container { position: fixed; top: 80px; right: 16px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.app-toast { background: #1a1f2e; color: #fff; padding: 12px 20px; border-radius: 10px; font-size: 13.5px; box-shadow: 0 4px 20px rgba(0,0,0,.25); opacity: 0; transform: translateX(40px); transition: opacity .3s, transform .3s; pointer-events: auto; max-width: 320px; }
.app-toast.show { opacity: 1; transform: translateX(0); }
.app-toast.success { border-left: 4px solid #28a745; }
.app-toast.error   { border-left: 4px solid #f04066; }
.app-toast.info    { border-left: 4px solid #17a2b8; }

/* ============================================================
   SECONDARY NAV (site-wide links bar)
   ============================================================ */
#secondary-nav {
  background: #1a1f2e;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: sticky;
  top: 70px;
  z-index: 990;
}
.secondary-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.secondary-nav-inner::-webkit-scrollbar { display: none; }
.sec-nav-link {
  display: inline-block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  letter-spacing: .2px;
}
.sec-nav-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.sec-nav-link.active { color: #fff; border-bottom-color: #f04066; font-weight: 600; }
.sec-nav-specials {
  margin-left: auto;
  color: #f04066 !important;
  font-weight: 600 !important;
  border-bottom-color: transparent !important;
}
.sec-nav-specials:hover { color: #ff6b88 !important; }
@media (max-width: 576px) {
  .sec-nav-link { padding: 10px 14px; font-size: 12.5px; }
}

/* ============================================================
   MEGAMENU BAR (non-home pages)
   ============================================================ */
#megamenu-bar {
  background: #1a1f2e;
  border-bottom: 2px solid rgba(240,64,102,.4);
  position: sticky;
  top: 70px;
  z-index: 990;
}
.megamenu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.megamenu-nav::-webkit-scrollbar { display: none; }
.megamenu-pages { display: flex; align-items: center; }
.mm-link {
  display: inline-block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  letter-spacing: .2px;
}
.mm-link:hover  { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.mm-link.active { color: #fff; border-bottom-color: #f04066; font-weight: 600; }
.mm-specials {
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: #f04066;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(240,64,102,.4);
  border-radius: 4px;
  margin-right: 4px;
  transition: background .15s, color .15s;
}
.mm-specials:hover { background: #f04066; color: #fff; }

/* Dropdown trigger */
.mm-dropdown { position: relative; }
.mm-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 900px;
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  border-top: 3px solid #f04066;
  z-index: 1000;
}
.mm-dropdown:hover .mm-dropdown-panel { display: block; }
.mm-panel-inner {
  display: flex;
  gap: 0;
  padding: 24px;
}
.mm-col {
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid #f0f0f0;
}
.mm-col:last-child { border-right: none; }
.mm-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #1a1f2e;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f04066;
}
.mm-col a {
  display: block;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 5px 0;
  transition: color .12s, padding-left .12s;
}
.mm-col a:hover { color: #f04066; padding-left: 4px; }
.mm-col-featured .mm-featured-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #1a1f2e !important;
  padding: 7px 0 !important;
}
.mm-col-featured .mm-featured-link:hover { color: #f04066 !important; }

/* ============================================================
   PAGES — About & Contact
   ============================================================ */
.page-header-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3349 100%);
  padding: 60px 0 50px;
  color: #fff;
}
.page-header-section h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: .5rem; }
.page-header-section .breadcrumb-item,
.page-header-section .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: 13.5px; }
.page-header-section .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-header-section .breadcrumb-divider { color: rgba(255,255,255,.4); }

.stat-card { border-radius: 16px; border: none; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .2s, box-shadow .2s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.stat-card h3 { font-size: 2.5rem; font-weight: 800; color: #f04066; }

.cat-card-about { border-radius: 16px; border: 1px solid #f0f0f0; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.cat-card-about:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.cat-card-about .cat-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 14px; }

.reason-card { border-radius: 16px; border: 1px solid #f0f0f0; padding: 24px; transition: border-color .2s, box-shadow .2s; }
.reason-card:hover { border-color: #f04066; box-shadow: 0 6px 20px rgba(240,64,102,.1); }
.reason-card .reason-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(240,64,102,.1); display: flex; align-items: center; justify-content: center; color: #f04066; font-size: 1.3rem; margin-bottom: 14px; }

.contact-card { border-radius: 16px; border: none; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f5f5f5; }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item .ci-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(240,64,102,.1); display: flex; align-items: center; justify-content: center; color: #f04066; font-size: 1rem; flex-shrink: 0; }

@media (max-width: 992px) {
  #megamenu-bar { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   UI IMPROVEMENTS — April 2026
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Sticky navbar compact on scroll ───────────────────────── */
#main-navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.14);
}
#main-navbar.scrolled .navbar-logo { height: 40px; }

/* ─── Shop-by-Category strip ─────────────────────────────────── */
#categories-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.cats-strip-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.cats-strip-grid::-webkit-scrollbar { display: none; }
.cat-strip-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: all .2s cubic-bezier(.4,0,.2,1);
  min-width: 84px;
}
.cat-strip-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(240,64,102,.22);
}
.cat-strip-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(240,64,102,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--primary);
  transition: all .2s;
}
.cat-strip-item:hover .cat-strip-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.cat-strip-item .cat-strip-label {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

/* ─── Auto-scrolling brands marquee ──────────────────────────── */
#brands-section .brands-slider {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
}
#brands-section .brands-slider::before,
#brands-section .brands-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
#brands-section .brands-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}
#brands-section .brands-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}
.brands-track {
  display: flex;
  flex-wrap: nowrap;
  animation: brandsTicker 28s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandsTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Improved product card bottom section ───────────────────── */
.product-card .product-price {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-price .price-labels {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.btn-add-to-cart {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s, transform .15s;
  margin-top: 10px;
}
.btn-add-to-cart:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-add-to-cart:disabled {
  background: var(--gray);
  cursor: not-allowed;
  transform: none;
  opacity: .7;
}
.btn-add-to-cart.loading {
  opacity: .7;
  pointer-events: none;
}

/* ─── Promo band scrolling ticker ────────────────────────────── */
#promo-band .promo-band-track {
  display: flex;
  flex-wrap: nowrap;
  animation: promoBandTicker 22s linear infinite;
  width: max-content;
  gap: 0;
}
#promo-band .promo-band-inner-wrap {
  overflow: hidden;
  width: 100%;
}
@keyframes promoBandTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Promo banners compact grid ─────────────────────────────── */
.promo-banner-card {
  border-radius: var(--radius-lg);
}

/* ─── Section title accent line extends on hover ─────────────── */
.section-header:hover .section-title::after {
  width: 72px;
  transition: width .3s ease;
}
.section-title::after {
  transition: width .3s ease;
}

/* ─── Feature icon rounded ───────────────────────────────────── */
.feature-icon { border-radius: var(--radius-lg); }

/* ─── Toast improvements ─────────────────────────────────────── */
.toast-container-custom {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.vc-toast {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: toastIn .3s cubic-bezier(.4,0,.2,1);
  pointer-events: auto;
  min-width: 240px;
  max-width: 380px;
}
.vc-toast.success { border-left: 4px solid var(--success); }
.vc-toast.error   { border-left: 4px solid #f04066; }
.vc-toast.info    { border-left: 4px solid #0ea5e9; }
.vc-toast.fade-out { animation: toastOut .3s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes toastIn  { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes toastOut { from { opacity:1; transform:translateX(0); } to { opacity:0; transform:translateX(30px); } }

/* ─── Cart off-canvas improvements ──────────────────────────── */
.cart-offcanvas { border-radius: 0; }

/* ─── Responsive tweaks for new sections ────────────────────── */
@media (max-width: 767px) {
  .cat-strip-item { min-width: 74px; padding: 12px 14px; }
  .cat-strip-icon { width: 38px; height: 38px; font-size: 17px; }
  .cat-strip-item .cat-strip-label { font-size: 11px; }
  #categories-strip { padding: 14px 0; }
}
@media (max-width: 575px) {
  .btn-add-to-cart { font-size: 12px; padding: 8px 12px; }
  .cat-strip-item { min-width: 68px; padding: 10px 12px; }
}

/* ============================================================
   MOBILE NAVIGATION DRAWER
   ============================================================ */
#mobileNavDrawer { --bs-offcanvas-width: 300px; }

.mnav-header {
  background: #1a1f2e;
  padding: 14px 20px;
}

.mnav-account-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f9fc;
  border-bottom: 1px solid #edf0f4;
  text-decoration: none;
  color: #1a1f2e;
  transition: background .12s;
}
.mnav-account-strip:hover { background: #f0f4ff; color: #1a1f2e; }
.mnav-account-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(240,64,102,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f04066;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.mnav-account-name { font-size: 13.5px; font-weight: 700; color: #1a1f2e; line-height: 1.3; }
.mnav-account-sub  { font-size: 11.5px; color: #888; }

.mnav-links { display: flex; flex-direction: column; }

.mnav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background .12s, color .12s;
  font-family: inherit;
  letter-spacing: 0;
}
.mnav-link i:first-child {
  width: 18px;
  text-align: center;
  color: #f04066;
  flex-shrink: 0;
  font-size: 13px;
}
.mnav-link:hover,
.mnav-link:focus { background: #fff5f7; color: #f04066; text-decoration: none; }
.mnav-link:hover i:first-child,
.mnav-link:focus i:first-child { color: #f04066; }

.mnav-chevron { transition: transform .22s ease; margin-left: auto; font-size: 11px; color: #bbb; }
.mnav-link--accordion[aria-expanded="true"] .mnav-chevron { transform: rotate(180deg); }

.mnav-sub-links {
  background: #f8f9fc;
  border-bottom: 1px solid #edf0f4;
  padding: 4px 0;
}
.mnav-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 44px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color .12s, background .12s;
  border-bottom: 1px solid #f5f5f5;
}
.mnav-sub-link:last-child { border-bottom: none; }
.mnav-sub-link i { width: 16px; text-align: center; color: #f04066; font-size: 12px; flex-shrink: 0; }
.mnav-sub-link:hover { background: #fff0f3; color: #f04066; }
.mnav-sub-link--all {
  font-weight: 700;
  color: #1a1f2e;
  background: #f0f4ff;
  padding-left: 44px;
  border-bottom: 1px solid #e8ecf0;
}
.mnav-sub-link--all:hover { background: #e8f0ff; color: #f04066; }

.mnav-divider { height: 6px; background: #f4f6f9; border-top: 1px solid #edf0f4; border-bottom: 1px solid #edf0f4; flex-shrink: 0; }
.mnav-link--specials { color: #f04066 !important; font-weight: 700 !important; }
.mnav-link--specials:hover { background: #fff0f4; }

.mnav-contact-strip {
  padding: 16px 20px;
  background: #1a1f2e;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mnav-contact-strip a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mnav-contact-strip a i { color: #f04066; }
.mnav-contact-strip a:hover { color: #fff; }

/* ============================================================
   MEGAMENU — suppress hover dropdown below 1100px
   (link still navigates; avoid 900px-wide panel overflow)
   ============================================================ */
@media (max-width: 1100px) {
  .mm-dropdown-panel { display: none !important; }
  .mm-dropdown .mm-link .fa-chevron-down { display: none; }
}

/* ============================================================
   RESPONSIVE POLISH — additional breakpoints
   ============================================================ */

/* ── ≤991px general fixes ───────────────────────────────────── */
@media (max-width: 991px) {
  /* Account sidebar stacks above content on tablet */
  .account-page .col-md-3 { margin-bottom: 20px; }

  /* Page header section smaller on tablets */
  .page-header-section { padding: 40px 0 32px; }
  .page-header-section h1 { font-size: 1.65rem; }

  /* Toast right-aligned narrower screens */
  .app-toast-container,
  .toast-container-custom { right: 10px; max-width: calc(100vw - 20px); }
}

/* ── ≤767px ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Page header */
  .page-header-section { padding: 32px 0 24px; }
  .page-header-section h1 { font-size: 1.4rem; }

  /* Cart item name truncation relief */
  .cart-item-name { max-width: 100%; white-space: normal; }

  /* Co-summary above form on mobile */
  .co-layout { direction: ltr; }

  /* Features strip: 2-col grid */
  .features-grid .col-md-3 { flex: 0 0 50%; max-width: 50%; }

  /* Newsletter form: stack */
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; border-radius: 4px !important; }
}

/* ── ≤575px ─────────────────────────────────────────────────── */
@media (max-width: 575px) {
  /* Stats strip: hide separators, wrap */
  .shop-stat-sep { display: none; }
  .shop-stat-item { padding: 0 10px; }
  .shop-stats-inner { gap: 0; }
  .shop-stats-search { padding: 0 10px 8px; width: 100%; }
  .shop-quick-search-form { min-width: unset; width: 100%; }

  /* Sort + view toggle: stack on very small screens */
  .toolbar-right { gap: 6px; }
  .sort-wrap select { min-width: 140px; }

  /* Auth: tighter heading */
  .auth-page .card-body h2,
  .auth-page .card-body h3 { font-size: 1.3rem; }

  /* Checkout step bars */
  .co-steps { gap: 0; }
  .co-step-label { display: none; }
  .co-step-icon { min-width: 38px; min-height: 38px; }

  /* Contact page stat cards */
  .stat-card h3 { font-size: 1.75rem; }

  /* Success / pending page */
  .success-page .display-4 { font-size: 1.8rem; }

  /* Active filters wrap better */
  .active-filters { padding: 10px 12px; }
  .filter-chip { font-size: 12px; padding: 4px 8px; }
}

/* ── ≤380px (very small phones) ────────────────────────────── */
@media (max-width: 380px) {
  /* Navbar logo size */
  .navbar-logo { height: 30px; }

  /* Hero CTA */
  .btn-slide-cta { padding: 7px 14px; font-size: 11px; }

  /* Sort select */
  .sort-wrap select { min-width: 120px; font-size: 12px; }
  .view-toggle { display: none; }

  /* Product name in card */
  .product-name { font-size: 12px; }

  /* Cart qty */
  .cart-qty-val { min-width: 36px; padding: 0 10px; }
}
