/* ============================================
   PORHN — Premium Mobile Accessories
   Design: Black / Blue / White
   ============================================ */

:root {
  --black: #0A0A0B;
  --black-2: #111118;
  --black-3: #1A1A24;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-pale: #60A5FA;
  --blue-glow: rgba(37, 99, 235, 0.4);
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gold: #F59E0B;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-blue: 0 0 30px rgba(37, 99, 235, 0.3);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--blue);
  padding: 8px 16px;
  overflow: hidden;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.ann-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--white);
}

.ann-sep {
  color: rgba(255,255,255,0.4);
  font-size: 10px;
}

@media (max-width: 768px) {
  .announcement-inner { gap: 8px; }
  .ann-item { font-size: 11px; }
  .ann-sep:nth-child(4), .ann-sep:nth-child(4) ~ * { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 11, 0.98);
  border-bottom-color: rgba(37, 99, 235, 0.4);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Left nav */
.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-left a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-left a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-left a:hover, .nav-left a.active {
  color: var(--white);
}

.nav-left a:hover::after, .nav-left a.active::after {
  transform: scaleX(1);
}

/* Logo center */
.nav-logo {
  text-align: center;
}

.nav-logo a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, var(--blue-pale) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: var(--transition);
}

.nav-logo a:hover {
  filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.6));
}

/* Right icons */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.nav-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  background: rgba(255,255,255,0.04);
  position: relative;
  font-size: 16px;
}

.nav-icon:hover {
  color: var(--white);
  background: rgba(37, 99, 235, 0.2);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 103px; left: 0; right: 0;
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--white); }

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  padding-top: 103px; /* 33px ann bar + 70px header */
  min-height: 100vh;
}

@media (max-width: 768px) {
  main { padding-top: 103px; }
}

.page { display: none; }
.page.active { display: block; }

/* ============================================
   GLITTER ANIMATION
   ============================================ */
@keyframes glitter {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
}

/* Glitter particles */
.glitter-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.glitter-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--blue-pale);
  border-radius: 50%;
  animation: glitter var(--duration, 3s) var(--delay, 0s) infinite;
  opacity: 0;
  box-shadow: 0 0 6px var(--blue-pale);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-text h1 .line-blue {
  background: linear-gradient(90deg, var(--blue-light), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 44px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(37, 99, 235, 0.4),
    0 0 120px rgba(37, 99, 235, 0.2),
    inset 0 0 40px rgba(96, 165, 250, 0.1);
  animation: float 6s ease-in-out infinite;
  border: 2px solid rgba(96, 165, 250, 0.3);
}

.hero-phone-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(96, 165, 250, 0.03) 2px,
      rgba(96, 165, 250, 0.03) 4px
    );
}

.hero-phone-inner {
  position: absolute;
  inset: 8px;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(37,99,235,0.4), rgba(10,10,11,0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.phone-sparkle {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%; left: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(96, 165, 250, 0.15) 30deg,
    transparent 60deg,
    rgba(37, 99, 235, 0.1) 120deg,
    transparent 150deg,
    rgba(96, 165, 250, 0.15) 210deg,
    transparent 240deg,
    rgba(37, 99, 235, 0.1) 300deg,
    transparent 330deg,
    transparent 360deg
  );
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.phone-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  z-index: 1;
}

.phone-sublabel {
  font-size: 11px;
  color: var(--blue-pale);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  border-radius: 50%;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Trust badges */
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.trust-item span:first-child {
  font-size: 16px;
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 24px;
  background: var(--black-2);
}

.section-full .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 380px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  group: true;
}

.category-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.cat-airpods .category-card-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 60%),
    linear-gradient(160deg, #0f1729 0%, #0a0a0b 100%);
}

.cat-iphone .category-card-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, #0d1627 0%, #0a0a0b 100%);
}

.cat-briquet .category-card-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(245, 158, 11, 0.2) 0%, transparent 60%),
    linear-gradient(160deg, #1a1208 0%, #0a0a0b 100%);
}

.category-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 80px;
  transition: var(--transition);
  filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.4));
}

.category-card:hover .category-icon {
  transform: translate(-50%, -65%);
}

.category-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,10,11,0.95) 0%, transparent 100%);
}

.category-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.category-count {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-pale);
  transition: var(--transition);
}

.category-link:hover { gap: 10px; }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.why-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(37,99,235,0.15);
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d0d1a, #0a0a0b);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0a0a0b, #1a1a2e);
  color: var(--white);
  font-size: 40px;
}

.product-img-placeholder span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-pale);
  text-align: center;
  padding: 0 16px;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.product-badge.new { background: var(--blue); }
.product-badge.popular { background: #7C3AED; }
.product-badge.sale { background: #DC2626; }

.product-actions {
  position: absolute;
  bottom: -50px; left: 0; right: 0;
  background: rgba(10,10,11,0.9);
  backdrop-filter: blur(10px);
  padding: 12px;
  transition: var(--transition);
  display: flex;
  gap: 8px;
}

.product-card:hover .product-actions {
  bottom: 0;
}

.product-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  color: var(--white);
}

.btn-cart {
  background: var(--blue);
}
.btn-cart:hover { background: var(--blue-light); }

.btn-view {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-view:hover { background: rgba(255,255,255,0.2); }

.product-info {
  padding: 16px;
  background: var(--white);
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-sub {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
}

.stars { color: var(--gold); font-size: 11px; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 60px 24px 40px;
  background: linear-gradient(180deg, var(--black-2), var(--black));
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
}

.page-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 24px;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 90px;
}

.product-main-img {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
  margin-bottom: 16px;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.thumb.active, .thumb:hover {
  border-color: var(--blue);
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.detail-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.detail-description {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 15px;
}

.color-section, .model-section {
  margin-bottom: 24px;
}

.option-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.color-swatches {
  display: flex;
  gap: 10px;
}

.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.swatch.active {
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

/* Image-based color swatches (product thumbnails) */
.color-swatches-imgs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.swatch.swatch-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.swatch.swatch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.swatch.swatch-img.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}

.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-chip {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.model-chip.active, .model-chip:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--blue-light);
  color: var(--blue-pale);
}

.detail-actions {
  margin-bottom: 20px;
}

/* Primary Buy Now — prominent gold CTA */
.btn-buy-now-primary {
  width: 100%;
  padding: 20px 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0A0A0B;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-buy-now-primary:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245, 158, 11, 0.55), 0 4px 12px rgba(0,0,0,0.3);
}

.btn-buy-now-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Secondary add to cart */
.btn-add-cart-full {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-add-cart-full:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

/* Kept for backwards compat in cart drawer */
.btn-add-cart {
  padding: 16px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--blue);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: rgba(37, 99, 235, 0.15);
}

.btn-buy-now {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-buy-now:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}

/* ============================================
   PAYMENT TRUST BAR (product detail + home)
   ============================================ */
.detail-payment-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.pay-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1.5px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}

.pay-visa {
  background: #1a1f71;
  color: #fff;
  border-color: #2a30a0;
  font-style: italic;
  font-size: 13px;
}

.pay-mc {
  background: linear-gradient(135deg, #eb001b 40%, #f79e1b 100%);
  color: #fff;
  border-color: transparent;
  padding: 6px 10px;
}

.pay-apple {
  background: #000;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  font-size: 12px;
}

.pay-google {
  background: #fff;
  color: #3c4043;
  border-color: #dadce0;
  font-weight: 700;
}

.pay-google::first-letter {
  color: #4285F4;
}

.pay-cb {
  background: #003189;
  color: #fff;
  border-color: #0044bb;
}

.pay-stripe {
  background: #635bff;
  color: #fff;
  border-color: #7a73ff;
  font-size: 11px;
  letter-spacing: 1px;
}

.secure-badge {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Home page payment section */
.home-payment-section {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 40px 24px;
  text-align: center;
}

.home-payment-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.home-payment-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.pay-badges-home {
  justify-content: center;
  gap: 10px;
}

.pay-badges-home .pay-badge {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 9px;
}

.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.ship-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Bundle */
.bundle-card {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(96,165,250,0.05));
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.bundle-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bundle-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.bundle-items {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bundle-item-img {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: var(--black-3);
  flex-shrink: 0;
}

.bundle-plus { font-size: 20px; color: var(--blue-pale); }

.bundle-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bundle-saving {
  font-size: 13px;
  color: #22C55E;
  font-weight: 600;
}

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

.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.review-card:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }

.review-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { color: var(--blue-pale); }

.faq-icon {
  font-size: 20px;
  color: var(--blue-pale);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 40px 24px;
}

.payment-icon {
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 32px;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff, var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: rgba(255,255,255,0.5);
}

.social-btn:hover {
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-pale);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--black-2);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 18px;
  font-weight: 700;
}

.cart-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.cart-empty span { font-size: 56px; }
.cart-empty p { font-size: 14px; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.cart-item-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--blue-pale);
  font-weight: 600;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
}

.qty-btn:hover { background: rgba(37,99,235,0.3); }

.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-remove {
  color: rgba(255,255,255,0.25);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

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

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.shipping-select {
  margin-bottom: 20px;
}

.shipping-select label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 10px;
}

.shipping-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ship-opt {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.ship-opt.active {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--blue);
}

.ship-opt-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ship-opt-price {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
}

.btn-checkout:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.5);
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  backdrop-filter: blur(8px);
}

.search-modal.open { display: flex; }

.search-box {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 16px;
}

.search-input {
  width: 100%;
  padding: 18px 56px 18px 56px;
  background: var(--black-2);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 18px;
  font-family: var(--font-main);
  outline: none;
  box-shadow: 0 0 40px rgba(37,99,235,0.3);
}

.search-input::placeholder { color: rgba(255,255,255,0.3); }

.search-icon-left {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--blue-pale);
}

.search-close-btn {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 4px;
}

.search-results {
  background: var(--black-2);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: none;
}

.search-results.has-results { display: block; }

.search-result-item {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.search-result-item:last-child { border-bottom: none; }

.search-result-item:hover { background: rgba(37,99,235,0.08); }

.sr-icon { font-size: 24px; }

.sr-name { font-size: 15px; font-weight: 600; }
.sr-price { font-size: 13px; color: var(--blue-pale); }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--black-2);
}

.video-inner {
  max-width: 900px;
  margin: 0 auto;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1627, #0a0a0b);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(37,99,235,0.2);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.15), transparent 70%);
}

.play-btn {
  width: 80px; height: 80px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-blue 2s ease-in-out infinite;
  z-index: 1;
  box-shadow: 0 0 40px rgba(37,99,235,0.5);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--blue-light);
}

.video-caption {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  z-index: 1;
}

/* ============================================
   GUIDE PAGE
   ============================================ */
.guide-content {
  max-width: 860px;
  margin: 0 auto;
}

.guide-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.guide-step:hover {
  background: rgba(37,99,235,0.04);
  border-color: rgba(37,99,235,0.2);
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.contact-detail span:first-child { font-size: 20px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: rgba(37,99,235,0.05);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--black-2); }

/* ============================================
   AFFILIATION PAGE
   ============================================ */
.affil-hero {
  text-align: center;
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.affil-percent {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.affil-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px auto;
  max-width: 1000px;
  padding: 0 24px;
}

.affil-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.affil-step-icon { font-size: 40px; margin-bottom: 16px; }

.affil-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.affil-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.affil-form {
  max-width: 560px;
  margin: 0 auto 80px;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-lg);
}

.affil-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--black-2);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(37,99,235,0.2);
  animation: fadeInUp 0.3s ease;
  max-width: 320px;
}

.toast.success { border-color: rgba(34,197,94,0.4); }
.toast.error { border-color: rgba(239,68,68,0.4); }

.toast-icon { font-size: 20px; }

/* ============================================
   BACK BUTTON
   ============================================ */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  transition: var(--transition);
  cursor: pointer;
}

.back-btn:hover { color: var(--white); }

/* ============================================
   SIMILAR PRODUCTS
   ============================================ */
/* Lifestyle gallery */
.lifestyle-section {
  padding: 48px 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.lifestyle-img-card {
  border-radius: 16px;
  overflow: hidden;
  background: #F5F5F5;
  aspect-ratio: 1 / 1;
}
.lifestyle-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.similar-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: rgba(255,255,255,0.15); }

/* ============================================
   REAL PRODUCT IMAGES
   ============================================ */

/* Product card image */
.product-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* For studio-shot products (lighters) with white/neutral bg — show full item */
.product-img-real.contain-mode {
  object-fit: contain;
  padding: 8%;
}

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

/* Flame image shown below main product image (briquets allumés) */
.product-img-flame {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #F5F5F5;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.product-img-flame-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* Lifestyle shot shown below main product image — all categories */
.product-img-lifestyle {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

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

.product-card:hover .product-img-lifestyle-img {
  transform: scale(1.04);
}

.product-img-lifestyle-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.50);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* Product detail main image */
.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.product-detail-img.contain-mode {
  object-fit: contain;
  padding: 5%;
}

/* Hero product image */
.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
  display: block;
  animation: float 6s ease-in-out infinite;
}

.hero-product-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Nav logo wordmark — porhn lowercase signature */
.nav-logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo-wordmark {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.2s ease;
}

.nav-logo-link:hover .nav-logo-wordmark {
  filter: drop-shadow(0 0 12px rgba(147,197,253,0.5));
}

/* Nav logo image (legacy) */
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.nav-logo a:hover .nav-logo-img {
  opacity: 0.8;
}

/* ============================================
   PRODUCT SHOWCASE / VIDEO SECTION
   ============================================ */

.showcase-reel {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  position: relative;
  margin-top: 40px;
}

.showcase-reel::before,
.showcase-reel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.showcase-reel::before {
  left: 0;
  background: linear-gradient(to right, var(--black-1), transparent);
}

.showcase-reel::after {
  right: 0;
  background: linear-gradient(to left, var(--black-1), transparent);
}

.showcase-track {
  display: flex;
  gap: 16px;
  animation: showcaseScroll 28s linear infinite;
  width: max-content;
}

.showcase-track:hover {
  animation-play-state: paused;
}

@keyframes showcaseScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.showcase-item {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Studio-shot products (white bg) in the reel — show full product */
.showcase-item[data-contain="true"] img {
  object-fit: contain;
  padding: 10%;
}

.showcase-item:hover img {
  transform: scale(1.08);
}

.showcase-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-logo { text-align: left; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text p { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }

  .contact-grid { grid-template-columns: 1fr; }
  .affil-steps { grid-template-columns: 1fr; }

  .cart-drawer { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .detail-actions { grid-template-columns: 1fr; }

  .nav-right { display: flex; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 56px 16px; }
}

/* ============================================
   SOCIAL PROOF / COUNTER BAR
   ============================================ */
.proof-bar {
  background: var(--black-3);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 20px 24px;
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-item-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.proof-item-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .proof-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================
   DELIVERY ESTIMATOR
   ============================================ */
.delivery-banner {
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(96,165,250,0.06));
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.delivery-banner-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.delivery-banner-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.delivery-banner-text strong {
  color: var(--white);
  font-weight: 700;
}

.delivery-dates {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.delivery-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.delivery-date-badge.standard {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
}

.delivery-date-badge.express {
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
}

/* Progress bar for trust */
.trust-progress {
  margin: 20px 0;
}

.trust-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.trust-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.trust-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-pale));
  border-radius: 2px;
  transition: width 1s ease;
}

/* ============================================
   HERO LOGO CENTERED VARIANT
   ============================================ */
.hero-logo-block {
  text-align: center;
  margin-bottom: 32px;
}

.hero-logo-wordmark {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-logo-text {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  display: block;
}

.hero-logo-sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  display: block;
}

/* ============================================
   HERO PRODUCT GRID (new homepage)
   ============================================ */
.hero-centered {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: 60px 24px;
  text-align: center;
}

.hero-centered .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-centered .glitter-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-centered-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-centered h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-centered p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Counter animated */
.hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.hero-counter strong {
  color: var(--blue-pale);
  font-weight: 700;
}

/* Live dot */
.live-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Product strip under hero */
.hero-products-strip {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-product-thumb {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition);
  background: var(--black-3);
  flex-shrink: 0;
}

.hero-product-thumb:hover {
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.hero-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .hero-products-strip { gap: 10px; }
  .hero-product-thumb { width: 80px; height: 80px; border-radius: 12px; }
}

/* ============================================
   CATEGORY PAGE IMPROVEMENTS
   ============================================ */
.cat-page-header {
  padding: 56px 24px 48px;
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.cat-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.15), transparent 70%);
  pointer-events: none;
}

.cat-page-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cat-page-emoji {
  font-size: 64px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(37,99,235,0.4));
}

.cat-page-info {}

.cat-page-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-pale);
  margin-bottom: 8px;
}

.cat-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.cat-page-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

.cat-page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cat-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

@media (max-width: 640px) {
  .cat-page-header-inner { flex-direction: column; gap: 16px; text-align: center; }
  .cat-meta-pill { font-size: 11px; }
}

/* ============================================
   PRODUCT DETAIL — UNIVERSE SECTION
   ============================================ */
.product-explore-section {
  padding: 48px 24px;
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.product-explore-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.checkout-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
  display: block;
}

.checkout-summary {
  background: var(--black-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.checkout-summary-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

.checkout-items {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
}

.checkout-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.checkout-item-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.checkout-item-qty {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.checkout-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-pale);
}

.checkout-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 24px;
}

.checkout-totals {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-totals .summary-row {
  color: rgba(255,255,255,0.55);
}

.checkout-totals .summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}

.checkout-shipping-options {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.checkout-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.checkout-trust-item span:first-child {
  font-size: 18px;
  flex-shrink: 0;
}

.checkout-action {
  text-align: center;
}

.checkout-action .btn-buy-now-primary {
  font-size: 18px;
  padding: 22px 40px;
  border-radius: 14px;
}

.checkout-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-page { padding: 24px 16px 60px; }
}

/* ============================================
   LIFESTYLE / VIDEO SECTION (new)
   ============================================ */
.lifestyle-section {
  padding: 80px 24px;
  background: var(--black);
  overflow: hidden;
}

.lifestyle-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.lifestyle-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.lifestyle-item:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.lifestyle-item.tall {
  grid-row: span 2;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.5s ease;
}

.lifestyle-item:hover img {
  transform: scale(1.05);
}

.lifestyle-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Glitter video placeholder */
.video-glitter {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a0a1a, #0d1127);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(37,99,235,0.2);
  cursor: pointer;
}

.video-glitter video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.video-glitter .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
}

.video-glitter:hover .video-overlay {
  background: rgba(0,0,0,0.1);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(37,99,235,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(37,99,235,0.5);
}

.video-glitter:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--blue);
}

/* Shimmer animation for video placeholder */
@keyframes shimmerBg {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.glitter-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(96,165,250,0.08) 50%,
    transparent 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmerBg 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-item.tall { grid-row: span 1; }
}

/* ============================================
   LOGO TEXT FALLBACK (white, clean, premium)
   ============================================ */
.logo-text-white {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  display: inline-block;
}

/* ============================================
   HERO DELIVERY BADGE
   ============================================ */
.hero-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 40px;
  font-size: 13px;
  color: #86efac;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ============================================
   CATEGORY CARD IMAGES
   ============================================ */
.category-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-card:hover .category-card-img img {
  opacity: 0.65;
  transform: scale(1.05);
}

/* ============================================
   PRODUCT DETAIL — SECTION TAGS (with image)
   ============================================ */
.detail-trust-row {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.detail-trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ============================================
   PRODUCTS SECTION IN CAT PAGE (with title)
   ============================================ */
.section-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-products-header .section-header {
  margin-bottom: 0;
  text-align: left;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
  min-height: 100vh;
  padding: 24px 24px 80px;
  background: var(--bg);
}

.checkout-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout-back {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.checkout-back:hover { color: #fff; }

.checkout-logo {
  text-align: center;
}

.checkout-empty {
  max-width: 480px;
  margin: 80px auto;
  text-align: center;
}
.checkout-empty h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 12px;
}
.checkout-empty p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-payment { order: -1; }
}

.checkout-summary,
.checkout-payment {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
}

.checkout-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
}

/* Items */
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-item-img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.checkout-item-info {
  flex: 1;
}
.checkout-item-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.checkout-item-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.checkout-item-qty {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.checkout-item-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

/* Divider */
.checkout-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 24px 0;
}

/* Shipping opts */
.checkout-shipping-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-ship-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.2s;
}
.checkout-ship-opt:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.checkout-ship-opt.active {
  border-color: var(--accent);
  background: rgba(37,99,235,0.1);
}
.checkout-ship-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.checkout-ship-eta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.checkout-ship-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

/* Totals */
.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.checkout-total-row.total {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}

/* Trust bar */
.checkout-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.checkout-trust-item {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 5px 12px;
}

/* Pay info */
.checkout-pay-info {
  margin-bottom: 24px;
}

/* Buy button */
.btn-buy-checkout {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #c9a227 0%, #f5d060 50%, #c9a227 100%);
  color: #0A0A0B;
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(201,162,39,0.35);
  margin-bottom: 16px;
}
.btn-buy-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.5);
}
.btn-buy-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Payment logos */
.checkout-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.pay-logo {
  padding: 6px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* Guarantee items */
.checkout-guarantee {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.checkout-guarantee-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checkout-guarantee-item > span {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}
.checkout-guarantee-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.checkout-guarantee-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  min-height: 80vh;
  padding: 60px 0 80px;
  background: var(--black);
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.legal-breadcrumb a {
  color: var(--blue-pale);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.legal-breadcrumb a:hover { color: var(--blue-light); }
.legal-breadcrumb span { color: rgba(255,255,255,0.3); }
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.15;
}
.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-content {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 12px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-content p {
  margin: 0 0 16px;
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal-content ul li {
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--blue-pale);
  text-decoration: none;
  border-bottom: 1px solid rgba(96,165,250,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.legal-content a:hover {
  color: var(--blue-light);
  border-color: var(--blue-light);
}
.legal-content strong {
  color: var(--white);
  font-weight: 600;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.legal-table th {
  background: rgba(37,99,235,0.15);
  color: var(--white);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}
.legal-table td {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
}
.legal-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}
@media (max-width: 600px) {
  .legal-page { padding: 40px 0 60px; }
  .legal-content { font-size: 14px; }
  .legal-table { font-size: 13px; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* ============================================
   FLASH SALE BANNER + COUNTDOWN TIMER
   ============================================ */
.porhn-flash-banner {
  background: linear-gradient(90deg, #1a2c5e 0%, #1e3a8a 40%, #1a2c5e 100%);
  border-top: 1px solid rgba(37,99,235,0.4);
  border-bottom: 1px solid rgba(37,99,235,0.4);
  padding: 12px 24px;
  overflow: hidden;
}

.porhn-flash-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.porhn-flash-icon {
  font-size: 18px;
  animation: flashPulse 1.5s ease-in-out infinite;
}

@keyframes flashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.porhn-flash-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.porhn-flash-sep {
  color: rgba(255,255,255,0.3);
  font-size: 16px;
}

.porhn-flash-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.porhn-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 6px 12px;
}

.pt-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
}

.pt-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pt-lbl {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.pt-sep {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  padding-bottom: 6px;
  line-height: 1;
}

@media (max-width: 600px) {
  .porhn-flash-text { font-size: 11px; }
  .porhn-flash-inner { gap: 8px; }
  .pt-num { font-size: 14px; }
  .porhn-timer { padding: 5px 8px; }
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.porhn-countdown-section {
  background: linear-gradient(135deg, #0f1f4a 0%, #1e3a8a 50%, #0f1f4a 100%);
  border-top: 1px solid rgba(37,99,235,0.3);
  border-bottom: 1px solid rgba(37,99,235,0.3);
  padding: 56px 24px;
}

.porhn-countdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.porhn-countdown-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.porhn-countdown-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}

.porhn-countdown-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
}

.porhn-countdown-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.porhn-countdown-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.porhn-countdown-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* Big timer variant */
.porhn-timer-big {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 16px;
  padding: 20px 28px;
}

.porhn-timer-big .pt-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.porhn-timer-big .pt-num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.porhn-timer-big .pt-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.porhn-timer-big .pt-sep {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(37,99,235,0.8);
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .porhn-countdown-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .porhn-countdown-right {
    align-items: flex-start;
  }
  .porhn-timer-big .pt-num { font-size: 32px; }
  .porhn-timer-big .pt-block { min-width: 48px; }
  .porhn-timer-big { padding: 14px 18px; }
}

/* ============================================
   NEWSLETTER POPUP
   ============================================ */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.newsletter-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%) scale(0.9);
  z-index: 2001;
  width: min(520px, calc(100vw - 32px));
  background: linear-gradient(160deg, #111118 0%, #0D1B3E 60%, #111118 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 24px;
  padding: 48px 40px 36px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  text-align: center;
}
.newsletter-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.newsletter-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.newsletter-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Glitter particles inside popup */
.newsletter-glitter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.nl-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--blue-pale);
  border-radius: 50%;
  opacity: 0;
  animation: nlSparkle var(--dur, 3s) var(--del, 0s) ease-in-out infinite;
}
@keyframes nlSparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 0.6; transform: scale(1.5) rotate(180deg); }
}

.newsletter-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
  animation: nlBounce 2.5s ease-in-out infinite;
}
@keyframes nlBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.newsletter-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  margin-bottom: 0;
}

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(37,99,235,0.4);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}
.newsletter-input-wrap:focus-within {
  border-color: var(--blue);
  background: rgba(37,99,235,0.06);
}

.newsletter-input {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-main);
  min-width: 0;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-submit {
  padding: 14px 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-main);
  white-space: nowrap;
  border-radius: 0 12px 12px 0;
  transition: background 0.2s;
}
.newsletter-submit:hover:not(:disabled) {
  background: var(--blue-light);
}
.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.newsletter-error {
  font-size: 13px;
  color: #f87171;
  margin-top: 8px;
  min-height: 18px;
}

/* Success state */
.newsletter-success {
  padding: 8px 0;
}
.newsletter-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.newsletter-success-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-success-code {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.nl-code {
  display: inline-block;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.5);
  color: var(--blue-pale);
  font-family: monospace;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 8px;
  margin-left: 4px;
}

.newsletter-skip {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 16px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.newsletter-skip:hover {
  color: rgba(255,255,255,0.45);
}

@media (max-width: 480px) {
  .newsletter-popup { padding: 40px 24px 28px; }
  .newsletter-title { font-size: 22px; }
  .newsletter-input { font-size: 14px; padding: 12px 14px; }
  .newsletter-submit { padding: 12px 14px; font-size: 13px; }
}

/* ============================================
   FOOTER NEWSLETTER FORM
   ============================================ */
.footer-newsletter {
  /* Spans full width below the 4 footer cols on desktop */
}
.footer-newsletter h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-nl-wrap {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  max-width: 280px;
  transition: border-color 0.2s;
}
.footer-nl-wrap:focus-within {
  border-color: rgba(37,99,235,0.5);
}
.footer-nl-input {
  flex: 1;
  padding: 10px 12px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-main);
  min-width: 0;
}
.footer-nl-input::placeholder {
  color: rgba(255,255,255,0.2);
}
.footer-nl-btn {
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.footer-nl-btn:hover:not(:disabled) {
  background: var(--blue-light);
}
.footer-nl-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
.footer-nl-msg {
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}
.footer-nl-msg.success {
  color: #86efac;
}
.footer-nl-msg.error {
  color: #f87171;
}

/* On large screens, add the newsletter as a 5th column */
@media (min-width: 1101px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  }
}
/* On tablets/small: newsletter goes full-width below other cols */
@media (max-width: 1100px) {
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer-nl-wrap { max-width: 100%; }
}

/* ============================================
   CINEMATIC LOOKBOOK — video-like image show
   ============================================ */
.lookbook-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0;
}
.lookbook-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.lookbook-header {
  text-align: center;
  margin-bottom: 48px;
}
.lookbook-stage {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
  .lookbook-stage { height: 320px; }
}
@media (max-width: 480px) {
  .lookbook-stage { height: 240px; border-radius: 14px; }
}

/* Each slide */
.lookbook-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
}
.lookbook-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Ken Burns animation variants */
@keyframes kb-zoom-in {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}
@keyframes kb-zoom-out {
  0%   { transform: scale(1.12); }
  100% { transform: scale(1.0); }
}
@keyframes kb-pan-right {
  0%   { transform: scale(1.08) translateX(-3%); }
  100% { transform: scale(1.08) translateX(3%); }
}
@keyframes kb-pan-left {
  0%   { transform: scale(1.08) translateX(3%); }
  100% { transform: scale(1.08) translateX(-3%); }
}

/* Crossfade + active state */
@keyframes slide-fade-in  { 0% { opacity: 0; } 8% { opacity: 1; } 87% { opacity: 1; } 100% { opacity: 0; } }
@keyframes slide-fade-out { 0% { opacity: 1; } 92% { opacity: 1; } 100% { opacity: 0; } }

/* 6-slide cycle: each slide active for 5s, total 30s */
.lookbook-slide:nth-child(1) { animation: slide-fade-in 30s ease-in-out 0s infinite; }
.lookbook-slide:nth-child(1) img { animation: kb-zoom-in 30s ease-in-out 0s infinite; }
.lookbook-slide:nth-child(2) { animation: slide-fade-in 30s ease-in-out 5s infinite; }
.lookbook-slide:nth-child(2) img { animation: kb-pan-right 30s ease-in-out 5s infinite; }
.lookbook-slide:nth-child(3) { animation: slide-fade-in 30s ease-in-out 10s infinite; }
.lookbook-slide:nth-child(3) img { animation: kb-zoom-out 30s ease-in-out 10s infinite; }
.lookbook-slide:nth-child(4) { animation: slide-fade-in 30s ease-in-out 15s infinite; }
.lookbook-slide:nth-child(4) img { animation: kb-pan-left 30s ease-in-out 15s infinite; }
.lookbook-slide:nth-child(5) { animation: slide-fade-in 30s ease-in-out 20s infinite; }
.lookbook-slide:nth-child(5) img { animation: kb-zoom-in 30s ease-in-out 20s infinite; }
.lookbook-slide:nth-child(6) { animation: slide-fade-in 30s ease-in-out 25s infinite; }
.lookbook-slide:nth-child(6) img { animation: kb-pan-right 30s ease-in-out 25s infinite; }

/* Gradient overlays for text readability */
.lookbook-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,11,0.1) 0%,
    transparent 30%,
    transparent 55%,
    rgba(10,10,11,0.65) 100%
  );
  pointer-events: none;
  z-index: 2;
}
/* Left side dark gradient for text */
.lookbook-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,11,0.5) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 2;
}

/* Text overlay inside stage */
.lookbook-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  max-width: 380px;
}
@media (max-width: 480px) {
  .lookbook-overlay { bottom: 20px; left: 16px; max-width: 260px; }
}
.lookbook-overlay-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.lookbook-overlay-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.lookbook-overlay-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lookbook-btn {
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}
.lookbook-btn:hover { background: var(--blue-light); transform: translateY(-1px); }
.lookbook-btn.ghost {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.lookbook-btn.ghost:hover { background: rgba(255,255,255,0.2); }

/* Slide progress dots */
.lookbook-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.lookbook-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  transition: width 0.3s, background 0.3s;
}
/* Active dot animates across 5s per slide (matches @keyframes timing) */
@keyframes dot-active {
  0%   { width: 6px; background: rgba(255,255,255,0.25); }
  5%   { width: 22px; background: var(--blue); }
  87%  { width: 22px; background: var(--blue); }
  100% { width: 6px; background: rgba(255,255,255,0.25); }
}
.lookbook-dots .lookbook-dot:nth-child(1) { animation: dot-active 30s ease-in-out 0s infinite; }
.lookbook-dots .lookbook-dot:nth-child(2) { animation: dot-active 30s ease-in-out 5s infinite; }
.lookbook-dots .lookbook-dot:nth-child(3) { animation: dot-active 30s ease-in-out 10s infinite; }
.lookbook-dots .lookbook-dot:nth-child(4) { animation: dot-active 30s ease-in-out 15s infinite; }
.lookbook-dots .lookbook-dot:nth-child(5) { animation: dot-active 30s ease-in-out 20s infinite; }
.lookbook-dots .lookbook-dot:nth-child(6) { animation: dot-active 30s ease-in-out 25s infinite; }

/* ============================================
   PRODUCT CARD GLITTER SHIMMER (existing cards)
   ============================================ */
@keyframes glitter-sweep {
  0%   { background-position: -200% center; }
  100% { background-position: 300% center; }
}
.product-card:hover .product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: glitter-sweep 0.7s ease-in-out;
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
/* Ensure product-img-wrap is position:relative for pseudo-element */
.product-img-wrap {
  position: relative;
}

/* ============================================
   CATEGORY PAGE — animated hero banner
   ============================================ */
.cat-page-hero-visual {
  position: relative;
  overflow: hidden;
}
.cat-page-hero-visual img {
  transition: transform 8s ease-in-out;
}
.cat-page-hero-visual:hover img {
  transform: scale(1.06);
}
