/* ============================================================
   BWN PRINTINK - Custom Theme CSS
   Design System: Sora + Inter, Pink/Orange gradient brand
   ============================================================ */

/* ============================================================
   Lucide Icon Font Bridge
   lucide-static CSS uses `.icon-name` but our HTML uses
   `.lucide.lucide-name` — this maps them to the same font.
   ============================================================ */
i[class*="lucide-"] {
  font-family: 'lucide' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
}
.lucide-arrow-left:before { content: "\e050"; }
.lucide-arrow-right:before { content: "\e052"; }
.lucide-award:before { content: "\e05a"; }
.lucide-bar-chart-3:before { content: "\e299"; }
.lucide-bell:before { content: "\e066"; }
.lucide-check:before { content: "\e074"; }
.lucide-check-circle:before { content: "\e075"; }
.lucide-chevron-left:before { content: "\e078"; }
.lucide-chevron-right:before { content: "\e079"; }
.lucide-clipboard-list:before { content: "\e082"; }
.lucide-clock:before { content: "\e083"; }
.lucide-eye:before { content: "\e0b5"; }
.lucide-facebook:before { content: "\e0b7"; }
.lucide-file-text:before { content: "\e0c7"; }
.lucide-filter:before { content: "\e0cc"; }
.lucide-folder:before { content: "\e0d3"; }
.lucide-heart:before { content: "\e0ec"; }
.lucide-hexagon:before { content: "\e0ee"; }
.lucide-home:before { content: "\e0f0"; }
.lucide-image:before { content: "\e0f1"; }
.lucide-info:before { content: "\e0f5"; }
.lucide-instagram:before { content: "\e0f6"; }
.lucide-layout-dashboard:before { content: "\e1b8"; }
.lucide-layout-grid:before { content: "\e0fc"; }
.lucide-layout-template:before { content: "\e1fd"; }
.lucide-lock:before { content: "\e106"; }
.lucide-log-out:before { content: "\e108"; }
.lucide-mail:before { content: "\e109"; }
.lucide-map-pin:before { content: "\e10b"; }
.lucide-menu:before { content: "\e10f"; }
.lucide-message-circle:before { content: "\e110"; }
.lucide-message-square:before { content: "\e111"; }
.lucide-package:before { content: "\e126"; }
.lucide-palette:before { content: "\e1d3"; }
.lucide-pencil:before { content: "\e1f0"; }
.lucide-phone:before { content: "\e131"; }
.lucide-plus:before { content: "\e13d"; }
.lucide-minus:before { content: "\e116"; }
.lucide-printer:before { content: "\e143"; }
.lucide-refresh-ccw:before { content: "\e146"; }
.lucide-search:before { content: "\e153"; }
.lucide-search-x:before { content: "\e4ad"; }
.lucide-send:before { content: "\e154"; }
.lucide-settings:before { content: "\e156"; }
.lucide-shield-check:before { content: "\e1f6"; }
.lucide-shirt:before { content: "\e1c1"; }
.lucide-shopping-bag:before { content: "\e15d"; }
.lucide-shopping-cart:before { content: "\e15e"; }
.lucide-sparkles:before { content: "\e40e"; }
.lucide-star:before { content: "\e16b"; }
.lucide-tag:before { content: "\e175"; }
.lucide-trash-2:before { content: "\e180"; }
.lucide-truck:before { content: "\e185"; }
.lucide-twitter:before { content: "\e188"; }
.lucide-upload:before { content: "\e190"; }
.lucide-user:before { content: "\e192"; }
.lucide-users:before { content: "\e197"; }

/* === CSS Custom Properties (Design Tokens) === */
:root {
  /* Brand Colors */
  --brand-primary: #E91E63;
  --brand-secondary: #FF6F00;
  --brand-accent: #00BCD4;
  --brand-dark: #1A1A2E;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #E91E63 0%, #FF6F00 100%);
  --gradient-primary-90: linear-gradient(90deg, #E91E63 0%, #FF6F00 100%);

  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F7;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1A2E;

  /* Text Colors */
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --text-light: #FFFFFF;

  /* Border Colors */
  --border-light: #E5E7EB;
  --border-dark: #D1D5DB;

  /* Status Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 999px;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-secondary);
  text-decoration: none;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 0;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
}

/* === Buttons === */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary-90);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--text-light);
  text-decoration: none;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--text-light);
  text-decoration: none;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: var(--text-light);
  text-decoration: none;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  width: 100%;
}

.btn-dark:hover {
  background: #2d2d4a;
  color: var(--text-light);
  text-decoration: none;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #25D366;
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp:hover {
  opacity: 0.9;
  color: var(--text-light);
  text-decoration: none;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--text-light);
  color: var(--brand-primary);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-white:hover {
  opacity: 0.95;
  color: var(--brand-primary);
  text-decoration: none;
}

/* === Navbar === */
.bwn-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 80px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}

.bwn-navbar .logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.bwn-navbar .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.bwn-navbar .brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.bwn-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bwn-navbar .nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bwn-navbar .nav-links a:hover,
.bwn-navbar .nav-links a.active {
  color: var(--brand-primary);
  font-weight: 600;
}

.bwn-navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bwn-navbar .nav-right .user-icon {
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.bwn-navbar .nav-right .user-icon:hover {
  color: var(--text-primary);
}

.bwn-navbar .cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand-primary);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.bwn-navbar .cart-btn:hover {
  background: #d81b60;
  color: var(--text-light);
  text-decoration: none;
}

/* Navbar Mobile Toggle */
.bwn-navbar .mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.bwn-navbar .mobile-toggle.active .lucide-menu {
  display: none;
}

.bwn-navbar .mobile-toggle.active::after {
  content: '\2715';
  font-size: 22px;
  line-height: 1;
}

/* Mobile Nav Overlay - hidden on desktop */
.mobile-nav-overlay {
  display: none;
}

/* Body scroll lock when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* User dropdown */
.bwn-navbar .user-dropdown {
  position: relative;
}

.bwn-navbar .user-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px;
  z-index: 100;
  margin-top: 8px;
}

.bwn-navbar .user-dropdown:hover .user-dropdown-menu {
  display: block;
}

.bwn-navbar .user-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-primary);
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.bwn-navbar .user-dropdown-menu a:hover {
  background: var(--bg-secondary);
}

/* === Hero Section === */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 600px;
  padding: 0 80px;
  background: var(--bg-dark);
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 50%, transparent 100%);
  z-index: 2;
}

.hero-left {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(233, 30, 99, 0.13);
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.hero-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-light);
  margin: 0;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.67);
  max-width: 480px;
  margin: 0;
}

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

.hero-next {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

/* === Categories Section === */
.categories-section {
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.categories-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cat-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.cat-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.cat-card {
  flex: 1;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cat-card .cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.cat-card .cat-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

/* === Featured Products Section === */
.featured-products {
  padding: 80px;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.featured-products .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.featured-products .section-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* === Product Card === */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card .card-image {
  width: 100%;
  height: 280px;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.product-card .sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--brand-primary);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.product-card .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card .product-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.product-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card .product-price {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 0;
}

.product-card .color-dots {
  display: flex;
  gap: 6px;
}

.product-card .color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
}

.product-card .add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: var(--bg-dark);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition-fast);
}

.product-card .add-to-cart-btn:hover {
  background: #2d2d4a;
}

/* === How It Works Section === */
.how-it-works {
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background: var(--bg-primary);
}

.how-it-works .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.steps-grid {
  display: flex;
  gap: 48px;
  width: 100%;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
}

.step-card .step-icon {
  color: var(--brand-primary);
}

.step-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.step-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* === CTA Banner === */
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 400px;
  padding: 0 80px;
  background: var(--gradient-primary);
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text-light);
}

.cta-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* === Footer === */
.bwn-footer {
  background: var(--bg-dark);
  padding: 64px 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  gap: 64px;
}

.footer-brand {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-light);
}

.footer-brand .footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

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

.footer-socials a {
  color: rgba(255,255,255,0.38);
  transition: color var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--text-light);
}

.footer-socials a.whatsapp {
  color: #25D366;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.31);
}

/* === Page Header / Breadcrumbs === */
.page-header {
  background: var(--bg-secondary);
  padding: 48px 80px 40px;
}

.page-header .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}

.page-header .breadcrumbs a {
  color: var(--text-muted);
}

.page-header .breadcrumbs .separator {
  color: var(--text-muted);
}

.page-header .breadcrumbs .current {
  color: var(--text-primary);
}

.page-header h1 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin: 0;
}

.page-header .page-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* === Product Catalog Layout === */

.catalog-body {
  padding: 24px 80px 80px;
}

.catalog-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Sidebar */
.catalog-sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}

.sidebar-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

/* Sidebar search */
.sidebar-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.sidebar-search-form input[type="text"] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: transparent;
  padding: 9px 10px 9px 14px;
}

.sidebar-search-form input[type="text"]::placeholder {
  color: var(--text-muted);
}

.sidebar-search-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary-90);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  font-size: 15px;
}

.sidebar-search-btn:hover {
  opacity: 0.9;
}

/* Sidebar sort */
.sidebar-sort-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-primary);
  cursor: pointer;
  outline: none;
}

/* Sidebar collapsible header */
.sidebar-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

.sidebar-section-header .sidebar-section-title {
  margin-bottom: 0;
}

.sidebar-chevron {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform .2s;
}

/* Sidebar category list */
.sidebar-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Checkbox-style category buttons */
.sidebar-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
}

/* Custom checkbox indicator */
.sidebar-cat-btn::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-primary);
  transition: border-color .15s, background .15s;
}

.sidebar-cat-btn:hover {
  background: rgba(233, 30, 99, 0.05);
  color: var(--brand-primary);
}

.sidebar-cat-btn:hover::before {
  border-color: var(--brand-primary);
}

.sidebar-cat-btn.active {
  color: var(--brand-primary);
  font-weight: 600;
  background: rgba(233, 30, 99, 0.06);
}

.sidebar-cat-btn.active::before {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* Main content area */
.catalog-main {
  flex: 1;
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.catalog-toolbar .result-count {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* Pagination spacing when used above grid */
.bwn-pagination {
  margin-bottom: 20px;
}

/* === Catalog Grid === */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

/* Keep old pill classes for category/search pages that still use them */
.category-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.category-pill:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(233, 30, 99, 0.04);
}

.category-pill.active {
  background: var(--gradient-primary-90);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

/* Legacy search bar (search results / category pages) */
.shop-search-bar {
  padding: 0 80px;
  margin-bottom: 8px;
}

.shop-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  max-width: 460px;
  box-shadow: var(--shadow-sm);
}

.shop-search-form input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: transparent;
}

.shop-search-form input[type="text"]::placeholder {
  color: var(--text-muted);
}

.shop-search-form button[type="submit"] {
  padding: 7px 18px;
  background: var(--gradient-primary-90);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.shop-search-form button[type="submit"]:hover {
  opacity: 0.9;
}

/* === Product Detail Page === */
.pdp-back-row {
  max-width: 1060px;
  margin: 0 auto 12px;
  padding: 20px 40px 0;
}

.pdp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.pdp-back-link:hover {
  color: var(--text-primary);
}

.pdp-content {
  display: flex;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 16px 40px 80px;
  align-items: flex-start;
}

.pdp-gallery {
  flex: 1.15;
  min-width: 0;
  position: sticky;
  top: 24px;
}

.pdp-gallery .main-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  margin-bottom: 12px;
}

.pdp-gallery .main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pdp-gallery .thumbnails {
  display: flex;
  gap: 8px;
}

.pdp-gallery .thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.pdp-gallery .thumb.active,
.pdp-gallery .thumb:hover {
  border-color: var(--brand-primary);
}

.pdp-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pdp-info .stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 4px;
}

.pdp-info .stock-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.pdp-info h1 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 8px;
}

.pdp-info .price-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.pdp-info .current-price {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-primary);
}

.pdp-info .original-price {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-info .description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.pdp-info .pdp-option-group {
  margin-bottom: 16px;
}

.pdp-info .pdp-option-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pdp-info .option-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pdp-info .size-options,
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
  background: var(--bg-primary);
}

.qty-selector .qty-btn {
  width: 42px;
  height: 44px;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  color: var(--text-primary);
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.qty-selector .qty-btn:hover {
  background: var(--bg-secondary);
}

.qty-selector input[type="number"] {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border-light);
  border-right: 1.5px solid var(--border-light);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
}

.qty-selector input[type="number"]::-webkit-inner-spin-button,
.qty-selector input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-info .size-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdp-info .size-btn:hover,
.pdp-info .size-btn.active {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.pdp-info .qty-input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.pdp-info .add-to-cart-row {
  margin-top: 8px;
  margin-bottom: 20px;
}

.pdp-info .atc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 32px;
  background: var(--gradient-primary-90);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.pdp-info .atc-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.pdp-trust-badges {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge i {
  color: var(--brand-primary);
}

/* === Cart Page === */
.cart-body {
  display: flex;
  gap: 48px;
  padding: 32px 80px 64px;
}

.cart-items {
  flex: 1;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item .item-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-item .item-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  flex-shrink: 0;
}

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

.cart-item .item-details h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.cart-item .item-details .item-variant {
  font-size: 13px;
  color: var(--text-muted);
}

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

.item-size-display .size-label {
  font-size: 12px;
  color: var(--text-muted);
}

.item-size-display .size-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary, #f3f4f6);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 4px;
  padding: 1px 7px;
  letter-spacing: 0.5px;
}

.cart-item .item-price {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-item .quantity-control {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-item .item-total {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-item .remove-btn {
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 4px;
}

.cart-item .remove-btn:hover {
  color: var(--error);
}

/* Cart Size Selector */
.item-size-selector {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.cart-size-btn {
  width: 32px;
  height: 28px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-size-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.cart-size-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

/* Cart Quantity Controls */
.item-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding: 0;
}
.cart-qty-btn:hover {
  background: var(--border-light);
}
.cart-qty-input {
  width: 40px;
  height: 32px;
  border: none;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-primary);
  -moz-appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Order Summary Sidebar */
.order-summary {
  width: 360px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 96px;
}

.order-summary h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.order-summary .summary-row .label {
  color: var(--text-secondary);
}

.order-summary .summary-row .value {
  font-weight: 600;
  color: var(--text-primary);
}

.order-summary .summary-row .discount {
  color: var(--success);
}

.order-summary .summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
}

.order-summary .summary-total .label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.order-summary .summary-total .value {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-primary);
}

.order-summary .checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary-90);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.order-summary .checkout-btn:hover {
  opacity: 0.9;
  color: var(--text-light);
  text-decoration: none;
}

.order-summary .continue-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* === Checkout Page === */
.checkout-body {
  display: flex;
  gap: 48px;
  padding: 32px 80px 64px;
}

.checkout-form-area {
  flex: 1;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.checkout-step.active {
  color: var(--brand-primary);
  font-weight: 600;
}

.checkout-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border-light);
  color: var(--text-muted);
}

.checkout-step.active .step-num {
  background: var(--brand-primary);
  color: var(--text-light);
  border-color: var(--brand-primary);
}

.checkout-step-divider {
  width: 32px;
  height: 1px;
  background: var(--border-light);
}

.form-section {
  margin-bottom: 32px;
}

.form-section h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
}

/* Payment method radio */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-option:hover {
  border-color: var(--brand-primary);
}

.payment-option.selected {
  border-color: var(--brand-primary);
  background: rgba(233, 30, 99, 0.05);
}

.payment-option input[type="radio"] {
  accent-color: var(--brand-primary);
}

.payment-option span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* Bank Transfer Panel */
.bank-transfer-panel {
  margin-top: 16px;
  animation: fadeIn 0.2s ease;
}

.bank-details-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.bank-details-box h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.bank-detail-row {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
}

.bank-detail-label {
  color: var(--text-muted);
  min-width: 130px;
  flex-shrink: 0;
}

.bank-detail-value {
  color: var(--text-primary);
  font-weight: 600;
}

.proof-upload-group {
  margin-top: 0;
}

.proof-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  margin-top: 6px;
}

.proof-upload-label:hover {
  border-color: var(--brand-primary);
  background: rgba(233, 30, 99, 0.03);
}

.proof-upload-label input[type="file"] {
  display: none;
}

.proof-upload-label .lucide {
  color: var(--brand-primary);
  flex-shrink: 0;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

.required-star {
  color: var(--brand-primary);
}

/* === Pagination === */
.bwn-pagination,
.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.bwn-pagination .page-btn,
.pagination-wrapper .page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-primary);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.bwn-pagination .page-btn:hover,
.bwn-pagination .page-btn.active,
.pagination-wrapper .page-btn:hover,
.pagination-wrapper .page-btn.active {
  background: var(--brand-primary);
  color: var(--text-light);
  border-color: var(--brand-primary);
}

/* === Responsive: Tablet === */
@media (max-width: 1024px) {
  .bwn-navbar {
    padding: 0 40px;
  }

  .bwn-navbar .nav-links {
    display: none;
  }

  .bwn-navbar .mobile-toggle {
    display: block;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 80px 20px 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }

  .mobile-nav-overlay.active {
    display: flex;
  }

  .hero-section {
    padding: 0 40px;
    height: auto;
    min-height: 500px;
  }

  .hero-slides {
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .categories-section,
  .featured-products,
  .how-it-works,
  .cta-banner {
    padding: 60px 40px;
  }

  .bwn-footer {
    padding: 48px 40px 24px;
  }

  .page-header {
    padding: 40px;
  }

  .catalog-body {
    padding: 24px 40px 60px;
  }

  .shop-search-bar {
    padding: 0 40px;
  }

  .catalog-sidebar {
    width: 200px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-content {
    padding: 24px 32px 48px;
    gap: 32px;
  }

  .pdp-gallery {
    position: static;
  }

  .cart-body,
  .checkout-body {
    padding: 24px 40px 48px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 34px;
  }

  .steps-grid {
    gap: 24px;
  }

  /* Interior pages section padding */
  section[style*="padding:32px 80px"],
  section[style*="padding: 32px 80px"],
  div[style*="padding:32px 80px"],
  div[style*="padding: 32px 80px"] {
    padding: 24px 40px 60px !important;
  }

  /* Hire designer + generic full-width section padding */
  section[style*="padding:80px"],
  section[style*="padding: 80px"] {
    padding: 60px 40px !important;
  }

  section[style*="padding:64px 80px"],
  section[style*="padding: 64px 80px"] {
    padding: 48px 40px !important;
  }
}

/* === Responsive: Mobile === */
@media (max-width: 768px) {
  .bwn-navbar {
    padding: 0 20px;
    height: 60px;
  }

  .bwn-navbar .nav-links {
    display: none;
  }

  .bwn-navbar .mobile-toggle {
    display: block;
  }

  .bwn-navbar .brand-name {
    font-size: 16px;
  }

  .bwn-navbar .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  /* Mobile nav overlay */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 68px 20px 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }

  .mobile-nav-overlay.active {
    display: flex;
  }

  .mobile-nav-overlay a {
    display: block;
    padding: 14px 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-nav-overlay a.active {
    color: var(--brand-primary);
    font-weight: 600;
  }

  /* Hero */
  .hero-section {
    flex-direction: column;
    padding: 48px 20px 0;
    height: auto;
    min-height: 520px;
    gap: 24px;
  }

  .hero-slides {
    width: 100%;
    height: 100%;
  }

  .hero-gradient {
    width: 100%;
    background: linear-gradient(to bottom, var(--bg-dark) 20%, rgba(26,26,46,0.4) 60%, transparent 100%);
  }

  .hero-left {
    gap: 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-wrap: wrap;
  }

  .hero-next {
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Sections */
  .categories-section,
  .featured-products,
  .how-it-works {
    padding: 48px 20px;
  }

  .cta-banner {
    padding: 48px 20px;
    height: auto;
  }

  .cta-banner h2 {
    font-size: 32px;
  }

  .cta-banner .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner .cta-buttons a,
  .cta-banner .cta-buttons button {
    width: 100%;
    justify-content: center;
  }

  .bwn-footer {
    padding: 40px 20px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }

  .section-desc {
    font-size: 14px;
  }

  .cat-row {
    flex-direction: column;
  }

  .cat-card {
    height: 200px;
  }

  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card .card-image {
    height: 180px;
  }

  .product-card .card-content {
    padding: 12px;
    gap: 8px;
  }

  .product-card .product-name {
    font-size: 14px;
  }

  .product-card .product-price {
    font-size: 16px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }

  .step-card {
    padding: 24px 20px;
  }

  .featured-products .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Page Header */
  .page-header {
    padding: 32px 20px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  /* Catalog */
  .catalog-body {
    padding: 16px 20px 40px;
  }

  .catalog-layout {
    flex-direction: column;
    gap: 16px;
  }

  .catalog-sidebar {
    width: 100%;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sidebar-section {
    flex: 1;
    min-width: 140px;
  }

  .shop-search-bar {
    padding: 0 20px;
  }

  /* PDP */
  .pdp-content {
    flex-direction: column;
    padding: 0 16px 40px;
    gap: 20px;
  }

  .pdp-gallery {
    position: static;
    flex: none;
    width: 100%;
  }

  .pdp-info h1 {
    font-size: 20px;
  }

  .pdp-info .current-price {
    font-size: 22px;
  }

  .pdp-trust-badges {
    flex-direction: column;
    gap: 10px;
  }

  /* Cart */
  .cart-body {
    flex-direction: column;
    padding: 16px 20px 40px;
    gap: 24px;
  }

  .cart-table-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-summary {
    width: 100%;
    position: static;
  }

  /* Checkout */
  .checkout-body {
    flex-direction: column;
    padding: 16px 20px 40px;
    gap: 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .checkout-steps {
    justify-content: center;
  }

  /* Interior pages section padding */
  section[style*="padding:32px 80px"],
  section[style*="padding: 32px 80px"],
  div[style*="padding:32px 80px"],
  div[style*="padding: 32px 80px"] {
    padding: 16px 20px 40px !important;
  }

  /* Hire designer + generic full-width section padding */
  section[style*="padding:80px"],
  section[style*="padding: 80px"] {
    padding: 48px 20px !important;
  }

  section[style*="padding:64px 80px"],
  section[style*="padding: 64px 80px"] {
    padding: 40px 20px !important;
  }

  /* Design services flex row → column on mobile */
  section div[style*="display:flex"][style*="gap:24px"][style*="width:100%"] {
    flex-direction: column !important;
  }

  /* CTA buttons stack on mobile */
  section div[style*="display:flex"][style*="gap:16px"][style*="align-items:center"] {
    flex-direction: column !important;
    width: 100%;
  }

  /* CTA bottom info stack */
  section div[style*="display:flex"][style*="gap:32px"] {
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* Contact page grid */
  section[style*="grid-template-columns:1fr 360px"],
  div[style*="grid-template-columns:1fr 360px"],
  div[style*="grid-template-columns: 1fr 360px"] {
    grid-template-columns: 1fr !important;
  }

  /* Account profile sidebar grid */
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns: 1fr 300px"] {
    grid-template-columns: 1fr !important;
  }

  /* Order detail grid */
  div[style*="grid-template-columns:1fr 340px"],
  div[style*="grid-template-columns: 1fr 340px"] {
    grid-template-columns: 1fr !important;
  }

  /* Auth form max-width adjustments */
  div[style*="max-width:480px"],
  div[style*="max-width: 480px"],
  div[style*="max-width:560px"],
  div[style*="max-width: 560px"] {
    max-width: 100% !important;
  }

  /* About page why-choose grid */
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* 2-column form grids stack on mobile */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Order table horizontal scroll */
  .admin-table-container,
  div[style*="overflow:hidden"] > table {
    display: block;
    overflow-x: auto;
  }

  /* Flash messages */
  .flash-container {
    padding: 0 20px;
  }
}

/* === Utilities === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.w-100 { width: 100%; }

/* ========================================
   REUSABLE COMPONENT STYLES
   ======================================== */

/* Product Card — link reset */
.product-card .product-name a {
    color: inherit;
    text-decoration: none;
}

.add-to-cart-form {
    margin: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 64px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 24px;
}

.empty-state-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-state-message {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Order Summary — checkout item rows */
.summary-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-item-thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.summary-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-info {
    flex: 1;
    min-width: 0;
}

.summary-item-name {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-item-qty {
    font-size: 12px;
    color: var(--text-muted);
}

.summary-item-price {
    font-weight: 600;
    font-size: 14px;
}

.summary-secure-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Section Header — with action variant */
.section-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* ==============================================
   DESIGNER CARDS
   ============================================== */
.designer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}
.designer-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg, 16px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.designer-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.designer-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.designer-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
    flex-shrink: 0;
}
.designer-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 28px;
}
.designer-info h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}
.designer-specialty {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}
.designer-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}
.designer-portfolio {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}
.designer-portfolio img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md, 8px);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}
.designer-portfolio img:hover {
    opacity: 0.85;
}
.designer-wa-btn {
    margin-top: auto;
    text-align: center;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .designer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .designer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .designer-card {
        padding: 20px;
    }
    .designer-avatar {
        width: 56px;
        height: 56px;
    }
    .designer-portfolio img {
        width: 80px;
        height: 80px;
    }
}

/* ==============================================
   WHATSAPP CONTACT PAGE
   ============================================== */
.whatsapp-page {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.whatsapp-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.whatsapp-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.whatsapp-intro h2 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.whatsapp-intro p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}
.whatsapp-numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.whatsapp-number-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg, 16px);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.whatsapp-number-card:hover {
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.12);
}
.whatsapp-number-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.whatsapp-number-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
}
.whatsapp-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 18px;
}
.whatsapp-number-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}
.whatsapp-number-specialty {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 1px;
}
.whatsapp-number-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.whatsapp-number-phone {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}
.whatsapp-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #25D366;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.whatsapp-footer-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}
.whatsapp-footer-note p {
    margin: 0;
}
@media (max-width: 480px) {
    .whatsapp-number-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .whatsapp-number-right {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
        justify-content: space-between;
    }
}
