/* ============================================================
   Exira — Enhanced Design System
   Pharmacy E-Commerce for Saudi Arabia
   ============================================================ */

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

/* ============================================================
   CSS RESET — ensures consistency across ALL pages
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--v-font-body);
  color: var(--v-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* Brand Colors - Medical Trust + Premium */
  --v-primary: #0B8C7B;
  --v-primary-dark: #087A6B;
  --v-primary-light: #E8F6F4;
  --v-primary-soft: rgba(11, 140, 123, 0.12);
  
  --v-secondary: #1E5F8E;
  --v-secondary-soft: rgba(30, 95, 142, 0.1);
  
  --v-accent: #C9A84C;
  --v-accent-soft: rgba(201, 168, 76, 0.15);
  
  /* Neutral Scale */
  --v-white: #FFFFFF;
  --v-gray-50: #FAFBFC;
  --v-gray-100: #F0F2F5;
  --v-gray-200: #E1E5EA;
  --v-gray-300: #C5CBD3;
  --v-gray-400: #9BA3B0;
  --v-gray-500: #6B7280;
  --v-gray-600: #4B5563;
  --v-gray-700: #374151;
  --v-gray-800: #1F2937;
  --v-gray-900: #111827;
  
  /* Semantic Colors */
  --v-success: #059669;
  --v-success-soft: rgba(5, 150, 105, 0.1);
  --v-warning: #D97706;
  --v-warning-soft: rgba(217, 119, 6, 0.1);
  --v-danger: #DC2626;
  --v-danger-soft: rgba(220, 38, 38, 0.1);
  --v-info: #2563EB;
  --v-info-soft: rgba(37, 99, 235, 0.1);
  
  /* Backgrounds */
  --v-bg: #F8FAFC;
  --v-bg-warm: #FDFCFA;
  --v-surface: #FFFFFF;
  --v-surface-elevated: #FFFFFF;
  
  /* Text */
  --v-text-primary: #1E293B;
  --v-text-secondary: #64748B;
  --v-text-tertiary: #94A3B8;
  --v-text-inverse: #FFFFFF;
  
  /* Borders */
  --v-border: rgba(148, 163, 184, 0.2);
  --v-border-strong: rgba(148, 163, 184, 0.3);
  
  /* Shadows - Medical Clean */
  --v-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --v-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --v-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --v-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --v-shadow-glow: 0 0 40px rgba(11, 140, 123, 0.15);
  --v-shadow-card: 0 2px 8px rgba(30, 41, 59, 0.08), 0 0 1px rgba(30, 41, 59, 0.1);
  --v-shadow-card-hover: 0 12px 32px rgba(30, 41, 59, 0.15), 0 0 1px rgba(30, 41, 59, 0.1);
  
  /* Radius */
  --v-radius-sm: 8px;
  --v-radius-md: 12px;
  --v-radius-lg: 16px;
  --v-radius-xl: 24px;
  --v-radius-2xl: 32px;
  --v-radius-full: 9999px;
  
  /* Spacing Scale */
  --v-space-1: 4px;
  --v-space-2: 8px;
  --v-space-3: 12px;
  --v-space-4: 16px;
  --v-space-5: 20px;
  --v-space-6: 24px;
  --v-space-8: 32px;
  --v-space-10: 40px;
  --v-space-12: 48px;
  --v-space-16: 64px;
  --v-space-20: 80px;
  
  /* Typography */
  --v-font-heading: "Alexandria", "Tajawal", system-ui, sans-serif;
  --v-font-body: "Tajawal", "Alexandria", system-ui, sans-serif;
  
  /* Transitions */
  --v-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --v-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --v-transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --v-transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Z-Index Scale */
  --v-z-dropdown: 100;
  --v-z-sticky: 200;
  --v-z-modal: 300;
  --v-z-tooltip: 400;
  --v-z-toast: 500;
  
  /* Container */
  --v-container: min(1280px, calc(100% - 48px));
}

/* ============================================================
   ANIMATION KEYFRAMES
   ============================================================ */

@keyframes vFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes vFadeInScale {
  from { 
    opacity: 0; 
    transform: scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes vSlideInRight {
  from { 
    opacity: 0; 
    transform: translateX(-40px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes vSlideInLeft {
  from { 
    opacity: 0; 
    transform: translateX(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes vPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(11, 140, 123, 0.4); 
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 0 0 12px rgba(11, 140, 123, 0); 
  }
}

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

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

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

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

@keyframes vHeartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.15); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  70% { transform: scale(1); }
}

@keyframes vGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes vRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   ANIMATION UTILITY CLASSES
   ============================================================ */

.v-animate {
  animation-fill-mode: both;
}

.v-animate-fade-in { animation: vFadeIn 0.6s var(--v-transition-base) both; }
.v-animate-fade-up { animation: vFadeInUp 0.7s var(--v-transition-base) both; }
.v-animate-fade-down { animation: vFadeInDown 0.5s var(--v-transition-base) both; }
.v-animate-fade-scale { animation: vFadeInScale 0.5s var(--v-transition-base) both; }
.v-animate-slide-right { animation: vSlideInRight 0.6s var(--v-transition-base) both; }
.v-animate-slide-left { animation: vSlideInLeft 0.6s var(--v-transition-base) both; }

/* Stagger delays */
.v-delay-1 { animation-delay: 0.1s; }
.v-delay-2 { animation-delay: 0.2s; }
.v-delay-3 { animation-delay: 0.3s; }
.v-delay-4 { animation-delay: 0.4s; }
.v-delay-5 { animation-delay: 0.5s; }
.v-delay-6 { animation-delay: 0.6s; }

/* Scroll-triggered animations */
.v-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--v-transition-base), transform 0.6s var(--v-transition-base);
}

.v-reveal.v-visible {
  opacity: 1;
  transform: translateY(0);
}

.v-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--v-transition-base), transform 0.6s var(--v-transition-base);
}

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

.v-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--v-transition-base), transform 0.6s var(--v-transition-base);
}

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

.v-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s var(--v-transition-base), transform 0.5s var(--v-transition-base);
}

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

/* ============================================================
   HOVER & INTERACTION EFFECTS
   ============================================================ */

/* Card lift effect */
.v-card-lift {
  transition: transform var(--v-transition-base), box-shadow var(--v-transition-base);
}

.v-card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--v-shadow-card-hover);
}

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

.v-btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.v-btn-shine:hover::after {
  left: 100%;
}

/* Magnetic hover (subtle pull) */
.v-magnetic {
  transition: transform var(--v-transition-fast);
}

/* Glow on hover */
.v-glow-hover {
  transition: box-shadow var(--v-transition-base);
}

.v-glow-hover:hover {
  box-shadow: var(--v-shadow-glow);
}

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

.v-img-zoom img {
  transition: transform var(--v-transition-slow);
}

.v-img-zoom:hover img {
  transform: scale(1.08);
}

/* Underline slide */
.v-underline-slide {
  position: relative;
}

.v-underline-slide::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--v-primary);
  transition: width var(--v-transition-base);
}

.v-underline-slide:hover::after {
  width: 100%;
}

/* Border glow */
.v-border-glow {
  position: relative;
}

.v-border-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--v-primary), var(--v-accent));
  opacity: 0;
  transition: opacity var(--v-transition-base);
  z-index: -1;
}

.v-border-glow:hover::before {
  opacity: 1;
}

/* ============================================================
   LOADING & SKELETON STATES
   ============================================================ */

.v-skeleton {
  background: linear-gradient(90deg, var(--v-gray-100) 25%, var(--v-gray-200) 50%, var(--v-gray-100) 75%);
  background-size: 200% 100%;
  animation: vShimmer 1.5s infinite;
  border-radius: var(--v-radius-md);
}

.v-skeleton-text {
  height: 16px;
  margin-bottom: 8px;
}

.v-skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: 12px;
}

.v-skeleton-circle {
  border-radius: var(--v-radius-full);
}

.v-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--v-gray-200);
  border-top-color: var(--v-primary);
  border-radius: 50%;
  animation: vSpin 0.8s linear infinite;
}

.v-spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 4px;
}

/* ============================================================
   PRODUCT CARD COMPONENT
   ============================================================ */

.v-product-card {
  position: relative;
  background: var(--v-surface);
  border-radius: var(--v-radius-xl);
  overflow: hidden;
  box-shadow: var(--v-shadow-card);
  transition: transform var(--v-transition-base), box-shadow var(--v-transition-base);
  border: 1px solid var(--v-border);
}

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

.v-product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--v-gray-50), var(--v-gray-100));
}

.v-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform var(--v-transition-slow);
}

.v-product-card:hover .v-product-card__image img {
  transform: scale(1.08);
}

.v-product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--v-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.v-product-card__badge--sale {
  background: var(--v-danger);
  color: var(--v-text-inverse);
}

.v-product-card__badge--new {
  background: var(--v-primary);
  color: var(--v-text-inverse);
}

.v-product-card__badge--bestseller {
  background: var(--v-accent);
  color: var(--v-text-inverse);
}

.v-product-card__actions {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--v-transition-base), transform var(--v-transition-base);
}

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

.v-product-card__action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--v-radius-full);
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--v-transition-fast);
  box-shadow: var(--v-shadow-sm);
}

.v-product-card__action-btn:hover {
  background: var(--v-primary);
  color: var(--v-text-inverse);
  border-color: var(--v-primary);
}

.v-product-card__content {
  padding: 16px;
}

.v-product-card__brand {
  font-size: 0.75rem;
  color: var(--v-text-tertiary);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.v-product-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--v-text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.v-product-card__stars {
  color: var(--v-accent);
  font-size: 0.85rem;
}

.v-product-card__reviews {
  font-size: 0.75rem;
  color: var(--v-text-tertiary);
}

.v-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--v-border);
}

.v-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v-product-card__price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--v-primary);
}

.v-product-card__price-old {
  font-size: 0.85rem;
  color: var(--v-text-tertiary);
  text-decoration: line-through;
}

.v-product-card__add-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--v-radius-full);
  background: var(--v-primary);
  color: var(--v-text-inverse);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--v-transition-fast);
  box-shadow: 0 4px 12px rgba(11, 140, 123, 0.3);
}

.v-product-card__add-btn:hover {
  background: var(--v-primary-dark);
  transform: scale(1.1);
}

/* ============================================================
   BUTTON COMPONENTS
   ============================================================ */

.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--v-radius-full);
  font-family: var(--v-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--v-transition-fast);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.v-btn--primary {
  background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
  color: var(--v-text-inverse);
  box-shadow: 0 4px 16px rgba(11, 140, 123, 0.3);
}

.v-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 140, 123, 0.4);
}

.v-btn--secondary {
  background: var(--v-surface);
  color: var(--v-text-primary);
  border-color: var(--v-border);
}

.v-btn--secondary:hover {
  background: var(--v-gray-50);
  border-color: var(--v-border-strong);
}

.v-btn--accent {
  background: linear-gradient(135deg, var(--v-accent), #B8941F);
  color: var(--v-text-inverse);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.v-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.v-btn--ghost {
  background: transparent;
  color: var(--v-text-primary);
}

.v-btn--ghost:hover {
  background: var(--v-gray-100);
}

.v-btn--danger {
  background: var(--v-danger);
  color: var(--v-text-inverse);
}

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

.v-btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.v-btn--icon {
  padding: 10px;
  border-radius: var(--v-radius-full);
}

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

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

.v-btn--ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: vRipple 0.6s linear;
  pointer-events: none;
}

/* ============================================================
   BADGE COMPONENT
   ============================================================ */

.v-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--v-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.v-badge--primary { background: var(--v-primary-soft); color: var(--v-primary); }
.v-badge--success { background: var(--v-success-soft); color: var(--v-success); }
.v-badge--warning { background: var(--v-warning-soft); color: var(--v-warning); }
.v-badge--danger { background: var(--v-danger-soft); color: var(--v-danger); }
.v-badge--info { background: var(--v-info-soft); color: var(--v-info); }

/* ============================================================
   INPUT COMPONENTS
   ============================================================ */

.v-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  font-family: var(--v-font-body);
  font-size: 0.95rem;
  color: var(--v-text-primary);
  background: var(--v-surface);
  transition: border-color var(--v-transition-fast), box-shadow var(--v-transition-fast);
}

.v-input:focus {
  outline: none;
  border-color: var(--v-primary);
  box-shadow: 0 0 0 4px var(--v-primary-soft);
}

.v-input::placeholder {
  color: var(--v-text-tertiary);
}

.v-input-group {
  position: relative;
}

.v-input-group__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--v-text-tertiary);
  pointer-events: none;
}

.v-input--with-icon {
  padding-right: 48px;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */

.v-toast-container {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: var(--v-z-toast);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.v-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--v-radius-lg);
  background: var(--v-surface);
  box-shadow: var(--v-shadow-xl);
  border: 1px solid var(--v-border);
  pointer-events: all;
  animation: vSlideInRight 0.4s var(--v-transition-bounce);
  max-width: 400px;
}

.v-toast--success { border-right: 4px solid var(--v-success); }
.v-toast--error { border-right: 4px solid var(--v-danger); }
.v-toast--warning { border-right: 4px solid var(--v-warning); }
.v-toast--info { border-right: 4px solid var(--v-info); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.v-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.v-section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--v-primary-soft);
  color: var(--v-primary);
  border-radius: var(--v-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.v-section-header__title {
  font-family: var(--v-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--v-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.v-section-header__subtitle {
  font-size: 1.1rem;
  color: var(--v-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.v-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--v-bg-warm) 0%, var(--v-primary-light) 100%);
}

.v-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v-hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 140, 123, 0.1), transparent 70%);
  border-radius: 50%;
}

.v-hero__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  border-radius: 50%;
}

.v-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.v-hero__title {
  font-family: var(--v-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--v-text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.v-hero__title span {
  color: var(--v-primary);
  position: relative;
}

.v-hero__title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--v-primary-soft);
  border-radius: 4px;
  z-index: -1;
}

.v-hero__subtitle {
  font-size: 1.15rem;
  color: var(--v-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.v-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.v-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--v-border);
}

.v-hero__stat {
  text-align: center;
}

.v-hero__stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--v-primary);
}

.v-hero__stat-label {
  font-size: 0.85rem;
  color: var(--v-text-tertiary);
  margin-top: 4px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --v-container: calc(100% - 24px);
  }
  
  .v-hero {
    padding: 48px 0;
  }
  
  .v-hero__title {
    font-size: 2rem;
  }
  
  .v-hero__stats {
    gap: 16px;
    justify-content: center;
  }
  
  .v-section-header__title {
    font-size: 1.5rem;
  }
  
  .v-product-card__actions {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.v-container {
  width: var(--v-container);
  margin-inline: auto;
}

.v-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.v-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.v-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

@media (max-width: 1024px) {
  .v-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .v-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .v-grid-2,
  .v-grid-3,
  .v-grid-4,
  .v-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .v-grid-2,
  .v-grid-3,
  .v-grid-4,
  .v-grid-5 { grid-template-columns: 1fr; }
}

.v-flex { display: flex; }
.v-flex-col { flex-direction: column; }
.v-items-center { align-items: center; }
.v-justify-between { justify-content: space-between; }
.v-gap-2 { gap: 8px; }
.v-gap-4 { gap: 16px; }
.v-gap-6 { gap: 24px; }

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

.v-mb-2 { margin-bottom: 8px; }
.v-mb-4 { margin-bottom: 16px; }
.v-mb-6 { margin-bottom: 24px; }
.v-mb-8 { margin-bottom: 32px; }

.v-p-4 { padding: 16px; }
.v-p-6 { padding: 24px; }

.v-rounded-lg { border-radius: var(--v-radius-lg); }
.v-rounded-xl { border-radius: var(--v-radius-xl); }

.v-bg-surface { background: var(--v-surface); }
.v-bg-primary-soft { background: var(--v-primary-soft); }

/* Focus visible for accessibility */
*:focus-visible {
  outline: 3px solid var(--v-primary);
  outline-offset: 2px;
}

/* ============================================================
   SHARED NAVBAR & FOOTER
   ============================================================ */

/* ============================================================
   UNIFIED NAVBAR — Exira Header
   ============================================================ */

/* Container utility */
.exira-container {
  width: var(--v-container);
  margin-inline: auto;
  padding-inline: var(--v-space-4);
}

/* Header wrapper */
.exira-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--v-z-sticky);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--v-border);
  transition: box-shadow var(--v-transition-base);
}
.exira-header--scrolled {
  box-shadow: var(--v-shadow-md);
}

/* Topbar */
.exira-topbar {
  background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
  color: var(--v-text-inverse);
  font-size: 0.75rem;
  padding: 6px 0;
}
.exira-topbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.exira-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.exira-topbar__icon {
  font-size: 0.85rem;
}
.exira-topbar__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* Navbar */
.exira-navbar {
  padding: 10px 0;
}
.exira-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

/* Brand */
.exira-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.exira-brand__mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
  color: var(--v-text-inverse);
  border-radius: var(--v-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--v-font-heading);
  box-shadow: 0 4px 12px rgba(11, 140, 123, 0.25);
  flex-shrink: 0;
}
.exira-brand__text strong {
  display: block;
  color: var(--v-text-primary);
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--v-font-heading);
  line-height: 1.2;
}
.exira-brand__text small {
  display: block;
  color: var(--v-text-tertiary);
  font-size: 0.68rem;
  font-weight: 500;
}

/* Desktop Nav Layout */
.exira-nav__desktop {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

/* Nav Links */
.exira-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.exira-nav__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--v-text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--v-radius-full);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.exira-nav__links a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--v-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.exira-nav__links a:hover {
  background: var(--v-primary-soft);
  color: var(--v-primary);
  transform: translateY(-1px);
}
.exira-nav__links a:hover::before {
  width: 60%;
}
.exira-nav__links a.active {
  background: var(--v-primary-soft);
  color: var(--v-primary);
  font-weight: 700;
}
.exira-nav__links a.active::before {
  width: 60%;
}
.exira-nav__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--v-radius-full);
  background: var(--v-accent);
  color: var(--v-text-inverse);
  font-size: 0.65rem;
  font-weight: 700;
}

/* Nav Search */
.exira-nav__search {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}
.exira-nav__search input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border: 2px solid var(--v-border);
  border-radius: var(--v-radius-full);
  font-family: var(--v-font-body);
  font-size: 0.82rem;
  background: var(--v-gray-50);
  transition: all var(--v-transition-fast);
}
.exira-nav__search input:focus {
  outline: none;
  border-color: var(--v-primary);
  background: var(--v-surface);
  box-shadow: 0 0 0 4px var(--v-primary-soft);
}
.exira-nav__search-btn {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--v-primary);
  color: var(--v-text-inverse);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--v-transition-fast);
}
.exira-nav__search-btn:hover {
  background: var(--v-primary-dark);
}

/* Nav Actions */
.exira-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Buttons */
.exira-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--v-radius-full);
  border: 1px solid transparent;
  font-family: var(--v-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--v-transition-fast);
  white-space: nowrap;
  position: relative;
}
.exira-btn--sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}
.exira-btn--primary {
  background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
  color: var(--v-text-inverse);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(11, 140, 123, 0.2);
}
.exira-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11, 140, 123, 0.3);
}
.exira-btn--ghost {
  background: transparent;
  color: var(--v-text-secondary);
  border-color: var(--v-border);
}
.exira-btn--ghost:hover {
  background: var(--v-gray-50);
  color: var(--v-text-primary);
  border-color: var(--v-gray-200);
}
.exira-btn--cart {
  position: relative;
}
.exira-btn__label {
  display: inline;
}

/* Cart Badge */
.nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--v-danger);
  color: var(--v-text-inverse);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: var(--v-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.exira-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--v-radius-md);
}
.exira-nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--v-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.exira-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.exira-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.exira-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.exira-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: calc(var(--v-z-sticky) + 10);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.exira-mobile-menu.active {
  transform: translateX(0);
}
.exira-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--v-border);
  background: linear-gradient(135deg, var(--v-primary-soft), transparent);
}
.exira-mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: var(--v-radius-md);
  border: 1px solid var(--v-border);
  background: var(--v-surface);
  color: var(--v-text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--v-transition-fast);
}
.exira-mobile-menu__close:hover {
  background: var(--v-danger-soft);
  color: var(--v-danger);
  border-color: var(--v-danger-soft);
}
.exira-mobile-menu__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}
.exira-mobile-menu__body a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--v-text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--v-radius-lg);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(20px);
}
.exira-mobile-menu.active .exira-mobile-menu__body a {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger animation for menu items */
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(1) { transition-delay: 0.05s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(2) { transition-delay: 0.1s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(3) { transition-delay: 0.15s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(4) { transition-delay: 0.2s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(5) { transition-delay: 0.25s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(6) { transition-delay: 0.3s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(7) { transition-delay: 0.35s; }
.exira-mobile-menu.active .exira-mobile-menu__body a:nth-child(8) { transition-delay: 0.4s; }

.exira-mobile-menu__body a:hover,
.exira-mobile-menu__body a.active {
  background: var(--v-primary-soft);
  color: var(--v-primary);
  transform: translateX(-4px);
}

/* Mobile Overlay */
.exira-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: calc(var(--v-z-sticky) + 5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exira-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   UNIFIED FOOTER
   ============================================================ */
.exira-footer {
  background: linear-gradient(135deg, var(--v-gray-900), #0f172a);
  color: var(--v-gray-300);
  padding: 64px 0 24px;
  margin-top: auto;
}
.exira-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.exira-footer__about .exira-brand {
  margin-bottom: 16px;
}
.exira-footer__about .exira-brand__mark {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}
.exira-footer__about .exira-brand__text strong {
  color: var(--v-text-inverse);
  font-size: 1rem;
}
.exira-footer__about .exira-brand__text small {
  color: var(--v-gray-400);
}
.exira-footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--v-gray-400);
  margin-bottom: 16px;
}
.exira-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--v-gray-400);
}
.exira-footer__title {
  color: var(--v-text-inverse);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--v-font-heading);
}
.exira-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exira-footer__links a {
  color: var(--v-gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--v-transition-fast);
}
.exira-footer__links a:hover {
  color: var(--v-primary);
}
.exira-footer__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--v-gray-400);
  margin-bottom: 12px;
}
.exira-newsletter {
  display: flex;
  gap: 8px;
}
.exira-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--v-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--v-text-inverse);
  font-family: var(--v-font-body);
  font-size: 0.85rem;
}
.exira-newsletter input::placeholder {
  color: var(--v-gray-500);
}
.exira-newsletter button {
  padding: 10px 18px;
  border-radius: var(--v-radius-full);
  background: var(--v-primary);
  color: var(--v-text-inverse);
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--v-transition-fast);
}
.exira-newsletter button:hover {
  background: var(--v-primary-dark);
}
.exira-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.exira-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--v-radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--v-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--v-transition-fast);
}
.exira-footer__social a:hover {
  background: var(--v-primary);
  color: var(--v-text-inverse);
}
.exira-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--v-gray-500);
}
.exira-footer__legal {
  display: flex;
  gap: 24px;
}
.exira-footer__legal a {
  color: var(--v-gray-500);
  text-decoration: none;
  transition: color var(--v-transition-fast);
}
.exira-footer__legal a:hover {
  color: var(--v-primary);
}

/* ===== Navbar + Footer Responsive ===== */
@media (max-width: 1024px) {
  .exira-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .exira-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .exira-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .exira-footer__legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .exira-newsletter {
    flex-direction: column;
  }
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-xl);
  text-decoration: none;
  color: var(--v-text-primary);
  transition: all var(--v-transition-base);
  box-shadow: var(--v-shadow-sm);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--v-shadow-lg);
  border-color: var(--v-primary-soft);
}
.category-card__top {
  font-size: 2.5rem;
  margin-bottom: 12px;
  transition: transform var(--v-transition-base);
}
.category-card:hover .category-card__top {
  transform: scale(1.15);
}
.category-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.category-card__count {
  font-size: 0.8rem;
  color: var(--v-text-tertiary);
}

/* ============================================================
   PAGE LAYOUT HELPERS
   ============================================================ */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-main {
  flex: 1;
}
.page-header {
  background: linear-gradient(135deg, var(--v-primary-light), var(--v-bg));
  padding: 48px 0;
  margin-bottom: 48px;
}
.page-header__title {
  font-family: var(--v-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--v-text-primary);
  margin-bottom: 8px;
}
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--v-text-tertiary);
}
.page-header__breadcrumb a {
  color: var(--v-text-secondary);
  text-decoration: none;
  transition: color var(--v-transition-fast);
}
.page-header__breadcrumb a:hover {
  color: var(--v-primary);
}

/* ============================================================
   BREADCRUMB COMPONENT
   ============================================================ */

.v-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--v-text-tertiary);
  margin-bottom: 16px;
}
.v-breadcrumb a {
  color: var(--v-text-secondary);
  text-decoration: none;
  transition: color var(--v-transition-fast);
}
.v-breadcrumb a:hover {
  color: var(--v-primary);
}
.v-breadcrumb span {
  color: var(--v-text-tertiary);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */

.v-empty-state {
  text-align: center;
  padding: 80px 24px;
}
.v-empty-state__icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}
.v-empty-state__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v-text-primary);
  margin-bottom: 8px;
}
.v-empty-state__text {
  color: var(--v-text-secondary);
  margin-bottom: 24px;
  max-width: 400px;
  margin-inline: auto;
}

/* ============================================================
   TRUST BADGE STRIP
   ============================================================ */

.v-trust-strip {
  background: var(--v-bg-warm);
  border-top: 1px solid var(--v-border);
  border-bottom: 1px solid var(--v-border);
  padding: 32px 0;
}
.v-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.v-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
.v-trust-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--v-radius-lg);
  background: var(--v-primary-soft);
  color: var(--v-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.v-trust-item__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--v-text-primary);
  margin-bottom: 2px;
}
.v-trust-item__text {
  font-size: 0.8rem;
  color: var(--v-text-tertiary);
}

@media (max-width: 768px) {
  .v-trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .v-trust-item {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .v-trust-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TRUST BADGE CARDS (dark bg variant)
   ============================================================ */

.v-trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v-trust-card {
  background: linear-gradient(135deg, rgba(11, 140, 123, 0.08), rgba(30, 95, 142, 0.06));
  border: 1px solid rgba(11, 140, 123, 0.12);
  border-radius: var(--v-radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--v-transition-base);
}
.v-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 140, 123, 0.25);
  box-shadow: var(--v-shadow-md);
}
.v-trust-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.v-trust-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--v-text-primary);
  margin-bottom: 4px;
}
.v-trust-card__text {
  font-size: 0.8rem;
  color: var(--v-text-tertiary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .v-trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   TABS COMPONENT
   ============================================================ */

.v-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--v-border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.v-tabs::-webkit-scrollbar {
  display: none;
}
.v-tab {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--v-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v-text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--v-transition-fast);
}
.v-tab:hover {
  color: var(--v-primary);
}
.v-tab.active {
  color: var(--v-primary);
  border-bottom-color: var(--v-primary);
}
.v-tab-panel {
  display: none;
  animation: vFadeIn 0.3s ease;
}
.v-tab-panel.active {
  display: block;
}

/* ============================================================
   ACCORDION COMPONENT
   ============================================================ */

.v-accordion-item {
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.v-accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: var(--v-surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--v-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--v-text-primary);
  cursor: pointer;
  text-align: right;
  transition: background var(--v-transition-fast);
}
.v-accordion-header:hover {
  background: var(--v-gray-50);
}
.v-accordion-header::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--v-primary);
  transition: transform var(--v-transition-fast);
  flex-shrink: 0;
  margin-right: 12px;
}
.v-accordion-item.open .v-accordion-header::after {
  transform: rotate(45deg);
}
.v-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--v-transition-slow), padding var(--v-transition-slow);
}
.v-accordion-item.open .v-accordion-body {
  max-height: 500px;
}
.v-accordion-content {
  padding: 0 20px 20px;
  color: var(--v-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   STEPPER COMPONENT
   ============================================================ */

.v-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.v-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.v-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--v-border);
  z-index: 0;
}
.v-step.completed:not(:last-child)::after {
  background: var(--v-primary);
}
.v-step__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v-gray-100);
  border: 2px solid var(--v-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--v-text-tertiary);
  position: relative;
  z-index: 1;
  transition: all var(--v-transition-fast);
}
.v-step.active .v-step__circle {
  background: var(--v-primary);
  border-color: var(--v-primary);
  color: var(--v-text-inverse);
  box-shadow: 0 0 0 4px var(--v-primary-soft);
}
.v-step.completed .v-step__circle {
  background: var(--v-primary);
  border-color: var(--v-primary);
  color: var(--v-text-inverse);
}
.v-step__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--v-text-tertiary);
}
.v-step.active .v-step__label {
  color: var(--v-primary);
}
.v-step.completed .v-step__label {
  color: var(--v-text-secondary);
}

/* ============================================================
   ORDER STATUS BADGES
   ============================================================ */

.v-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--v-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.v-status--pending { background: var(--v-warning-soft); color: var(--v-warning); }
.v-status--processing { background: var(--v-info-soft); color: var(--v-info); }
.v-status--shipped { background: var(--v-primary-soft); color: var(--v-primary); }
.v-status--delivered { background: var(--v-success-soft); color: var(--v-success); }
.v-status--cancelled { background: var(--v-danger-soft); color: var(--v-danger); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */

.v-progress {
  height: 8px;
  background: var(--v-gray-100);
  border-radius: var(--v-radius-full);
  overflow: hidden;
}
.v-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--v-primary), var(--v-primary-dark));
  border-radius: var(--v-radius-full);
  transition: width var(--v-transition-slow);
}

/* ============================================================
   ORDER CARD
   ============================================================ */

.v-order-card {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-xl);
  padding: 24px;
  margin-bottom: 20px;
  transition: all var(--v-transition-base);
}
.v-order-card:hover {
  box-shadow: var(--v-shadow-md);
  border-color: var(--v-border-strong);
}
.v-order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.v-order-card__number {
  font-weight: 700;
  color: var(--v-text-primary);
}
.v-order-card__date {
  font-size: 0.85rem;
  color: var(--v-text-tertiary);
}
.v-order-card__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.v-order-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v-order-card__item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--v-radius-md);
  background: var(--v-gray-50);
}
.v-order-card__total {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--v-text-primary);
}

/* ============================================================
   FORM VALIDATION
   ============================================================ */

.v-input.is-invalid {
  border-color: var(--v-danger);
  box-shadow: 0 0 0 4px var(--v-danger-soft);
}
.v-input.is-valid {
  border-color: var(--v-success);
  box-shadow: 0 0 0 4px var(--v-success-soft);
}
.v-error-msg {
  font-size: 0.8rem;
  color: var(--v-danger);
  margin-top: 4px;
  display: none;
}
.v-error-msg.show {
  display: block;
  animation: vFadeIn 0.2s ease;
}

/* ============================================================
   MODAL / OVERLAY
   ============================================================ */

.v-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: var(--v-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.v-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.v-modal {
  background: var(--v-surface);
  border-radius: var(--v-radius-xl);
  box-shadow: var(--v-shadow-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s var(--v-transition-bounce);
}
.v-modal-overlay.active .v-modal {
  transform: scale(1);
}
.v-modal__header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v-modal__title {
  font-family: var(--v-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.v-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--v-text-tertiary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: var(--v-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--v-transition-fast);
}
.v-modal__close:hover {
  background: var(--v-gray-100);
  color: var(--v-text-primary);
}
.v-modal__body {
  padding: 20px 24px;
}
.v-modal__footer {
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ============================================================
   GLOBAL ANIMATIONS & EFFECTS
   ============================================================ */

/* Fade In Up - for page elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Animate elements on load */
.v-animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.v-animate-delay-1 { animation-delay: 0.1s; }
.v-animate-delay-2 { animation-delay: 0.2s; }
.v-animate-delay-3 { animation-delay: 0.3s; }
.v-animate-delay-4 { animation-delay: 0.4s; }

/* Smooth transitions for interactive elements */
a, button {
  transition: all 0.2s ease;
}

/* Card hover lift effect */
.v-card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--v-shadow-lg);
}

/* Button ripple effect base */
.v-btn {
  position: relative;
  overflow: hidden;
}
.v-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.v-btn:active::after {
  width: 300px;
  height: 300px;
}

/* Skeleton loading animation */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

/* Smooth page transitions */
html {
  scroll-behavior: smooth;
}

/* Focus visible styles for accessibility */
:focus-visible {
  outline: 2px solid var(--v-primary);
  outline-offset: 2px;
}

/* ===== Navbar Responsive ===== */
@media (max-width: 1100px) {
  .exira-nav__search {
    width: 200px;
  }
  .exira-nav__links a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 980px) {
  .exira-nav__desktop {
    display: none;
  }
  .exira-nav__toggle {
    display: flex;
  }
  .exira-topbar__inner {
    gap: 12px;
    font-size: 0.7rem;
  }
  .exira-topbar__divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .exira-topbar {
    display: none;
  }
  .exira-navbar {
    padding: 8px 0;
  }
  .exira-navbar__inner {
    min-height: 52px;
  }
  .exira-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .exira-brand__text strong {
    font-size: 0.9rem;
  }
  .exira-brand__text small {
    display: none;
  }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */

.exira-scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--v-primary);
  border: 1px solid rgba(11, 140, 123, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: var(--v-z-dropdown);
  box-shadow: 0 4px 20px rgba(11, 140, 123, 0.15), 0 0 0 4px rgba(11, 140, 123, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exira-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.exira-scroll-top:hover {
  background: var(--v-primary);
  color: var(--v-text-inverse);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 30px rgba(11, 140, 123, 0.35), 0 0 0 6px rgba(11, 140, 123, 0.1);
  border-color: var(--v-primary);
}

.exira-scroll-top:active {
  transform: translateY(-2px) scale(0.95);
}

.exira-scroll-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.exira-scroll-top:hover svg {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 640px) {
  .exira-scroll-top {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .exira-scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
