/* ========================================
   SAGAR BAGS - Main Stylesheet
   ======================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

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

/* Date input calendar icon fix for dark theme */
input[type="date"] {
  color-scheme: dark;
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  border-radius: 4px;
  padding: 5px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-color: #c9a227;
  filter: none;
  -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: #d4af37;
}

/* -------------------- Hide Animated Particles & Orbs -------------------- */
.hero-particles,
.hero-particle,
.work-particles,
.work-particle,
.particle,
.hero-orb,
.hero-orb-1,
.hero-orb-2,
.hero-orb-3,
.work-orb,
.work-orb-1,
.work-orb-2,
.work-orb-3,
.about-orb,
.about-orb-1,
.about-orb-2,
.about-orb-3,
.cta-floating-shapes,
.hero-mesh-bg,
.hero-mesh-bg-2,
.hero-shimmer {
  display: none !important;
}

/* -------------------- CSS Variables -------------------- */
:root {
  /* Primary Colors - Dark Premium */
  --primary: #0d0d0d;
  --primary-light: #1a1a1a;
  --primary-dark: #000000;

  /* Secondary Colors - Luxury Gold */
  --secondary: #c9a227;
  --secondary-light: #e8c547;
  --secondary-dark: #a68b1f;

  /* Background Colors */
  --bg-primary: #0a0a0a;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #1f1f1f;

  /* Neutrals - Inverted for Dark Theme */
  --white: #ffffff;
  --gray-50: #1a1a1a;
  --gray-100: #1f1f1f;
  --gray-200: #2a2a2a;
  --gray-300: #3a3a3a;
  --gray-400: #4a4a4a;
  --gray-500: #6a6a6a;
  --gray-600: #8a8a8a;
  --gray-700: #aaaaaa;
  --gray-800: #cccccc;
  --gray-900: #f0f0f0;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #666666;

  /* Borders */
  --border-subtle: #2a2a2a;
  --border-gold: rgba(201, 162, 39, 0.3);

  /* Semantic Colors */
  --success: #48bb78;
  --success-light: #68d391;
  --error: #f56565;
  --error-light: #fc8181;
  --warning: #ed8936;
  --info: #4299e1;

  /* Gold Glow Effects */
  --glow-gold: 0 0 20px rgba(201, 162, 39, 0.3);
  --glow-gold-strong: 0 0 30px rgba(201, 162, 39, 0.5);

  /* Shadows - Enhanced for Dark Theme */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 20px -3px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 4px 15px rgba(201, 162, 39, 0.2);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Header Height */
  --header-height: 70px;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--gray-600); }
.text-white { color: var(--white); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* -------------------- Container -------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--primary-dark);
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), var(--glow-gold);
}

.btn-secondary {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--bg-card);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
  box-shadow: var(--glow-gold);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius-full);
}

/* -------------------- Forms -------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background-color: var(--bg-elevated);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

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

/* Form Validation States */
.form-group {
  position: relative;
}

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: var(--error);
  background-color: rgba(245, 101, 101, 0.05);
}

.form-group.error .form-input:focus,
.form-group.error .form-textarea:focus,
.form-group.error .form-select:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.15);
}

.form-group.success .form-input,
.form-group.success .form-textarea,
.form-group.success .form-select {
  border-color: var(--success);
  background-color: rgba(72, 187, 120, 0.05);
}

.form-group.success .form-input:focus,
.form-group.success .form-textarea:focus,
.form-group.success .form-select:focus {
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.15);
}

.form-error {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--error);
  animation: slideIn 0.2s ease-out;
}

.form-error svg {
  flex-shrink: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success checkmark indicator */
.form-group.success::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 2.5rem;
  width: 16px;
  height: 16px;
  background: var(--success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------------------- Cards -------------------- */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg), var(--glow-gold);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bg-card);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 0.75rem;
}

/* Product Card Specific */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Product Card Price */
.product-card .card-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid var(--gray-100);
}

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

.product-card .card-price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
}

.product-card .card-discount-badge {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-card .card-meta {
  margin-top: auto;
  padding-top: 0.75rem;
  margin-bottom: 1rem;
}

.product-card .min-order {
  font-size: 0.8125rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.product-card .card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.product-card .card-actions .btn {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.product-card .card-actions .btn svg {
  flex-shrink: 0;
}

.product-card .favorite-btn {
  position: absolute !important;
  top: auto !important;
  bottom: 3.5rem !important;
  right: 0.75rem !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
  z-index: 15;
  cursor: pointer;
  border: none;
}

.product-card .favorite-btn svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  transition: all var(--transition);
}

.product-card .favorite-btn:hover svg,
.product-card .favorite-btn.active svg {
  color: var(--error);
  fill: var(--error);
}

.product-card .badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
}

/* -------------------- Badges -------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}

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

.badge-secondary {
  background-color: var(--secondary);
  color: var(--gray-900);
}

.badge-outline {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

/* Product Badges (New/Bestseller/Featured) - Ribbon Style */
.product-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 0.5rem 1.25rem 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 var(--radius) 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.product-badge-new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge-bestseller {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge-popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-badge-featured {
  background: linear-gradient(135deg, #c9a227 0%, #a68b1f 100%) !important;
  color: #000000 !important;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Discount Badge - Top Right Corner */
.product-badge-discount {
  position: absolute;
  top: 0;
  right: 0;
  left: auto !important;
  z-index: 20;
  padding: 0.5rem 0.75rem 0.5rem 1.25rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 0 0 var(--radius);
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* -------------------- Section Styles -------------------- */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header {
  margin-bottom: 3rem;
}

/* -------------------- Background Colors -------------------- */
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-gray { background-color: var(--gray-100); }
.bg-white { background-color: var(--white); }
.bg-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* -------------------- Grid System -------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -------------------- Flexbox Utilities -------------------- */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* -------------------- Spacing Utilities -------------------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* -------------------- Visibility -------------------- */
.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* -------------------- Header Styles -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: none;
  z-index: 9999;
  transition: all var(--transition);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.header.scrolled {
  height: 60px;
  background-color: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 45px !important;
  max-height: 45px !important;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  transition: width var(--transition);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.header-icon:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
  box-shadow: var(--glow-gold);
}

.header-icon svg {
  width: 20px;
  height: 20px;
}

.icon-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  background-color: var(--secondary);
  color: var(--gray-900);
  border-radius: var(--radius-full);
}

/* -------------------- Search Modal -------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-overlay.active + .search-modal,
.search-modal.active {
  transform: translateY(0);
}

.search-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper svg {
  position: absolute;
  left: 1rem;
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  font-size: 1.25rem;
  background: var(--bg-elevated);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  transition: all var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.search-close:hover {
  background: var(--error);
  border-color: var(--error);
  color: var(--white);
}

.search-close svg {
  width: 20px;
  height: 20px;
}

.search-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.search-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.search-hint svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.5;
  display: block;
}

.search-hint p {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
}

.search-results-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.search-result-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
}

.search-result-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.search-result-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-category {
  font-size: 0.75rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.search-result-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-name mark {
  background: rgba(201, 162, 39, 0.3);
  color: var(--secondary);
  padding: 0 2px;
  border-radius: 2px;
}

.search-result-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.search-no-results {
  text-align: center;
  padding: 3rem 1rem;
}

.search-no-results svg {
  width: 64px;
  height: 64px;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.search-no-results h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.search-no-results p {
  color: var(--text-muted);
}

.search-categories {
  margin-top: 2rem;
}

.search-categories h4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-category-chip {
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.search-category-chip:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
}

/* Search keyboard shortcut hint */
.search-shortcut {
  display: none;
  padding: 0.25rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .search-shortcut {
    display: inline-flex;
  }
}

/* Loading state */
.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.search-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* -------------------- Skeleton Loaders -------------------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-elevated) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    var(--bg-elevated) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
}

.skeleton-text.sm {
  height: 0.75rem;
  width: 60%;
}

.skeleton-text.lg {
  height: 1.5rem;
}

.skeleton-title {
  height: 1.75rem;
  width: 70%;
  margin-bottom: 1rem;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
}

.skeleton-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
}

.skeleton-button {
  height: 44px;
  width: 120px;
  border-radius: var(--radius-md);
}

/* Product Card Skeleton */
.product-card-skeleton {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 1rem;
}

.product-card-skeleton .skeleton-image {
  margin-bottom: 1rem;
}

.product-card-skeleton .skeleton-badge {
  height: 24px;
  width: 60px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.product-card-skeleton .skeleton-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-card-skeleton .skeleton-actions .skeleton {
  flex: 1;
  height: 40px;
}

/* Category Card Skeleton */
.category-card-skeleton {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.category-card-skeleton .skeleton-image {
  aspect-ratio: 16/10;
  border-radius: 0;
}

.category-card-skeleton .skeleton-content {
  padding: 1.25rem;
}

/* Testimonial Skeleton */
.testimonial-skeleton {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}

.testimonial-skeleton .skeleton-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.testimonial-skeleton .skeleton-stars {
  height: 20px;
  width: 100px;
  margin: 0 auto 1rem;
}

/* Grid Skeleton */
.products-grid-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.categories-grid-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--gray-800);
  transition: all var(--transition);
}

/* -------------------- Hero Section -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
  overflow: hidden;
}

/* Hero Background Video */
section.hero-video {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%) !important;
}

section.hero-video::before {
  display: none !important;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Animated background shapes */
.hero-video-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 35%);
  animation: heroBackgroundMove 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroBackgroundMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2%, 2%) rotate(2deg);
  }
  50% {
    transform: translate(0, 4%) rotate(0deg);
  }
  75% {
    transform: translate(-2%, 2%) rotate(-2deg);
  }
}

/* Animated Bag Silhouettes Background */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-bag {
  position: absolute;
  color: rgba(201, 162, 39, 0.08);
  filter: blur(1px);
}

.bg-bag svg {
  width: 100%;
  height: 100%;
}

.bg-bag-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: bgBagFloat1 25s ease-in-out infinite;
}

.bg-bag-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 15%;
  animation: bgBagFloat2 20s ease-in-out infinite 2s;
}

.bg-bag-3 {
  width: 250px;
  height: 250px;
  top: 20%;
  right: 10%;
  animation: bgBagFloat3 22s ease-in-out infinite 1s;
}

.bg-bag-4 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 20%;
  animation: bgBagFloat4 18s ease-in-out infinite 3s;
}

.bg-bag-5 {
  width: 220px;
  height: 220px;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  animation: bgBagFloat5 23s ease-in-out infinite 1.5s;
}

@keyframes bgBagFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(30px, 20px) rotate(10deg) scale(1.05); }
  50% { transform: translate(10px, 40px) rotate(-5deg) scale(0.95); }
  75% { transform: translate(-20px, 20px) rotate(5deg) scale(1.02); }
}

@keyframes bgBagFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -30px) rotate(-15deg); }
  66% { transform: translate(-20px, -20px) rotate(10deg); }
}

@keyframes bgBagFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-40px, 30px) rotate(15deg) scale(1.1); }
}

@keyframes bgBagFloat4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-30px, -20px) rotate(-10deg); }
  75% { transform: translate(20px, -30px) rotate(8deg); }
}

@keyframes bgBagFloat5 {
  0%, 100% { transform: translateX(-50%) rotate(0deg); opacity: 0.08; }
  50% { transform: translateX(-50%) translateY(-20px) rotate(5deg); opacity: 0.12; }
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay for text readability */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* Ensure content is above video */
.hero-video .hero-floating-bags,
.hero-video .hero-container,
.hero-video .scroll-indicator {
  position: relative;
  z-index: 2;
}

/* Reduce floating bags opacity when video is present */
.hero-video .floating-bag {
  opacity: 0.3;
}

/* Video poster fallback styling */
.hero-video-bg[poster] {
  background-size: cover;
  background-position: center;
}

/* Pause video on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    animation: none;
  }
}

/* Mobile: Keep animated background (removed static image fallback) */

/* Mobile-first: Responsive animated background bags */
@media (max-width: 768px) {
  .bg-bag-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 2%;
  }

  .bg-bag-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 5%;
  }

  .bg-bag-3 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 5%;
  }

  .bg-bag-4 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 10%;
  }

  .bg-bag-5 {
    width: 90px;
    height: 90px;
    top: 40%;
  }

  .bg-bag {
    color: rgba(201, 162, 39, 0.1);
  }
}

@media (max-width: 480px) {
  .bg-bag-1 {
    width: 80px;
    height: 80px;
  }

  .bg-bag-2 {
    width: 60px;
    height: 60px;
  }

  .bg-bag-3 {
    width: 70px;
    height: 70px;
  }

  .bg-bag-4 {
    width: 50px;
    height: 50px;
  }

  .bg-bag-5 {
    width: 65px;
    height: 65px;
  }
}

/* -------------------- Hero Split Layout (Mobile-first) -------------------- */
.hero-split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0;
}

@media (min-width: 992px) {
  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
  }
}

/* Hero Content */
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-title .text-highlight {
  color: var(--secondary);
}

/* Hero Description */
.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-description {
    font-size: 1.0625rem;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-buttons .btn svg {
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover svg {
  transform: translateX(4px);
}

/* -------------------- Hero Categories (Green Epicure Style) -------------------- */
.hero-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-categories-wrapper {
    gap: 1.5rem;
  }
}

.hero-categories-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

.hero-categories-label::before,
.hero-categories-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}

.hero-categories-label::after {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.hero-categories-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero Category Card with Background Image */
.hero-category-card {
  position: relative;
  display: block;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(201, 162, 39, 0.1);
}

@media (min-width: 768px) {
  .hero-category-card {
    height: 130px;
  }
}

.hero-category-card:hover {
  border-color: var(--secondary);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 162, 39, 0.3),
    inset 0 0 40px rgba(201, 162, 39, 0.1);
}

/* Card Background Image */
.hero-category-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-category-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(1) saturate(1.1);
}

.hero-category-card:hover .hero-category-bg img {
  transform: scale(1.15);
  filter: brightness(1.1) saturate(1.2);
}

/* Card Overlay */
.hero-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.3) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.hero-category-card:hover .hero-category-overlay {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.2) 100%);
}

/* Card Content - Centered */
.hero-category-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.hero-category-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-category-name {
    font-size: 1.75rem;
  }
}

.hero-category-card:hover .hero-category-name {
  color: var(--secondary);
  transform: scale(1.05);
  text-shadow: 0 2px 25px rgba(201, 162, 39, 0.6), 0 0 40px rgba(201, 162, 39, 0.3);
}

.hero-category-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* Card Arrow Button */
.hero-category-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.3);
  border: 2px solid rgba(201, 162, 39, 0.6);
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
}

.hero-category-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.hero-category-card:hover .hero-category-arrow {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
}

.hero-category-card:hover .hero-category-arrow svg {
  color: var(--primary-dark);
  transform: translateX(3px);
}

/* -------------------- Hero Stats Bar (Mobile-first) -------------------- */
.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-stats-bar {
    gap: 4rem;
    padding: 2rem 0;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.8125rem;
  }
}

/* Old floating product styles removed - now using hero-split layout */

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 100px;
}

/* Old duplicate hero styles removed - using hero-split layout above */

.hero-stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .hero-stat-label {
    font-size: 0.875rem;
  }
}

/* Hero Text Highlight Animation */
.text-highlight {
  color: var(--secondary);
  position: relative;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1s ease 0.5s forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* Floating Bag Silhouettes */
.hero-floating-bags {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-bag {
  position: absolute;
  color: rgba(255, 255, 255, 0.03);
  animation: floatBag 20s ease-in-out infinite;
}

.floating-bag svg {
  width: 100%;
  height: 100%;
}

.floating-bag-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.floating-bag-2 {
  top: 60%;
  left: 15%;
  width: 60px;
  height: 60px;
  animation-delay: -5s;
}

.floating-bag-3 {
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  animation-delay: -10s;
}

.floating-bag-4 {
  bottom: 20%;
  right: 20%;
  width: 70px;
  height: 70px;
  animation-delay: -15s;
}

@keyframes floatBag {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) rotate(-3deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-40px) rotate(8deg);
    opacity: 0.9;
  }
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.5s ease 0.2s;
}

.slide.active .slide-label {
  transform: translateY(0);
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slideshow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.slideshow-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slideshow-dot.active {
  background: var(--secondary);
  transform: scale(1.2);
}

/* Hero Rotating Ring */
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotateRing 30s linear infinite;
  pointer-events: none;
}

@keyframes rotateRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* -------------------- Hero Trust Section -------------------- */
.hero-trust {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

/* Video Background Layer */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.75;
}

/* Background Image Layer (fallback) */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  animation: bgZoom 30s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Animated Gradient Mesh Overlay */
.hero-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 80% at 20% 20%, rgba(201, 162, 39, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(201, 162, 39, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 60% 30%, rgba(180, 140, 30, 0.2) 0%, transparent 50%);
  z-index: 1;
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    filter: blur(60px);
  }
  25% {
    transform: scale(1.1) translate(5%, -5%);
    filter: blur(70px);
  }
  50% {
    transform: scale(0.95) translate(-3%, 3%);
    filter: blur(50px);
  }
  75% {
    transform: scale(1.05) translate(-5%, -3%);
    filter: blur(65px);
  }
}

/* Second Mesh Layer - Different timing */
.hero-mesh-bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 40%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(220, 180, 50, 0.15) 0%, transparent 50%);
  z-index: 1;
  animation: meshMove2 25s ease-in-out infinite reverse;
}

@keyframes meshMove2 {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    filter: blur(80px);
  }
  33% {
    transform: scale(1.15) translate(-8%, 5%);
    filter: blur(90px);
  }
  66% {
    transform: scale(0.9) translate(5%, -8%);
    filter: blur(70px);
  }
}

/* Dark Overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.25) 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 2;
}

/* Glowing Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.5) 0%, rgba(201, 162, 39, 0.15) 40%, transparent 70%);
  animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  background: radial-gradient(circle, rgba(220, 180, 50, 0.45) 0%, rgba(201, 162, 39, 0.12) 40%, transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  background: radial-gradient(circle, rgba(180, 140, 30, 0.4) 0%, rgba(201, 162, 39, 0.1) 40%, transparent 70%);
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.1); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(15px, 15px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 20px) scale(1.15); }
  66% { transform: translate(25px, -30px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.2); }
}

/* Subtle Vignette Effect */
.hero-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 4;
}

/* Bottom Fade for smooth transition */
.hero-trust::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #0a0a0a 0%, transparent 100%);
  pointer-events: none;
  z-index: 4;
}

/* Animated particles/dots */
.hero-trust .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.hero-particle {
  position: absolute;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary), 0 0 20px rgba(201, 162, 39, 0.5);
  animation: particleFloat 8s infinite ease-in-out;
}

.hero-particle:nth-child(1) { width: 12px; height: 12px; left: 10%; top: 20%; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 8px; height: 8px; left: 20%; top: 60%; animation-delay: 1s; }
.hero-particle:nth-child(3) { width: 15px; height: 15px; left: 70%; top: 30%; animation-delay: 2s; }
.hero-particle:nth-child(4) { width: 10px; height: 10px; left: 85%; top: 70%; animation-delay: 0.5s; }
.hero-particle:nth-child(5) { width: 6px; height: 6px; left: 50%; top: 80%; animation-delay: 3s; }
.hero-particle:nth-child(6) { width: 14px; height: 14px; left: 30%; top: 40%; animation-delay: 1.5s; }
.hero-particle:nth-child(7) { width: 18px; height: 18px; left: 90%; top: 25%; animation-delay: 0.8s; }
.hero-particle:nth-child(8) { width: 10px; height: 10px; left: 5%; top: 75%; animation-delay: 2s; }
.hero-particle:nth-child(9) { width: 8px; height: 8px; left: 60%; top: 15%; animation-delay: 2.5s; }
.hero-particle:nth-child(10) { width: 12px; height: 12px; left: 40%; top: 85%; animation-delay: 4s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-40px) translateX(15px);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) translateX(-20px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-50px) translateX(10px);
    opacity: 0.9;
  }
}

/* Shimmer Effect */
.hero-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 162, 39, 0.08) 50%,
    transparent 100%
  );
  animation: heroShimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes heroShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero-trust .container {
  position: relative;
  z-index: 10;
}

.hero-trust-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out, badgeGlowPulse 3s ease-in-out infinite 0.6s;
}

@keyframes badgeGlowPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(201, 162, 39, 0.2), 0 0 10px rgba(201, 162, 39, 0.1);
  }
  50% {
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4), 0 0 30px rgba(201, 162, 39, 0.2);
  }
}

.hero-trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.hero-trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.02em;
}

.hero-trust-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.text-gold {
  color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 50%, var(--secondary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGoldGlow 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

@keyframes textGoldGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.6)) drop-shadow(0 0 40px rgba(201, 162, 39, 0.3));
  }
}

.hero-trust-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hero Stats Row */
.hero-trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat-item {
  text-align: center;
  padding: 0 1.5rem;
}

.hero-stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}

/* Hero CTA Buttons */
.hero-trust-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
  flex-wrap: wrap;
}

.hero-trust-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

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

.btn-outline-gold:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), var(--glow-gold);
}

.hero-trust-subtext {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Client Logos Marquee Section */
.clients-marquee-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.6s ease-out 0.6s both;
  text-align: center;
}

.clients-marquee-label {
  font-size: 1.1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.clients-marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.clients-marquee {
  overflow: hidden;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

/* Only pause on hover for devices with a mouse pointer (not touch) */
@media (hover: hover) and (pointer: fine) {
  .clients-marquee-track:hover {
    animation-play-state: paused;
  }
}

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-width: 200px;
  padding: 0.75rem 1.5rem;
  background: #f5f5f5;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.client-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.client-logo-item img {
  height: 60px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: all var(--transition);
}

.client-logo-item:hover img {
  transform: scale(1.05);
}

/* All logos get light gray background for consistency and readability */
.client-logo-item.dark-bg {
  background: #f5f5f5;
  padding: 0.75rem 1.25rem;
}

.client-logo-item.dark-bg img {
  height: 60px;
  width: auto;
  max-width: 170px;
  border-radius: 0;
}

/* Text-only client names */
.client-logo-item.text-only {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-logo-item.text-only:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
}

.client-text-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
  white-space: nowrap;
  transition: all var(--transition);
}

.client-logo-item:hover .client-text-logo {
  color: var(--secondary);
}

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

/* Hero Trust Responsive */
@media (max-width: 768px) {
  .hero-trust {
    min-height: auto;
    padding: 100px 0 50px;
  }

  /* Keep minimum animations on mobile - simplified for performance */
  .hero-mesh-bg-2,
  .hero-noise,
  .hero-grid,
  .hero-network {
    display: none;
  }

  /* Keep orbs but reduce size and simplify animation */
  .hero-orb {
    opacity: 0.15;
    filter: blur(60px);
    animation-duration: 12s;
  }

  .hero-orb-1 { width: 200px; height: 200px; }
  .hero-orb-2 { width: 150px; height: 150px; }
  .hero-orb-3 { width: 180px; height: 180px; }

  /* Keep particles but reduce count visually via opacity */
  .hero-particles {
    opacity: 0.7;
  }

  .hero-particle {
    animation-duration: 12s;
  }

  /* Keep shimmer but slower */
  .hero-shimmer {
    animation-duration: 6s;
  }

  /* Simplify mesh animation on mobile */
  .hero-mesh-bg {
    animation-duration: 30s;
    filter: blur(80px);
  }

  /* Keep background zoom but slower */
  .hero-bg-image {
    animation-duration: 45s;
  }

  .hero-trust-title {
    font-size: 2rem;
  }

  .hero-trust-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-trust-stats {
    gap: 0;
  }

  .hero-stat-item {
    padding: 0 1rem;
  }

  .hero-stat-number {
    font-size: 1.75rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .hero-stat-divider {
    height: 40px;
  }

  .hero-trust-buttons {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .hero-trust-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Client Marquee Mobile */
  .clients-marquee-wrapper::before,
  .clients-marquee-wrapper::after {
    width: 50px;
  }

  .clients-marquee-track {
    gap: 2rem;
    animation-duration: 20s;
  }

  .client-logo-item {
    height: 60px;
    min-width: 130px;
    padding: 0.5rem 0.75rem;
  }

  .client-logo-item img {
    height: 40px;
    width: auto;
    max-width: 110px;
  }

  .client-name {
    font-size: 0.75rem;
  }

  .client-divider {
    font-size: 0.4rem;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    padding: 90px 0 40px;
  }

  .hero-trust-badge {
    padding: 0.375rem 0.75rem;
  }

  .hero-trust-badge span {
    font-size: 0.75rem;
  }

  .hero-trust-title {
    font-size: 1.75rem;
  }

  .hero-stat-item {
    padding: 0 0.75rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .hero-clients-logos {
    gap: 0.4rem;
  }

  .client-name {
    font-size: 0.7rem;
  }
}

/* Fade In Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- 360° Product Viewer -------------------- */
.viewer-360 {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  cursor: grab;
  user-select: none;
}

.viewer-360:active {
  cursor: grabbing;
}

.viewer-360-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    inset 0 0 60px rgba(255, 255, 255, 0.1);
}

.viewer-360-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.viewer-360-frame.active {
  opacity: 1;
}

.viewer-360-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* 360° Drag Hint Overlay */
.viewer-360-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 10;
}

.viewer-360-hint.hidden {
  opacity: 0;
}

.viewer-360-hint svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  animation: swipeHint 2s ease-in-out infinite;
}

.viewer-360-hint span {
  font-size: 1rem;
  font-weight: 500;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(-15px); }
  50% { transform: translateX(15px); }
}

/* 360° Badge */
.viewer-360-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
}

.viewer-360-badge svg {
  width: 16px;
  height: 16px;
  animation: spin360badge 3s linear infinite;
}

@keyframes spin360badge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 360° Progress Indicator */
.viewer-360-progress {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 5;
}

.viewer-360-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.viewer-360-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* Featured Product 360° Section */
.featured-360-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.featured-360-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-360-viewer {
  position: relative;
}

.featured-360-content {
  padding: 2rem 0;
}

.featured-360-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--secondary);
  color: var(--gray-900);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-360-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.featured-360-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.featured-360-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.featured-360-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--gray-700);
}

.featured-360-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--success);
}

.featured-360-actions {
  display: flex;
  gap: 1rem;
}

/* -------------------- 3D Card Tilt Effect -------------------- */
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.1s ease;
}

.card-3d-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.card-3d:hover .card-3d-inner {
  transform: translateZ(20px);
}

/* Card Glare Effect */
.card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.card-3d:hover .card-glare {
  opacity: 1;
}

/* Enhanced Category Card with 3D Effect */
.category-card.card-3d {
  overflow: visible;
}

.category-card.card-3d .category-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card.card-3d:hover .category-image {
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Pulse Animation */
.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
}

/* Legacy hero-image support */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* -------------------- Global Scroll Animations -------------------- */
/* AOS (Animate On Scroll) Implementation */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="flip-up"] {
  transform: perspective(500px) rotateX(15deg);
}

[data-aos="flip-up"].aos-animate {
  transform: perspective(500px) rotateX(0);
}

/* Animation Delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* Hover Animations for Cards */
.card-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Shimmer Loading Effect */
.shimmer {
  background: linear-gradient(90deg,
    var(--gray-200) 0%,
    var(--gray-100) 50%,
    var(--gray-200) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

/* Bounce Animation */
.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Spin Animation */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scale on Hover */
.hover-scale {
  transition: transform 0.3s ease;
}

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

/* Glow Effect */
.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
  opacity: 1;
}

/* Staggered Children Animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.8s; }

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image Reveal Animation */
.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.image-reveal.revealed::before {
  transform: scaleX(0);
}

/* -------------------- USP Section -------------------- */
.usp-section {
  padding: 4rem 0;
  background-color: var(--bg-card);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.usp-container {
  background-color: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.usp-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.usp-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.usp-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.usp-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* -------------------- Categories Section -------------------- */
.categories-section {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-xl), var(--glow-gold);
}

.category-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.category-name {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

.category-count {
  color: var(--secondary);
  font-size: 0.875rem;
}

/* -------------------- Why Choose Us Section -------------------- */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary);
  color: #1a1a1a;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-image-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
}

.why-image-badge .label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
}

.why-content h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.why-content > p {
  color: #b0b0b0;
  margin-bottom: 2rem;
}

/* Why Features List - New Simplified Structure */
.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: table;
  width: 100%;
}

.why-item-icon {
  display: table-cell;
  width: 44px;
  vertical-align: top;
  padding-right: 12px;
}

.why-item-icon svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  color: var(--secondary);
}

.why-item-text {
  display: table-cell;
  vertical-align: top;
}

.why-item-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.why-item-text span {
  display: block;
  font-size: 0.875rem;
  color: #b0b0b0;
  line-height: 1.5;
}

/* Mobile responsive for why-features */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-item-icon {
    width: 40px;
    padding-right: 10px;
  }

  .why-item-icon svg {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .why-item-text strong {
    font-size: 0.9375rem;
  }

  .why-item-text span {
    font-size: 0.8125rem;
    line-height: 1.45;
  }
}

/* -------------------- Testimonials Section -------------------- */
/* -------------------- Testimonials Section V2 -------------------- */
.testimonials-section {
  padding: 5rem 0 4rem;
  margin-bottom: 3rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
  overflow-x: clip;
  overflow-y: visible;
}

.testimonials-section .section-label {
  display: block;
  text-align: center;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.testimonials-section .section-title {
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
  overflow: visible;
  padding: 110px 0 1rem;
  margin: 0 -1rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
  transition: transform 0.5s ease;
  cursor: grab;
}

.testimonials-carousel:active {
  cursor: grabbing;
}

/* Testimonial Item */
.testimonial-item {
  position: relative;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

/* Avatar with Circular Ring */
.testimonial-avatar-wrapper {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #2d8a7b 0deg, #2d8a7b 270deg, transparent 270deg, transparent 360deg);
  padding: 5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--bg-card);
  background: var(--bg-elevated);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 4px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

/* Card V2 */
.testimonial-card-v2 {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 100px 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-name {
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-position {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.testimonial-role,
.testimonial-company {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.testimonial-card-v2 .testimonial-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  flex-grow: 1;
  min-height: 80px;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.testimonial-stars span {
  color: #f5b800;
  font-size: 1.25rem;
}

/* Carousel Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

.testimonial-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.testimonial-indicator #testimonialCurrent {
  color: var(--secondary);
  font-size: 1.25rem;
}

.testimonial-indicator .separator {
  color: var(--text-muted);
}
  font-size: 1.5rem;
}

/* Responsive Testimonials */
@media (max-width: 992px) {
  .testimonial-item {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 2rem;
  }

  .testimonial-item {
    flex: 0 0 280px;
  }

  .testimonial-avatar-wrapper {
    width: 140px;
    height: 140px;
    top: -70px;
  }

  .testimonial-card-v2 {
    padding: 85px 1.25rem 1.25rem;
    min-height: 300px;
  }
}

/* -------------------- CTA Section -------------------- */
.cta-section {
  padding: 5rem 0;
  margin-bottom: 3rem;
  background-color: var(--bg-dark);
}

.cta-container {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
}

.cta-container h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.cta-container p {
  color: rgba(0, 0, 0, 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background-color: var(--primary-dark);
  color: var(--white);
  border: 2px solid var(--primary-dark);
  min-width: 180px;
}

.cta-buttons .btn-primary {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

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

.cta-buttons .btn-outline {
  background-color: var(--primary-dark);
  color: var(--white);
  border: 2px solid var(--primary-dark);
}

.cta-buttons .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Mobile Responsive */
@media (max-width: 768px) {
  .cta-container {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }

  .cta-container h2 {
    font-size: 1.5rem;
  }

  .cta-container p {
    font-size: 0.9375rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* -------------------- Footer -------------------- */
.footer {
  background-color: var(--bg-card);
  color: var(--text-secondary);
  padding-top: 5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand p {
  margin: 1rem 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
  box-shadow: var(--glow-gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item.gstin-item {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-contact-item.gstin-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-item.gstin-item strong {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* Admin link - subtle styling */
.footer-bottom-links .admin-link {
  opacity: 0.5;
  transition: opacity var(--transition);
}

.footer-bottom-links .admin-link:hover {
  opacity: 1;
  color: var(--secondary);
}

/* -------------------- WhatsApp Float Button -------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition);
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

/* WhatsApp Welcome Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl), 0 0 20px rgba(37, 211, 102, 0.2);
  z-index: 998;
  max-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: popupBounce 0.5s ease-out, popupPulse 2s ease-in-out 0.5s infinite;
}

@keyframes popupBounce {
  0% {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes popupPulse {
  0%, 100% {
    box-shadow: var(--shadow-xl), 0 0 20px rgba(37, 211, 102, 0.2);
  }
  50% {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 28px;
  width: 16px;
  height: 16px;
  background: var(--bg-elevated);
  transform: rotate(45deg);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.whatsapp-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  border: none;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-500);
}

.whatsapp-popup-close:hover {
  background: var(--gray-200);
}

.whatsapp-popup p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.whatsapp-popup strong {
  color: #25d366;
}

/* -------------------- Mobile Sticky CTA -------------------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  z-index: 997;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta-content {
  display: flex;
  gap: 0.75rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.mobile-sticky-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
}

.mobile-sticky-cta .btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

.mobile-sticky-cta .btn-whatsapp:hover {
  background: #20bd5a;
}

.mobile-sticky-cta .btn svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-popup {
    bottom: 140px;
    right: 20px;
    max-width: 220px;
  }

  /* Add padding to footer to account for sticky CTA */
  .footer {
    padding-bottom: 80px;
  }
}

/* -------------------- Cart Drawer -------------------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  z-index: 1002;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-header h3 {
  color: var(--text-primary);
}

.cart-header h3 {
  margin: 0;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--bg-elevated);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.cart-close:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.cart-item-category {
  font-size: 0.875rem;
  color: var(--secondary);
}

.cart-item-min-order {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.qty-btn:hover {
  background-color: var(--gray-100);
}

.cart-item-remove {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.cart-item-remove:hover {
  text-decoration: underline;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-elevated);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-actions .btn {
  width: 100%;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
}

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

/* -------------------- Toast Notifications -------------------- */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1003;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--gray-800);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform var(--transition);
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  background-color: var(--success);
}

.toast-error {
  background-color: var(--error);
}

.toast svg {
  width: 20px;
  height: 20px;
}

/* -------------------- Page Header (for inner pages) -------------------- */
.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  margin-top: var(--header-height);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-300);
  font-size: 0.9375rem;
}

.breadcrumb a {
  color: var(--gray-300);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

/* Main content offset for fixed header */
main {
  padding-top: var(--header-height);
}

/* Page without hero (inner pages) */
.page-content {
  padding: 3rem 0 5rem;
}

/* ========================================
   ADVANCED ANIMATIONS & EFFECTS
   ======================================== */

/* -------------------- Scroll Reveal Animations -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.active > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.active > *:nth-child(8) { transition-delay: 0.8s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- Floating Animation -------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(5deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-5deg); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.float-delay-1 { animation-delay: 0.5s; }
.float-delay-2 { animation-delay: 1s; }
.float-delay-3 { animation-delay: 1.5s; }

/* -------------------- Parallax Effect -------------------- */
.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 200%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* -------------------- Text Animations -------------------- */
@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0); }
  50% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3); }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.text-reveal {
  animation: textReveal 1s ease-out forwards;
}

.text-glow {
  animation: textGlow 3s ease-in-out infinite;
}

.text-gradient-animate {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s linear infinite;
}

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

/* Letter by letter animation */
.animate-letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterReveal 0.5s ease forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- Counter Animation -------------------- */
.counter-animate {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* -------------------- Pulse & Glow Effects -------------------- */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Button ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.btn-ripple:active::after {
  animation: ripple 0.6s ease-out;
}

/* -------------------- Hover Micro-interactions -------------------- */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-shake:hover {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px) rotate(-2deg); }
  40% { transform: translateX(5px) rotate(2deg); }
  60% { transform: translateX(-5px) rotate(-2deg); }
  80% { transform: translateX(5px) rotate(2deg); }
}

/* Icon bounce on hover */
.hover-bounce:hover svg,
.hover-bounce:hover .icon {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(-4px); }
  75% { transform: translateY(-6px); }
}

/* -------------------- Magnetic Button Effect -------------------- */
.btn-magnetic {
  transition: transform 0.3s ease;
}

/* -------------------- Image Effects -------------------- */
.img-zoom-container {
  overflow: hidden;
}

.img-zoom {
  transition: transform 0.5s ease;
}

.img-zoom-container:hover .img-zoom {
  transform: scale(1.1);
}

.img-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s ease;
}

.img-reveal.active {
  clip-path: inset(0 0 0 0);
}

/* -------------------- Shimmer Loading Effect -------------------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--gray-200) 25%,
    var(--gray-100) 50%,
    var(--gray-200) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* -------------------- Morphing Background -------------------- */
@keyframes morphBg {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.morph-bg {
  animation: morphBg 8s ease-in-out infinite;
}

/* -------------------- Scroll Progress Indicator -------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* -------------------- Decorative Elements -------------------- */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(30, 58, 95, 0.1));
  pointer-events: none;
}

.decoration-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: floatSlow 10s ease-in-out infinite;
}

.decoration-circle-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -50px;
  animation: floatSlow 12s ease-in-out infinite reverse;
}

/* -------------------- Gradient Border Animation -------------------- */
@keyframes borderRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

.gradient-border {
  --angle: 0deg;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              conic-gradient(from var(--angle), var(--primary), var(--secondary), var(--primary)) border-box;
  animation: borderRotate 4s linear infinite;
}

/* -------------------- Split Text Reveal -------------------- */
.split-reveal {
  overflow: hidden;
}

.split-reveal > span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-reveal.active > span {
  transform: translateY(0);
}

/* -------------------- Enhanced USP Animation -------------------- */
.usp-item {
  transition: all 0.4s ease;
}

.usp-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(201, 162, 39, 0.1) 100%);
}

.usp-item:hover .usp-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.usp-item:hover .usp-icon svg {
  color: var(--white);
}

/* -------------------- Enhanced Category Card Animation -------------------- */
.category-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.category-card:hover::before {
  opacity: 1;
}

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

.category-card:hover .category-overlay {
  background: linear-gradient(transparent, rgba(30, 58, 95, 0.95));
}

/* -------------------- Enhanced Why Item Animation -------------------- */
.why-item {
  transition: background 0.3s ease;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
}

.why-item:hover {
  background: rgba(201, 162, 39, 0.08);
}

.why-item:hover .why-item-icon svg {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* -------------------- CTA Section Enhancement -------------------- */
.cta-container {
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ctaShine 8s linear infinite;
  pointer-events: none;
}

@keyframes ctaShine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* -------------------- Testimonial Card Enhancement -------------------- */
.testimonial-card {
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  border-color: var(--secondary);
}

/* -------------------- Smooth Section Transitions -------------------- */
.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, transparent);
  pointer-events: none;
}

/* -------------------- Mouse Follower Cursor -------------------- */
.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0;
}

.cursor-follower.active {
  opacity: 1;
}

.cursor-follower.hover {
  transform: scale(1.5);
  background: rgba(212, 175, 55, 0.1);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .cursor-follower {
    display: none;
  }
}

/* -------------------- Login Modal -------------------- */
.login-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.login-modal {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.login-overlay.active .login-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}

.login-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.login-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--bg-elevated);
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.login-close:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
}

.login-close svg {
  width: 20px;
  height: 20px;
}

.login-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  margin: 1rem 1.5rem 0;
}

.login-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color var(--transition);
}

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

.login-tab.active {
  color: var(--secondary);
}

.login-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--secondary);
}

.login-body {
  padding: 1.5rem;
}

.login-form {
  display: none;
}

.login-form.active {
  display: block;
}

.login-form .form-group {
  margin-bottom: 1rem;
}

.login-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.login-form .form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.login-form .form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.login-form .form-group input.error {
  border-color: var(--error);
}

.login-form .form-error {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.login-form .form-error.show {
  display: block;
}

.login-form .forgot-password {
  text-align: right;
  margin-bottom: 1rem;
}

.login-form .forgot-password a {
  color: var(--secondary);
  font-size: 0.875rem;
  text-decoration: none;
}

.login-form .forgot-password a:hover {
  text-decoration: underline;
}

.login-form .btn-login {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.login-form .btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-subtle);
}

.login-divider span {
  padding: 0 1rem;
}

.login-guest-info {
  text-align: center;
  padding: 1rem;
  background-color: var(--bg-elevated);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.login-guest-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.login-success {
  text-align: center;
  padding: 2rem 1rem;
}

.login-success svg {
  width: 64px;
  height: 64px;
  color: var(--success);
  margin-bottom: 1rem;
}

.login-success h4 {
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.login-success p {
  margin: 0;
  color: var(--text-secondary);
}

/* User Account Button in Header */
.user-menu {
  position: relative;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background-color: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition);
}

.user-btn:hover {
  background-color: var(--bg-elevated);
  border-color: var(--secondary);
}

.user-btn svg {
  width: 20px;
  height: 20px;
}

.user-btn .user-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 9999;
}

.user-menu.open .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.user-dropdown-item:hover {
  background-color: var(--bg-elevated);
}

.user-dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.user-dropdown-item.logout {
  color: var(--error);
  border-top: 1px solid var(--border-subtle);
}

.user-dropdown-item.logout svg {
  color: var(--error);
}

/* Admin link in dropdown */
.user-dropdown-item.admin-link {
  color: var(--secondary);
}

.user-dropdown-item.admin-link svg {
  color: var(--secondary);
}

.user-dropdown-divider {
  height: 1px;
  background-color: var(--border-subtle);
  margin: 0.25rem 0;
}

/* Login button for non-logged-in state */
.login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition);
}

.login-btn:hover {
  background-color: #b8922a;
  color: var(--primary-dark);
}

.login-btn svg {
  width: 18px;
  height: 18px;
}

/* Password Reset Form */
.reset-form {
  display: none;
}

.reset-form.active {
  display: block;
}

.back-to-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}

.back-to-login:hover {
  color: var(--secondary);
}

.back-to-login svg {
  width: 16px;
  height: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .login-modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .user-btn .user-name {
    display: none;
  }

  .login-btn span {
    display: none;
  }

  .login-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full);
    justify-content: center;
  }

  .login-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* -------------------- Recently Viewed Section -------------------- */
.recently-viewed-section {
  padding: 3rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.recently-viewed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.recently-viewed-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--border-subtle);
}

.recently-viewed-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.recently-viewed-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-200);
}

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

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

.recently-viewed-info {
  padding: 0.75rem;
}

.recently-viewed-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recently-viewed-meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .recently-viewed-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .recently-viewed-info {
    padding: 0.5rem;
  }

  .recently-viewed-name {
    font-size: 0.75rem;
  }
}

/* -------------------- Lazy Loading Styles -------------------- */
img[data-lazy-src] {
  background: linear-gradient(110deg, var(--gray-200) 8%, var(--gray-300) 18%, var(--gray-200) 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  opacity: 0.7;
}

img.lazy-loaded {
  animation: lazyFadeIn 0.3s ease-out forwards;
  background: none;
}

img.lazy-error {
  opacity: 0.5;
}

@keyframes lazyFadeIn {
  from {
    opacity: 0.7;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Native lazy loading enhancement */
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}

img[loading="lazy"]:not([src]) {
  opacity: 0;
}

/* -------------------- Reduced Motion Accessibility -------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Disable hero animations */
  .hero-mesh-bg,
  .hero-mesh-bg-2,
  .hero-orb,
  .hero-particles,
  .hero-particle,
  .hero-shimmer,
  .hero-bg-image,
  .hero-grid,
  .hero-network,
  .hero-noise {
    animation: none !important;
  }

  /* Keep elements visible but static */
  .hero-orb {
    opacity: 0.1;
  }

  .hero-particle {
    opacity: 0.3;
  }

  /* Disable floating animations */
  .floating,
  [class*="float"] {
    animation: none !important;
  }

  /* Disable shimmer effects */
  .shimmer,
  [class*="shimmer"] {
    animation: none !important;
    background-size: 100% 100% !important;
  }

  /* Static backgrounds */
  .hero-bg-image {
    transform: scale(1) !important;
  }

  /* Disable counter animations - just show final value */
  .counter-number,
  .stat-number,
  [data-target] {
    transition: none !important;
  }

  /* Disable carousel auto-rotation */
  .testimonials-carousel,
  .carousel {
    scroll-behavior: auto !important;
  }

  /* Disable hover transforms */
  .product-card:hover,
  .service-card:hover,
  .project-card:hover,
  .logo-card:hover {
    transform: none !important;
  }
}

/* -------------------- Legal Pages Styles -------------------- */
.legal-page {
  padding: 4rem 0;
  background: var(--background);
  min-height: calc(100vh - 200px);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.legal-content .last-updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.legal-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.legal-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-section a {
  color: var(--secondary);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-section .contact-info {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-top: 1rem;
}

.legal-section .contact-info p {
  margin-bottom: 0.5rem;
}

.legal-section .contact-info p:last-child {
  margin-bottom: 0;
}

/* -------------------- Breadcrumb Navigation -------------------- */
.breadcrumb-nav {
  background: var(--card-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-top: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb li[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}
