/* ============================================================
   Shoppinger India - Main Stylesheet
   Indian Neon Dark Theme | Mobile-First
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --saffron:    #FF6B00;
  --saffron-light: #FF8C35;
  --saffron-glow: rgba(255,107,0,0.35);
  --green:      #00CC44;
  --green-glow: rgba(0,204,68,0.3);
  --blue:       #00BFFF;
  --blue-glow:  rgba(0,191,255,0.3);
  --gold:       #FFD700;
  --pink:       #FF2D78;
  --purple:     #8B5CF6;

  --bg-dark:    #080810;
  --bg-card:    #10101E;
  --bg-card2:   #16162A;
  --bg-nav:     rgba(8,8,16,0.97);
  --border:     rgba(255,107,0,0.2);
  --border2:    rgba(0,191,255,0.15);

  --text-primary: #F0F0F0;
  --text-secondary: #A0A0B0;
  --text-muted: #606075;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px var(--saffron-glow);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Outfit', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
}

/* ---- Light Theme Overrides ---- */
body.light-theme {
  --bg-dark:    #F5F5F7;
  --bg-card:    #FFFFFF;
  --bg-card2:   #F0F0F5;
  --bg-nav:     rgba(255,255,255,0.95);
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A8A;
  --border:     rgba(0,0,0,0.1);
  --border2:    rgba(0,0,0,0.05);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }
input, textarea, select { font-family: var(--font); outline: none; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ======================================================
   ANNOUNCEMENT TICKER
====================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #0d0d1f, #1a0a00, #0d0d1f);
  border-bottom: 1px solid var(--saffron);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-wrapper:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--saffron-light);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ticker-item a { color: var(--gold); }
.ticker-divider { color: var(--green); font-size: 16px; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================================================
   NAVIGATION
====================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}
.nav-logo-sub { font-size: 9px; color: var(--text-muted); margin-top: -4px; letter-spacing: 1px; }

.nav-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.nav-search input {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 16px 9px 40px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition);
}
.nav-search input:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-glow); }
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 11px;
  gap: 2px;
  transition: var(--transition);
  background: none;
}
.nav-btn:hover { color: var(--saffron); background: var(--saffron-glow); }
.nav-btn i { font-size: 18px; }
.nav-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--saffron);
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

/* ======================================================
   HERO BANNER
====================================================== */
.banner-section { position: relative; overflow: hidden; }
.banner-slider { position: relative; }
.banner-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  min-height: 200px;
  background: var(--bg-card);
  overflow: hidden;
}
@media (max-width: 480px) { .banner-slide { aspect-ratio: 4/3; } }
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,16,0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 24px;
}
.banner-content { max-width: 400px; }
.banner-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
  font-weight: 600;
}
.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 30px var(--saffron-glow);
  margin-bottom: 8px;
}
.banner-sub { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.banner-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.banner-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
}
.banner-badge.saffron { border-color: var(--saffron); color: var(--saffron); }
.banner-badge.green   { border-color: var(--green); color: var(--green); }
.banner-badges .green-glow { box-shadow: 0 0 10px var(--green-glow); }
.btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), #FF3D00);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 20px var(--saffron-glow);
  transition: var(--transition);
  border: none;
}
.btn-banner:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--saffron-glow); }

/* ======================================================
   SECTION LAYOUT
====================================================== */
.section { padding: 28px 16px; max-width: 1200px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}
.section-title::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--saffron), var(--green));
  border-radius: 2px;
  margin-left: 4px;
}
.section-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-link:hover { color: var(--saffron); }

/* ======================================================
   CATEGORIES GRID
====================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--bg-card);
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--saffron); box-shadow: 0 8px 30px var(--saffron-glow); }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.1); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,8,16,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
  text-align: center;
}
.cat-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  line-height: 1.2;
}

/* ======================================================
   PRODUCT CARDS - 2x2 Grid
====================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: 0 8px 30px var(--saffron-glow);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card2);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--saffron);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.new    { background: var(--green); }
.product-badge.offer  { background: linear-gradient(135deg, var(--pink), var(--purple)); }

.btn-wishlist-card {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(8,8,16,0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-wishlist-card:hover,
.btn-wishlist-card.active { color: var(--pink); border-color: var(--pink); background: rgba(255,45,120,0.15); }


.product-info { padding: 10px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  flex: 1;
}
.product-pricing { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 6px; }
.product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--saffron);
}
.product-original {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-discount {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  background: rgba(0,204,68,0.12);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}
.product-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.product-likes i { color: var(--pink); }

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--saffron), #FF3D00);
  color: #fff;
  padding: 9px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-add-cart:hover { box-shadow: 0 0 20px var(--saffron-glow); transform: translateY(-1px); }

/* ======================================================
   OFFER OF THE WEEK - Single Hero Card
====================================================== */
.offer-hero {
  background: linear-gradient(135deg, #1a080a, #0d0d00, #0a1a08);
  border: 1px solid var(--saffron);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px var(--saffron-glow), inset 0 0 40px rgba(255,107,0,0.05);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--saffron-glow), inset 0 0 20px rgba(255,107,0,0.05); }
  50%       { box-shadow: 0 0 50px var(--saffron-glow), inset 0 0 30px rgba(255,107,0,0.1); }
}
@media (min-width: 600px) { .offer-hero { flex-direction: row; align-items: center; } }
.offer-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (min-width: 600px) { .offer-img { width: 45%; aspect-ratio: 1; } }
.offer-body { padding: 20px; flex: 1; }
.offer-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.offer-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.offer-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.offer-pricing { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.offer-price { font-size: 28px; font-weight: 900; color: var(--saffron); }
.offer-original { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }
.offer-discount-badge {
  background: var(--green);
  color: #000;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  box-shadow: 0 0 12px var(--green-glow);
}
.offer-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), #FF3D00);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  border: none;
  box-shadow: 0 0 20px var(--saffron-glow);
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--saffron-glow); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--saffron); color: var(--saffron); }

/* ======================================================
   FORMS & INPUTS
====================================================== */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-control {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-glow); }
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: #FF4444; }
.form-error { font-size: 11px; color: #FF4444; margin-top: 4px; }
textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF6B00' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.checkout-login-prompt {
  background: rgba(255,107,0,0.1);
  border: 1px dashed var(--saffron);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.checkout-login-prompt i { font-size: 24px; color: var(--saffron); }

.input-group { position: relative; }
.input-group .form-control { padding-left: 42px; }
.input-group-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
}

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-full { width: 100%; }
.btn-saffron {
  background: linear-gradient(135deg, var(--saffron), #FF3D00);
  color: #fff;
  box-shadow: 0 0 20px var(--saffron-glow);
}
.btn-saffron:hover { box-shadow: 0 0 30px var(--saffron-glow); transform: translateY(-2px); }
.btn-green {
  background: linear-gradient(135deg, var(--green), #009900);
  color: #fff;
  box-shadow: 0 0 16px var(--green-glow);
}
.btn-green:hover { box-shadow: 0 0 24px var(--green-glow); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 50%; }

/* ======================================================
   PRODUCT PAGE
====================================================== */
.product-page { padding: 16px; max-width: 1200px; margin: 0 auto; }
.product-gallery { margin-bottom: 20px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--saffron); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-block { padding: 0 0 24px; }
.product-page-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.product-page-likes { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.like-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.3);
  color: var(--pink);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.like-btn:hover, .like-btn.liked {
  background: rgba(255,45,120,0.2);
  border-color: var(--pink);
  box-shadow: 0 0 12px rgba(255,45,120,0.3);
}
.like-btn i { font-size: 15px; }

.product-page-pricing { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.product-page-price { font-size: 30px; font-weight: 900; color: var(--saffron); }
.product-page-original { font-size: 16px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.product-page-discount {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  background: rgba(0,204,68,0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,204,68,0.3);
}

.trust-badges-inline { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.trust-badge i { color: var(--green); }

.variants-section { margin-bottom: 20px; }
.variants-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.variants-row { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-chip {
  padding: 8px 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-primary);
}
.variant-chip:hover, .variant-chip.selected {
  border-color: var(--saffron);
  color: var(--saffron);
  background: var(--saffron-glow);
}

.product-cta-btns { display: flex; gap: 10px; margin-bottom: 20px; }
.product-cta-btns .btn { flex: 1; }

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900;
  transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ======================================================
   SHARE BUTTONS
====================================================== */
.share-section { margin-bottom: 20px; }
.share-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  border: none;
  transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); }
.share-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,0.35); }
.share-facebook { background: #1877F2; color: #fff; box-shadow: 0 4px 12px rgba(24,119,242,0.35); }
.share-twitter  { background: #1DA1F2; color: #fff; box-shadow: 0 4px 12px rgba(29,161,242,0.35); }
.share-copy     { background: var(--bg-card2); color: var(--text-primary); border: 1px solid var(--border); }

/* ======================================================
   CART & CHECKOUT
====================================================== */
.cart-page { padding: 16px; max-width: 800px; margin: 0 auto; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.cart-item:hover { border-color: var(--saffron); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-body { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-variant { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-pricing { display: flex; align-items: center; gap: 8px; }
.cart-qty-control { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}
.cart-qty-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.cart-qty-num { font-size: 14px; font-weight: 700; min-width: 24px; text-align: center; }
.btn-remove { background: none; border: none; color: var(--text-muted); font-size: 18px; padding: 4px; transition: var(--transition); }
.btn-remove:hover { color: #FF4444; }

.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 800; color: var(--saffron); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.cod-badge-large {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,204,68,0.1);
  border: 1px solid rgba(0,204,68,0.3);
  border-radius: var(--radius);
  padding: 12px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.cod-badge-large i { font-size: 24px; }

/* ======================================================
   NOTIFICATIONS / TOASTS
====================================================== */
.toast-container {
  position: fixed;
  top: 70px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 280px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  pointer-events: all;
  animation: toast-in 0.4s cubic-bezier(0.4,0,0.2,1);
  transition: var(--transition);
  font-size: 13px;
}
.toast.hiding { animation: toast-out 0.3s ease forwards; }
.toast-icon { font-size: 20px; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-title { font-weight: 700; margin-bottom: 2px; }
.toast-msg { color: var(--text-secondary); font-size: 12px; }
.toast.success { border-color: var(--green); }
.toast.success .toast-icon { color: var(--green); }
.toast.error   { border-color: #FF4444; }
.toast.error   .toast-icon { color: #FF4444; }
.toast.info    { border-color: var(--blue); }
.toast.info    .toast-icon { color: var(--blue); }
.toast.warning { border-color: var(--gold); }
.toast.warning .toast-icon { color: var(--gold); }
@keyframes toast-in {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes toast-out {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

/* ======================================================
   LOGIN / REGISTER
====================================================== */
.auth-wrap {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #1a0800 0%, #080810 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px var(--saffron-glow);
}
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-title { font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 4px; }
.auth-sub { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.auth-divider { text-align: center; color: var(--text-muted); font-size: 12px; margin: 16px 0; position: relative; }
.auth-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1px solid var(--border);
}
.auth-divider span { background: var(--bg-card); position: relative; padding: 0 12px; }
.auth-footer { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-muted); }
.auth-footer a { color: var(--saffron); font-weight: 600; }

/* ======================================================
   PROFILE
====================================================== */
.profile-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 20px; overflow-x: auto; }
.profile-tab {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.profile-tab.active { color: var(--saffron); border-bottom-color: var(--saffron); }

.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.order-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.order-number { font-size: 12px; color: var(--text-muted); }
.order-status-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-placed     { background: rgba(0,191,255,0.15); color: var(--blue); }
.status-confirmed  { background: rgba(255,215,0,0.15); color: var(--gold); }
.status-processing { background: rgba(139,92,246,0.15); color: var(--purple); }
.status-shipped    { background: rgba(255,107,0,0.15); color: var(--saffron); }
.status-delivered  { background: rgba(0,204,68,0.15); color: var(--green); }
.status-cancelled  { background: rgba(255,68,68,0.15); color: #FF4444; }
.status-returned   { background: rgba(255,45,120,0.15); color: var(--pink); }

/* ======================================================
   FOOTER
====================================================== */
.footer {
  background: #05050F;
  border-top: 1px solid var(--border);
  padding: 32px 16px 80px;
  margin-top: 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { margin-bottom: 8px; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.footer-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; }
.social-link {
  width: 34px;
  height: 34px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-glow); }
.footer-col-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }
.footer-trust-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.footer-trust-badge i { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-flag { display: flex; align-items: center; gap: 6px; }
.flag-icon { display: inline-flex; width: 20px; height: 14px; flex-direction: column; overflow: hidden; border-radius: 2px; }
.flag-saffron { flex: 1; background: #FF6B00; }
.flag-white   { flex: 1; background: #fff; }
.flag-green   { flex: 1; background: #00CC44; }

/* ======================================================
   BOTTOM NAV (Mobile)
====================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 env(safe-area-inset-bottom);
  z-index: 990;
  backdrop-filter: blur(20px);
}
@media (min-width: 900px) { .bottom-nav { display: none; } }
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 12px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.bottom-nav-item i { font-size: 20px; }
.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--saffron); }
.bottom-nav-item.active i { filter: drop-shadow(0 0 6px var(--saffron)); }

/* ======================================================
   PAGE HERO (for static pages)
====================================================== */
.page-hero {
  background: linear-gradient(135deg, #1a0800, #080810, #001a10);
  border-bottom: 1px solid var(--border);
  padding: 40px 16px 32px;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub { font-size: 14px; color: var(--text-secondary); }

/* ======================================================
   STATIC CONTENT
====================================================== */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 16px;
}
.content-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--saffron);
  margin: 24px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--saffron);
}
.content-block h3 { font-size: 16px; font-weight: 600; margin: 16px 0 8px; }
.content-block p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.7; }
.content-block ul { padding-left: 20px; margin-bottom: 12px; }
.content-block ul li { font-size: 14px; color: var(--text-secondary); margin-bottom: 6px; }
.content-block ul li::marker { color: var(--saffron); }
.content-block a { color: var(--saffron); }

/* ======================================================
   SEARCH PAGE
====================================================== */
.search-header { padding: 16px; border-bottom: 1px solid var(--border); }
.search-result-count { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.search-result-count strong { color: var(--saffron); }

/* ======================================================
   EMPTY STATES
====================================================== */
.empty-state {
  text-align: center;
  padding: 60px 16px;
  color: var(--text-muted);
}
.empty-icon { font-size: 60px; margin-bottom: 16px; opacity: 0.5; }
.empty-title { font-size: 18px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.empty-desc { font-size: 13px; margin-bottom: 20px; }

/* ======================================================
   BREADCRUMB
====================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text-primary); }

/* ======================================================
   LOADING SKELETON
====================================================== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ======================================================
   ANIMATIONS
====================================================== */
.fade-in { animation: fadeIn 0.5s ease forwards; }
.slide-up { animation: slideUp 0.5s ease forwards; }
.stagger-1 { animation-delay: 0.05s; opacity: 0; animation-fill-mode: forwards; }
.stagger-2 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.stagger-3 { animation-delay: 0.15s; opacity: 0; animation-fill-mode: forwards; }
.stagger-4 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.neon-text-saffron { color: var(--saffron); text-shadow: 0 0 10px var(--saffron), 0 0 20px var(--saffron-glow); }
.neon-text-green   { color: var(--green); text-shadow: 0 0 10px var(--green), 0 0 20px var(--green-glow); }

/* ======================================================
   DESKTOP ENHANCEMENTS
====================================================== */
@media (min-width: 900px) {
  .section { padding: 40px 24px; }
  .nav-inner { gap: 20px; }
  .product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-gallery { margin-bottom: 0; }
}
