/*
 * Vedancia — Premium Healthcare Website Styles
 * Brand Colors: Primary #0B4EA2 | Secondary #1F8FE5 | Dark #0A2F5A
 * Typography: Poppins + Inter
 */

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — Vedancia Brand System
   ============================================================ */
:root {
  --v-primary:       #0B4EA2;
  --v-primary-dark:  #0A2F5A;
  --v-secondary:     #1F8FE5;
  --v-light-bg:      #F8FBFF;
  --v-white:         #FFFFFF;
  --v-text:          #1F2937;
  --v-text-muted:    #6B7280;
  --v-border:        #DCE9F8;
  --v-gradient:      linear-gradient(135deg, #0B4EA2 0%, #1F8FE5 100%);
  --v-gradient-dark: linear-gradient(135deg, #0A2F5A 0%, #0B4EA2 100%);
  --v-shadow-sm:     0 2px 8px rgba(11,78,162,.08);
  --v-shadow-md:     0 8px 24px rgba(11,78,162,.12);
  --v-shadow-lg:     0 16px 48px rgba(11,78,162,.16);
  --v-radius:        12px;
  --v-radius-lg:     20px;
  --v-transition:    all 0.25s cubic-bezier(.4,0,.2,1);
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--v-text);
  background: var(--v-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--v-text);
}

a { color: var(--v-primary); transition: var(--v-transition); }
a:hover { color: var(--v-secondary); }
img { max-width: 100%; display: block; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.v-display { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
.v-h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.v-h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-secondary);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.v-topbar {
  background: var(--v-primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  font-family: var(--font-body);
  padding: 8px 0;
  letter-spacing: 0.01em;
}
.v-topbar a { color: rgba(255,255,255,.85); text-decoration: none; }
.v-topbar a:hover { color: #fff; }
.v-topbar .topbar-divider { color: rgba(255,255,255,.3); margin: 0 10px; }

/* ============================================================
   STICKY NAVBAR
   ============================================================ */
.v-navbar {
  background: var(--v-white);
  border-bottom: 1px solid var(--v-border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow 0.3s ease;
}
.v-navbar.scrolled { box-shadow: var(--v-shadow-md); }

.v-navbar .navbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 14px 0;
}

/* Logo */
.v-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.v-logo img { height: 44px; width: auto; }
.v-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--v-primary); }

/* Nav Links */
.v-nav { display: flex; align-items: center; gap: 4px; }
.v-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--v-text);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--v-transition);
  white-space: nowrap;
}
.v-nav .nav-link:hover { color: var(--v-primary); background: rgba(11,78,162,.06); }
.v-nav .nav-link.active { color: var(--v-primary); font-weight: 600; }

/* Mega / Dropdown */
.v-dropdown {
  border: none;
  box-shadow: var(--v-shadow-lg);
  border-radius: var(--v-radius);
  padding: 0.5rem;
  min-width: 220px;
  background: var(--v-white);
  border-top: 3px solid var(--v-primary);
  animation: fadeDown 0.18s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v-dropdown .dropdown-item {
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  color: var(--v-text);
  transition: var(--v-transition);
}
.v-dropdown .dropdown-item:hover {
  background: var(--v-light-bg);
  color: var(--v-primary);
  padding-left: 16px;
}

/* Search Bar */
.v-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.v-search .form-control {
  border: 1.5px solid var(--v-border);
  border-radius: 50px;
  padding: 10px 50px 10px 18px;
  font-size: 0.875rem;
  background: var(--v-light-bg);
  transition: var(--v-transition);
}
.v-search .form-control:focus {
  border-color: var(--v-primary);
  background: var(--v-white);
  box-shadow: 0 0 0 3px rgba(11,78,162,.1);
  outline: none;
}
.v-search .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--v-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--v-transition);
}
.v-search .search-btn:hover { background: var(--v-primary-dark); }

/* Nav Actions */
.v-nav-actions { display: flex; align-items: center; gap: 6px; }

.v-icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--v-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: var(--v-transition);
  background: transparent;
  border: none;
  cursor: pointer;
}
.v-icon-btn:hover { background: var(--v-light-bg); color: var(--v-primary); }
.v-icon-btn i { font-size: 1.1rem; }

.v-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #E53935;
  color: #fff;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.v-btn-primary {
  background: var(--v-gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(11,78,162,.3);
}
.v-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,78,162,.4);
  background: var(--v-gradient-dark);
}

.v-btn-outline {
  background: transparent;
  color: var(--v-primary);
  border: 1.5px solid var(--v-primary);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v-btn-outline:hover {
  background: var(--v-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.v-hero {
  position: relative;
  overflow: hidden;
  background: var(--v-gradient);
}
.v-hero .carousel-item {
  min-height: unset;
  height: calc(100vh - 109px);
  max-height: calc(100vh - 109px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.v-hero-slide {
  padding: 40px 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.v-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.v-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.v-hero-slide .col-lg-6:first-child {
  padding-left: clamp(2rem, 5vw, 4.5rem);
}
.v-hero h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.v-hero h1 span {
  color: rgba(255,255,255,.85);
  font-weight: 300;
  font-size: 0.7em;
  display: block;
  margin-top: 4px;
}
.v-hero p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.6;
}
.v-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.v-hero-stat .value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.v-hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
.v-hero-img {
  position: relative;
  text-align: center;
}
.v-hero-img img {
  max-height: 400px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
  animation: heroFloat 3s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.v-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.v-hero-circle-1 { width: 300px; height: 300px; top: -80px; right: -60px; }
.v-hero-circle-2 { width: 200px; height: 200px; bottom: -40px; right: 40px; }

/* Carousel Controls */
.v-hero .carousel-control-prev,
.v-hero .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--v-transition);
}
.v-hero .carousel-control-prev { left: 20px; }
.v-hero .carousel-control-next { right: 20px; }
.v-hero .carousel-control-prev:hover,
.v-hero .carousel-control-next:hover { background: rgba(255,255,255,.35); }
.v-hero .carousel-indicators { bottom: 20px; }
.v-hero .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  transition: var(--v-transition);
}
.v-hero .carousel-indicators button.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.v-trust-bar {
  background: var(--v-primary-dark);
  padding: 16px 0;
}
.v-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
}
.v-trust-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.v-trust-item .title { font-weight: 600; font-size: 0.875rem; font-family: var(--font-heading); }
.v-trust-item .subtitle { font-size: 0.75rem; color: rgba(255,255,255,.6); }

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.v-section { padding: 80px 0; }
.v-section-sm { padding: 56px 0; }
.v-section-header { margin-bottom: 48px; }
.v-section-header .section-label { margin-bottom: 8px; }
.v-section-header h2 { margin-bottom: 12px; }
.v-section-header p { color: var(--v-text-muted); max-width: 500px; }
.v-section-header.center { text-align: center; }
.v-section-header.center p { margin: 0 auto; }

.v-section-actions { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.v-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  padding: 28px 16px 20px;
  text-decoration: none;
  transition: var(--v-transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--v-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.v-cat-card:hover {
  border-color: var(--v-primary);
  transform: translateY(-4px);
  box-shadow: var(--v-shadow-md);
}
.v-cat-card:hover::before { opacity: 0.04; }
.v-cat-card:hover .v-cat-icon { background: var(--v-primary); }
.v-cat-card:hover .v-cat-icon i,
.v-cat-card:hover .v-cat-icon img { color: #fff; filter: brightness(10); }
.v-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(11,78,162,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--v-transition);
  flex-shrink: 0;
}
.v-cat-icon img { width: 36px; height: 36px; object-fit: contain; }
.v-cat-icon i { font-size: 1.6rem; color: var(--v-primary); }
.v-cat-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--v-text);
  margin-bottom: 4px;
  transition: var(--v-transition);
}
.v-cat-count { font-size: 0.75rem; color: var(--v-text-muted); }
.v-cat-card:hover .v-cat-name { color: var(--v-primary); }

/* ============================================================
   CATEGORY FEATURE CARD (all-categories page)
   ============================================================ */
.v-cat-feature-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  transition: var(--v-transition);
}
.v-cat-feature-card:hover {
  border-color: var(--v-primary);
  box-shadow: var(--v-shadow-md);
  transform: translateY(-3px);
}
.v-cat-feature-header {
  padding: 18px 18px 12px;
  display: block;
}
.v-cat-feature-img {
  flex-shrink: 0;
}
.v-cat-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--v-light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--v-primary);
}
.v-cat-feature-subs {
  border-top: 1px solid var(--v-border);
  padding-top: 12px;
  margin-top: 4px;
}

/* ============================================================
   PAGE HEADER (category / product listing pages)
   ============================================================ */
.v-page-header {
  background: var(--v-light-bg);
  border-bottom: 1px solid var(--v-border);
  padding: 28px 0;
}
.v-page-header .breadcrumb { margin-bottom: 0; }
.v-page-header .breadcrumb-item a { color: var(--v-primary); text-decoration: none; }
.v-page-header .breadcrumb-item a:hover { color: var(--v-secondary); }
.v-page-header h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.v-product-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  transition: var(--v-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.v-product-card:hover {
  border-color: rgba(11,78,162,.3);
  transform: translateY(-5px);
  box-shadow: var(--v-shadow-lg);
}

/* Image area */
.v-product-img {
  position: relative;
  background: var(--v-light-bg);
  overflow: hidden;
  aspect-ratio: 1;
}
.v-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.v-product-card:hover .v-product-img img { transform: scale(1.07); }

/* Badges */
.v-product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.v-badge-discount {
  background: #E53935;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-heading);
}
.v-badge-new { background: var(--v-primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.v-badge-featured { background: #F59E0B; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

/* Out of stock overlay */
.v-oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.v-oos-label {
  background: var(--v-text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
}

/* Quick action overlay */
.v-product-actions {
  position: absolute;
  bottom: -52px;
  left: 0;
  right: 0;
  display: flex;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  transition: bottom 0.3s ease;
  z-index: 4;
  justify-content: center;
}
.v-product-card:hover .v-product-actions { bottom: 0; }
.v-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--v-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--v-text);
  cursor: pointer;
  transition: var(--v-transition);
  text-decoration: none;
}
.v-action-btn:hover { background: var(--v-primary); color: #fff; border-color: var(--v-primary); }
.v-action-btn.cart-btn { flex: 1; border-radius: 8px; font-size: 0.8rem; font-weight: 600; gap: 4px; width: auto; color: var(--v-primary); border-color: var(--v-primary); }
.v-action-btn.cart-btn:hover { background: var(--v-primary); color: #fff; }

/* Body */
.v-product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.v-product-brand { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--v-secondary); margin-bottom: 4px; }
.v-product-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--v-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  min-height: 2.4em;
}
.v-product-name a { color: inherit; text-decoration: none; }
.v-product-name a:hover { color: var(--v-primary); }
.v-product-pricing { margin-top: auto; }
.v-product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--v-primary);
}
.v-product-mrp {
  font-size: 0.8rem;
  color: var(--v-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}
.v-stock-in { font-size: 0.72rem; color: #16A34A; font-weight: 600; }
.v-stock-low { font-size: 0.72rem; color: #D97706; font-weight: 600; }
.v-stock-out { font-size: 0.72rem; color: #DC2626; font-weight: 600; }

/* ============================================================
   BRAND CARDS (Logo Strip)
   ============================================================ */
.v-brand-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--v-transition);
  cursor: pointer;
  min-height: 90px;
}
.v-brand-card:hover {
  border-color: var(--v-primary);
  box-shadow: var(--v-shadow-sm);
  transform: translateY(-2px);
}
.v-brand-card img { max-height: 44px; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: var(--v-transition); }
.v-brand-card:hover img { filter: grayscale(0%); opacity: 1; }

/* ============================================================
   BRAND FEATURE CARDS (brands listing page)
   ============================================================ */
.v-brand-feature-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  transition: var(--v-transition);
  text-align: center;
}
.v-brand-feature-card:hover {
  border-color: var(--v-primary);
  box-shadow: var(--v-shadow-md);
  transform: translateY(-4px);
}
.v-brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 16px;
  background: var(--v-white);
}
.v-brand-logo-wrap img {
  filter: grayscale(40%);
  opacity: 0.8;
  transition: var(--v-transition);
}
.v-brand-feature-card:hover .v-brand-logo-wrap img {
  filter: grayscale(0%);
  opacity: 1;
}
.v-brand-meta {
  padding: 10px 12px 14px;
  border-top: 1px solid var(--v-border);
  background: var(--v-light-bg);
}
.v-brand-name-label {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--v-text);
}
.v-brand-count {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  margin-top: 2px;
}
.v-brand-name-fallback {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--v-primary);
}

/* Compact brand grid */
.v-brand-compact-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 16px 10px 14px;
  text-align: center;
  transition: var(--v-transition);
}
.v-brand-compact-card:hover {
  border-color: var(--v-primary);
  box-shadow: var(--v-shadow-sm);
  transform: translateY(-2px);
}
.v-brand-compact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 8px;
}
.v-brand-compact-logo img {
  filter: grayscale(30%);
  opacity: 0.75;
  transition: var(--v-transition);
}
.v-brand-compact-card:hover .v-brand-compact-logo img {
  filter: grayscale(0%);
  opacity: 1;
}
.v-brand-compact-name {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--v-text);
  line-height: 1.3;
}
.v-brand-compact-count {
  font-size: 0.68rem;
  color: var(--v-text-muted);
  margin-top: 2px;
}

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.v-promo-card {
  border-radius: var(--v-radius-lg);
  padding: 40px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v-promo-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.v-promo-card .badge-pill {
  background: rgba(255,255,255,.25);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}
.v-promo-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.v-promo-card p { color: rgba(255,255,255,.8); font-size: 0.875rem; margin-bottom: 20px; }
.v-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--v-transition);
  width: fit-content;
}
.v-promo-btn:hover { background: rgba(255,255,255,.35); color: #fff; }

/* ============================================================
   TABS (Product Section Switcher)
   ============================================================ */
.v-tabs { display: flex; gap: 4px; background: var(--v-light-bg); border-radius: 12px; padding: 4px; }
.v-tab-btn {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--v-text-muted);
  cursor: pointer;
  transition: var(--v-transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.v-tab-btn.active, .v-tab-btn:hover { background: var(--v-white); color: var(--v-primary); box-shadow: var(--v-shadow-sm); }
.v-tab-btn.active { color: var(--v-primary); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.v-why-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--v-transition);
}
.v-why-card:hover { border-color: var(--v-primary); box-shadow: var(--v-shadow-md); transform: translateY(-4px); }
.v-why-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(11,78,162,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--v-primary);
  transition: var(--v-transition);
}
.v-why-card:hover .v-why-icon { background: var(--v-primary); color: #fff; }
.v-why-card h5 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.v-why-card p { font-size: 0.875rem; color: var(--v-text-muted); line-height: 1.6; }

/* ============================================================
   CERTIFICATIONS / TRUST BADGES
   ============================================================ */
.v-cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 20px;
  transition: var(--v-transition);
}
.v-cert-item:hover { border-color: var(--v-primary); box-shadow: var(--v-shadow-sm); }
.v-cert-icon { font-size: 2rem; color: var(--v-primary); flex-shrink: 0; }
.v-cert-title { font-weight: 700; font-family: var(--font-heading); font-size: 0.9rem; }
.v-cert-desc { font-size: 0.8rem; color: var(--v-text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.v-review-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  padding: 28px;
  transition: var(--v-transition);
}
.v-review-card:hover { border-color: var(--v-primary); box-shadow: var(--v-shadow-md); }
.v-review-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 12px; }
.v-review-text { font-size: 0.9rem; color: var(--v-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.v-review-author { display: flex; align-items: center; gap: 12px; }
.v-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--v-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}
.v-review-name { font-weight: 700; font-size: 0.875rem; }
.v-review-role { font-size: 0.75rem; color: var(--v-text-muted); }

/* ============================================================
   HEALTH TIPS / BLOG
   ============================================================ */
.v-blog-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  transition: var(--v-transition);
}
.v-blog-card:hover { border-color: rgba(11,78,162,.3); transform: translateY(-4px); box-shadow: var(--v-shadow-md); }
.v-blog-img { width: 100%; height: 180px; object-fit: cover; background: var(--v-light-bg); }
.v-blog-body { padding: 20px; }
.v-blog-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--v-secondary); margin-bottom: 8px; }
.v-blog-title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--v-text); margin-bottom: 8px; line-height: 1.4; }
.v-blog-meta { font-size: 0.75rem; color: var(--v-text-muted); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.v-newsletter {
  background: var(--v-gradient);
  border-radius: var(--v-radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.v-newsletter::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.v-newsletter h2 { color: #fff; font-family: var(--font-heading); }
.v-newsletter p { color: rgba(255,255,255,.8); }
.v-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.v-newsletter-form .form-control {
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.9rem;
  flex: 1;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  color: #fff;
}
.v-newsletter-form .form-control::placeholder { color: rgba(255,255,255,.6); }
.v-newsletter-form .form-control:focus { outline: none; background: rgba(255,255,255,.25); box-shadow: none; }
.v-newsletter-btn {
  background: #fff;
  color: var(--v-primary);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--v-transition);
  white-space: nowrap;
}
.v-newsletter-btn:hover { background: var(--v-light-bg); transform: scale(1.03); }

/* ============================================================
   HUB CTA SECTION
   ============================================================ */
.v-hub-cta {
  background: var(--v-gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.v-hub-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(31,143,229,.12);
}
.v-hub-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--v-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--v-transition);
}
.v-hub-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); border-color: rgba(255,255,255,.3); }
.v-hub-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}
.v-hub-card h4 { color: #fff; font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; }
.v-hub-card p { color: rgba(255,255,255,.7); font-size: 0.85rem; margin-bottom: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.v-footer {
  background: #e8f4fd;
  color: #2d4a6e;
  padding-top: 64px;
}
.v-footer-brand img {
  height: 64px;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.v-footer-brand p { font-size: 0.875rem; color: #4a6a8a; line-height: 1.7; max-width: 280px; }
.v-footer h6 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B4EA2;
  margin-bottom: 18px;
}
.v-footer-links { list-style: none; padding: 0; margin: 0; }
.v-footer-links li { margin-bottom: 10px; }
.v-footer-links a {
  color: #4a6a8a;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--v-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v-footer-links a:hover { color: #0B4EA2; padding-left: 4px; }
.v-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: #4a6a8a;
}
.v-footer-contact-item i { color: var(--v-secondary); margin-top: 2px; flex-shrink: 0; }
.v-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.v-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(11,78,162,.1);
  border: 1px solid rgba(11,78,162,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B4EA2;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--v-transition);
}
.v-social-btn:hover { background: var(--v-secondary); color: #fff; border-color: var(--v-secondary); }

/* Hub footer badge */
.v-hub-footer {
  background: rgba(11,78,162,.08);
  border: 1px solid rgba(11,78,162,.2);
  border-radius: var(--v-radius);
  padding: 20px;
}
.v-hub-footer h6 { color: #0B4EA2; font-size: 0.875rem; font-family: var(--font-heading); text-transform: none; letter-spacing: 0; margin-bottom: 8px; }
.v-hub-footer p { font-size: 0.8rem; color: #4a6a8a; margin-bottom: 14px; }

/* Footer divider */
.v-footer-divider { border-top: 1px solid rgba(11,78,162,.15); margin-top: 48px; padding: 20px 0; }
.v-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.v-footer-copy { font-size: 0.8rem; color: #4a6a8a; }
.v-footer-payment { display: flex; gap: 8px; align-items: center; }
.v-payment-icon {
  background: rgba(11,78,162,.08);
  border: 1px solid rgba(11,78,162,.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0B4EA2;
  font-family: var(--font-heading);
}

/* ============================================================
   BUTTONS — GLOBAL OVERRIDES
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: var(--v-transition);
}
.btn-primary {
  background: var(--v-gradient);
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(11,78,162,.25);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--v-gradient-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,78,162,.35);
}
.btn-outline-primary {
  border: 1.5px solid var(--v-primary);
  color: var(--v-primary);
}
.btn-outline-primary:hover {
  background: var(--v-primary);
  color: #fff;
  border-color: var(--v-primary);
}
.btn-lg { padding: 12px 28px; font-size: 0.95rem; border-radius: 12px; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; border-radius: 8px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-control, .form-select {
  border: 1.5px solid var(--v-border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--v-text);
  background: var(--v-white);
  transition: var(--v-transition);
  padding: 10px 14px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--v-primary);
  box-shadow: 0 0 0 3px rgba(11,78,162,.1);
  outline: none;
}
.form-label { font-weight: 500; font-size: 0.875rem; color: var(--v-text); margin-bottom: 6px; }
.form-text { font-size: 0.78rem; color: var(--v-text-muted); }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { border-radius: var(--v-radius); border: none; font-size: 0.875rem; }
.alert-success  { background: #EFF9F2; color: #166534; border-left: 4px solid #22C55E; }
.alert-danger   { background: #FEF2F2; color: #991B1B; border-left: 4px solid #EF4444; }
.alert-warning  { background: #FFFBEB; color: #92400E; border-left: 4px solid #F59E0B; }
.alert-info     { background: #EFF6FF; color: #1E40AF; border-left: 4px solid #3B82F6; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { gap: 4px; }
.pagination .page-link {
  border: 1.5px solid var(--v-border);
  border-radius: 10px !important;
  color: var(--v-primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 14px;
  transition: var(--v-transition);
}
.pagination .page-item.active .page-link {
  background: var(--v-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(11,78,162,.3);
}
.pagination .page-link:hover { background: var(--v-light-bg); border-color: var(--v-primary); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: 0.8rem; }
.breadcrumb-item a { color: var(--v-primary); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--v-text-muted); }

/* ============================================================
   PAGE HEADER BAND
   ============================================================ */
.v-page-header {
  background: linear-gradient(135deg, var(--v-light-bg) 0%, #E8F1FF 100%);
  border-bottom: 1px solid var(--v-border);
  padding: 24px 0;
}
.v-page-header h1 { font-size: 1.6rem; color: var(--v-primary-dark); }

/* ============================================================
   SIDEBAR FILTERS
   ============================================================ */
.v-filter-card {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
}
.v-filter-header {
  background: var(--v-light-bg);
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--v-text);
  border-bottom: 1px solid var(--v-border);
}
.v-filter-body { padding: 16px 18px; }
.v-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--v-light-bg);
}
.v-filter-item:last-child { border-bottom: none; }
.v-filter-link {
  font-size: 0.875rem;
  color: var(--v-text);
  text-decoration: none;
  transition: var(--v-transition);
}
.v-filter-link:hover, .v-filter-link.active { color: var(--v-primary); font-weight: 600; }
.v-filter-count { font-size: 0.75rem; color: var(--v-text-muted); }
.v-filter-divider { border-top: 1px solid var(--v-border); margin: 12px 0; }

/* Price Range Slider */
.v-price-range { padding: 8px 0; }
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--v-gradient);
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--v-primary);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(11,78,162,.3);
}

/* ============================================================
   SORT BAR (Listing page)
   ============================================================ */
.v-sort-bar {
  background: var(--v-white);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.v-sort-bar .v-result-count { font-size: 0.875rem; color: var(--v-text-muted); }
.v-grid-toggle { display: flex; gap: 4px; }
.v-grid-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--v-border);
  background: transparent;
  color: var(--v-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--v-transition);
  font-size: 0.9rem;
}
.v-grid-btn.active, .v-grid-btn:hover { background: var(--v-primary); color: #fff; border-color: var(--v-primary); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.v-product-gallery { position: sticky; top: 100px; }
.v-main-img-wrap {
  background: var(--v-light-bg);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.v-main-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.v-main-img-wrap:hover img { transform: scale(1.05); }
.v-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11,78,162,.8);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
.v-main-img-wrap:hover .v-zoom-hint { opacity: 1; }
.v-thumb-strip { display: flex; gap: 8px; margin-top: 12px; }
.v-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  border: 2px solid var(--v-border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--v-transition);
  background: var(--v-light-bg);
}
.v-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v-thumb:hover, .v-thumb.active { border-color: var(--v-primary); box-shadow: 0 0 0 2px rgba(11,78,162,.2); }

/* Detail Info */
.v-detail-brand { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--v-secondary); margin-bottom: 8px; }
.v-detail-title { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; color: var(--v-primary-dark); margin-bottom: 8px; line-height: 1.25; }
.v-detail-sku { font-size: 0.8rem; color: var(--v-text-muted); margin-bottom: 16px; }
.v-detail-price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--v-primary); line-height: 1; }
.v-detail-mrp { font-size: 1rem; color: var(--v-text-muted); text-decoration: line-through; margin-left: 10px; }
.v-detail-saving {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FEF2F2;
  color: #DC2626;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 8px;
}
.v-detail-divider { border-top: 1px solid var(--v-border); margin: 20px 0; }

/* Specs table */
.v-spec-table { width: 100%; font-size: 0.875rem; }
.v-spec-table tr td { padding: 8px 12px; }
.v-spec-table tr td:first-child { color: var(--v-text-muted); font-weight: 500; width: 45%; }
.v-spec-table tr:nth-child(even) { background: var(--v-light-bg); border-radius: 6px; }

/* Qty Control */
.v-qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--v-border); border-radius: 12px; overflow: hidden; width: fit-content; }
.v-qty-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-light-bg);
  border: none;
  font-size: 1.1rem;
  color: var(--v-text);
  cursor: pointer;
  transition: var(--v-transition);
}
.v-qty-btn:hover { background: var(--v-primary); color: #fff; }
.v-qty-input {
  width: 54px;
  height: 42px;
  border: none;
  border-left: 1px solid var(--v-border);
  border-right: 1px solid var(--v-border);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--v-text);
  background: #fff;
  outline: none;
}

/* Tabs for description */
.v-detail-tabs { border-bottom: 2px solid var(--v-border); margin-bottom: 24px; }
.v-detail-tab {
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--v-text-muted);
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--v-transition);
  font-family: var(--font-body);
}
.v-detail-tab.active, .v-detail-tab:hover { color: var(--v-primary); border-bottom-color: var(--v-primary); }

/* ============================================================
   CART PAGE
   ============================================================ */
.v-cart-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v-text-muted);
  padding: 14px 16px;
  background: var(--v-light-bg);
  border-bottom: 1px solid var(--v-border);
}
.v-cart-table td { padding: 16px; border-bottom: 1px solid var(--v-border); vertical-align: middle; }
.v-order-summary { background: var(--v-white); border: 1.5px solid var(--v-border); border-radius: var(--v-radius-lg); padding: 24px; position: sticky; top: 100px; }
.v-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--v-light-bg); font-size: 0.875rem; }
.v-summary-row.total { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--v-primary-dark); border-bottom: none; padding-top: 16px; }

/* ============================================================
   CART — Extended Styles
   ============================================================ */

/* Free-shipping progress bar strip */
.v-shipping-bar {
  background: var(--v-light-bg);
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 12px 16px;
}

/* Cart table improvements */
.v-cart-table {
  width: 100%;
}
.v-cart-table .cart-row:hover { background: var(--v-light-bg); }

/* Mini-cart offcanvas items */
.v-mini-cart-items {
  max-height: calc(100vh - 280px);
  overflow-y: auto;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.v-mini-cart-item {
  align-items: flex-start;
}

/* Dashed wallet placeholder border */
.border-dashed {
  border: 1.5px dashed var(--v-border) !important;
  border-radius: var(--v-radius);
}

/* Cart page responsive tweaks */
@media (max-width: 575px) {
  .v-cart-table thead { display: none; }
  .v-cart-table td   { display: block; padding: 6px 12px; border-bottom: none; }
  .v-cart-table .cart-row { border-bottom: 1px solid var(--v-border) !important; }
  .v-cart-table td:last-child { text-align: right; }
  .v-order-summary { position: static; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

/* Step badge circle (1 / 2 / 3) */
.v-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--v-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Saved address selection card */
.v-address-card {
  display: block;
  padding: 12px 14px;
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  cursor: pointer;
  transition: var(--v-transition);
  background: var(--v-white);
}
.v-address-card:hover { border-color: var(--v-primary); }
.v-address-card.selected {
  border-color: var(--v-primary);
  background: rgba(11,78,162,.04);
  box-shadow: 0 0 0 3px rgba(11,78,162,.08);
}
.v-address-new {
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.v-address-new:hover { border-color: var(--v-primary); background: rgba(11,78,162,.03); }

/* Payment option rows */
.v-payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--v-border);
  border-radius: var(--v-radius);
  cursor: pointer;
  transition: var(--v-transition);
  background: var(--v-white);
}
.v-payment-option:hover:not(.v-payment-disabled) {
  border-color: var(--v-primary);
}
.v-payment-option.selected {
  border-color: var(--v-primary);
  background: rgba(11,78,162,.04);
}
.v-payment-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.v-payment-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v-payment-check {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
}
.v-payment-option.selected .v-payment-check { display: block; }

/* Item qty badge (checkout summary) */
.v-item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--v-primary);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Checkout items scroll area */
.v-checkout-items {
  max-height: 280px;
  overflow-y: auto;
}

/* Order success icon */
.v-success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(34,197,94,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-success-icon i {
  font-size: 52px;
}

/* ============================================================
   HUB / BUSINESS PORTAL
   ============================================================ */
.v-hub-hero {
  background: var(--v-gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.v-hub-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(31,143,229,.1);
}
.v-hub-portal-card {
  background: var(--v-white);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  border: 2px solid var(--v-border);
  transition: var(--v-transition);
}
.v-hub-portal-card:hover { border-color: var(--v-primary); transform: translateY(-6px); box-shadow: var(--v-shadow-lg); }
.v-hub-portal-header {
  padding: 36px 28px 24px;
  text-align: center;
  position: relative;
}
.v-hub-portal-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}
.v-hub-portal-header h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 6px; }
.v-hub-portal-header p { font-size: 0.875rem; opacity: 0.8; }
.v-hub-portal-body { padding: 24px 28px 28px; }
.v-hub-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.875rem; }
.v-hub-feature i { color: #22C55E; flex-shrink: 0; margin-top: 1px; }
.v-hub-feature.muted i { color: var(--v-text-muted); }
.v-hub-feature.muted span { color: var(--v-text-muted); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.v-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--v-white);
  border-top: 1px solid var(--v-border);
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
  z-index: 1050;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.v-mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--v-text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 6px 0;
  transition: var(--v-transition);
  position: relative;
}
.v-mobile-nav-item i { font-size: 1.2rem; }
.v-mobile-nav-item.active, .v-mobile-nav-item:hover { color: var(--v-primary); }

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-v-light { background: var(--v-light-bg); }
.bg-v-primary { background: var(--v-primary); }
.bg-v-gradient { background: var(--v-gradient); }
.text-v-primary { color: var(--v-primary); }
.text-v-secondary { color: var(--v-secondary); }
.border-v { border-color: var(--v-border) !important; }
.rounded-v { border-radius: var(--v-radius) !important; }
.rounded-v-lg { border-radius: var(--v-radius-lg) !important; }
.shadow-v { box-shadow: var(--v-shadow-md) !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.v-hover-lift { transition: var(--v-transition); }
.v-hover-lift:hover { transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .v-hero .carousel-item { height: calc(100vh - 109px); max-height: calc(100vh - 109px); }
  .v-hero h1 { font-size: 2rem; }
  .v-hero-img { display: none; }
  .v-section { padding: 56px 0; }
}

@media (max-width: 767px) {
  .v-topbar { display: none; }
  .v-section { padding: 40px 0; }
  .v-section-header { margin-bottom: 28px; }
  /* topbar hidden on mobile so only navbar (~72px) remains */
  .v-hero .carousel-item { height: calc(100vh - 72px); max-height: calc(100vh - 72px); }
  .v-hero-slide { padding: 32px 0; }
  .v-hero-slide .col-lg-6:first-child { padding-left: 1.2rem; }
  .v-hero h1 { font-size: 1.6rem; }
  .v-newsletter { padding: 40px 20px; }
  .v-newsletter-form { flex-direction: column; }
  .v-hub-cta { padding: 60px 0; }
  .v-detail-title { font-size: 1.3rem; }
  .v-detail-price { font-size: 1.7rem; }
}

@media (max-width: 575px) {
  .v-hero h1 { font-size: 1.5rem; }
  .v-product-card { border-radius: var(--v-radius); }
  .v-hero-stats { gap: 1.2rem; }
  .v-hero-stat .value { font-size: 1.4rem; }
  .v-trust-bar { display: none; }
  .v-mobile-nav { display: flex; }
  body { padding-bottom: 68px; }
  .v-footer { padding-bottom: 80px; }
}

/* ============================================================
   COUPON OFFERS BAR
   ============================================================ */
.v-offers-bar {
  background: linear-gradient(90deg, #E53935 0%, #FF6F00 100%);
  padding: 6px 0;
  overflow: hidden;
}
.v-offers-scroll {
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v-offers-scroll::-webkit-scrollbar { display: none; }
.v-offers-scroll .badge { font-size: .65rem !important; }
