﻿:root {
  --primary: #2C2C2C;
  --primary-light: #4A4A4A;
  --primary-dark: #1A1A1A;
  --accent: #D946EF;
  --accent-light: #F4A8F7;
  --rose: #9D4EDD;
  --rose-light: #F3E8FF;
  --blush: #FFF5FF;
  --gradient-primary: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%);
  --gradient-accent: linear-gradient(135deg, #D946EF 0%, #F4A8F7 100%);
  --gradient-rose: linear-gradient(135deg, #9D4EDD 0%, #D946EF 100%);
  --gradient-hero: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3D3D3D 100%);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-family); color: #2C2C2C; background: #fff; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.btn { font-weight: 600; border-radius: var(--radius-sm); padding: 12px 28px; transition: var(--transition); border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--gradient-accent); color: var(--primary-dark); }
.btn-primary:hover { color: var(--primary-dark); box-shadow: 0 8px 25px rgba(232,184,48,0.3); }
.btn-accent { background: var(--gradient-accent); color: white; }
.btn-accent:hover { color: white; box-shadow: 0 8px 25px rgba(232,184,48,0.3); }
.btn-outline-primary { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline-primary:hover { background: var(--gradient-accent); color: var(--primary-dark); border-color: transparent; }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.5); color: white; }
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

.form-control, .form-select { border-radius: var(--radius-sm); border: 2px solid #e8e8e8; padding: 12px 16px; font-family: var(--font-family); transition: var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,184,48,0.1); }

.section { padding: 80px 0; position: relative; }
.bg-light { background: #FFFDF5; }
.section-header { text-align: center; margin-bottom: 50px; position: relative; }
.section-header::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gradient-rose); margin: 16px auto 0; border-radius: 2px; }
.section-badge { display: inline-block; background: rgba(232,184,48,0.15); color: var(--accent); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; padding: 6px 16px; border-radius: 50px; margin-bottom: 12px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.section-header p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }

.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 0.85rem; padding: 8px 0; position: relative; z-index: 1001; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: white; }
.top-bar i { margin-right: 6px; }

.main-navbar { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 15px 0; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
.main-navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.brand-text { display: flex; align-items: center; gap: 8px; }
.brand-ab { font-size: 1.4rem; font-weight: 900; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; }
.brand-import { font-size: 1rem; font-weight: 600; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; }
.navbar .nav-link { font-weight: 500; color: #333; padding: 8px 16px !important; border-radius: var(--radius-sm); transition: var(--transition); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent); }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.action-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #f5f5f5; color: #333; transition: var(--transition); border: none; font-size: 1.2rem; }
.action-btn:hover { background: var(--accent); color: var(--primary-dark); transform: scale(1.05); }
.badge-count { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; background: var(--accent); color: var(--primary-dark); font-size: 0.7rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius-md); padding: 8px; }
.dropdown-item { border-radius: var(--radius-sm); padding: 10px 16px; font-weight: 500; }
.dropdown-item:hover { background: #FFFDF5; color: var(--accent); }

.hero-section { position: relative; overflow: hidden; background: #111; }
.hero-section::before { display: none; }
.hero-section::after { display: none; }
.swiper { overflow: hidden; }
.heroSwiper, .trendingSwiper, .promoSlider, .testimonialSwiper { overflow: hidden; }
.hero-slide {
  padding: 110px 0;
  min-height: 460px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.72), rgba(17,17,17,0.32));
  z-index: 1;
}
.hero-shine { display: none; }
.hero-slide .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(17,17,17,0.52); color: white; font-weight: 800; font-size: 0.9rem; padding: 9px 18px; border-radius: 50px; margin-bottom: 22px; backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.34); box-shadow: 0 12px 35px rgba(0,0,0,0.18); }
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-light); box-shadow: 0 0 18px var(--accent-light); }
.hero-title { font-size: clamp(2.1rem, 4.5vw, 4rem); font-weight: 900; color: white; line-height: 1.08; margin-bottom: 18px; letter-spacing: -1px; text-shadow: 0 3px 8px rgba(0,0,0,0.85); }
.hero-title::after { content: ''; display: block; width: 90px; height: 4px; background: var(--gradient-accent); margin: 18px auto 0; border-radius: 99px; box-shadow: 0 0 18px rgba(217,70,239,0.45); }
.hero-subtitle { font-size: clamp(1rem, 1.8vw, 1.18rem); color: white; margin-bottom: 28px; max-width: 760px; line-height: 1.7; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-glass { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.24); backdrop-filter: blur(14px); }
.btn-glass:hover { color: white; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.38); }
.hero-mini-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-mini-stats div { min-width: 118px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.28); border-radius: 18px; background: rgba(17,17,17,0.42); backdrop-filter: blur(12px); box-shadow: 0 14px 35px rgba(0,0,0,0.16); }
.hero-mini-stats strong { display: block; color: white; font-size: 1.25rem; font-weight: 900; line-height: 1; }
.hero-mini-stats span { display: block; color: rgba(255,255,255,0.94); font-size: 0.78rem; margin-top: 5px; }
.hero-image-wrapper { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.hero-product-showcase { width: min(100%, 460px); height: 520px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: 0.9; animation: heroPulse 4s ease-in-out infinite; }
.hero-orb-one { width: 360px; height: 360px; background: radial-gradient(circle, rgba(217,70,239,0.35), rgba(217,70,239,0.02) 70%); }
.hero-orb-two { width: 260px; height: 260px; background: radial-gradient(circle, rgba(244,168,247,0.28), rgba(244,168,247,0.02) 70%); animation-delay: 1s; }
.hero-glass-card { position: absolute; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.12); backdrop-filter: blur(18px); border-radius: 28px; box-shadow: 0 24px 70px rgba(0,0,0,0.28); color: white; }
.hero-main-card { width: 280px; height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transform: rotate(-7deg); animation: floatHero 4.5s ease-in-out infinite; }
.hero-shoe-icon { width: 118px; height: 118px; border-radius: 34px; display: flex; align-items: center; justify-content: center; background: var(--gradient-accent); color: white; font-size: 3.4rem; margin-bottom: 22px; box-shadow: 0 16px 38px rgba(217,70,239,0.35); }
.hero-main-card span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }
.hero-main-card strong { font-size: 2rem; line-height: 1.05; margin-top: 8px; }
.hero-float-card { min-width: 145px; padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 0.88rem; animation: floatHero 4s ease-in-out infinite; }
.hero-float-card i { color: var(--accent-light); font-size: 1.2rem; }
.hero-float-card.one { top: 36px; left: 4px; animation-delay: 0.4s; }
.hero-float-card.two { top: 88px; right: 0; animation-delay: 1s; }
.hero-float-card.three { bottom: 34px; left: 28px; animation-delay: 1.6s; }
@keyframes floatHero { 0%,100% { transform: translateY(0) rotate(-7deg); } 50% { transform: translateY(-18px) rotate(-3deg); } }
.hero-float-card.two, .hero-float-card.three { transform: rotate(6deg); }
.hero-float-card.two:hover, .hero-float-card.three:hover { transform: translateY(-6px) rotate(6deg); }
@keyframes heroPulse { 0%,100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes heroShine { 0%,45% { transform: translateX(-120%); opacity: 0; } 55% { opacity: 1; } 100% { transform: translateX(120%); opacity: 0; } }

.trust-badges { padding: 40px 0; margin-top: -40px; position: relative; z-index: 10; }
.trust-badge-item { background: white; border-radius: var(--radius-md); padding: 24px 16px; text-align: center; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; overflow: hidden; }
.trust-badge-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-rose); transform: scaleX(0); transition: var(--transition); }
.trust-badge-item:hover::before { transform: scaleX(1); }
.trust-badge-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trust-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(232,184,48,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.5rem; color: var(--accent); transition: var(--transition); }
.trust-badge-item:hover .trust-icon { background: var(--gradient-accent); color: var(--primary-dark); transform: scale(1.1); }
.trust-badge-item h6 { font-weight: 700; margin-bottom: 4px; }
.trust-badge-item p { font-size: 0.85rem; color: #888; margin: 0; }

.featured-categories { position: relative; }
.featured-categories::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,165,165,0.06) 0%, transparent 70%); pointer-events: none; }
.category-card { display: block; background: white; border-radius: var(--radius-md); padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 2px solid transparent; position: relative; overflow: hidden; }
.category-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gradient-rose); transition: var(--transition); border-radius: 2px; }
.category-card:hover::after { width: 60%; }
.category-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.category-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(232,184,48,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.8rem; color: var(--accent); transition: var(--transition); }
.category-card:hover .category-icon { background: var(--gradient-accent); color: var(--primary-dark); transform: scale(1.1) rotate(-5deg); }
.category-card h6 { font-weight: 700; font-size: 0.95rem; color: #333; }

.featured-products { position: relative; }
.featured-products::before { content: ''; position: absolute; bottom: 0; left: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,184,48,0.05) 0%, transparent 70%); pointer-events: none; }
.product-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; height: 100%; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.product-badges { position: absolute; top: 12px; left: 12px; z-index: 5; display: flex; flex-direction: column; gap: 4px; }
.badge-sale { background: #FF6B6B; color: white; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; }
.badge-trending { background: var(--gradient-accent); color: var(--primary-dark); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; }
.product-actions { position: absolute; top: 12px; right: 12px; z-index: 5; display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(10px); transition: var(--transition); }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.btn-wishlist, .btn-quickview { width: 36px; height: 36px; border: none; border-radius: 50%; background: white; color: #333; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); }
.btn-wishlist:hover, .btn-wishlist.active { background: #fce4ec; color: #e91e63; }
.btn-quickview:hover { background: var(--accent); color: var(--primary-dark); }
.product-image { display: block; position: relative; padding-top: 100%; overflow: hidden; background: #f8f9fc; }
.product-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.03)); pointer-events: none; }
.product-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #ddd; }
.product-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; position: relative; }
.product-info::before { content: ''; position: absolute; top: 0; left: 16px; right: 16px; height: 1px; background: linear-gradient(to right, transparent, rgba(212,165,165,0.3), transparent); }
.product-category { font-size: 0.75rem; color: var(--rose); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.product-name a { color: #2C2C2C; }
.product-name a:hover { color: var(--accent); }
.product-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 8px; font-size: 0.8rem; }
.product-rating i { color: #ffc107; }
.product-rating span { color: #999; margin-left: 4px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; margin-top: auto; }
.current-price { font-size: 1.2rem; font-weight: 800; color: var(--accent); }
.old-price { font-size: 0.9rem; color: #999; text-decoration: line-through; }

.promo-card { background: var(--gradient-hero); border-radius: var(--radius-xl); padding: 60px; color: white; overflow: hidden; position: relative; }
.promo-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,165,165,0.1) 0%, transparent 70%); border-radius: 50%; }
.promo-card::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(232,184,48,0.08) 0%, transparent 70%); border-radius: 50%; }
.promo-badge { display: inline-block; background: var(--gradient-rose); color: white; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.promo-title { font-size: 3rem; font-weight: 900; margin-bottom: 12px; }
.promo-text { font-size: 1.1rem; opacity: 0.9; max-width: 450px; }
.promo-features { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.promo-features span { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; }
.promo-features i { color: var(--accent); }
.promo-discount-circle { width: 200px; height: 200px; border-radius: 50%; background: var(--gradient-rose); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 0 40px rgba(212,165,165,0.3); animation: pulse 2s ease-in-out infinite; color: white; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.discount-number { font-size: 4rem; font-weight: 900; line-height: 1; }
.discount-label { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; }

.why-us { position: relative; }
.why-us::after { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,165,165,0.06) 0%, transparent 70%); pointer-events: none; }
.why-us-card { background: white; border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; position: relative; overflow: hidden; }
.why-us-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-rose); transform: scaleX(0); transition: var(--transition); }
.why-us-card:hover::before { transform: scaleX(1); }
.why-us-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-us-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--primary-dark); background: var(--gradient-accent); transition: var(--transition); }
.why-us-card:hover .why-us-icon { background: var(--gradient-rose); color: white; transform: scale(1.1) rotate(-5deg); }
.why-us-card h4 { font-weight: 700; margin-bottom: 12px; font-size: 1.2rem; }
.why-us-card p { color: #666; font-size: 0.95rem; margin: 0; line-height: 1.7; }

.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow-sm); margin: 16px 4px; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 16px; right: 24px; font-size: 4rem; color: rgba(212,165,165,0.2); font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars i { color: #ffc107; font-size: 1.1rem; }
.testimonial-content { font-size: 1rem; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-rose); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.testimonial-author h6 { font-weight: 700; margin-bottom: 2px; }
.testimonial-author span { font-size: 0.85rem; color: #888; }

.newsletter-section { position: relative; }
.newsletter-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(212,165,165,0.06) 0%, transparent 50%); pointer-events: none; }
.newsletter-card { background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%); border-radius: var(--radius-xl); padding: 60px; color: white; position: relative; overflow: hidden; }
.newsletter-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,165,165,0.08) 0%, transparent 70%); border-radius: 50%; }
.newsletter-card h3 { font-size: 2rem; font-weight: 800; }
.newsletter-card p { opacity: 0.85; margin: 0; color: rgba(255,255,255,0.8); }
.newsletter-form .input-group { background: rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.2); }
.newsletter-form .form-control { background: transparent; border: none; color: white; padding: 16px 20px; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { box-shadow: none; }
.newsletter-form .btn-accent { background: var(--gradient-rose); border: none; }
.newsletter-form .btn-accent:hover { opacity: 0.9; transform: translateY(-1px); }

.contact-section { position: relative; }
.contact-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 80% 50%, rgba(232,184,48,0.04) 0%, transparent 50%); pointer-events: none; }
.contact-info-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); height: 100%; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: rgba(232,184,48,0.12); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; transition: var(--transition); }
.contact-item:hover .contact-icon { background: var(--gradient-rose); color: white; transform: scale(1.1); }
.contact-item h6 { font-weight: 700; margin-bottom: 2px; }
.contact-item p { color: #666; margin: 0; }
.contact-item a { color: var(--accent); }
.contact-form-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }

.main-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; position: relative; }
.main-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, transparent, var(--rose), var(--accent), var(--rose), transparent); }
.footer-top { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-desc { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 8px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition); font-size: 1.1rem; }
.social-link:hover { background: var(--gradient-rose); color: white; transform: translateY(-3px); }
.main-footer h5 { font-weight: 700; color: white; margin-bottom: 20px; font-size: 1.1rem; position: relative; display: inline-block; }
.main-footer h5::after { content: ''; display: block; width: 30px; height: 2px; background: var(--rose); margin-top: 6px; border-radius: 2px; }
.main-footer .brand-ab { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; -webkit-background-clip: initial !important; }
.main-footer .brand-import { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.footer-brand .brand-import { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: var(--transition); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.footer-contact i { color: var(--rose); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { padding: 24px 0; }
.footer-credit { color: white; font-weight: 700; letter-spacing: 0.3px; transition: var(--transition); }
.footer-credit:hover { color: var(--accent-light); }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); color: white; }
@media (max-width: 991px) { .whatsapp-float { bottom: 72px; } }
.back-to-top { position: fixed; bottom: 90px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-md); }
.back-to-top.visible { opacity: 1; visibility: visible; }

.page-header { background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3D3D3D 100%); padding: 50px 0; color: white; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,165,165,0.08) 0%, transparent 70%); border-radius: 50%; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(212,165,165,0.3), transparent); }
.page-header h1 { font-weight: 800; font-size: 2rem; margin-bottom: 8px; position: relative; z-index: 1; }
.breadcrumb { margin: 0; background: transparent; position: relative; z-index: 1; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: white; }
.breadcrumb-item.active { color: rgba(255,255,255,0.5); }

.shop-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: white; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.sidebar-widget h5 { font-weight: 700; font-size: 1rem; margin-bottom: 16px; color: var(--primary-dark); }
.category-list { list-style: none; padding: 0; }
.category-list li { margin-bottom: 4px; }
.category-list a { display: block; padding: 8px 12px; border-radius: var(--radius-sm); color: #555; font-weight: 500; transition: var(--transition); font-size: 0.9rem; }
.category-list a:hover, .category-list a.active { background: rgba(232,184,48,0.08); color: var(--accent); padding-left: 16px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; background: white; padding: 16px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

.main-image { background: #f8f9fc; border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.main-image img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

.product-category-badge { display: inline-block; background: rgba(232,184,48,0.12); color: var(--accent); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.product-detail-title { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 12px; }
.product-detail-price { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-detail-price .current-price { font-size: 2rem; font-weight: 900; }
.product-detail-price .old-price { font-size: 1.3rem; color: #999; text-decoration: line-through; }
.savings { background: #e8f5e9; color: #2e7d32; font-weight: 700; font-size: 0.85rem; padding: 4px 12px; border-radius: 4px; }
.variation-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 12px; min-height: 22px; }
.variation-meta span { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 10px; background: rgba(217,70,239,0.08); color: var(--rose); font-weight: 800; font-size: 0.82rem; }
.variation-description { color: #666; font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }
.in-stock { display: inline-flex; align-items: center; gap: 6px; color: #1b5e20; font-weight: 700; }
.low-stock { display: inline-flex; align-items: center; gap: 6px; color: #e65100; font-weight: 700; }
.out-of-stock { display: inline-flex; align-items: center; gap: 6px; color: #c62828; font-weight: 700; }
.product-quantity { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.product-quantity label { font-weight: 600; }
.quantity-selector { display: flex; align-items: center; border: 2px solid #e8e8e8; border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 40px; height: 40px; border: none; background: #f5f5f5; font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: #e0e0e0; }
.quantity-selector input { width: 50px; height: 40px; border: none; text-align: center; font-weight: 600; font-size: 1rem; }
.product-detail-actions { display: flex; gap: 12px; margin-bottom: 20px; }
.mobile-add-cart-sticky { display: none; }
.variation-options { margin: 26px 0; padding: 22px; border-radius: 24px; background: linear-gradient(135deg, rgba(217,70,239,0.08), rgba(255,255,255,0.9)); border: 1px solid rgba(217,70,239,0.16); box-shadow: 0 16px 45px rgba(157,78,221,0.08); }
.variation-panel-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.variation-panel-title h3 { margin: 0; font-size: 1.1rem; font-weight: 900; color: var(--primary-dark); }
.variation-panel-title span { color: #7a6f80; font-size: 0.82rem; font-weight: 700; }
.variation-group { padding: 16px; border: 1px solid rgba(232,232,232,0.9); border-radius: 18px; background: white; margin-bottom: 14px; box-shadow: 0 8px 20px rgba(31,41,55,0.04); }
.variation-group:last-child { margin-bottom: 0; }
.variation-group label { display: flex; align-items: center; gap: 9px; font-weight: 900; margin-bottom: 12px; color: var(--primary-dark); font-size: 0.95rem; }
.variation-group label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gradient-rose); box-shadow: 0 0 0 5px rgba(217,70,239,0.08); }
.variation-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.variation-btn { border: 2px solid #e8e8e8; background: white; border-radius: 999px; padding: 11px 18px; font-weight: 900; color: #333; cursor: pointer; transition: var(--transition); min-height: 46px; box-shadow: 0 5px 12px rgba(31,41,55,0.05); position: relative; display: inline-flex; align-items: center; justify-content: center; }
.variation-btn:hover:not(:disabled) { border-color: var(--rose); color: var(--rose); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(157,78,221,0.12); }
.variation-btn.active { border-color: var(--rose); background: linear-gradient(135deg, #fff, var(--rose-light)); color: var(--rose); box-shadow: 0 10px 24px rgba(157,78,221,0.18); }
.variation-btn.active::after { content: '✓'; font-weight: 900; margin-left: 8px; color: var(--rose); }
.variation-btn:disabled { opacity: 0.42; cursor: not-allowed; background: #f5f5f5; text-decoration: line-through; }
.variation-btn:disabled::after { content: '×'; margin-left: 8px; font-weight: 900; color: #999; }
.variation-btn:disabled .variation-swatch { filter: grayscale(1); opacity: 0.55; }
.variation-size-buttons .variation-btn { min-width: 58px; }
.variation-color-buttons { gap: 12px; }
.variation-color-btn { display: inline-flex; align-items: center; gap: 10px; padding-right: 16px; }
.variation-swatch { width: 30px; height: 30px; border-radius: 50%; background: var(--swatch, #ddd); border: 1px solid rgba(0,0,0,0.16); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.28), 0 0 0 3px rgba(217,70,239,0.08); transition: var(--transition); flex: 0 0 auto; position: relative; }
.variation-stock-dot { position: absolute; right: -2px; bottom: -2px; width: 11px; height: 11px; border-radius: 50%; background: #20c997; border: 2px solid white; box-shadow: 0 0 0 1px rgba(32,201,151,0.35); }
.stock-low .variation-stock-dot { background: #ffc107; border-color: white; box-shadow: 0 0 0 1px rgba(255,193,7,0.35); }
.stock-empty .variation-stock-dot { background: #dc3545; border-color: white; box-shadow: 0 0 0 1px rgba(220,53,69,0.35); }
.variation-btn.active .variation-swatch { box-shadow: 0 0 0 3px white, 0 0 0 6px var(--rose), inset 0 0 0 2px rgba(255,255,255,0.28); }
.variation-stock-pill { margin-left: 4px; padding: 3px 7px; border-radius: 999px; font-size: 0.72rem; font-weight: 900; background: rgba(32,201,151,0.12); color: #146c43; }
.variation-stock-pill.low { background: rgba(255,193,7,0.16); color: #8a5a00; }
.variation-stock-pill.empty { background: rgba(220,53,69,0.12); color: #a71d2a; }
.variation-select-wrap { position: relative; }
.variation-select-wrap::after { content: '⌄'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--rose); font-size: 1.2rem; pointer-events: none; }
.variation-dropdown { max-width: 260px; min-height: 48px; font-weight: 700; appearance: none; border: 2px solid #e8e8e8; background-color: white; padding-right: 46px; }
.selected-variation-summary { display: none; align-items: center; gap: 8px; margin-top: 16px; padding: 12px 14px; border-radius: 14px; background: rgba(217,70,239,0.08); border: 1px solid rgba(217,70,239,0.18); color: var(--rose); font-weight: 800; font-size: 0.92rem; }
.selected-variation-summary.show { display: flex; }
.selected-variation-summary i { font-size: 1rem; }
.variation-message { min-height: 20px; margin-top: 12px; padding: 10px 12px; border-radius: 12px; background: #fff3f3; border: 1px solid rgba(220,53,69,0.18); }
.variation-message:empty { display: none; }
.variation-availability-info { min-height: 18px; padding: 8px 4px; }
.variation-availability-info:empty { display: none; }
.variation-btn.d-none { display: none !important; }
.product-detail-actions .btn:disabled, .mobile-add-cart-sticky .btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-features span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #555; }
.product-features i { color: var(--accent); }

.product-tabs { border-bottom: 2px solid #e8e8e8; }
.product-tabs .nav-link { border: none; font-weight: 600; color: #888; padding: 12px 24px; position: relative; }
.product-tabs .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transition: var(--transition); }
.product-tabs .nav-link.active::after { transform: scaleX(1); }
.product-tabs .nav-link.active { color: var(--accent); }
.product-tab-content { padding: 24px 0; }

.review-item { background: #f8f9fc; border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-accent); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review-header h6 { font-weight: 700; margin-bottom: 2px; }
.review-stars i { color: #ffc107; font-size: 0.85rem; }
.review-date { margin-left: auto; color: #999; font-size: 0.85rem; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.5rem; color: #ddd; cursor: pointer; transition: var(--transition); }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: #ffc107; }

.cart-item { display: flex; align-items: center; gap: 16px; padding: 20px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin-bottom: 12px; }
.cart-item-image { width: 80px; height: 80px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: #f8f9fc; display: flex; align-items: center; justify-content: center; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.cart-item-price { font-weight: 600; color: var(--accent); }
.cart-item-qty { display: flex; align-items: center; gap: 0; border: 2px solid #e8e8e8; border-radius: var(--radius-sm); overflow: hidden; }
.cart-qty-btn { width: 36px; height: 36px; border: none; background: #f5f5f5; font-size: 0.9rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; color: #555; }
.cart-qty-btn:hover { background: var(--accent); color: var(--primary-dark); }
.cart-qty-btn:active { transform: scale(0.95); }
.cart-qty-input { width: 44px; height: 36px; border: none; text-align: center; font-weight: 700; font-size: 0.95rem; background: white; color: var(--primary-dark); }
.cart-item-total { font-weight: 700; font-size: 1.1rem; min-width: 80px; text-align: right; }
.cart-item-remove { width: 36px; height: 36px; border: none; background: #fce4ec; color: #c62828; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.cart-item-remove:hover { background: #c62828; color: white; }
.cart-summary { background: white; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: #555; }
.summary-row.total { font-size: 1.3rem; font-weight: 800; color: var(--primary-dark); }

.payment-options { display: flex; flex-direction: column; gap: 8px; }
.payment-option { display: block; cursor: pointer; }
.payment-option input { display: none; }
.payment-option-content { display: flex; align-items: center; gap: 12px; padding: 16px; border: 2px solid #e8e8e8; border-radius: var(--radius-md); transition: var(--transition); }
.payment-option-content i { font-size: 1.5rem; color: #888; }
.payment-option input:checked + .payment-option-content { border-color: var(--accent); background: rgba(232,184,48,0.06); }
.payment-option input:checked + .payment-option-content i { color: var(--accent); }
.payment-option-content strong { display: block; margin-bottom: 2px; }
.payment-option-content small { color: #888; font-size: 0.85rem; }
.payment-option-selected { display: flex; align-items: center; gap: 12px; padding: 16px; border: 2px solid var(--accent); border-radius: var(--radius-md); background: rgba(232,184,48,0.06); }
.payment-option-selected i { font-size: 1.5rem; color: var(--accent); }
.payment-option-selected strong { display: block; margin-bottom: 2px; }
.payment-option-selected small { color: #888; font-size: 0.85rem; }

.checkout-summary { background: white; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.checkout-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.checkout-item-image { width: 60px; height: 60px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: #f8f9fc; display: flex; align-items: center; justify-content: center; }
.checkout-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.checkout-item-info { flex: 1; }
.checkout-item-info h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.checkout-item-info span { font-size: 0.85rem; color: #888; }
.checkout-item-total { font-weight: 700; color: var(--accent); }

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 4rem; color: #ddd; margin-bottom: 16px; }
.empty-state h4 { font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: #888; margin-bottom: 20px; }

.account-sidebar { background: white; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.account-user { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.account-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-accent); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 12px; }
.account-user h6 { font-weight: 700; margin-bottom: 2px; }
.account-user span { font-size: 0.85rem; color: #888; }
.account-nav { list-style: none; padding: 0; }
.account-nav li { margin-bottom: 4px; }
.account-nav a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); color: #555; font-weight: 500; transition: var(--transition); }
.account-nav a:hover, .account-nav a.active { background: rgba(232,184,48,0.08); color: var(--accent); }
.account-nav a i { margin-right: 10px; }

.dashboard-stat { background: white; border-radius: var(--radius-md); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.dashboard-stat i { font-size: 2rem; color: var(--accent); margin-bottom: 8px; }
.dashboard-stat h3 { font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.dashboard-stat span { color: #888; font-size: 0.9rem; }

.tracking-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.tracking-success { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border-radius: var(--radius-lg); padding: 32px; text-align: center; margin-bottom: 32px; border: 2px solid #a5d6a7; }
.tracking-success .success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gradient-accent); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; animation: trackingSuccessPop 0.5s ease; }
@keyframes trackingSuccessPop { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }
.tracking-success h4 { font-weight: 800; color: #1b5e20; margin-bottom: 8px; }
.tracking-success p { color: #2e7d32; margin-bottom: 4px; }

.tracking-search-card { text-align: center; border: 2px dashed #e0e0e0; background: #fafafa; }
.tracking-search-inner { max-width: 500px; margin: 0 auto; }
.tracking-search-icon { font-size: 2.5rem; color: var(--accent); opacity: 0.3; margin-bottom: 8px; }
.tracking-search-inner h4 { font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.tracking-search-inner p { color: #888; margin-bottom: 20px; }
.tracking-form { width: 100%; }
.tracking-input-group { display: flex; gap: 8px; }
.tracking-input { flex: 1; padding: 14px 20px; border: 2px solid #e8e8e8; border-radius: var(--radius-sm); font-size: 1rem; font-family: var(--font-family); transition: var(--transition); outline: none; }
.tracking-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,184,48,0.1); }
.tracking-input-group .btn { padding: 14px 28px; font-weight: 600; border-radius: var(--radius-sm); white-space: nowrap; }

.tracking-order-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; gap: 16px; }
.tracking-order-label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.tracking-order-info h4 { font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; font-size: 1.3rem; }
.tracking-order-date { font-size: 0.85rem; color: #888; }
.tracking-order-status { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.tracking-badge { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; text-transform: capitalize; letter-spacing: 0.5px; }
.status-pending { background: #fff3e0; color: #e65100; }
.status-processing { background: #e3f2fd; color: #1565c0; }
.status-shipped { background: #e8f5e9; color: #2e7d32; }
.status-delivered { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #fce4ec; color: #c62828; }
.payment-paid { background: #e8f5e9; color: #1b5e20; }
.payment-pending { background: #f5f5f5; color: #888; }

.tracking-progress { padding: 28px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; margin-bottom: 28px; }
.tracking-progress-bar { display: flex; align-items: flex-start; justify-content: space-between; }
.progress-step { display: flex; align-items: flex-start; gap: 10px; position: relative; flex: 1; }
.progress-step:last-child { flex: 0; }
.progress-step-dot { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: #fff; transition: all 0.4s ease; position: relative; z-index: 2; }
.progress-step.completed .progress-step-dot { background: var(--gradient-accent); box-shadow: 0 4px 12px rgba(232,184,48,0.3); }
.progress-step.active .progress-step-dot { background: var(--gradient-accent); box-shadow: 0 4px 12px rgba(232,184,48,0.3); animation: trackingPulse 2s infinite; }
@keyframes trackingPulse { 0%,100% { box-shadow: 0 4px 12px rgba(232,184,48,0.3); } 50% { box-shadow: 0 4px 24px rgba(232,184,48,0.5); } }
.progress-step-info { display: flex; flex-direction: column; gap: 2px; padding-top: 6px; }
.progress-step-label { font-weight: 700; font-size: 0.85rem; color: #333; }
.progress-step-date { font-size: 0.75rem; color: #999; }
.progress-step.completed .progress-step-label { color: var(--accent); }
.progress-step.active .progress-step-label { color: var(--accent); }
.progress-step-line { position: absolute; top: 17px; left: 36px; right: 0; height: 3px; background: #e0e0e0; z-index: 1; }
.progress-step-line.filled { background: var(--accent); }
.progress-step:last-child .progress-step-line { display: none; }

.tracking-section-title { font-weight: 700; font-size: 0.95rem; color: var(--primary-dark); margin-bottom: 16px; display: flex; align-items: center; }
.tracking-items { margin-bottom: 24px; }
.tracking-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.tracking-item:last-of-type { border-bottom: none; }
.tracking-item-img { width: 52px; height: 52px; min-width: 52px; border-radius: var(--radius-sm); background: #f8f9fc; display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 1.3rem; color: #ccc; }
.tracking-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.tracking-item-info { flex: 1; min-width: 0; }
.tracking-item-info h6 { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tracking-item-meta { font-size: 0.8rem; color: #888; }
.tracking-item-total { font-weight: 800; font-size: 0.95rem; color: var(--accent); white-space: nowrap; }
.tracking-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 2px solid #f0f0f0; font-size: 1.1rem; }
.tracking-total strong { font-size: 1.2rem; color: var(--primary-dark); }

.tracking-shipping { background: #f8f9fc; border-radius: var(--radius-md); padding: 20px; }
.tracking-shipping-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tracking-shipping-item { display: flex; flex-direction: column; gap: 2px; }
.tracking-shipping-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.tracking-shipping-value { font-weight: 600; font-size: 0.9rem; color: #333; }

.tracking-error { text-align: center; border: 2px dashed #fce4ec; background: #fff5f5; }
.tracking-error i { font-size: 2.5rem; color: #ef5350; opacity: 0.5; margin-bottom: 12px; display: block; }
.tracking-error h5 { font-weight: 700; color: #c62828; margin-bottom: 4px; }

.error-page { padding: 80px 0; }
.error-code { font-size: 8rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.error-page h2 { font-weight: 700; margin-bottom: 12px; }
.error-page p { color: #888; margin-bottom: 24px; }

.auth-page { background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%); min-height: 100vh; display: flex; align-items: center; }
.auth-container { width: 100%; max-width: 440px; margin: 0 auto; padding: 20px; }
.auth-card { background: white; border-radius: var(--radius-xl); padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.auth-logo { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 24px; }
.auth-card h1 { font-weight: 800; font-size: 1.5rem; text-align: center; color: var(--primary-dark); }
.auth-subtitle { text-align: center; color: #888; margin-bottom: 24px; }
.auth-footer { text-align: center; margin-top: 20px; }
.auth-footer p { color: #888; font-size: 0.9rem; margin-bottom: 8px; }
.auth-footer a { color: var(--accent); font-weight: 600; }

.mobile-cart-fab { display: none; position: fixed; bottom: 76px; right: 16px; width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-primary); color: white; border: none; font-size: 1.3rem; box-shadow: var(--shadow-lg); z-index: 998; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.mobile-cart-fab:hover { transform: scale(1.1); color: white; }
.mobile-cart-fab .badge-count { top: -4px; right: -4px; }

.offcanvas { --bs-offcanvas-width: 340px; }
.offcanvas-cart-items { display: flex; flex-direction: column; gap: 12px; }
.offcanvas-cart-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.offcanvas-cart-img { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-sm); background: #f8f9fc; display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 1.2rem; color: #ccc; }
.offcanvas-cart-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.offcanvas-cart-info { flex: 1; min-width: 0; }
.offcanvas-cart-info h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.offcanvas-cart-meta { display: flex; gap: 8px; font-size: 0.8rem; color: #888; }
.offcanvas-cart-total { font-weight: 700; font-size: 0.9rem; color: var(--accent); }
.offcanvas-cart-summary { border-top: 2px solid #f0f0f0; padding-top: 16px; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.offcanvas-cart-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; margin-bottom: 8px; }
.offcanvas-cart-empty { text-align: center; padding: 40px 0; }
.offcanvas-cart-empty i { font-size: 3rem; color: #ddd; margin-bottom: 12px; }
.offcanvas-cart-empty p { color: #888; margin-bottom: 16px; }

@media (max-width: 992px) {
  .hero-slide { padding: 70px 0 90px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.4rem); }
  .hero-image-wrapper { min-height: 360px; margin-top: 30px; }
  .hero-product-showcase { width: min(100%, 360px); height: 380px; }
  .hero-main-card { width: 230px; height: 300px; }
  .hero-shoe-icon { width: 96px; height: 96px; font-size: 2.8rem; }
  .hero-float-card { min-width: 125px; padding: 12px; font-size: 0.78rem; }
  .section { padding: 50px 0; }
  .promo-card, .newsletter-card { padding: 30px; }
  .promo-title { font-size: 2rem; }
  .discount-number { font-size: 3rem; }
  .promo-discount-circle { width: 150px; height: 150px; }
}
@media (max-width: 991px) {
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 1.5rem; }
  .shop-sidebar { position: static; margin-bottom: 20px; }
  .account-sidebar { position: static; margin-bottom: 20px; }
  .cart-summary, .checkout-summary { position: static; }
  .promo-card, .newsletter-card { padding: 30px; }
  .promo-title { font-size: 1.8rem; }
  .hero-slide { padding: 55px 0 75px; }
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.4rem); }
  .page-header { padding: 30px 0; }
  .page-header h1 { font-size: 1.5rem; }
  .main-navbar .navbar-collapse { background: white; padding: 16px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); margin-top: 12px; }
  .main-navbar .navbar-actions { margin-top: 12px; padding-top: 12px; border-top: 1px solid #eee; justify-content: center; }
}
@media (max-width: 768px) {
  .top-bar .row > div:last-child { display: none; }
  .top-bar { font-size: 0.75rem; padding: 6px 0; }
  .hero-slide { padding: 80px 0 55px; min-height: auto; display: flex; align-items: center; }
  .hero-slide .min-vh-60 { min-height: 50vh; }
  .hero-title { font-size: clamp(1.8rem, 11vw, 2.5rem); letter-spacing: -1px; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 20px; }
  .hero-image-wrapper { min-height: 260px; margin-top: 20px; }
  .hero-product-showcase { width: min(100%, 290px); height: 300px; }
  .hero-main-card { width: 190px; height: 245px; border-radius: 24px; }
  .hero-shoe-icon { width: 78px; height: 78px; border-radius: 24px; font-size: 2.2rem; margin-bottom: 16px; }
  .hero-main-card strong { font-size: 1.55rem; }
  .hero-float-card { min-width: 112px; padding: 10px; font-size: 0.72rem; }
  .hero-float-card.one { top: 18px; left: 0; }
  .hero-float-card.two { top: 62px; right: 0; }
  .hero-float-card.three { bottom: 18px; left: 16px; }
  .hero-actions .btn { width: 100%; margin: 0 !important; font-size: 0.9rem; padding: 12px 20px; }
  .hero-badge { font-size: 0.75rem; padding: 4px 14px; }
  .trust-badges { padding: 20px 0; margin-top: -20px; }
  .trust-badge-item { padding: 16px 12px; }
  .trust-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .trust-badge-item h6 { font-size: 0.8rem; }
  .trust-badge-item p { font-size: 0.75rem; }
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.3rem; }
  .section-header p { font-size: 0.9rem; }
  .category-card { padding: 16px 12px; }
  .category-icon { width: 48px; height: 48px; font-size: 1.4rem; }
  .category-card h6 { font-size: 0.8rem; }
  .product-card .product-name { font-size: 0.85rem; }
  .product-card .current-price { font-size: 1rem; }
  .product-card .old-price { font-size: 0.8rem; }
  .product-info { padding: 12px; }
  .promo-card { padding: 24px; }
  .promo-title { font-size: 1.4rem; }
  .promo-text { font-size: 0.9rem; }
  .promo-discount-circle { width: 100px; height: 100px; }
  .discount-number { font-size: 1.5rem; }
  .discount-label { font-size: 0.8rem; }
  .promo-features span { font-size: 0.8rem; }
  .why-us-card { padding: 24px 20px; }
  .why-us-icon { width: 56px; height: 56px; font-size: 1.5rem; }
  .why-us-card h4 { font-size: 1rem; }
  .why-us-card p { font-size: 0.85rem; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-content { font-size: 0.9rem; }
  .newsletter-card { padding: 24px; }
  .newsletter-card h3 { font-size: 1.3rem; }
  .newsletter-form .form-control { padding: 12px 16px; font-size: 0.9rem; }
  .newsletter-form .btn { padding: 12px 16px; font-size: 0.9rem; }
  .contact-info-card, .contact-form-card { padding: 24px; }
  .cart-item { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .cart-item-image { width: 60px; height: 60px; }
  .cart-item-info h5 { font-size: 0.85rem; }
  .cart-item-price { font-size: 0.85rem; }
  .cart-item-total { font-size: 0.9rem; min-width: auto; }
  .cart-summary, .checkout-summary { padding: 20px; }
  .page-header { padding: 24px 0; }
  .page-header h1 { font-size: 1.3rem; }
  .shop-toolbar { padding: 12px 16px; flex-direction: column; gap: 8px; }
  .shop-toolbar p { font-size: 0.85rem; }
  .sidebar-widget { padding: 16px; }
  .account-sidebar { padding: 16px; }
  .account-nav a { font-size: 0.85rem; padding: 8px 10px; }
  .dashboard-stat { padding: 16px; }
  .dashboard-stat i { font-size: 1.5rem; }
  .dashboard-stat h3 { font-size: 1.2rem; }
  .tracking-card { padding: 24px; }
  .tracking-order-header { flex-direction: column; align-items: flex-start; }
  .tracking-order-status { flex-direction: row; align-items: center; }
  .tracking-progress-bar { flex-direction: column; gap: 0; }
  .progress-step { align-items: center; gap: 14px; }
  .progress-step-line { top: 17px; left: 36px; width: 3px; height: 36px; }
  .progress-step:last-child .progress-step-line { display: none; }
  .tracking-shipping-grid { grid-template-columns: 1fr; }
  .tracking-input-group { flex-direction: column; }
  .tracking-success { padding: 24px; }
  .main-footer { padding: 40px 0 0; }
  .main-footer h5 { font-size: 1rem; margin-bottom: 14px; }
  .footer-desc { font-size: 0.85rem; }
  .footer-bottom .text-md-end { text-align: center !important; margin-top: 10px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; }
  .back-to-top { width: 38px; height: 38px; font-size: 1rem; bottom: 136px; right: 16px; }
  .mobile-cart-fab { display: flex; bottom: 80px; }
  .product-detail-title { font-size: 1.2rem; }
  .product-detail-price .current-price { font-size: 1.5rem; }
  .product-detail-price .old-price { font-size: 1rem; }
  .main-image { aspect-ratio: auto; height: 280px; }
  .error-code { font-size: 5rem; }
  .empty-state { padding: 40px 16px; }
  .empty-state i { font-size: 3rem; }
  .product-tabs .nav-link { padding: 10px 16px; font-size: 0.85rem; }
}
@media (max-width: 576px) {
  .hero-title { font-size: clamp(1.55rem, 12vw, 2rem); }
  .hero-subtitle { font-size: 0.82rem; }
  .hero-slide { padding: 48px 0 45px; }
  .hero-image-wrapper { min-height: 220px; }
  .hero-product-showcase { width: min(100%, 240px); height: 250px; }
  .hero-main-card { width: 158px; height: 205px; border-radius: 22px; }
  .hero-shoe-icon { width: 64px; height: 64px; border-radius: 20px; font-size: 1.8rem; }
  .hero-main-card strong { font-size: 1.25rem; }
  .hero-float-card { min-width: 96px; padding: 8px; font-size: 0.66rem; }
  .hero-float-card.one { top: 8px; left: 0; }
  .hero-float-card.two { top: 44px; right: 0; }
  .hero-float-card.three { bottom: 8px; left: 10px; }
  .product-detail-actions { flex-direction: column; padding-bottom: 78px; }
  .product-detail-actions .btn { width: 100%; }
  .mobile-add-cart-sticky { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 998; padding: 10px; border-radius: 18px; background: rgba(255,255,255,0.96); box-shadow: 0 10px 30px rgba(0,0,0,0.16); backdrop-filter: blur(12px); }
  .mobile-add-cart-sticky .btn { min-height: 48px; }
  .variation-options { padding: 16px; border-radius: 18px; }
  .variation-panel-title { align-items: flex-start; flex-direction: column; }
  .variation-btn { min-height: 48px; padding: 12px 16px; }
  .variation-dropdown { max-width: 100%; }
  .product-features { grid-template-columns: 1fr; font-size: 0.8rem; }
  .product-quantity { flex-wrap: wrap; }
  .quantity-selector input { width: 40px; }
  .promo-card { padding: 20px; }
  .promo-discount-circle { width: 80px; height: 80px; }
  .discount-number { font-size: 1.2rem; }
  .thumb-item { width: 56px; height: 56px; }
  .review-item { padding: 14px; }
  .review-header { flex-wrap: wrap; }
  .review-date { margin-left: 0; width: 100%; margin-top: 4px; }
  .checkout-item { flex-wrap: wrap; }
  .checkout-item-total { width: 100%; text-align: left; }
  .payment-option-content { padding: 12px; font-size: 0.85rem; }
  .auth-card { padding: 24px; }
  .auth-card h1 { font-size: 1.2rem; }
  .table { font-size: 0.8rem; }
  .table td, .table th { padding: 8px; white-space: nowrap; }
}

.promoSlider .swiper-pagination { position: relative; margin-top: 20px; }
.promoSlider .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.promoSlider .swiper-pagination-bullet-active { background: var(--accent); }
