/* 
  SoleCraft / KicksVault - Premium Shoes Online Store Stylesheet
  Design System: Dark Glassmorphism, Neon Accents, CSS Parallax, Ultra Responsive
  Currency: PKR (Pakistani Rupees - Rs.)
*/

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

:root {
  --bg-primary: #0a0c10;
  --bg-secondary: #12151e;
  --bg-card: #1a1e2b;
  --bg-card-hover: #222738;
  --bg-glass: rgba(22, 26, 38, 0.75);
  
  --accent-red: #ff2a5f;
  --accent-purple: #7b2cbf;
  --accent-cyan: #00f5d4;
  --accent-gold: #ffd166;
  --accent-leather: #c97a3e;
  --accent-gradient: linear-gradient(135deg, #ff2a5f 0%, #7b2cbf 100%);
  --accent-gradient-gold: linear-gradient(135deg, #ffd166 0%, #ff9f1c 100%);
  --accent-gradient-leather: linear-gradient(135deg, #c97a3e 0%, #5c3317 100%);
  
  --text-main: #f8f9fa;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 42, 95, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(255, 42, 95, 0.35);
  --shadow-cyan: 0 0 25px rgba(0, 245, 212, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--accent-gold);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-hot {
  background: var(--accent-gradient);
  color: #fff;
}

.badge-new {
  background: var(--accent-cyan);
  color: #000;
}

.badge-gold {
  background: var(--accent-gradient-gold);
  color: #000;
}

.badge-leather {
  background: var(--accent-gradient-leather);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* PARALLAX SECTION STYLING */
.parallax-section {
  position: relative;
  min-height: 480px;
  background-image: radial-gradient(circle at 50% 50%, rgba(123, 44, 191, 0.3), rgba(6, 7, 10, 0.95)),
                    url('images/hero_shoe.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.parallax-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  background: rgba(18, 21, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-md);
}

.parallax-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.parallax-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* UNBOXING & QUALITY CONTROL SECTION */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.quality-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 35px 28px;
  position: relative;
  transition: var(--transition);
}

.quality-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(255, 209, 102, 0.25);
}

.quality-step-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
}

.quality-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  background: rgba(255, 209, 102, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.quality-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.quality-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* LEATHER EDITION SHOWCASE SECTION */
.leather-hero-box {
  background: linear-gradient(135deg, rgba(92, 51, 23, 0.8) 0%, rgba(18, 21, 30, 0.95) 100%),
              url('images/shoe_3.png') center/cover;
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid rgba(201, 122, 62, 0.3);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Header & Top Bar */
.top-bar {
  background: #06080b;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info i {
  color: var(--accent-red);
  margin-right: 6px;
}

.top-bar-promo {
  font-weight: 600;
  color: var(--accent-gold);
}

/* Header Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-logo i {
  font-size: 1.8rem;
  color: var(--accent-red);
  transform: rotate(-15deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-action-btn {
  position: relative;
  background: var(--bg-card);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-size: 1.1rem;
}

.header-action-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: 0 0 15px rgba(255, 42, 95, 0.2);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  color: var(--text-main);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(circle at 70% 30%, rgba(123, 44, 191, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 42, 95, 0.15) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 42, 95, 0.12);
  border: 1px solid var(--border-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

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

.hero-glow-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--accent-gradient);
  filter: blur(90px);
  opacity: 0.35;
  border-radius: 50%;
  z-index: 1;
}

.hero-shoe-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.7));
  transform: rotate(-12deg) translateY(-10px);
  animation: floatShoe 4s ease-in-out infinite alternate;
}

@keyframes floatShoe {
  0% { transform: rotate(-12deg) translateY(-10px); }
  100% { transform: rotate(-8deg) translateY(15px); }
}

/* MARQUEE TICKER (Promotional Bar below Slider) */
.marquee-container {
  background: var(--accent-gradient);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.marquee-item i {
  font-size: 1.2rem;
  color: var(--accent-gold);
}

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

/* Categories Section */
.section {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--accent-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-glow);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 42, 95, 0.1);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Product Cards & Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
}

.product-card-head {
  position: relative;
  background: #141722;
  padding: 30px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 240px;
}

.product-badge-wrap {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}

.product-actions-overlay {
  position: absolute;
  top: 15px;
  right: -50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
  transition: var(--transition);
}

.product-card:hover .product-actions-overlay {
  right: 15px;
}

.action-btn-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.action-btn-mini:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}

.product-img {
  max-height: 170px;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.08) rotate(-4deg);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 1.1rem;
  margin: 6px 0 10px;
  font-weight: 700;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  margin-top: auto;
}

.price-current {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-main);
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-add-cart:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* Brands Logo Bar */
.brands-bar {
  background: #080a0e;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.brands-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-badge-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge-item:hover {
  color: #fff;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(255, 42, 95, 0.6);
}

/* Shoe Technology Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.tech-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 35px 24px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan);
}

.tech-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 212, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.tech-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Customer Reviews / Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
}

/* Instagram Lookbook Grid */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.lookbook-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.lookbook-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}

.lookbook-item:hover img {
  transform: scale(1.15);
}

.lookbook-item:hover .lookbook-overlay {
  opacity: 1;
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* Quick View Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-md);
  padding: 30px;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.quickview-gallery-main {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.quickview-gallery-main img {
  max-height: 240px;
  object-fit: contain;
}

.size-selector, .color-selector {
  display: flex;
  gap: 10px;
  margin: 10px 0 20px;
}

.size-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn.active, .size-btn:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}

.color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}

.color-btn.active {
  border-color: var(--accent-red);
  transform: scale(1.15);
}

/* CLOUD ZOOM MAGNIFIER (For Single Product Page) */
.cloud-zoom-container {
  position: relative;
  width: 100%;
  height: 420px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: crosshair;
}

.cloud-zoom-img {
  max-height: 340px;
  object-fit: contain;
  pointer-events: none;
}

.cloud-zoom-lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  background: rgba(255, 42, 95, 0.15);
  box-shadow: 0 0 15px rgba(255, 42, 95, 0.4);
  pointer-events: none;
  display: none;
}

.cloud-zoom-preview {
  position: absolute;
  top: 0;
  left: 105%;
  width: 450px;
  height: 420px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 100;
  display: none;
}

/* Compare Matrix Page / Drawer */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-table th, .compare-table td {
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.compare-table th {
  background: var(--bg-secondary);
  color: var(--accent-gold);
  font-weight: 800;
  text-transform: uppercase;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 2500;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cart-item-card {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #12151e;
  border-radius: var(--radius-sm);
  padding: 5px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-gold);
}

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

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* TRUST FEATURE BADGES BAR (Above Footer) */
.features-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 42, 95, 0.1);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid var(--border-glow);
}

.feature-box h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Footer Section */
.site-footer {
  background: #06070a;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-gradient);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-gradient);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-red);
  padding-left: 6px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-input {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  color: #fff;
  width: 100%;
}

.newsletter-btn {
  padding: 12px 20px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 14px;
  font-size: 1.6rem;
}

/* FLOATING BUTTONS */
.floating-btn-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1500;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-red);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .quickview-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .leather-hero-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .top-bar-info {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 40px;
    transition: var(--transition);
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .parallax-title {
    font-size: 2rem;
  }
  .parallax-content {
    padding: 30px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
