/* public/static/styles.css - CH Vendors Sales Global Luxury Styles */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --red: #dc2626;
  --red-dark: #991b1b;
  --red-light: #ef4444;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --dark-card: #141414;
  --border: #2a2a2a;
  --border-red: rgba(220, 38, 38, 0.3);
  --gold: #d4af37;
  --gold-light: #f1d278;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gradient-red: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111827 100%);
  --shadow-red: 0 0 30px rgba(220, 38, 38, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ========================================
   TYPOGRAPHY
======================================== */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }
.text-gradient {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold { color: var(--gold); }

/* ========================================
   LAYOUT
======================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 40px 0; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1280px; margin: 0 auto;
  flex-wrap: nowrap; min-height: 60px;
}
.nav-logo {
  font-size: 18px; font-weight: 900; letter-spacing: 1px;
  color: var(--text-primary); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
.nav-logo-line {
  width: 40px; height: 2px; background: var(--gradient-red);
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 15px; font-weight: 500; transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; right: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.btn-nav {
  padding: 7px 14px; border-radius: 6px; font-size: 13px;
  font-weight: 600; text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none; font-family: inherit;
  white-space: nowrap;
}
.btn-nav-outline {
  border: 1px solid var(--border); color: var(--text-primary);
  background: transparent;
}
.btn-nav-outline:hover { border-color: var(--red); color: var(--red); }
.btn-nav-red {
  background: var(--gradient-red); color: white;
}
.btn-nav-red:hover { transform: translateY(-1px); box-shadow: var(--shadow-red); }

.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--text-primary); cursor: pointer; font-size: 24px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: 8px;
  font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: all 0.3s ease;
  border: none; letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient-red); color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000; font-weight: 900;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); }
.btn-lg { padding: 18px 48px; font-size: 18px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 120px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220, 38, 38, 0.1); border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--red-light); padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}
.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900; line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .line-red { color: var(--red); display: block; }
.hero-title .line-white { color: var(--text-primary); display: block; }
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary); margin-bottom: 40px;
  line-height: 1.7; max-width: 500px;
}
.hero-stats {
  display: flex; gap: 40px; margin-bottom: 40px;
}
.hero-stat { }
.hero-stat-number {
  font-size: 32px; font-weight: 900; color: var(--text-primary);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
}
.hero-image-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5; position: relative;
}
.hero-image-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8);
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
}
.hero-image-tag {
  position: absolute; bottom: 20px; right: 20px; left: 20px;
  background: rgba(10, 10, 10, 0.9); border: 1px solid var(--border-red);
  border-radius: 10px; padding: 16px;
}
.hero-floating-badge {
  position: absolute; top: 20px; left: -20px;
  background: var(--gradient-red); color: white;
  padding: 10px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-red);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========================================
   SEARCH BAR
======================================== */
.search-section {
  background: var(--black-2); border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky; top: 72px; z-index: 100;
}
.search-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 6px 6px 20px;
  max-width: 700px; margin: 0 auto;
  transition: border-color 0.3s;
}
.search-bar:focus-within { border-color: var(--red); box-shadow: var(--shadow-red); }
.search-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text-primary); font-family: 'Heebo', sans-serif;
  font-size: 16px; text-align: right;
  placeholder-color: var(--text-muted);
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--gradient-red); color: white;
  border: none; border-radius: 50px; padding: 10px 24px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Heebo', sans-serif; transition: all 0.2s;
}
.search-btn:hover { transform: scale(1.02); }

/* ========================================
   CATEGORIES BAR
======================================== */
.categories-bar {
  padding: 20px 0; overflow-x: auto;
  scrollbar-width: none;
}
.categories-bar::-webkit-scrollbar { display: none; }
.categories-list {
  display: flex; gap: 12px; padding: 0 24px;
  justify-content: center; flex-wrap: wrap;
}
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--dark-card); color: var(--text-secondary);
  font-size: 14px; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.cat-chip:hover, .cat-chip.active {
  border-color: var(--red); color: var(--red);
  background: rgba(220, 38, 38, 0.1);
}

/* ========================================
   SECTION HEADER
======================================== */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.section-title {
  font-size: 32px; font-weight: 900;
  display: flex; align-items: center; gap: 12px;
}
.section-title::before {
  content: ''; display: block; width: 4px; height: 32px;
  background: var(--gradient-red); border-radius: 2px;
}
.section-see-all {
  color: var(--red); text-decoration: none;
  font-size: 14px; font-weight: 600; transition: opacity 0.2s;
}
.section-see-all:hover { opacity: 0.8; }

/* ========================================
   PRODUCT CARDS
======================================== */
.products-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.product-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s ease; cursor: pointer;
  text-decoration: none; display: block; color: inherit;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}
.product-card-image {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gradient-red); color: white;
  padding: 4px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.product-card-timer {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.9); backdrop-filter: blur(10px);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.timer-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; animation: blink 1s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.timer-text { font-size: 14px; font-weight: 700; color: var(--red-light); }
.timer-label { font-size: 11px; color: var(--text-muted); }
.product-card-body { padding: 20px; }
.product-card-brand {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
}
.product-card-title {
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
  color: var(--text-primary); line-height: 1.3;
}
.product-card-desc {
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 16px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-prices {
  display: flex; align-items: flex-end; gap: 12px; margin-bottom: 16px;
}
.price-campaign {
  font-size: 24px; font-weight: 900; color: var(--text-primary);
}
.price-original {
  font-size: 16px; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 2px;
}
.price-discount {
  font-size: 13px; color: #22c55e; font-weight: 700;
  background: rgba(34, 197, 94, 0.1); padding: 2px 8px; border-radius: 4px;
}
.product-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
}
.product-card-shipping { display: flex; align-items: center; gap: 4px; }
.product-card-cta { width: 100%; }

/* ========================================
   CLOSING SOON SECTION
======================================== */
.closing-soon-card {
  background: var(--dark-card); border: 1px solid rgba(220,38,38,0.4);
  border-radius: 16px; overflow: hidden;
  display: flex; gap: 0;
  transition: all 0.3s;
}
.closing-soon-card:hover { box-shadow: 0 0 30px rgba(220,38,38,0.2); }
.closing-soon-image { width: 120px; flex-shrink: 0; }
.closing-soon-image img { width: 100%; height: 100%; object-fit: cover; }
.closing-soon-body { padding: 16px; flex: 1; }
.closing-soon-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* ========================================
   COUNTDOWN TIMER
======================================== */
.countdown {
  display: flex; gap: 8px; align-items: center;
}
.countdown-unit {
  text-align: center; background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3); border-radius: 6px;
  padding: 6px 10px; min-width: 50px;
}
.countdown-num {
  font-size: 22px; font-weight: 900; color: var(--red);
  display: block; line-height: 1;
}
.countdown-label { font-size: 10px; color: var(--text-muted); }
.countdown-sep { color: var(--red); font-size: 20px; font-weight: 900; }

/* ========================================
   FORMS
======================================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
}
.form-input {
  width: 100%; padding: 14px 16px; background: var(--dark-card);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text-primary); font-family: 'Heebo', sans-serif;
  font-size: 15px; transition: border-color 0.2s; text-align: right;
  outline: none;
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.form-input::placeholder { color: var(--text-muted); }
.form-error { color: #ef4444; font-size: 12px; margin-top: 4px; }
.form-select {
  width: 100%; padding: 14px 16px; background: var(--dark-card);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text-primary); font-family: 'Heebo', sans-serif;
  font-size: 15px; text-align: right; outline: none; cursor: pointer;
}
.form-select:focus { border-color: var(--red); }
.form-checkbox-row {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
}
.form-checkbox {
  width: 20px; height: 20px; border: 2px solid var(--border);
  border-radius: 4px; flex-shrink: 0; cursor: pointer;
  accent-color: var(--red);
}
.form-checkbox-label {
  font-size: 14px; color: var(--text-secondary); line-height: 1.5; cursor: pointer;
}
.form-checkbox-label a { color: var(--red); text-decoration: none; }
.form-checkbox-label a:hover { text-decoration: underline; }

/* ========================================
   AUTH PAGES
======================================== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(220,38,38,0.08) 0%, transparent 60%),
              var(--black);
  padding: 100px 20px 40px;
}
.auth-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px; width: 100%;
  max-width: 480px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.auth-logo {
  text-align: center; margin-bottom: 32px;
}
.auth-logo h1 { font-size: 28px; font-weight: 900; letter-spacing: 3px; }
.auth-logo h1 span { color: var(--red); }
.auth-title { font-size: 28px; font-weight: 900; margin-bottom: 8px; text-align: center; }
.auth-subtitle { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; text-align: center; }
.auth-divider {
  display: flex; align-items: center; gap: 16px; margin: 24px 0;
  color: var(--text-muted); font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-social { display: flex; gap: 12px; margin-bottom: 24px; }
.btn-social {
  flex: 1; padding: 12px; background: var(--black-3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-family: 'Heebo', sans-serif;
  font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: all 0.2s;
}
.btn-social:hover { border-color: var(--red); }
.auth-footer {
  text-align: center; margin-top: 24px;
  font-size: 14px; color: var(--text-muted);
}
.auth-footer a { color: var(--red); text-decoration: none; font-weight: 600; }

/* ========================================
   MEMBERSHIP CARD
======================================== */
.membership-card {
  background: linear-gradient(135deg, #1a0808 0%, #0d0d0d 50%, #1a0808 100%);
  border: 1px solid rgba(220,38,38,0.4); border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(220,38,38,0.1);
}
.membership-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(220,38,38,0.05) 0%, transparent 60%);
}
.membership-badge {
  display: inline-block; background: var(--gradient-red);
  color: white; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px;
}
.membership-price-display {
  font-size: 64px; font-weight: 900; line-height: 1;
  color: var(--text-primary);
}
.membership-price-display span { font-size: 24px; color: var(--text-secondary); }
.membership-perks { list-style: none; padding: 0; margin: 24px 0; }
.membership-perks li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px; color: var(--text-secondary);
}
.membership-perks li::before { content: '✓'; color: var(--red); font-weight: 900; }

/* ========================================
   TOAST NOTIFICATIONS
======================================== */
.toast-container {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--dark-card); border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; min-width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease;
  border-right: 4px solid var(--red);
}
.toast.success { border-right-color: #22c55e; }
.toast.error { border-right-color: #ef4444; }
.toast.info { border-right-color: #3b82f6; }
@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.toast-icon { font-size: 20px; }
.toast-message { flex: 1; font-size: 14px; color: var(--text-primary); }
.toast-close { cursor: pointer; color: var(--text-muted); font-size: 18px; }

/* ========================================
   LOADING SPINNER
======================================== */
.spinner {
  width: 40px; height: 40px; border: 3px solid var(--border);
  border-top-color: var(--red); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}

/* ========================================
   MODAL
======================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title { font-size: 24px; font-weight: 800; }
.modal-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 24px; cursor: pointer; transition: color 0.2s; line-height: 1;
}
.modal-close:hover { color: var(--text-primary); }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--black-2); border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 24px; font-weight: 900; letter-spacing: 3px; margin-bottom: 16px;
}
.footer-brand-name span { color: var(--red); }
.footer-description { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-col-title {
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  color: var(--text-primary); margin-bottom: 16px; text-transform: uppercase;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
.footer-red { color: var(--red); }

/* ========================================
   DASHBOARD
======================================== */
.dashboard-layout {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: 100vh; padding-top: 72px;
}
.dashboard-sidebar {
  background: var(--black-2); border-left: 1px solid var(--border);
  padding: 32px 0; position: sticky; top: 72px; height: calc(100vh - 72px);
  overflow-y: auto;
}
.sidebar-user { padding: 0 24px 32px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-red); display: flex; align-items: center;
  justify-content: center; font-size: 24px; font-weight: 900;
  margin-bottom: 12px;
}
.sidebar-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.sidebar-email { font-size: 13px; color: var(--text-muted); }
.sidebar-nav { padding: 0 12px; }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px; text-decoration: none;
  color: var(--text-secondary); font-size: 15px; font-weight: 500;
  transition: all 0.2s; cursor: pointer; background: none; border: none;
  width: 100%; text-align: right; font-family: 'Heebo', sans-serif;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active {
  background: rgba(220,38,38,0.1); color: var(--red);
}
.sidebar-nav-item .icon { font-size: 18px; }
.dashboard-main { padding: 40px; }

/* ========================================
   ADMIN SPECIFIC
======================================== */
.admin-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.admin-table th {
  background: var(--black-2); padding: 12px 16px; text-align: right;
  color: var(--text-muted); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-stat-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.admin-stat-value { font-size: 36px; font-weight: 900; color: var(--text-primary); }
.admin-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.admin-stat-card.red { border-color: rgba(220,38,38,0.3); }
.admin-stat-card.red .admin-stat-value { color: var(--red); }

/* Badge */
.badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 700;
}
.badge-active { background: rgba(34,197,94,0.1); color: #22c55e; }
.badge-pending { background: rgba(234,179,8,0.1); color: #eab308; }
.badge-expired { background: rgba(100,116,139,0.1); color: var(--text-muted); }
.badge-closed { background: rgba(239,68,68,0.1); color: #ef4444; }
.badge-paid { background: rgba(34,197,94,0.1); color: #22c55e; }

/* ========================================
   ALERTS AND INFO BOXES
======================================== */
.alert {
  padding: 16px 20px; border-radius: 8px; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.alert-warning {
  background: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.3);
  color: #fbbf24;
}
.alert-info {
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
}
.alert-success {
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
}
.alert-error {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; height: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .navbar-inner { padding: 10px 16px; min-height: 56px; }
  .nav-logo { font-size: 15px; letter-spacing: 0; }
  .nav-logo > div > div:first-child { display: none; }
  .btn-nav { padding: 6px 12px; font-size: 12px; }
  .nav-cta { gap: 6px; }
  .hero-title { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .closing-soon-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 20px; }
  .modal { padding: 24px; }
  .section { padding: 48px 0; }
  .dashboard-main { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 8px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-content { padding: 90px 16px 60px; }
  .countdown-num { font-size: 18px; }
  .auth-social { flex-direction: column; }
  .navbar-inner { padding: 8px 14px; min-height: 52px; }
  .nav-logo { font-size: 14px; }
  .btn-nav { padding: 5px 10px; font-size: 11px; }
  .nav-username { display: none; }
}

/* Ensure nav never wraps */
.nav-cta, .navbar-inner {
  flex-wrap: nowrap !important;
  overflow: visible;
}
.nav-auth-zone {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

/* ========================================
   ANIMATIONS
======================================== */
.fade-in {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up { animation: slideUp 0.4s ease; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.shimmer {
  background: linear-gradient(90deg, var(--dark-card) 25%, var(--black-3) 50%, var(--dark-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========================================
   PRODUCT DETAIL
======================================== */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.product-images-gallery { position: sticky; top: 90px; }
.product-main-image {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 1;
  margin-bottom: 12px; background: var(--dark-card);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 8px; }
.product-thumbnail {
  width: 80px; height: 80px; border-radius: 8px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer; transition: border-color 0.2s;
}
.product-thumbnail.active { border-color: var(--red); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.product-info { }
.product-brand-tag {
  font-size: 12px; letter-spacing: 2px; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.product-title { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.product-price-block { margin-bottom: 24px; }
.product-campaign-price { font-size: 48px; font-weight: 900; color: var(--text-primary); }
.product-original-price {
  font-size: 20px; color: var(--text-muted); text-decoration: line-through;
}
.product-savings {
  display: inline-block; background: rgba(34,197,94,0.1);
  color: #22c55e; padding: 4px 12px; border-radius: 4px;
  font-size: 14px; font-weight: 700; margin-top: 8px;
}
.product-campaign-timer {
  background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3);
  border-radius: 12px; padding: 20px; margin-bottom: 24px;
}
.product-timer-title { font-size: 14px; color: var(--red); font-weight: 700; margin-bottom: 12px; }
.product-variants { margin-bottom: 24px; }
.variant-group { margin-bottom: 16px; }
.variant-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; font-weight: 600; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-option {
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 14px; cursor: pointer; background: var(--dark-card);
  color: var(--text-secondary); transition: all 0.2s;
}
.variant-option:hover, .variant-option.selected { border-color: var(--red); color: var(--red); background: rgba(220,38,38,0.1); }
.quantity-selector { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.quantity-btn {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--dark-card); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.quantity-btn:hover { border-color: var(--red); }
.quantity-num { font-size: 22px; font-weight: 700; min-width: 40px; text-align: center; }
.product-shipping-info {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px; margin-bottom: 24px;
  font-size: 14px; color: var(--text-secondary); display: flex; gap: 8px; align-items: center;
}
.checkout-consent { margin-bottom: 24px; }
.legal-box {
  background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.2);
  border-radius: 8px; padding: 16px; margin-bottom: 16px;
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}

@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-images-gallery { position: static; }
}
