/* ============================================
   SCENTS IN CENTS - Premium eCommerce Styles
   Brand: Luxury, Clean, Modern
   Market: Pakistan (PKR)
   ============================================ */

/* CSS Variables - Premium Color Palette */
:root {
  /* Primary Colors */
  --primary: #1a1a1a;
  --primary-light: #2d2d2d;
  --primary-dark: #0d0d0d;
  
  /* Accent Colors - Gold/Rose Gold */
  --accent-gold: #c9a962;
  --accent-gold-light: #d4bc7e;
  --accent-gold-dark: #a88b4a;
  --accent-rose: #b76e79;
  --accent-rose-light: #c98a94;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #fafafa;
  --cream: #f5f3ef;
  --light-gray: #e8e6e3;
  --gray: #9a9997;
  --dark-gray: #4a4a4a;
  
  /* Semantic Colors */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Container */
  --container-max: 1400px;
  --container-padding: 1rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
}

.font-display {
  font-family: var(--font-display);
}

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

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 0.35rem 0;
  font-size: 0.875rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.announcement-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.announcement-slide {
  min-width: 100%;
  padding: 0 var(--space-md);
}

.announcement-slide span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.announcement-bar .icon {
  color: var(--accent-gold);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.6rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.logo-text {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 220px;
  padding: var(--space-sm) var(--space-lg);
  padding-right: 40px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.search-btn {
  position: absolute;
  right: 12px;
  color: var(--gray);
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.search-suggestions.active {
  display: block;
}

.suggestion-item {
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.suggestion-item:hover {
  background: var(--off-white);
}

.suggestion-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  background: var(--off-white);
}

.cart-btn .cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2rem, 4vh, 3.5rem) var(--container-padding);
  width: 100%;
}

.hero-text {
  max-width: 600px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--light-gray);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--dark-gray);
}

.btn-ghost:hover {
  color: var(--primary);
  background: var(--off-white);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   CATEGORY GRID
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.section-title {
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.125rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  color: var(--white);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.category-count {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--light-gray);
}

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

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--off-white);
}

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

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

.product-badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.badge {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
}

.badge-instock {
  background: var(--success);
  color: var(--white);
}

.badge-coming-soon {
  background: var(--warning);
  color: var(--white);
}

.badge-bestseller {
  background: var(--accent-gold);
  color: var(--white);
}

.badge-new {
  background: var(--primary);
  color: var(--white);
}

.badge-cod {
  background: var(--info);
  color: var(--white);
}

.product-actions {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.product-info {
  padding: var(--space-lg);
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
}

.product-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 0.875rem;
  color: var(--gray);
  text-decoration: line-through;
}

.product-btn {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-md);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(25% - var(--space-xl) * 3 / 4);
  scroll-snap-align: start;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.carousel-nav:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

/* ============================================
   BRAND STRIP
   ============================================ */
.brand-strip {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.brand-logo {
  opacity: 0.5;
  transition: opacity var(--transition-fast);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark-gray);
}

.brand-logo:hover {
  opacity: 1;
  color: var(--primary);
}

/* ============================================
   FEATURED COLLECTION
   ============================================ */
.featured-collection {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.featured-collection-bg {
  position: absolute;
  inset: 0;
}

.featured-collection-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.featured-collection-content {
  position: relative;
  padding: var(--space-3xl);
  max-width: 500px;
  color: var(--white);
}

/* ============================================
   COMING SOON SECTION
   ============================================ */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.coming-soon-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px dashed var(--light-gray);
}

.coming-soon-card .product-image {
  opacity: 0.8;
}

.notify-form {
  padding: var(--space-lg);
}

.notify-form input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.notify-form input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* ============================================
   TRUST CARDS
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: var(--accent-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.trust-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.trust-description {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
}

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

.review-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}

.review-stars {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--accent-gold);
}

.review-text {
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.review-name {
  font-weight: 600;
}

.review-verified {
  font-size: 0.75rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ============================================
   INSTAGRAM GALLERY
   ============================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.instagram-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

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

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.instagram-overlay svg {
  color: var(--white);
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  color: var(--gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--gray);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-newsletter {
  margin-top: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  background: var(--primary-light);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.875rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.newsletter-input::placeholder {
  color: var(--gray);
}

.footer-bottom {
  border-top: 1px solid var(--primary-light);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray);
}

.footer-payment {
  display: flex;
  gap: var(--space-sm);
}

.payment-icon {
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
}

.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filter-section {
  margin-bottom: var(--space-xl);
}

.filter-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.filter-option:hover {
  color: var(--primary);
}

.filter-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

.filter-count {
  color: var(--gray);
  font-size: 0.75rem;
}

.price-range {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.price-range input {
  width: 100px;
  padding: var(--space-sm);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--light-gray);
}

.shop-results {
  font-size: 0.875rem;
  color: var(--gray);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sort-select {
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  background: var(--white);
  cursor: pointer;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  padding-top: var(--space-2xl);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

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

.gallery-main {
  aspect-ratio: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

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

.gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
}

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

.gallery-thumb.active {
  border-color: var(--accent-gold);
}

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

.product-details {
  padding-top: var(--space-md);
}

.product-breadcrumb {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: var(--space-lg);
}

.product-breadcrumb a:hover {
  color: var(--accent-gold);
}

.product-page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.product-meta {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--gray);
}

.product-page-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.product-short-desc {
  color: var(--dark-gray);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.product-variants {
  margin-bottom: var(--space-xl);
}

.variant-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.variant-options {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.variant-option {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.variant-option:hover,
.variant-option.active {
  border-color: var(--accent-gold);
  background: rgba(201, 169, 98, 0.05);
}

.product-actions-main {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background var(--transition-fast);
}

.quantity-btn:hover {
  background: var(--off-white);
}

.quantity-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  font-weight: 600;
}

.product-tabs {
  margin-top: var(--space-3xl);
}

.tabs-header {
  display: flex;
  gap: var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: var(--space-xl);
}

.tab-btn {
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--accent-gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.specs-table td {
  padding: var(--space-md) 0;
  font-size: 0.9375rem;
}

.specs-table td:first-child {
  color: var(--gray);
  width: 40%;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

.cart-items {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
  align-items: center;
}

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

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--off-white);
}

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

.cart-item-details h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.cart-item-brand {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.cart-item-price {
  font-weight: 700;
  font-size: 1.125rem;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-md);
}

.remove-btn {
  color: var(--gray);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

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

.cart-summary {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
  margin-top: var(--space-md);
}

.cart-empty {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.cart-empty-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-xl);
  background: var(--off-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-stepper {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.step.active {
  color: var(--primary);
}

.step.active .step-number {
  background: var(--accent-gold);
  color: var(--white);
}

.step.completed .step-number {
  background: var(--success);
  color: var(--white);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-3xl);
}

.checkout-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: var(--space-xl);
}

.form-section {
  margin-bottom: var(--space-xl);
}

.form-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.form-label .required {
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input {
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--dark-gray);
}

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

.payment-method:hover {
  border-color: var(--accent-gold);
}

.payment-method input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-gold);
}

.payment-method-label {
  flex: 1;
}

.payment-method-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.payment-method-desc {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ============================================
   TRACK ORDER PAGE
   ============================================ */
.track-form {
  max-width: 500px;
  margin: 0 auto var(--space-3xl);
  background: var(--off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
}

.order-status {
  max-width: 800px;
  margin: 0 auto;
}

.status-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--space-3xl);
}

.status-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.status-dot {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-step.active .status-dot {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.status-step.completed .status-dot {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.status-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.order-details-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: var(--space-xl);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--light-gray);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: var(--off-white);
}

.modal-body {
  padding: var(--space-xl);
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: var(--space-xl);
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.breadcrumbs-separator {
  color: var(--light-gray);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.page-btn:hover {
  background: var(--off-white);
}

.page-btn.active {
  background: var(--accent-gold);
  color: var(--white);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.toast {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--error);
}

.toast.info {
  border-left: 4px solid var(--info);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .product-grid,
  .category-grid,
  .coming-soon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .carousel-item {
    flex: 0 0 calc(33.333% - var(--space-xl) * 2 / 3);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .search-bar {
    display: none;
  }
  
  .shop-layout,
  .cart-layout,
  .checkout-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .product-gallery {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .carousel-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-grid,
  .category-grid,
  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
  }
  
  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkout-stepper {
    font-size: 0.75rem;
  }
  
  .step span:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .product-page-price {
    font-size: 1.5rem;
  }
  
  .product-actions-main {
    flex-direction: column;
  }
}

/* Mobile Bottom Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
  }
  
  .sticky-price {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .sticky-btn {
    flex: 1;
    max-width: 200px;
  }
  
  body {
    padding-bottom: 80px;
  }
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--off-white) 25%, var(--light-gray) 50%, var(--off-white) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* Vape Warning */
.vape-warning {
  background: var(--error);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* COD Badge */
.cod-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}
