/* =============================================
   FRONCO - PREMIUM DARK STYLESHEET
   Gen-Z Dark Luxury Fashion Brand
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  /* === CORE PALETTE === */
  --bg-base:       #080808;
  --bg-surface:    #111111;
  --bg-elevated:   #1a1a1a;
  --bg-card:       #141414;
  --bg-input:      #1c1c1c;
  --bg-overlay:    rgba(0,0,0,0.85);

  /* === TEXT === */
  --text-primary:   #f0f0f0;
  --text-secondary: #b5b5b5;
  --text-muted:     #8a8a8a;
  --text-inverse:   #080808;

  /* === BRAND ACCENTS === */
  --gold:        #f5c200;
  --gold-dim:    #d4a900;
  --gold-glow:   rgba(245,194,0,0.18);
  --gold-glow-lg:rgba(245,194,0,0.25);
  --red:         #ff4444;
  --green:       #00d68f;
  --blue:        #4f9cf9;

  /* === SEMANTIC ALIASES === */
  --banner-bg:      #f5c200;
  --banner-text:    #080808;
  --header-bg:      rgba(8,8,8,0.92);
  --header-shadow:  0 1px 0 rgba(255,255,255,0.04), 0 4px 32px rgba(0,0,0,0.6);
  --logo-color:     #f0f0f0;
  --body-bg:        var(--bg-base);
  --card-bg:        var(--bg-card);
  --border-color:   rgba(255,255,255,0.08);
  --border-subtle:  rgba(255,255,255,0.04);
  --accent-yellow:  var(--gold);
  --accent-red:     var(--red);
  --accent-green:   var(--green);
  --price-color:    #f0f0f0;
  --old-price-color:#555555;
  --discount-bg:    var(--red);
  --discount-text:  #fff;
  --btn-cod-bg:     var(--gold);
  --btn-cod-hover:  #ffd000;
  --btn-cod-text:   #080808;
  --features-bg:    #0c0c0c;
  --features-text:  #f0f0f0;
  --footer-bg:      #060606;
  --footer-border:  rgba(255,255,255,0.06);
  --footer-text:    #505050;
  --modal-overlay:  rgba(0,0,0,0.88);
  --toast-success:  var(--green);
  --toast-error:    var(--red);
  --toast-warning:  #f5a623;
  --section-bg:     var(--bg-surface);

  /* === SPACING & RADIUS === */
  --border-radius:    10px;
  --border-radius-lg: 18px;
  --border-radius-xl: 28px;
  --border-radius-pill: 100px;

  /* === TRANSITIONS === */
  --transition:      all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.14s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --spring:          all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === SHADOWS === */
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.4);
  --shadow-md:       0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:       0 12px 48px rgba(0,0,0,0.6);
  --shadow-xl:       0 24px 80px rgba(0,0,0,0.7);
  --shadow-gold:     0 0 24px rgba(245,194,0,0.22), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-gold-lg:  0 0 48px rgba(245,194,0,0.3), 0 8px 32px rgba(0,0,0,0.5);
  --shadow-btn:      0 2px 12px rgba(0,0,0,0.5);
  --shadow-btn-hover:0 8px 32px rgba(245,194,0,0.3), 0 4px 16px rgba(0,0,0,0.5);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--body-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

/* Skeleton shimmer for image loading */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.img-skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* =============================================
   ANNOUNCEMENT BANNER
   ============================================= */
.announcement-bar {
  background: var(--gold);
  color: #080808;
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.announcement-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.announcement-track:hover {
  animation-play-state: paused;
}

.announcement-item {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0 48px;
  text-transform: uppercase;
  color: #080808;
}

.announcement-item span {
  opacity: 0.35;
  margin: 0 16px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--header-shadow);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger-btn {
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.hamburger-btn:hover {
  background: rgba(255,255,255,0.06);
}

.hamburger-btn span {
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  display: block;
  border-radius: 2px;
  transition: var(--transition);
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}



.header-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.22s ease;
  border-radius: 2px;
}

.header-nav a:hover {
  color: #fff;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a.active {
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  background: rgba(255,255,255,0.07);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s;
}

.icon-btn:hover svg {
  stroke: #fff;
}

/* =============================================
   MOBILE SIDEBAR
   ============================================= */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -340px;
  width: 310px;
  height: 100vh;
  background: #0e0e0e;
  z-index: 1001;
  overflow-y: auto;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.sidebar-close {
  background: rgba(255,255,255,0.06);
  font-size: 18px;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.sidebar-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.sidebar-nav {
  padding: 12px 0;
  flex: 1;
}

.sidebar-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  border-left: 2px solid transparent;
}

.sidebar-link:hover {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
  color: #fff;
}

.sidebar-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* =============================================
   SEARCH BAR
   ============================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(24px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-form {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  font-size: 20px;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.search-form input:focus {
  border-bottom-color: var(--gold);
}

.search-form input::placeholder {
  color: rgba(255,255,255,0.25);
}

.search-close {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  font-size: 16px;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.search-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.search-results {
  width: 100%;
  max-width: 600px;
  padding: 20px 24px;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* =============================================
   CATEGORY GRID
   ============================================= */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--body-bg);
}

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.category-label .sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
}

.category-label .main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  display: block;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
  padding: 40px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  margin-top: 6px;
  border-radius: 2px;
}

.section-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* =============================================
   PRODUCTS SLIDER / ROW
   ============================================= */
.products-row-wrapper {
  position: relative;
  overflow: hidden;
}

.products-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.products-row::-webkit-scrollbar {
  display: none;
}

.products-row .product-card {
  flex: 0 0 calc(50% - 6px);
  scroll-snap-align: start;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.scroll-btn.prev { left: -8px; }
.scroll-btn.next { right: -8px; }

.scroll-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

.product-card:hover {
  box-shadow: 0 0 0 1px rgba(245,194,0,0.15), 0 16px 48px rgba(0,0,0,0.7);
  transform: translateY(-6px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3/4;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* NO opacity transition - avoids fade bug */
}

/* Hover image swap */
.product-img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover image swap — only fade main if a hover image exists */
.product-card:hover .product-img-main {
  transform: scale(1.04);
  /* do NOT fade opacity here by default */
}

/* Only hide the main image when a hover image sibling is present */
.product-img-wrap:has(.product-img-hover) .product-img-main {
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img-wrap:has(.product-img-hover) .product-img-main {
  opacity: 0;
}

.product-card:hover .product-img-hover {
  opacity: 1;
}

.product-card:not(:hover) .product-img-main {
  opacity: 1;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

/* Badges */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  border-radius: 100px;
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-100cotton {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.badge-new {
  background: rgba(255,68,68,0.9);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,68,68,0.4);
}

.badge-bestseller {
  background: var(--gold);
  color: #080808;
  box-shadow: 0 2px 8px rgba(245,194,0,0.4);
}

.badge-sale {
  background: rgba(0,214,143,0.9);
  color: #080808;
  box-shadow: 0 2px 8px rgba(0,214,143,0.4);
}

/* Wishlist button */
.product-wishlist {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(20,20,20,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.product-wishlist:hover {
  background: rgba(30,30,30,0.95);
  transform: scale(1.1);
  border-color: var(--gold);
}

.product-wishlist svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 2;
}

.product-wishlist.active svg {
  stroke: var(--red);
  fill: var(--red);
}

/* Product Info */
.product-info {
  padding: 14px 14px 16px;
  background: var(--bg-card);
}

.product-brand {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.1px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.product-mrp {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-discount {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,68,68,0.15);
  color: var(--red);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,68,68,0.2);
}

.product-savings {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}

.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 14px;
}

.product-tag {
  font-size: 9px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Dual button row */
.product-card-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.product-card-btns .btn-add-to-cart {
  flex: 1;
  padding: 9px 6px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-btn);
}

.product-card-btns .btn-add-to-cart:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.product-card-btns .btn-add-to-cart:active {
  transform: translateY(1px);
  transition-duration: 0.1s;
}

.product-card-btns .btn-cod,
.product-card-btns .product-order-btn {
  flex: 1;
  padding: 11px 6px;
  background: var(--gold);
  color: #080808;
  border: none;
  border-radius: var(--border-radius);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 12px rgba(245,194,0,0.25);
  font-family: 'Syne', sans-serif;
  position: relative;
  overflow: hidden;
}

.product-card-btns .btn-cod::after,
.product-card-btns .product-order-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.product-card-btns .btn-cod:hover,
.product-card-btns .product-order-btn:hover {
  background: var(--btn-cod-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,194,0,0.35);
}

.product-card-btns .btn-cod:active,
.product-card-btns .product-order-btn:active {
  transform: translateY(1px) scale(0.99);
  transition-duration: 0.08s;
}

/* =============================================
   FEATURES TICKER (Infinite Scroll)
   ============================================= */
@keyframes featuresTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.features-ticker-wrap {
  background: var(--features-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

/* fade edges */
.features-ticker-wrap::before,
.features-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.features-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--features-bg), transparent);
}
.features-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--features-bg), transparent);
}

.features-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: featuresTicker 28s linear infinite;
  will-change: transform;
}

.features-ticker-track:hover {
  animation-play-state: paused;
}

.features-ticker-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 32px;
  white-space: nowrap;
  flex-shrink: 0;
}

.features-ticker-icon {
  display: none;
}

.features-ticker-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-ticker-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.features-ticker-sep {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0 4px;
}




/* =============================================
   OFFER BANNERS
   ============================================= */
.offer-section {
  background: #fff;
  padding: 0;
  margin: 0;
}

.offer-banner {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.offer-banner img {
  width: 100%;
  object-fit: cover;
}

.offer-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
  background: #2a9d8f;
  padding: 16px;
  text-align: center;
}

.trust-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.million-text {
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 20px 16px;
  background: #fff;
  color: var(--text-primary);
}

.million-text strong {
  font-weight: 800;
}

/* =============================================
   FOOTER (Dark Premium)
   ============================================= */
.site-footer {
  background: #111111;
  border-top: none;
  padding: 24px 16px;
  color: #aaa;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Outfit', 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px 0;
  font-family: 'Syne', sans-serif;
}


.footer-link {
  font-size: 13px;
  color: #888;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s ease;
  display: block;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-payments {
  margin-bottom: 28px;
  text-align: center;
}

.footer-payments-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 14px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.payment-icon:hover {
  background: rgba(255,255,255,0.1);
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: #555;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: #888;
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.2s;
}

.footer-social a:hover svg {
  stroke: #1a1a1a;
}


/* =============================================
   PAGE HEADER (SHOP, ABOUT, ETC.)
   ============================================= */
.page-header {
  background: var(--bg-surface);
  padding: 28px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,194,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  position: relative;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  position: relative;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  opacity: 0.4;
}

/* =============================================
   SHOP FILTERS
   ============================================= */
.shop-filters {
  background: var(--bg-surface);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 60px;
  z-index: 98;
}

.shop-filters::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  padding: 7px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
  box-shadow: 0 0 16px rgba(245,194,0,0.25);
}

.sort-select {
  margin-left: auto;
  padding: 7px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill);
  font-size: 12px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
  background: var(--bg-base);
  padding-bottom: 24px;
}

.product-images {
  position: relative;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.product-main-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #111 100%);
  background-size: 200% 200%;
  animation: imgSkeleton 1.6s ease-in-out infinite;
}

.product-main-image.img-loaded {
  animation: none;
  background: #0a0a0a;
}

@keyframes imgSkeleton {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #0a0a0a;
  opacity: 0;
  transform: scale(1.03);
}

.product-main-image img.img-ready {
  opacity: 1;
  transform: scale(1);
}

.product-main-image img.fade {
  opacity: 0;
  transform: scale(1.02);
}

.product-img-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  overflow-x: auto;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  scrollbar-width: none;
}

.product-thumbnails::-webkit-scrollbar { display: none; }

.thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
  background: #0a0a0a;
}

.thumb.active {
  border-color: var(--gold);
  transform: scale(1.05);
}

.thumb:hover:not(.active) {
  border-color: rgba(245,194,0,0.4);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
}

.product-details-section {
  padding: 24px 16px 28px;
  background: var(--bg-base);
  color: var(--text-primary);
  animation: fadeSlideUp 0.4s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-detail-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: #0d0d0d;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
}

.product-detail-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.product-detail-price {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.product-detail-mrp {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-detail-discount {
  font-size: 13px;
  font-weight: 700;
  background: #0d0d0d;
  color: #f5c200;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.size-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.size-chart-link {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.size-btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-input);
}

.size-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
}

.size-btn.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  position: relative;
}

.size-btn.unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: #999;
  transform: rotate(-45deg);
}

.color-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.color-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.color-swatch {
  position: relative;
  cursor: pointer;
}

.color-swatch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-swatch label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg-elevated);
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.color-swatch label:hover {
  border-color: var(--gold);
}

.color-swatch input:checked + label {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

/* =============================================
   ADD TO CART & COD BUTTONS
   ============================================= */
.btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn-add-to-cart:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.btn-add-to-cart svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-cod {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--btn-cod-bg);
  color: var(--btn-cod-text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn-cod:hover {
  background: var(--btn-cod-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.btn-cod:active {
  transform: translateY(0);
}

.btn-cod svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-cod {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-cod .btn-cod,
.sticky-cod .btn-add-to-cart {
  margin-bottom: 0;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  flex: 1;
}

/* =============================================
   PRODUCT DESCRIPTION / FEATURES
   ============================================= */
.bronco-features {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bronco-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--spring);
}

.bronco-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.bronco-feature-card .feature-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bronco-feature-card .feature-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

/* =============================================
   ORDER MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--modal-overlay);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-sheet {
  background: var(--bg-surface);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  border-radius: 24px 24px 0 0;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}

.modal-overlay.active .modal-sheet {
  transform: translateY(0);
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 12px auto 0;
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.modal-body {
  padding: 20px;
}

.modal-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.order-summary-card {
  background: var(--bg-elevated);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.04);
}

.order-summary-img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1e1e1e;
}

.order-summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-summary-details {
  flex: 1;
}

.order-summary-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.order-summary-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.order-summary-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-summary-price {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

/* Quantity Control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(255,255,255,0.08);
}

.qty-value {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(245,194,0,0.08);
  border: 1px solid rgba(245,194,0,0.15);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.order-total-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.order-total-amount {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

/* =============================================
   FORM STYLES
   ============================================= */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label .req {
  color: var(--accent-red);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-input);
  transition: var(--spring);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input.error {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(255,68,68,0.15);
}

.form-error {
  font-size: 11px;
  color: var(--accent-red);
  margin-top: 4px;
  display: none;
}

.form-input.error ~ .form-error,
.form-error.visible {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

/* =============================================
   MODAL FOOTER (Place Order Buttons)
   ============================================= */
.modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  background: var(--bg-surface);
  position: sticky;
  bottom: 0;
}

.btn-place-order {
  flex: 1;
  padding: 14px 20px;
  background: var(--gold);
  color: #080808;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--spring);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 4px 16px rgba(245,194,0,0.2);
}

.btn-place-order:hover:not(:disabled) {
  background: var(--btn-cod-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,194,0,0.35);
}

.btn-place-order:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-cancel-order {
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-cancel-order:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.85);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.spinner-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
  pointer-events: all;
  font-size: 13px;
  font-weight: 500;
}

.toast.success { background: var(--toast-success); color: #fff; }
.toast.error { background: var(--toast-error); color: #fff; }
.toast.warning { background: var(--toast-warning); color: #fff; }
.toast.info { background: #1565c0; color: #fff; }

.toast-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-msg { flex: 1; line-height: 1.4; }

.toast.hide {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: var(--section-bg);
}

.thankyou-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 214, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.thankyou-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.order-number-badge {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.order-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.thankyou-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
}

.thankyou-summary-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.thankyou-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
}

.thankyou-summary-row:last-child {
  border-bottom: none;
}

.thankyou-summary-row .label {
  color: var(--text-muted);
}

.thankyou-summary-row .value {
  font-weight: 600;
  color: var(--text-primary);
}

.thankyou-summary-row.total-row {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--border-color);
  border-bottom: none;
}

.thankyou-summary-row.total-row .label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
}

.thankyou-summary-row.total-row .value {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-green);
}

.thankyou-note {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-size: 13px;
  color: #5d4037;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
}

.thankyou-note-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-continue-shopping {
  flex: 1;
  padding: 12px 16px;
  background: var(--btn-cod-bg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: block;
}

.btn-continue-shopping:hover {
  background: var(--btn-cod-hover);
}

.btn-go-home {
  flex: 1;
  padding: 12px 16px;
  background: #f5f5f5;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: block;
}

.btn-go-home:hover {
  background: #eee;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-section {
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-yellow);
}

.about-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 24px;
  background: #f8f8f8;
}

.about-stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 16px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value, .contact-info-value a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-value a:hover {
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #080808;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--spring);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(245,194,0,0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,194,0,0.4);
  background: var(--gold-dim);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* =============================================
   OFFER COUNTDOWN BANNER
   ============================================= */
.offer-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffff0;
  border-top: 1px solid #ffe082;
  padding: 10px 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-sticky-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.countdown-display {
  display: flex;
  gap: 4px;
  align-items: center;
}

.countdown-unit {
  background: var(--text-primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  text-align: center;
}

.countdown-sep {
  font-weight: 700;
  font-size: 14px;
}

.offer-sticky-bar-badge {
  background: var(--accent-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* =============================================
   PINCODE CHECKER
   ============================================= */
.pincode-checker {
  margin: 16px 0;
  padding: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.pincode-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pincode-input-row {
  display: flex;
  gap: 8px;
}

.pincode-input {
  flex: 1;
  padding: 10px 12px;
  background: var(--bg-base);
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.pincode-input::placeholder {
  color: var(--text-muted);
  letter-spacing: normal;
}

.pincode-input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-check-pin {
  padding: 10px 16px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btn-check-pin:hover {
  background: var(--gold-dark, #d4a800);
}

.pincode-result {
  margin-top: 8px;
  font-size: 13px;
}

.pincode-result.success { color: var(--accent-green); }
.pincode-result.error { color: var(--accent-red); }

/* =============================================
   SIZE CHART MODAL
   ============================================= */
.size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
}

.size-chart-modal.active {
  display: flex;
}

.size-chart-modal .modal-overlay {
  position: relative;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
}

.size-chart-content {
  background: #fff;
  border-radius: 12px 12px 0 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  margin-top: auto;
  padding: 24px;
}

table.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: var(--text-primary);
}

table.size-table th,
table.size-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

table.size-table th {
  background: var(--bg-surface);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
}

table.size-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

table.size-table tr:nth-child(odd) {
  background: var(--bg-base);
}


/* =============================================
   RELATED PRODUCTS
   ============================================= */
.related-section {
  background: var(--section-bg);
  padding: 24px 16px;
}

.related-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1.5px solid var(--border-color);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
}

/* =============================================
   NO RESULTS
   ============================================= */
.no-results {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-results h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.no-results p {
  font-size: 14px;
}

/* =============================================
   RESPONSIVE - DESKTOP
   ============================================= */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .hamburger-btn {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
  }

  .products-row .product-card {
    flex: 0 0 calc(33.33% - 8px);
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-card {
    aspect-ratio: 2/3;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-slider {
    max-height: 600px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-row .product-card {
    flex: 0 0 calc(25% - 9px);
  }

  .product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-bottom: 0;
  }

  .product-images {
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .sticky-cod {
    display: none !important;
  }

  .modal-overlay {
    align-items: center;
  }

  .modal-sheet {
    border-radius: 16px;
    max-height: 85vh;
  }

  .modal-sheet {
    transform: translateY(40px) scale(0.95);
  }

  .modal-overlay.active .modal-sheet {
    transform: translateY(0) scale(1);
  }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* Smooth page transitions */
.page-fade {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-page {
  max-width: 560px;
  margin: 32px auto;
  padding: 0 16px 48px;
  background: var(--body-bg);
}

.thankyou-card {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 214, 143, 0.2);
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--green);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-heading {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.thankyou-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.order-number-badge {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 24px;
  font-family: monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
}

.order-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.thankyou-summary {
  background: var(--bg-elevated);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.04);
}

.thankyou-summary-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.thankyou-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.thankyou-summary-row:last-child {
  border-bottom: none;
}

.thankyou-summary-row .label {
  color: #888;
  flex-shrink: 0;
}

.thankyou-summary-row .value {
  font-weight: 600;
  text-align: right;
}

.thankyou-summary-row.total-row .label,
.thankyou-summary-row.total-row .value {
  font-weight: 800;
  color: #1a7d3c;
  font-size: 15px;
}

.thankyou-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: left;
  margin-bottom: 20px;
  font-size: 13px;
  color: #555;
}

.thankyou-note-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
}

.btn-continue-shopping {
  flex: 1;
  padding: 12px 20px;
  background: #1a7d3c;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-continue-shopping:hover { background: #145e2d; }

.btn-go-home {
  flex: 1;
  padding: 12px 20px;
  background: #f0f0f0;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-go-home:hover { background: #e0e0e0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value, .contact-info-value a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-value a:hover {
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #080808;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--spring);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(245,194,0,0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,194,0,0.4);
  background: var(--gold-dim);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f5c200;
}

.about-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.about-stat:last-child { border-right: none; }

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.about-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.about-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =============================================
   SIZE TABLE
   ============================================= */
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}

.size-table th {
  background: var(--bg-elevated);
  padding: 10px 12px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-color);
}

.size-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.size-table tr:last-child td { border-bottom: none; }
.size-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* =============================================
   SHOP PAGE - FILTER CHIPS
   ============================================= */
.shop-filters {
  background: var(--bg-surface);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 56px;
  z-index: 80;
}

.shop-filters::-webkit-scrollbar { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  transition: all 0.2s;
  position: relative;
}

.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-input);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.filter-chip.active {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(245,194,0,0.25);
}

.filter-chip.active .chip-count {
  background: rgba(8,8,8,0.15);
  color: #080808;
}

.chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.sort-select {
  margin-left: auto;
  padding: 7px 12px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================
   NO RESULTS
   ============================================= */
.no-results {
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.no-results-icon { font-size: 48px; margin-bottom: 16px; }

.no-results h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.no-results p {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

/* =============================================
   PRODUCT ORDER BUTTON (COD)
   ============================================= */
.product-order-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  background: #1a7d3c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
  line-height: 1.2;
}

.product-order-btn:hover {
  background: #145e2d;
  transform: translateY(-1px);
}

.product-order-btn:active {
  transform: translateY(0);
}

/* =============================================
   PRODUCT BADGES
   ============================================= */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.badge-new {
  background: #e53935;
  color: #fff;
}

.badge-bestseller {
  background: #f5c200;
  color: #1a1a1a;
}

.badge-100cotton {
  background: #1a7d3c;
  color: #fff;
}

/* =============================================
   CART DRAWER & OVERLAY
   ============================================= */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  height: 100%;
  background: var(--bg-surface);
  z-index: 1001;
  box-shadow: -8px 0 32px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.32, 0.94, 0.6, 1);
  border-left: 1px solid var(--border-color);
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
    border-left: none;
  }
}

.cart-drawer.active {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

.cart-drawer-close {
  background: rgba(255,255,255,0.06);
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-drawer-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.cart-drawer-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.cart-empty-message {
  text-align: center;
  padding: 40px 0;
  color: var(--text-secondary);
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.05);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-price-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  align-self: flex-start;
}

.cart-item-remove:hover {
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-elevated);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  padding: 14px 20px;
  background: var(--gold);
  color: #080808;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--spring);
  letter-spacing: 0.8px;
  box-shadow: 0 4px 16px rgba(245,194,0,0.2);
}

.btn-checkout:hover {
  background: var(--btn-cod-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,194,0,0.35);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 50%;
  min-width: 15px;
  height: 15px;
  position: absolute;
  top: -4px;
  right: -4px;
  padding: 0 2px;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* =============================================
   PREMIUM BUTTON SYSTEM
   ============================================= */

/* Ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: translate(-50%, -50%) scale(10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.8s;
}

.btn-ripple:active::after {
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  transition: 0s;
}

/* Premium button base */
.btn-premium {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-btn);
  transform: translateY(0) scale(1);
}

.btn-premium:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-btn-hover);
}

.btn-premium:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: var(--shadow-sm);
  transition-duration: 0.1s;
}

.btn-premium:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Enhanced Add to Cart button */
.btn-add-to-cart {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-btn);
}

.btn-add-to-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-add-to-cart:hover::before {
  opacity: 1;
}

.btn-add-to-cart:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,26,0.25);
}

.btn-add-to-cart:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: var(--shadow-sm);
  transition-duration: 0.1s;
}

/* Enhanced COD button */
.btn-cod {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,125,60,0.2);
}

.btn-cod::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-cod:hover::before {
  opacity: 1;
}

.btn-cod:hover {
  background: var(--btn-cod-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,125,60,0.35);
}

.btn-cod:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 4px rgba(26,125,60,0.15);
  transition-duration: 0.1s;
}

/* Enhanced checkout button */
.btn-checkout {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-checkout:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,26,0.25);
}

.btn-checkout:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.1s;
}

/* Enhanced hero CTA */
.hero-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-cta:active {
  transform: translateY(1px);
  transition-duration: 0.1s;
}

/* Enhanced filter chips */
.filter-chip {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.filter-chip:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

/* Enhanced product cards */
.product-card {
  border-radius: var(--border-radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Place Order button in modal */
.btn-place-order {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26,125,60,0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-place-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,125,60,0.35);
}

.btn-place-order:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.1s;
}

/* =============================================
   SCROLL-REVEAL ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   SKELETON LOADING
   ============================================= */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--border-radius);
}

.skeleton-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.skeleton-img {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-text {
  height: 14px;
  margin: 8px 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }

/* =============================================
   LOADING SPINNER
   ============================================= */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2.5px solid rgba(0,0,0,0.1);
  border-top-color: var(--accent-green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spinner-white {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #fff;
}

/* =============================================
   PREMIUM FOOTER (Dark)
   ============================================= */
.site-footer {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
}

.footer-logo {
  color: #fff;
}

.footer-link {
  color: var(--text-secondary);
  border-bottom: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 11px;
}

.footer-social a {
  background: var(--bg-elevated);
  border-color: var(--border-color);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  stroke: var(--text-primary);
}

.footer-social a:hover svg {
  stroke: #080808;
}

.footer-payments-title {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.payment-icons {
  display: none; /* replaced by consolidated image */
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Exciting Offers Image Banners */
.offer-banner-img-container {
  width: 100%;
  max-width: 1200px;
  margin: 12px auto;
  padding: 0 4px;
}

.offer-banner-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.offer-banner-img:hover {
  transform: scale(1.01);
}

/* Homegrown Gold Banner */
.homegrown-teal-banner {
  background-color: var(--gold);
  padding: 18px 20px;
  text-align: center;
}

.homegrown-teal-banner h3 {
  color: #080808;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* Smiles Delivered Section */
.smiles-delivered-section {
  background-color: var(--bg-surface);
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.smiles-delivered-text {
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 400;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.smiles-delivered-text strong {
  font-weight: 700;
}

.smiley-face-icon {
  color: var(--gold);
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* Features Bar Consolidated Image */
.features-bar-img-container {
  width: 100%;
  background-color: #000;
  overflow: hidden;
}

.features-bar-consolidated-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Payments Consolidated Image */
.footer-payments-img {
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* =============================================
   QUANTITY SELECTOR
   ============================================= */
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.qty-selector button {
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.qty-selector button:hover {
  background: #eee;
}

.qty-selector button:active {
  background: #ddd;
}

.qty-selector button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-selector .qty-value {
  width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-left: 1.5px solid var(--border-color);
  border-right: 1.5px solid var(--border-color);
  line-height: 40px;
}

/* =============================================
   VALIDATION ERROR STYLES
   ============================================= */
.field-error {
  color: var(--accent-red);
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  display: none;
  animation: fadeInUp 0.2s ease;
}

.field-error.visible {
  display: block;
}

.field-highlight {
  border-color: var(--accent-red) !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1) !important;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* =============================================
   PAGE TRANSITIONS
   ============================================= */
.page-enter {
  animation: fadeIn 0.3s ease;
}

/* Smooth image loading */
img[loading="lazy"] {
  opacity: 1;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* =============================================
   ENHANCED PRODUCT IMAGE GALLERY
   ============================================= */
.product-main-image {
  cursor: zoom-in;
}

.product-main-image img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-main-image:hover img {
  transform: scale(1.03);
}

/* Image zoom overlay */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: zoom-out;
}

.zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: scaleIn 0.3s ease;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.zoom-close:hover {
  background: rgba(255,255,255,0.2);
}

/* =============================================
   ENHANCED RESPONSIVE (Desktop)
   ============================================= */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  
  .hamburger-btn {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .products-row .product-card {
    flex: 0 0 calc(33.33% - 8px);
  }
  
  .hero-slider {
    max-height: 560px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 24px;
  }
  
  .products-row .product-card {
    flex: 0 0 calc(25% - 9px);
  }
  
  .hero-slider {
    max-height: 620px;
  }
}

/* =============================================
   HOMEPAGE PRODUCTS CAROUSEL
   ============================================= */
.products-carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 16px 4px 32px;
  background-color: #f8f8f8;
  position: relative;
}

.products-carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 12px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.products-carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari/Opera */
}

/* Carousel Swipe Navigation Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(245, 194, 0, 0.25);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.products-carousel-container:hover .carousel-nav-btn {
  opacity: 1;
  pointer-events: auto;
}

.carousel-nav-btn:hover {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(245, 194, 0, 0.4);
}

.carousel-nav-btn.prev-btn {
  left: 20px;
}

.carousel-nav-btn.next-btn {
  right: 20px;
}

/* Mouse grab scrolling cursor style */
.products-carousel.active-drag {
  user-select: none;
}

@media (max-width: 768px) {
  .carousel-nav-btn {
    display: none; /* Hide arrow buttons on mobile/tablet since swipe is native */
  }
}


.carousel-product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

@media (max-width: 767px) {
  .carousel-product-card {
    flex: 0 0 210px;
  }
  .products-carousel {
    gap: 12px;
    padding: 8px 12px;
  }
}

.carousel-product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background-color: #1a1a1a;
  overflow: hidden;
}

.carousel-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.carousel-product-card:hover .carousel-product-img-wrap img {
  transform: scale(1.04);
}

.carousel-product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background-color: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  z-index: 10;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-product-wishlist:hover {
  transform: scale(1.12);
}

.carousel-product-wishlist svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.carousel-product-wishlist.active svg {
  fill: #e53935;
  stroke: #e53935;
}

.carousel-product-info {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.carousel-product-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carousel-product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.carousel-product-price-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-product-price {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.carousel-product-mrp {
  font-size: 13px;
  text-decoration: line-through;
  color: #999999;
}

.carousel-product-discount {
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  background-color: #ff0000;
  padding: 3px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Validation highlight and shake animation */
.field-highlight {
  border: 1.5px solid #e53935 !important;
  box-shadow: 0 0 8px rgba(229,57,53,0.2) !important;
  animation: shakeGrid 0.4s ease-in-out;
}

@keyframes shakeGrid {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

/* Hide desktop COD buttons on mobile/tablet and show only on desktop to prevent duplicates */
#desktopCodBtn {
  display: none !important;
}

@media (min-width: 1024px) {
  #desktopCodBtn {
    display: block !important;
  }
}

/* =============================================
   ORDER SUCCESS OVERLAY (GEN-Z PREMIUM)
   ============================================= */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,0.88);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  backdrop-filter: blur(24px);
}

.success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,194,0,0.06);
  transform: scale(0.88) translateY(24px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-overlay.active .success-card {
  transform: scale(1) translateY(0);
}

/* Gold accent top bar */
.success-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.85;
}

.success-card > .success-icon-wrap,
.success-card > h2,
.success-card > p,
.success-card > .success-order-chip,
.success-card > .success-details,
.success-card > .success-actions {
  padding-left: 28px;
  padding-right: 28px;
}

.success-icon-wrap {
  width: 90px;
  height: 90px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 20px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  overflow: visible;
}

.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.success-msg {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Order ID Chip */
.success-order-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,194,0,0.06);
  border: 1px solid rgba(245,194,0,0.18);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 24px;
}

.success-order-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.success-order-id {
  font-family: 'Syne', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Details Box */
.success-details {
  background: var(--bg-elevated);
  border-radius: 14px;
  padding: 16px;
  margin: 0 28px 24px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.05);
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.success-detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.success-detail-row .label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.success-detail-row .val {
  font-weight: 600;
  color: #fff;
}

.success-highlight {
  color: var(--green) !important;
  font-weight: 700 !important;
}

/* Action Buttons */
.success-actions {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10px;
  padding: 0 28px 28px;
}

.success-btn-secondary {
  padding: 13px;
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--spring);
}

.success-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.success-btn {
  padding: 13px 16px;
  background: var(--gold);
  color: #080808;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(245,194,0,0.3);
  transition: var(--spring);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,194,0,0.45);
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}



