/* ============================================================
   CLEP N FLYY – Brand Theme  (Black & White Luxury Edition)
   Ink (#0A0A0A) × Pure White (#FFFFFF) — Sharp. Clean. Iconic.
   ============================================================ */

:root {
  /* ── Core Palette ── */
  --color-navy:        #0A0A0A;      /* brand black */
  --color-navy-mid:    #141414;
  --color-navy-light:  #222222;
  --color-navy-border: rgba(255,255,255,0.10);
  --color-gold:        #FFFFFF;      /* "accent on dark" = pure white */
  --color-gold-light:  rgba(255,255,255,0.85);
  --color-gold-dark:   #CCCCCC;
  --color-cream:       #F5F5F5;      /* page background */
  --color-cream-mid:   #E5E5E5;      /* borders / dividers */
  --color-white:       #FFFFFF;
  --color-text-dark:   #0A0A0A;
  --color-text-body:   #1A1A1A;
  --color-text-muted:  #888888;
  --color-success:     #10B981;
  --color-danger:      #EF4444;
  --color-warning:     #F59E0B;
  --color-info:        #3B82F6;

  /* ── Typography ── */
  --font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Radii ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-pill: 50px;

  /* ── Shadows ── */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.14);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.16);
  --shadow-focus: 0 0 0 3px rgba(0,0,0,0.12);

  /* ── Motion ── */
  --transition:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --navbar-height: 80px;
}

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }

a {
  color: var(--color-navy);
  transition: var(--transition);
  text-decoration: none;
}
a:hover { color: var(--color-text-muted); }

/* ─── Navbar ──────────────────────────────────────────────── */
.navbar {
  height: var(--navbar-height);
  background: var(--color-white) !important;
  border-bottom: 1px solid var(--color-cream-mid);
  transition: var(--transition-slow);
}
.navbar.navbar-scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-brand { display: flex; align-items: center; }

/* ── Logo size: 200px desktop, scale down on smaller screens ── */
.navbar-logo {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 1199px) { .navbar-logo { width: 160px; } }
@media (max-width: 991px)  { .navbar-logo { width: 140px; } }
@media (max-width: 575px)  { .navbar-logo { width: 110px; } }

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-navy) !important;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.navbar-nav .nav-link:hover {
  color: var(--color-text-muted) !important;
  background: var(--color-cream);
}
.navbar-nav .nav-link.active {
  color: var(--color-navy) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Cart badge */
.cart-badge {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 1px 6px;
  position: absolute;
  top: -6px;
  right: -8px;
}

/* Icon button */
.navbar-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--color-navy);
  background: transparent;
  border: none;
  cursor: pointer;
}
.navbar-icon-btn:hover { background: var(--color-cream); color: var(--color-navy); }

/* ─── Search Bar ─────────────────────────────────────────── */
.search-wrapper { position: relative; }
.search-input {
  width: 300px;
  border-radius: var(--radius-pill) !important;
  border: 1.5px solid var(--color-cream-mid) !important;
  padding: 0.5rem 1rem 0.5rem 2.5rem !important;
  font-size: 0.875rem;
  transition: var(--transition);
  background: var(--color-cream);
}
.search-input:focus {
  border-color: var(--color-navy) !important;
  box-shadow: var(--shadow-focus) !important;
  background: var(--color-white);
}
.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  overflow: hidden;
  border: 1px solid var(--color-cream-mid);
}
.search-dropdown.show { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-cream-mid);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--color-cream); }
.search-result-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-cream-mid);
  flex-shrink: 0;
}
.search-result-name  { font-size: 0.875rem; font-weight: 500; }
.search-result-price { font-size: 0.8rem; color: var(--color-text-muted); font-weight: 600; }
.search-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  background: var(--color-cream);
  color: var(--color-navy);
  font-weight: 600;
}
.search-view-all:hover { background: var(--color-navy); color: var(--color-white); }

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  min-height: calc(85vh - var(--navbar-height));
  background: var(--color-navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.hero h1 span { color: var(--color-white); opacity: 0.7; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; }

/* ─── Delivery Badge ─────────────────────────────────────── */
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}
.delivery-badge .dot {
  width: 8px; height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* ─── Buttons ────────────────────────────────────────────── */
/* Primary CTA — white bg, black text (stands out on dark hero) */
.btn-gold {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-white);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  transition: var(--transition);
  padding: 0.6rem 1.5rem;
}
.btn-gold:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}
.btn-gold:active { transform: translateY(0); }

/* On light backgrounds, primary CTA → black */
.btn-gold.btn-dark-ctx,
section:not(.hero) .btn-gold {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
section:not(.hero) .btn-gold:hover {
  background: var(--color-navy-light);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Dark button */
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  padding: 0.6rem 1.5rem;
}
.btn-navy:hover {
  background: var(--color-navy-light);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Outline variants */
.btn-outline-gold {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--color-white); color: var(--color-navy); }

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-outline-navy:hover { background: var(--color-navy); color: var(--color-white); }

/* ─── Product Card ───────────────────────────────────────── */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-cream-mid);
  transition: var(--transition-slow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.product-card-img-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  aspect-ratio: 1 / 1;
}
.product-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img-wrapper img { transform: scale(1.07); }
.product-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-navy);
}
.product-card-price .old-price {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}
.product-card-actions {
  display: flex;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-cream-mid);
}
.btn-add-cart {
  flex: 1;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-add-cart:hover { background: var(--color-navy-light); }
.btn-wishlist {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--color-cream-mid);
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  color: var(--color-text-muted);
}
.btn-wishlist:hover, .btn-wishlist.active {
  border-color: var(--color-danger);
  color: var(--color-danger);
  background: #FEF2F2;
}

/* ─── Product Badges ─────────────────────────────────────── */
.badge-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.badge-overlay .badge-right {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
}
.product-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}
.badge-sale        { background: var(--color-navy);   color: var(--color-white); }
.badge-new         { background: var(--color-white);   color: var(--color-navy); border: 1px solid var(--color-navy); }
.badge-bestseller  { background: var(--color-navy);   color: var(--color-white); }
.badge-veel_gekocht{ background: rgba(0,0,0,0.85);    color: var(--color-white); }
.badge-populair    { background: rgba(0,0,0,0.70);    color: var(--color-white); }
.badge-hot_item    { background: var(--color-danger); color: var(--color-white); }
.badge-trending    { background: var(--color-navy);   color: var(--color-white); }

/* ─── Star Rating ────────────────────────────────────────── */
.stars       { color: #B0B0B0; font-size: 0.85rem; letter-spacing: 1px; }
.stars-empty { color: var(--color-cream-mid); }

/* ─── Section Titles ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-navy);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-navy);
  margin-top: 12px;
}
.section-title.centered::after { margin-left: auto; margin-right: auto; }

/* Section title on dark background */
.section-title.on-dark { color: var(--color-white); }
.section-title.on-dark::after { background: var(--color-white); }

/* ─── Category Card ──────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--color-navy-mid);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.60;
  transition: var(--transition-slow);
}
.category-card:hover img { opacity: 0.45; transform: scale(1.05); }
.category-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ─── Filter Sidebar ─────────────────────────────────────── */
.filter-sidebar {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-cream-mid);
  position: sticky;
  top: 90px;
}
.filter-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-navy);
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.price-range-display {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}
.form-range::-webkit-slider-thumb { background: var(--color-navy); }
.form-check-input:checked {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
}

/* ─── Cart Offcanvas ─────────────────────────────────────── */
.offcanvas-cart .offcanvas-header {
  background: var(--color-navy);
  color: var(--color-white);
}
.offcanvas-cart .offcanvas-title {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-weight: 700;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  flex-shrink: 0;
}
.cart-item-name  { font-weight: 600; font-size: 0.875rem; color: var(--color-navy); }
.cart-item-price { font-weight: 700; color: var(--color-text-body); }
.cart-qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--color-cream-mid);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-qty-btn:hover { border-color: var(--color-navy); color: var(--color-navy); }
.cart-qty-val {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.cart-total-row {
  border-top: 2px solid var(--color-cream-mid);
  padding-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* ─── Forms ──────────────────────────────────────────────── */
.form-control:focus, .form-select:focus {
  border-color: var(--color-navy) !important;
  box-shadow: var(--shadow-focus) !important;
}
.form-label { font-weight: 600; font-size: 0.875rem; color: var(--color-navy); }
.form-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-cream-mid);
  margin-bottom: 1.5rem;
}
.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-navy);
}

/* ─── Checkout Steps ─────────────────────────────────────── */
.checkout-steps {
  display: flex;
  margin-bottom: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-cream-mid);
}
.checkout-step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.checkout-step::after {
  content: '';
  position: absolute;
  top: 18px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--color-cream-mid);
  z-index: 0;
}
.checkout-step:last-child::after { display: none; }
.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-cream-mid);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 6px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.checkout-step.active .step-number   { background: var(--color-navy); color: var(--color-white); }
.checkout-step.completed .step-number{ background: var(--color-success); color: var(--color-white); }
.checkout-step.active { color: var(--color-navy); }

/* ─── Order Status Pills ─────────────────────────────────── */
.status-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.status-pending    { background: #FEF3C7; color: #92400E; }
.status-confirmed  { background: #DBEAFE; color: #1E40AF; }
.status-processing { background: #EDE9FE; color: #5B21B6; }
.status-shipped    { background: #CFFAFE; color: #155E75; }
.status-delivered  { background: #D1FAE5; color: #065F46; }
.status-cancelled  { background: #FEE2E2; color: #991B1B; }
.status-refunded   { background: #F3F4F6; color: #374151; }

/* ─── Account Dashboard ──────────────────────────────────── */
.account-sidebar {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.account-sidebar .nav-link {
  color: rgba(255,255,255,0.7) !important;
  padding: 0.85rem 1.25rem;
  border-radius: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.account-sidebar .nav-link:hover  { color: var(--color-white) !important; background: rgba(255,255,255,0.06); }
.account-sidebar .nav-link.active { color: var(--color-white) !important; background: rgba(255,255,255,0.12); }
.account-sidebar-header {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.account-name  { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white); font-weight: 600; }
.account-email { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
footer h5 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
footer a { color: rgba(255,255,255,0.55); font-size: 0.875rem; }
footer a:hover { color: var(--color-white); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
}
.footer-credit a:hover { color: var(--color-white); }
.payment-icon {
  height: 22px;
  opacity: 0.45;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.payment-icon:hover { opacity: 0.9; }

/* ─── Cookie Banner ──────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  border: 1px solid rgba(255,255,255,0.10);
  display: none;
}
#cookie-banner.show { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.80); margin-bottom: 1rem; }

/* ─── Flash Messages ─────────────────────────────────────── */
.flash-container { position: fixed; top: 90px; right: 1.5rem; z-index: 9000; max-width: 380px; }
.flash-message {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  animation: slideInRight 0.3s ease;
  margin-bottom: 0.75rem;
}
@keyframes slideInRight {
  from { transform: translateX(20px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-item a { color: var(--color-text-muted); font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--color-navy); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--color-text-muted); }

/* ─── Pagination ─────────────────────────────────────────── */
.page-link {
  color: var(--color-navy);
  border-radius: var(--radius-md) !important;
  margin: 0 2px;
  border: 1px solid var(--color-cream-mid);
}
.page-link:hover { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.page-item.active .page-link { background: var(--color-navy); border-color: var(--color-navy); color: var(--color-white); }

/* ─── KPI Cards (shared admin/account) ──────────────────── */
.kpi-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--color-navy);
  transition: var(--transition);
}
.kpi-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.kpi-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-navy); }
.kpi-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }

/* ─── Partner Strip ──────────────────────────────────────── */
.partners-strip {
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
  overflow: hidden;
}
.partners-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.30);
  text-align: center;
  margin-bottom: 1.75rem;
}
.partners-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: scrollPartners 30s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes scrollPartners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item { display: flex; align-items: center; flex-shrink: 0; }
.partner-item a { display: flex; align-items: center; }
.partner-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.40;
  transition: opacity 0.25s ease;
}
.partner-logo:hover { opacity: 0.85; }
.partner-name-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.partner-item:hover .partner-name-text { color: rgba(255,255,255,0.85); }

/* ─── Utilities ──────────────────────────────────────────── */
.text-gold    { color: var(--color-white) !important; }   /* legacy: white on dark */
.text-navy    { color: var(--color-navy)  !important; }
.bg-navy      { background-color: var(--color-navy)  !important; }
.bg-gold      { background-color: var(--color-white) !important; }
.bg-cream     { background-color: var(--color-cream) !important; }
.border-gold  { border-color: var(--color-navy) !important; }
.font-heading { font-family: var(--font-heading) !important; }
.rounded-lg   { border-radius: var(--radius-lg) !important; }
.fw-600       { font-weight: 600 !important; }
.fw-700       { font-weight: 700 !important; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--color-white);
    border-top: 1px solid var(--color-cream-mid);
    padding: 1rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  .search-input { width: 100%; }
}
@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .filter-sidebar  { position: static; margin-bottom: 1.5rem; }
  .account-sidebar { position: static; margin-bottom: 1.5rem; }
  .flash-container { left: 1rem; right: 1rem; max-width: none; }
  #cookie-banner   { left: 0.75rem; right: 0.75rem; }
  footer { margin-top: 3rem; }
}
@media (max-width: 576px) {
  .partners-track { gap: 3rem; }
}

/* ── Mobile UX: touch targets & overflow fixes ── */
@media (max-width: 768px) {
  .cart-qty-btn { min-width: 36px; min-height: 36px; font-size: 1.1rem; }
  .variation-option { min-height: 44px; display: inline-flex; align-items: center; }
  .status-timeline { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .status-timeline::-webkit-scrollbar { height: 4px; }
  .status-timeline::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
}
