:root {
  /* ---------- COLORS (Vibrant Berry Theme) ---------- */

  --bg: #fcfbfe; /* Very soft, warm violet-tinted white */
  --surface: #ffffff;
  --card: #ffffff;

  --primary: #8b5cf6; /* Vivid Violet */
  --primary-dark: #7c3aed; /* Deep Violet */

  --accent: #f43f5e; /* Punchy Rose / Coral */

  --text: #1e1b4b; /* Extremely deep, rich purple-black */
  --text-muted: #6b7280; /* Soft cool gray */
  --text-faint: #d1d5db;

  --border: #ede9fe; /* Soft violet-tinted structural gray */

  /* ---------- RADII (Friendly & Plump) ---------- */

  --radius-xs: 8px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;

  /* ---------- SPACING ---------- */

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* ---------- TYPOGRAPHY ---------- */

  --font-body: "Nunito", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Outfit", "Poppins", -apple-system, sans-serif;

  /* ---------- MOTION ---------- */

  --ease: cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy, energetic easing */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   TYPOGRAPHY — BOUNCY & VIBRANT
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 800; /* Extra bold for a fun, confident look */
  margin: 0 0 var(--space-sm);
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
  /* Beautiful Violet to Rose gradient for major headlines */
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.25;
}

h3 {
  font-size: 24px;
  color: var(--primary);
}

p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  font-weight: 500;
}

strong {
  color: var(--text);
  font-weight: 800;
}

.mt-5 {
  margin-top: 30px;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--ease);
}

a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* =====================================================
   DIVIDERS
===================================================== */

.hr {
  width: 100%;
  height: 2px; /* Slightly thicker, softer divider */
  background: var(--border);
  margin: var(--space-xl) 0;
  border: none;
  border-radius: 50px;
}

/* =====================================================
   BUTTONS — CHUNKY & TACTILE
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;

  border-radius: 50px; /* Perfect pill shape */
  border: none;

  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  /* Colored drop shadow to make it pop */
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
  transform: translateY(-4px) scale(1.02);
}

.btn-ghost {
  background: #f5f3ff; /* Faint violet background */
  color: var(--primary);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
}

/* =====================================================
   SURFACES & CARDS — SOFT & FLOATING
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 2px solid var(--border); /* Thicker, softer borders */
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  /* Very soft, slightly purple-tinted shadow */
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.04);
  transition: all 0.4s var(--ease);
}

.card:hover {
  border-color: #ddd6fe; /* Deeper violet border on hover */
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
  transform: translateY(-6px);
}

/* =====================================================
   FORMS — PLAYFUL & BOLD
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #f5f3ff; /* Fun, faint violet input backgrounds */
  color: var(--text);
  border: 2px solid transparent;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: #a78bfa; /* Vibrant but light placeholder */
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2); /* Chunky violet focus ring */
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.w-100 {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  p {
    font-size: 16px;
  }
}

/* =====================================================
   SURFACES & CARDS — SOFT & FLOATING
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 2px solid var(--border); /* Thicker, friendlier borders */
  border-radius: var(--radius-md); /* Plump, rounded corners */
  padding: var(--space-lg);
  /* Very soft, slightly purple-tinted shadow instead of harsh black */
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.04);
  transition: all 0.4s var(--ease);
}

.card:hover {
  border-color: #ddd6fe; /* Deeper violet border on hover */
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12); /* Shadow intensifies and blooms */
  transform: translateY(-6px);
}

/* =====================================================
   FORMS — PLAYFUL & BOLD
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #f5f3ff; /* Fun, faint violet background instead of dark grey */
  color: var(--text);
  border: 2px solid transparent; /* Transparent border until focused */
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600; /* Bolder text input for a confident feel */
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all 0.3s var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: #a78bfa; /* Vibrant but light violet placeholder */
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: var(--surface); /* Pops to pure white on focus */
  border-color: var(--primary);
  /* Chunky, soft violet focus ring */
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.w-100 {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  p {
    font-size: 16px;
  }
}

/* =====================================================
   PAGE HEADER & BREADCRUMBS — VIBRANT BERRY UI
===================================================== */

.vb-page-header * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-page-header {
  position: relative;
  /* Beautiful soft gradient transitioning into your base white */
  background: linear-gradient(180deg, #f5f3ff 0%, #fcfbfe 100%);
  padding: 120px 20px 80px 20px;
  text-align: center;
  overflow: hidden;
  border-bottom: 2px dashed #ede9fe; /* Ties cleanly into the sections below */
}

/* --- Organic Center Glow --- */
.vb-header-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  /* Soft violet radial fade */
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(244, 63, 94, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Container Alignment --- */
.vb-page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Frosted Breadcrumb Pill --- */
.vb-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.06);
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-breadcrumb:hover {
  border-color: #ddd6fe;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.1);
}

.vb-breadcrumb a {
  color: #6b7280; /* Soft Gray */
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important; /* Explicitly removed underlines */
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vb-breadcrumb a i {
  color: #8b5cf6; /* Vivid Violet Home Icon */
  font-size: 1.1rem;
}

.vb-breadcrumb a:hover {
  color: #8b5cf6; /* Text turns Violet on hover */
}

.vb-separator {
  color: #d1d5db; /* Faint Gray */
  font-weight: 800;
  font-size: 14px;
}

.vb-current {
  color: #f43f5e; /* Punchy Rose for the active page */
  font-size: 14px;
  font-weight: 800;
}

/* --- Typography --- */
.vb-page-header .vb-headline {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* Reused text utility classes */
.vb-text-dark {
  color: #1e1b4b; /* Deep Purple Black */
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6; /* Fallback */
  font-weight: 800;
}

.vb-page-header .vb-description {
  color: #4b5563; /* Slightly darker gray for readability */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 768px) {
  .vb-page-header {
    padding: 100px 15px 60px 15px;
  }
  .vb-breadcrumb {
    padding: 8px 20px;
    gap: 10px;
  }
  .vb-breadcrumb a,
  .vb-current {
    font-size: 13px;
  }
  .vb-page-header .vb-description {
    font-size: 16px;
  }
}

/* =====================================================
   TOP BAR — VIBRANT BERRY
===================================================== */

.topbar-dark {
  /* A bold, confident splash of Vivid Violet at the very top */
  background: var(--primary);
  border-bottom: none;
  font-size: 14px;
  color: #ffffff; /* Crisp white text */
  /* Removed the wide tech-spacing for a friendlier, natural read */
  letter-spacing: 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* LEFT SIDE */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-msg {
  font-weight: 600;
  color: rgba(
    255,
    255,
    255,
    0.9
  ); /* Softened white so the bold text pops more */
}

.topbar-msg strong {
  font-weight: 800; /* Extra bold for that confident vibe */
  color: #ffffff;
  /* Stripped away the neon text shadow for a clean, solid look */
  text-shadow: none;
}

/* BADGE */

.topbar-badge {
  /* Punchy Rose pill badge */
  background: var(--accent);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 50px; /* Bouncy, plump pill shape instead of sharp corners */
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none; /* Removed the glowing border */
  /* Soft colored shadow to make it float */
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.4);
}

/* RIGHT SIDE */

.topbar-right {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-help strong {
  font-weight: 800;
  color: #ffffff;
  text-transform: none; /* Dropped the aggressive uppercase */
  letter-spacing: 0;
  text-shadow: none;
  /* Added a fun, chunky underline to make the help link stand out */
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: all 0.3s var(--ease);
}

.topbar-help strong:hover {
  color: var(--accent);
}

/* =====================================================
   HEADER — VIBRANT BERRY
===================================================== */

.header-soft {
  /* Bright, airy frosted glass */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Soft, violet-tinted shadow to make the header float gracefully */
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.05);
}

.header-soft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 0;
}

.container.header-soft-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-soft {
  display: flex;
  gap: 34px;
}

.nav-soft a {
  font-family: var(--font-body);
  font-size: 16px; /* Slightly larger for readability */
  font-weight: 700; /* Bolder, confident text */
  /* Removed uppercase and heavy letter spacing for a friendly vibe */
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 6px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.nav-soft a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px; /* Plump, chunky underline */
  background: var(--primary); /* Vivid Violet */
  border-radius: 50px;
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}

.nav-soft a:hover,
.nav-soft a.active {
  color: var(--text); /* Dark rich purple text on hover */
}

.nav-soft a:hover::after,
.nav-soft a.active::after {
  width: 100%; /* Line grows from the center */
}

/* =====================================================
   LOGO
===================================================== */

.logo-soft img {
  display: block;
  margin-left: 18px;
  max-height: 50px;
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-right: 10px;
}

/* =====================================================
   SEARCH — PLUMP & PLAYFUL
===================================================== */

.search-soft {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 50px; /* Bouncy pill shape */
  background: #f5f3ff; /* Faint violet background */
  transition: all 0.3s var(--ease);
}

.search-soft:focus-within {
  border-color: var(--primary);
  /* Chunky violet focus ring */
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
  background: var(--surface); /* Pops to pure white */
}

.search-soft i {
  font-size: 15px;
  color: #a78bfa; /* Bright lilac icon */
  margin-left: 18px;
  transition: color 0.3s var(--ease);
}

.search-soft:focus-within i {
  color: var(--primary); /* Deepens to Vivid Violet on focus */
}

.search-soft input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  width: 160px;
  color: var(--text);
  padding: 12px 18px 12px 0;
}

.search-soft input::placeholder {
  color: #a78bfa;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
}

/* =====================================================
   ICON BUTTONS
===================================================== */

.icon-btn {
  width: 46px;
  height: 46px; /* Slightly larger, chunkier target */
  border-radius: 50%; /* Perfect circle */
  border: none;
  background: #f5f3ff; /* Faint violet */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
  transition: all 0.4s var(--ease); /* Bouncy easing */
}

.icon-btn:hover {
  background: var(--primary);
  color: #ffffff;
  /* Soft violet drop shadow and bouncy scale effect */
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
  transform: translateY(-4px) scale(1.05);
}

/* CART BADGE */

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent); /* Punchy Rose */
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 50px; /* Bouncy pill */
  border: 2px solid var(--surface); /* White border cuts into the icon for a clean look */
  box-shadow: 0 4px 8px rgba(244, 63, 94, 0.3);
}

/* =====================================================
   MOBILE TOGGLE
===================================================== */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #f5f3ff;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.menu-toggle:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

/* =====================================================
   MOBILE MENU — BRIGHT SLIDE-OUT
===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface); /* Pure white */
  z-index: 2000;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  border-left: 2px solid var(--border);
  /* Soft, colorful shadow instead of heavy darkness */
  box-shadow: -10px 0 40px rgba(139, 92, 246, 0.08);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
}

.mobile-menu-header img {
  height: 36px;
}

.mobile-menu-header button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fcfbfe;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.mobile-menu-header button:hover {
  background: #fff1f2; /* Soft rose background */
  color: var(--accent); /* Punchy Rose close icon */
  transform: scale(1.05);
}

/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px; /* Big, bold, friendly */
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 24px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.mobile-nav a:hover {
  color: var(--primary); /* Vivid Violet */
  padding-left: 12px; /* Gentle bouncy indent */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .nav-soft,
  .search-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-soft-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 600px) {
  .topbar-dark {
    display: none;
  }
  .icon-btn {
    display: none;
  }
}

/* =====================================================
   HERO BANNER — VIBRANT BERRY UI (NEW STRUCTURE)
===================================================== */

.vb-hero-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif; /* Assumes your fonts */
}

.vb-hero-section {
  position: relative;
  width: 100%;
  min-height: 750px;
  background-color: #fcfbfe; /* Soft violet-tinted white */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Organic Glowing Backgrounds --- */
.vb-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-primary {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.15); /* Vivid Violet Glow */
}

.vb-glow-accent {
  bottom: 0;
  right: -5%;
  width: 700px;
  height: 700px;
  background-color: rgba(244, 63, 94, 0.1); /* Punchy Rose Glow */
}

/* --- Container, Viewport & Track --- */
.vb-hero-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px 20px 100px 20px;
}

/* NEW: Hides the other slides so they don't bleed over */
.vb-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.vb-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-slide {
  flex: 0 0 100%; /* Forces the slide to take up exactly 100% of the viewport */
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* =========================================
   LEFT CONTENT AREA
========================================= */
.vb-content-area {
  flex: 1;
  max-width: 600px;
}

/* Top Badge */
.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none !important; /* Explicitly removed underline */
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.08);
  transition: all 0.3s ease;
}

.vb-badge-pill:hover {
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.vb-badge-icon {
  color: #f43f5e; /* Rose */
  font-size: 1.1rem;
}

.vb-badge-text {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography */
.vb-headline {
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.vb-text-dark {
  color: #1e1b4b !important; /* Deep Purple Black */
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6; /* Fallback */
  font-weight: 800;
}

.vb-description {
  color: #6b7280; /* Soft Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Buttons */
.vb-action-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 40px;
}

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important; /* Explicit text color */
  text-decoration: none !important; /* No underline */
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #1e1b4b !important; /* Explicit text color */
  text-decoration: none !important; /* No underline */
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid #ede9fe;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-secondary:hover {
  border-color: #8b5cf6;
  color: #8b5cf6 !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

/* Social Proof Avatars */
.vb-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px dashed #ede9fe;
}

.vb-avatar-stack {
  display: flex;
  align-items: center;
}

.vb-avatar-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fcfbfe;
  margin-right: -16px; /* Overlap effect */
  background: #fff;
}

.vb-avatar-count {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fcfbfe;
  background: #f43f5e;
  color: #ffffff; /* Explicit text color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  z-index: 10;
}

.vb-proof-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.vb-stars {
  color: #fbbf24; /* Golden Yellow */
  font-size: 14px;
  margin-bottom: 4px;
}

.vb-text-muted {
  color: #6b7280; /* Muted text color */
  font-size: 14px;
  font-weight: 600;
}

/* =========================================
   RIGHT VISUAL AREA (Floating Widgets)
========================================= */
.vb-visual-area {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.vb-main-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  animation: floatSoft 6s ease-in-out infinite;
}

.vb-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(139, 92, 246, 0.15));
}

/* Floating Glass Widgets */
@keyframes floatWidget {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  } /* Opposite bounce */
  100% {
    transform: translateY(0px);
  }
}

.vb-float-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid #ffffff;
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
  animation: floatWidget 5s ease-in-out infinite;
}

.vb-widget-top-left {
  top: 10%;
  left: -15%;
  animation-delay: 1s;
}

.vb-widget-top-right {
  top: 15%;
  right: -10%;
  animation-delay: 0.5s;
}

.vb-widget-bottom-right {
  bottom: 10%;
  right: -15%;
  animation-delay: 2s;
}

.vb-widget-icon {
  width: 44px;
  height: 44px;
  background: #f5f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.vb-widget-info {
  display: flex;
  flex-direction: column;
}

/* =========================================
   SLEEK SLIDER DOCK (Bottom Controls)
========================================= */
.vb-slider-dock {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
  border: 1px solid #ede9fe;
  z-index: 10;
}

.vb-arrow-btn {
  background: transparent;
  border: none;
  color: #1e1b4b; /* Explicit color */
  font-size: 1.2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vb-arrow-btn:hover {
  background: #f5f3ff;
  color: #8b5cf6;
}

.vb-dots {
  display: flex;
  gap: 10px;
}

.vb-dot {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.vb-dot.active {
  background: #8b5cf6;
  width: 24px;
  border-radius: 10px;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1100px) {
  .vb-slide {
    gap: 30px;
  }
  .vb-headline {
    font-size: 48px;
  }
  .vb-float-widget {
    padding: 12px 16px;
    border-radius: 16px;
  }
  .vb-widget-top-left {
    left: 0;
  }
  .vb-widget-bottom-right {
    right: 0;
  }
  .vb-widget-top-right {
    right: 0;
  }
}

@media (max-width: 900px) {
  .vb-hero-section {
    min-height: auto;
  }
  .vb-slide {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  .vb-content-area {
    max-width: 100%;
  }
  .vb-action-row {
    justify-content: center;
  }
  .vb-social-proof {
    flex-direction: column;
    justify-content: center;
    border-top: none;
    gap: 10px;
  }
  .vb-avatar-stack {
    justify-content: center;
    margin-bottom: 10px;
  }
  .vb-proof-text {
    margin-left: 0;
  }

  .vb-visual-area {
    margin-top: 40px;
  }
  /* Reposition widgets for mobile to not break layout */
  .vb-widget-top-left {
    top: -20px;
    left: 10px;
  }
  .vb-widget-bottom-right {
    bottom: 0;
    right: 10px;
  }
  .vb-widget-top-right {
    top: -20px;
    right: 10px;
  }
}

@media (max-width: 600px) {
  .vb-headline {
    font-size: 38px;
  }
  .vb-btn-primary,
  .vb-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  /* Hide floating widgets on very small phones to keep image clear */
  .vb-float-widget {
    display: none;
  }
  .vb-hero-container {
    padding: 20px 15px 100px 15px;
  }
}

/* =====================================================
   FEATURES & TRUST SECTION — VIBRANT BERRY UI
===================================================== */

.vb-features-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-features-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
}

/* --- Organic Background Glows --- */
.vb-feature-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-left {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-right {
  bottom: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.06); /* Rose */
}

/* --- Container & Header --- */
.vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Re-using the beautiful header elements from the hero */
.vb-section-header .vb-headline {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vb-section-header .vb-description {
  color: #6b7280; /* Explicit gray */
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
}

/* --- Features Grid (Flexbox for perfect 5-item centering) --- */
.vb-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}

/* --- Feature Cards --- */
.vb-feature-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px; /* Plump, friendly corners */
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy hover */
}

.vb-feature-card:hover {
  transform: translateY(-8px);
  border-color: #ddd6fe;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

/* Icon Blobs */
.vb-icon-blob {
  width: 72px;
  height: 72px;
  border-radius: 20px; /* Soft squircle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}

.vb-feature-card:hover .vb-icon-blob {
  transform: scale(1.1) rotate(-5deg); /* Playful icon reaction on hover */
}

/* Card Text */
.vb-card-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.vb-card-text {
  color: #6b7280; /* Soft Gray */
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* --- Frosted Glass Trust Strip --- */
.vb-trust-strip {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid #ffffff;
  border-radius: 50px; /* Long pill shape */
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 20px;
}

.vb-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vb-trust-badge i {
  font-size: 1.4rem;
}

.vb-trust-badge span {
  color: #1e1b4b; /* Deep purple black */
  font-weight: 800;
  font-size: 15px;
}

.vb-trust-divider {
  width: 2px;
  height: 30px;
  background: #ede9fe;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-trust-strip {
    border-radius: 24px; /* Changes from pill to rectangle on tablet */
    justify-content: center;
  }
  .vb-trust-divider {
    display: none; /* Hide dividers when items wrap */
  }
}

@media (max-width: 768px) {
  .vb-features-section {
    padding: 60px 15px;
  }
  .vb-headline {
    font-size: 32px;
  }
  .vb-features-grid {
    gap: 16px;
  }
  .vb-feature-card {
    flex: 1 1 100%; /* Stacks cards on mobile */
    padding: 24px;
  }
  .vb-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }
}

/* =====================================================
   CATEGORIES SECTION — VIBRANT BERRY UI
===================================================== */

.vb-categories-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-categories-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-cat-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-center {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.05) 0%,
    rgba(244, 63, 94, 0.03) 100%
  );
}

/* --- Container & Header --- */
.vb-categories-section .vb-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-categories-section .vb-section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reusing typography & badges for consistency */
.vb-categories-section .vb-headline {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vb-categories-section .vb-description {
  color: #6b7280; /* Soft Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
}

/* --- Categories Grid --- */
.vb-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* --- Bouncy Category Cards --- */
.vb-cat-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 16px;
  text-decoration: none !important; /* Explicitly remove underlines */
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-cat-card:hover {
  border-color: #ddd6fe;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

/* Image Presentation Box */
.vb-cat-image-box {
  background: #f5f3ff; /* Faint violet box */
  border-radius: 16px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.vb-cat-card:hover .vb-cat-image-box {
  background: #efe9ff;
}

.vb-cat-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
  z-index: 2;
  transition: transform 0.4s var(--ease);
}

.vb-cat-card:hover .vb-cat-icon {
  transform: scale(1.1) rotate(-10deg);
}

.vb-cat-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-cat-card:hover .vb-cat-img {
  transform: scale(1.1) rotate(2deg); /* Playful image reaction */
}

/* Info Section */
.vb-cat-info {
  padding: 24px 8px 16px 8px;
  flex: 1; /* Pushes the footer down */
}

.vb-cat-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.vb-cat-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Footer Action */
.vb-cat-footer {
  padding: 16px 8px 8px 8px;
  border-top: 2px dashed #ede9fe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vb-shop-text {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 15px;
  font-weight: 800;
  transition: color 0.3s ease;
}

.vb-shop-arrow {
  width: 36px;
  height: 36px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-cat-card:hover .vb-shop-arrow {
  background: #8b5cf6;
  color: #ffffff;
  transform: scale(1.1);
}

/* --- Center Action Button --- */
.vb-center-action {
  display: flex;
  justify-content: center;
}

/* Use your main primary button styles for consistency */
.vb-center-action .vb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-center-action .vb-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 768px) {
  .vb-categories-section {
    padding: 80px 15px;
  }
  .vb-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .vb-cat-image-box {
    height: 180px;
  }
  .vb-cat-title {
    font-size: 20px;
  }
  .vb-center-action .vb-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   PRODUCTS SECTION — VIBRANT BERRY UI
===================================================== */

.vb-products-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-products-section {
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  position: relative;
}

.vb-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Reused Header Styles --- */
.vb-section-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Playful Pill Tabs --- */
.vb-products-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.vb-tab-btn {
  background: transparent;
  border: 2px solid #ede9fe;
  color: #6b7280; /* Soft gray */
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy transition */
}

.vb-tab-btn:hover {
  border-color: #8b5cf6;
  color: #8b5cf6; /* Vivid Violet */
  transform: translateY(-2px);
}

.vb-tab-btn.active {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* --- Product Grid --- */
.vb-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* --- Bouncy Product Card --- */
.vb-product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 16px;
  text-decoration: none !important; /* Explicitly remove underlines */
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-product-card:hover {
  border-color: #ddd6fe;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

/* Image Presentation Box */
.vb-product-image-box {
  background: #f5f3ff; /* Faint violet presentation box */
  border-radius: 16px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.vb-product-card:hover .vb-product-image-box {
  background: #efe9ff; /* Darkens slightly on hover */
}

.vb-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-product-card:hover .vb-product-img {
  transform: scale(1.08) rotate(-2deg); /* Playful product pop */
}

/* Badges */
.vb-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f43f5e; /* Punchy Rose for Out of Stock */
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
  z-index: 2;
}

.vb-product-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.1);
  z-index: 2;
}

.vb-product-rating i {
  color: #fbbf24; /* Golden Yellow Star */
}

/* Info Section */
.vb-product-info {
  padding: 24px 8px 16px 8px;
  display: flex;
  flex-direction: column;
  flex: 1; /* Pushes footer to the bottom evenly */
}

.vb-product-category {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.vb-product-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.vb-product-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Footer Section */
.vb-product-footer {
  margin-top: auto; /* Always sits at the bottom of the card */
  padding: 16px 8px 8px 8px;
  border-top: 2px dashed #ede9fe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vb-product-price {
  color: #1e1b4b;
  font-size: 22px;
  font-weight: 800;
}

/* CTA Icon Button */
.vb-product-cta {
  width: 40px;
  height: 40px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-product-card:hover .vb-product-cta {
  background: #8b5cf6;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(139, 92, 246, 0.3);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 768px) {
  .vb-products-section {
    padding: 60px 15px;
  }
  .vb-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  .vb-product-image-box {
    height: 200px;
  }
  .vb-product-title {
    font-size: 18px;
  }
}

/* =====================================================
   ABOUT / MISSION SECTION — VIBRANT BERRY UI
===================================================== */

.vb-about-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-about-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 120px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-right {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Soft Violet */
}

.vb-glow-bottom-left {
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Soft Rose */
}

/* --- Container Layout --- */
.vb-about-section .vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* =========================================
   LEFT CONTENT
========================================= */
.vb-about-content {
  flex: 1.1;
  max-width: 600px;
}

/* Reused Badge */
.vb-about-content .vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.05);
}

.vb-about-content .vb-badge-icon {
  color: #f43f5e; /* Rose */
  font-size: 1.1rem;
}

.vb-about-content .vb-badge-text {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography */
.vb-about-content .vb-headline {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.vb-about-content .vb-lead-text {
  color: #4b5563; /* Slightly darker gray for lead text */
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.vb-about-content .vb-lead-text strong {
  color: #8b5cf6; /* Vivid Violet */
  font-weight: 800;
}

.vb-about-content .vb-sub-text {
  color: #6b7280; /* Soft Gray */
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Buttons (Reused from Hero, ensuring no underlines) */
.vb-about-content .vb-action-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================
   RIGHT GRID (Stats/Cards)
========================================= */
.vb-about-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: flex-start;
}

/* Create the cool staggered masonry effect */
.vb-card-stagger {
  margin-top: 40px;
}

.vb-about-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px; /* Plump corners */
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-about-card:hover {
  transform: translateY(-8px);
  border-color: #ddd6fe;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

.vb-about-card .vb-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.vb-about-card:hover .vb-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.vb-about-card .vb-stat-number {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.vb-about-card .vb-card-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.vb-about-card .vb-card-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-about-section .vb-container {
    gap: 40px;
  }
  .vb-about-grid {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .vb-about-section {
    padding: 80px 20px;
  }
  .vb-about-section .vb-container {
    flex-direction: column;
    text-align: center;
  }
  .vb-about-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vb-about-content .vb-action-row {
    justify-content: center;
  }

  /* Remove stagger on mobile/tablet to keep grid clean */
  .vb-card-stagger {
    margin-top: 0;
  }
  .vb-about-grid {
    width: 100%;
    margin-top: 20px;
  }
  .vb-about-card {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .vb-about-grid {
    grid-template-columns: 1fr; /* Stack cards vertically on small phones */
  }
  .vb-about-content .vb-action-row {
    flex-direction: column;
    width: 100%;
  }
  .vb-btn-primary,
  .vb-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   WHY CHOOSE US SECTION — VIBRANT BERRY UI
===================================================== */

.vb-why-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-why-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-left {
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Soft Rose */
}

.vb-glow-right {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Soft Violet */
}

/* --- Container & Header --- */
.vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reused badge and typography styling to keep consistency */
.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.05);
}

.vb-badge-icon {
  color: #f43f5e;
  font-size: 1.1rem;
}

.vb-badge-text {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-headline {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6; /* Fallback */
  font-weight: 800;
}

.vb-description {
  color: #6b7280; /* Soft Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
}

/* --- Horizontal Bento Grid --- */
.vb-why-grid {
  display: grid;
  /* 2 columns on desktop, adapts automatically */
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

/* --- Horizontal Card Styling --- */
.vb-why-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px; /* Plump corners */
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy hover */
}

.vb-why-card:hover {
  transform: translateY(-6px);
  border-color: #ddd6fe;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.vb-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px; /* Squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0; /* Prevents icon from squishing */
  transition: transform 0.4s ease;
}

.vb-why-card:hover .vb-icon-box {
  transform: scale(1.1) rotate(-8deg); /* Playful twist */
}

.vb-card-info {
  display: flex;
  flex-direction: column;
}

.vb-card-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.vb-card-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-why-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .vb-why-section {
    padding: 80px 20px;
  }
  .vb-why-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
  }
  .vb-why-card {
    padding: 24px;
    gap: 16px;
    flex-direction: column; /* Switches to vertical stack on small screens */
    align-items: flex-start;
  }
  .vb-icon-box {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}

/* =====================================================
   TESTIMONIALS SECTION — VIBRANT BERRY UI
===================================================== */

.vb-testimonials-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-testimonials-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-testi-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(244, 63, 94, 0.05) 100%
  );
}

/* --- Container & Header --- */
.vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-section-header {
  text-align: center;
  margin-bottom: 80px; /* Extra space to accommodate the staggered middle card */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reused badge and typography styling to keep consistency */
.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.05);
}

.vb-badge-icon {
  color: #f43f5e;
  font-size: 1.1rem;
}

.vb-badge-text {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-headline {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6; /* Fallback */
  font-weight: 800;
}

.vb-description {
  color: #6b7280; /* Soft Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
}

/* --- Testimonials Grid --- */
.vb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px;
  align-items: stretch;
}

/* --- Plump Testimonial Cards --- */
.vb-testi-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden; /* Keeps the giant watermark quote contained */
}

.vb-testi-card:hover {
  transform: translateY(-8px);
  border-color: #ddd6fe;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

/* Elevate the middle card slightly for a premium layout feel */
.vb-card-highlight {
  transform: translateY(-20px);
}
.vb-card-highlight:hover {
  transform: translateY(-28px);
}

/* Massive background quote mark */
.vb-quote-watermark {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  color: rgba(139, 92, 246, 0.06);
  z-index: 0;
  line-height: 1;
  user-select: none;
}

/* Content over the watermark */
.vb-stars,
.vb-testi-text,
.vb-testi-user {
  position: relative;
  z-index: 1;
}

.vb-stars {
  color: #fbbf24; /* Golden Yellow */
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.vb-testi-text {
  color: #4b5563; /* Medium dark gray */
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  flex-grow: 1; /* Pushes user info to bottom */
  margin: 0 0 30px 0;
}

/* --- User Info Block --- */
.vb-testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 2px dashed #ede9fe;
  padding-top: 24px;
}

.vb-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* Explicit white text */
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vb-user-info {
  display: flex;
  flex-direction: column;
}

.vb-user-name {
  color: #1e1b4b; /* Deep purple black */
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.vb-user-role {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 13px;
  font-weight: 700;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .vb-card-highlight {
    transform: translateY(0); /* Remove stagger on smaller screens */
  }
  .vb-card-highlight:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .vb-testimonials-section {
    padding: 80px 20px;
  }
  .vb-section-header {
    margin-bottom: 40px;
  }
  .vb-testimonials-grid {
    grid-template-columns: 1fr; /* Stack into 1 column on mobile */
  }
  .vb-testi-card {
    padding: 30px 24px;
  }
}

/* =====================================================
   RECENTLY VIEWED — SERENE EARTH
===================================================== */

.recent-modern {
  background: var(--bg); /* Warm off-white */
  padding: 100px 0;
  border-top: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
}

/* ================= HEADER ================= */

.recent-modern-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

.recent-modern-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  /* Removed neon text-shadow */
}

.recent-modern-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
  /* Removed heavy uppercase and deep text-shadows */
}

.recent-modern-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= GRID ================= */

.recent-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* ================= CARD — EDITORIAL ITEM ================= */

.recent-item {
  background: transparent;
  border-top: 1px solid var(--border); /* Soft, natural divider instead of thick glow */
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.recent-item:hover {
  transform: translateY(-4px); /* Gentle lift */
  border-top-color: var(--primary); /* Sage green accent on hover */
  /* Removed neon top-glow box-shadow */
}

/* IMAGE */

.recent-item-image {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Soft friendly corners */
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very subtle shadow */
}

.recent-item:hover .recent-item-image {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  /* Removed neon background and inset shadows */
}

.recent-item-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  /* Removed neon holographic drop shadow */
  transition: transform 0.6s var(--ease);
}

.recent-item:hover .recent-item-image img {
  transform: scale(1.05); /* Gentle, elegant zoom */
}

/* INFO */

.recent-item h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter spacing */
}

.recent-item:hover h3 {
  color: var(--primary-dark);
  /* Removed neon text shadow */
}

.recent-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* FOOTER */

.recent-item-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border); /* Clean, solid line instead of dashed */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s var(--ease);
}

.recent-item:hover .recent-item-footer {
  border-top-color: var(--primary); /* Sage green accent on hover */
}

.recent-item-footer strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.recent-item-footer span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta action text */
  position: relative;
  transition: color 0.3s var(--ease);
  /* Removed uppercase */
}

.recent-item:hover .recent-item-footer span {
  color: var(--text);
  /* Removed neon shadow */
}

.recent-item-footer span::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.recent-item:hover .recent-item-footer span::after {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-modern {
    padding: 80px 0;
  }

  .recent-modern-head h2 {
    font-size: 26px;
  }

  .recent-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recent-item-image img {
    height: 160px; /* Slightly larger on mobile for visibility */
  }
}

/* =====================================================
   RECENTLY VIEWED (ALT) — SERENE EARTH
===================================================== */

.recent-soft {
  background: var(--bg); /* Warm off-white */
  padding: 100px 0;
  border-top: 1px solid var(--border); /* Clean boundary */
  position: relative;
}

/* Removed faint laser grid background entirely */
.recent-soft::before {
  display: none;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  border-left: 2px solid var(--primary); /* Elegant sage green line */
  padding-left: 24px; /* Slightly more breathing room */
}

.recent-soft-head h2 {
  font-family: var(--font-heading); /* Serif font */
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600; /* Softened from 800 */
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase and deep text-shadows */
}

.recent-soft-head p {
  font-size: 16px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative;
  z-index: 2;
}

/* ================= TILE (EDITORIAL CARD) ================= */

.recent-card {
  background: transparent;
  border-top: 1px solid var(--border); /* Clean, natural line instead of 2px glow */
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.recent-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-top-color: var(--primary); /* Sage green accent */
  /* Removed top-scanning neon glow box-shadow */
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Soft friendly corners */
  padding: 24px; /* Slightly more padding for elegance */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very subtle shadow */
}

.recent-card:hover .recent-card-img {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  /* Removed neon background and inset shadows */
}

.recent-card-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  /* Removed heavy dark drop shadow */
  transition: transform 0.6s var(--ease);
}

.recent-card:hover .recent-card-img img {
  transform: scale(1.05); /* Gentle zoom */
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px; /* Slightly larger */
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter-spacing */
}

.recent-card:hover h3 {
  color: var(--primary-dark);
  /* Removed neon text shadow */
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 13px;
  letter-spacing: 2px; /* Tightened from 4px */
  color: #eab308; /* Soft golden yellow */
  margin-bottom: 16px;
  /* Removed neon purple glow */
}

/* ================= FOOTER ================= */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border); /* Clean, solid line instead of dashed terminal line */
  transition: border-color 0.3s var(--ease);
}

.recent-card:hover .recent-card-footer {
  border-top-color: var(--primary); /* Sage green accent */
}

.recent-card-footer strong {
  font-family: var(--font-body); /* Clean sans-serif for numbers */
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.recent-view-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta link */
  position: relative;
  transition: all 0.3s var(--ease);
  /* Removed heavy uppercase and letter spacing */
}

.recent-card:hover .recent-view-btn {
  color: var(--text); /* Darkens slightly on hover */
  /* Removed neon text shadow */
}

.recent-view-btn::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(4px);
  color: var(--text);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: 80px 0;
  }

  .recent-soft-head {
    border-left: none;
    border-top: 2px solid var(--primary); /* Adjusted from 3px neon purple */
    padding-left: 0;
    padding-top: 16px;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .recent-card-img img {
    height: 160px; /* Slightly taller for mobile visibility */
  }
}

/* =====================================================
   RECENTLY VIEWED SECTION — VIBRANT BERRY UI
===================================================== */

.vb-recent-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-recent-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
  border-top: 2px dashed #ede9fe; /* Beautiful separation line */
}

/* --- Organic Glowing Backgrounds --- */
.vb-recent-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-left-bottom {
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Soft Violet Glow */
}

.vb-glow-right-top {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Soft Rose Glow */
}

/* --- Container & Header --- */
.vb-recent-section .vb-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-recent-section .vb-section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reusing the beautiful typography from previous sections */
.vb-recent-section .vb-headline {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vb-recent-section .vb-description {
  color: #6b7280; /* Explicit Soft Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
}

/* --- Grid Layout for the JS-injected cards --- */
.vb-recent-grid {
  display: grid;
  /* Slightly smaller min-width than featured to accommodate more cards neatly */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 768px) {
  .vb-recent-section {
    padding: 80px 15px;
  }
  .vb-recent-grid {
    /* Compress grid gracefully on mobile screens */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .vb-recent-grid {
    grid-template-columns: 1fr; /* Stack into 1 column on very small phones */
  }
}

/* =====================================================
   FOOTER — SERENE EARTH
===================================================== */

.footer-blue {
  background: var(--surface); /* Clean white bottom */
  /* Removed neon background grids */
  color: var(--text);
  padding-top: 80px;
  border-top: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed the glowing bottom light effect completely */
.footer-blue::before {
  display: none;
}

/* =====================================================
   TOP GRID
===================================================== */

.footer-blue-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  width: 380px;
  margin-bottom: 20px;
  /* Removed neon drop-shadow */
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact strong {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary); /* Sage green accent */
  display: block;
}

.footer-contact a {
  color: var(--text);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.footer-contact a:hover {
  color: var(--accent); /* Soft terracotta hover */
  /* Removed neon text-shadow */
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
  /* Removed uppercase, heavy letter-spacing, and shadows */
}

.footer-links a {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--primary); /* Sage green hover */
  transform: translateX(4px); /* Gentle slide */
  /* Removed neon text shadow */
}

/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h4 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-dark); /* Deep sage green */
  /* Removed uppercase and neon shadow */
}

.footer-newsletter p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* form */

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: var(--card); /* Soft beige input */
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50px; /* Pill shape */
  font-size: 14px;
  font-family: var(--font-body); /* Removed monospace terminal font */
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.newsletter-form input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--primary);
  /* Replaced neon glow with subtle sage focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

.newsletter-form input::placeholder {
  color: var(--text-faint);
}

.newsletter-form button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.newsletter-form button:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.2);
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-faint);
  /* Removed uppercase */
}

/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
  height: 1px;
  background: var(--border); /* Clean, solid line instead of glowing gradient */
  margin: 60px 0 30px;
  border: none;
  position: relative;
  z-index: 2;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 40px;
  position: relative;
  z-index: 2;
}

.footer-company strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  /* Removed uppercase */
}

.footer-company span {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-faint);
  /* Removed uppercase */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .footer-blue-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-blue-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* =====================================================
   ABOUT PAGE — SERENE EARTH INTRO
===================================================== */

.about-intro {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border); /* Clean, elegant boundary */
}

/* Removed the subtle background node network glow completely */
.about-intro::before {
  display: none;
}

/* ================= LAYOUT ================= */

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Soft editorial panel replacing the dark tech UI */
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly, soft corners */
  padding: 80px 60px; /* Slightly more vertical breathing room */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed heavy blur filter */
}

/* Removed the glowing top neon accent line */
.about-intro-inner::before {
  display: none;
}

/* ================= CONTENT ================= */

.about-intro-text h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600; /* Softened from 800 */
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: var(--text);
  position: relative;
  /* Removed aggressive uppercase and text-shadow */
}

/* Elegant Accent Underline */
.about-intro-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px; /* Thinned to an elegant stroke */
  background: var(--primary); /* Sage green */
  margin-top: 24px;
  /* Removed neon purple glow */
}

/* Lead text - Editorial Subheading */
.about-intro-lead {
  font-size: 20px; /* Slightly larger for a beautiful reading experience */
  font-weight: 500;
  line-height: 1.7;
  color: var(--text); /* Deep charcoal */
  margin-bottom: 24px;
  max-width: 760px;
  /* Removed neon teal color and text shadow */
}

/* Removed the ">" terminal chevron prompt completely */
.about-intro-lead::before {
  display: none;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 740px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-intro-inner {
    padding: 50px 30px;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding: 80px 15px;
  }

  .about-intro-inner {
    padding: 30px 20px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  /* Since the panel glow line is gone, we don't need to hide it here anymore, but keeping the block clean */

  .about-intro-text h2 {
    font-size: 32px;
  }

  .about-intro-lead {
    font-size: 18px;
  }
}

/* =====================================================
   CONTACT PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.vb-contact-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-contact-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-right {
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container Layout --- */
.vb-contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* =========================================
   LEFT SIDE: INFO & DETAILS
========================================= */
.vb-contact-info {
  flex: 1.1;
}

/* Reused Typography & Badges */
.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.05);
}

.vb-badge-icon {
  color: #f43f5e;
  font-size: 1.1rem;
}

.vb-badge-text {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-headline {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6;
  font-weight: 800;
}

.vb-lead-text {
  color: #4b5563; /* Medium Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Bouncy List */
.vb-contact-points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vb-contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vb-contact-points i {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 1.2rem;
  margin-top: 2px;
}

.vb-contact-points span {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 700;
}

/* Contact Details Bento Grid */
.vb-contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vb-detail-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.03);
  transition: all 0.3s var(--ease);
}

.vb-detail-card:hover {
  transform: translateY(-4px);
  border-color: #ddd6fe;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
}

.vb-detail-icon {
  width: 44px;
  height: 44px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vb-detail-text {
  display: flex;
  flex-direction: column;
}

.vb-detail-text strong {
  color: #1e1b4b;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}

.vb-detail-text span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

/* =========================================
   RIGHT SIDE: FORM AREA
========================================= */
.vb-contact-form-wrap {
  flex: 1;
  max-width: 550px;
}

.vb-form-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.06);
}

.vb-form-title {
  color: #1e1b4b;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.vb-form-desc {
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Form Inputs */
.vb-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vb-form-row {
  display: flex;
  gap: 20px;
}

.vb-input,
.vb-textarea {
  width: 100%;
  background: #f5f3ff; /* Fun, faint violet background */
  color: #1e1b4b;
  border: 2px solid transparent;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vb-input::placeholder,
.vb-textarea::placeholder {
  color: #a78bfa; /* Vibrant but light placeholder */
}

.vb-input:focus,
.vb-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2); /* Chunky violet focus ring */
}

.vb-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Buttons */
.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-full {
  width: 100%;
  margin-top: 10px;
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f3ff;
  color: #8b5cf6 !important;
  border: 2px solid transparent;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.4s ease;
}

.vb-btn-outline:hover {
  background: #ffffff;
  border-color: #8b5cf6;
  color: #7c3aed !important;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

/* Success State */
.vb-contact-success {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vb-success-icon {
  font-size: 4rem;
  color: #10b981; /* Emerald Green */
  margin-bottom: 20px;
}

.vb-success-title {
  color: #1e1b4b;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.vb-success-desc {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-contact-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .vb-contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vb-contact-points {
    align-items: center;
  }
  .vb-contact-form-wrap {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .vb-contact-section {
    padding: 60px 15px;
  }
  .vb-contact-details {
    grid-template-columns: 1fr; /* Stack bento grid on small screens */
  }
  .vb-form-row {
    flex-direction: column;
    gap: 20px;
  }
  .vb-form-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   FAQ PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.vb-faq-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-faq-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  overflow: hidden;
  min-height: 80vh;
}

/* --- Organic Glowing Backgrounds --- */
.vb-faq-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-right {
  top: -5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-left {
  bottom: 0;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Header --- */
.vb-faq-section .vb-container {
  max-width: 900px; /* Narrower width for optimal reading line length */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reusing Badge & Typography */
.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 2px solid #ede9fe;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.05);
}

.vb-badge-icon {
  color: #f43f5e;
  font-size: 1.1rem;
}

.vb-badge-text {
  color: #1e1b4b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-headline {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6;
  font-weight: 800;
}

.vb-description {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
}

/* =========================================
   FAQ GROUPS & ACCORDIONS
========================================= */
.vb-faq-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vb-faq-group-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

/* Group Header */
.vb-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px dashed #ede9fe;
}

.vb-group-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.vb-group-title {
  color: #1e1b4b;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

/* FAQ Items */
.vb-faq-item {
  border-bottom: 1px solid #f3f4f6;
}

.vb-faq-item:last-child {
  border-bottom: none;
}

.vb-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 12px;
  font-size: 17px;
  font-weight: 800;
  color: #1e1b4b;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.vb-faq-question:hover {
  background: #f5f3ff; /* Soft violet hover */
  color: #8b5cf6;
}

.vb-faq-toggle-icon {
  color: #a78bfa;
  font-size: 1.2rem;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease;
}

.vb-faq-question:hover .vb-faq-toggle-icon {
  color: #8b5cf6;
}

/* Smooth Accordion Animation using Grid */
.vb-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-answer-inner {
  overflow: hidden;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0 12px; /* aligns with question text */
}

/* ACTIVE STATE */
.vb-faq-item.active .vb-faq-answer {
  grid-template-rows: 1fr;
}

.vb-faq-item.active .vb-answer-inner {
  padding-bottom: 24px; /* Add bottom padding only when open */
}

.vb-faq-item.active .vb-faq-question {
  color: #8b5cf6; /* Keep violet when open */
}

.vb-faq-item.active .vb-faq-toggle-icon {
  color: #f43f5e; /* Turns rose when open */
  transform: rotate(135deg); /* Transforms + into x */
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */
@media (max-width: 768px) {
  .vb-faq-section {
    padding: 60px 15px;
  }
  .vb-faq-group-card {
    padding: 24px 16px;
  }
  .vb-group-title {
    font-size: 20px;
  }
  .vb-faq-question {
    font-size: 15px;
    padding: 16px 8px;
  }
}

/* =====================================================
   AUTH HERO — SERENE EARTH
===================================================== */

.auth-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
}

/* Removed the data grid overlay completely */
.auth-x-hero::before {
  display: none;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Editorial Subtitle */

.auth-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed terminal brackets */
.auth-x-eyebrow::before,
.auth-x-eyebrow::after {
  display: none;
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and heavy text-shadows */
}

.auth-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon highlight and shadow */
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 17px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* RIGHT PANEL — SOFT INFO CONTEXT */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Clean, solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px; /* More breathing room */
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

/* Removed hover laser line */
.auth-x-panel-item::before {
  display: none;
}

.auth-x-panel-item:hover {
  border-color: var(--primary); /* Sage green hover border */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.auth-x-panel-item strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace/heavy heading */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .auth-x-hero-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }
}

/* =====================================================
   AUTH / LOGIN SECTION — VIBRANT BERRY UI
===================================================== */

.vb-auth-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-auth-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  min-height: 85vh; /* Takes up most of the screen */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-auth-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-right {
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Card --- */
.vb-auth-section .vb-container {
  width: 100%;
  max-width: 500px; /* Perfect width for a login box */
  position: relative;
  z-index: 2;
}

.vb-auth-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 32px; /* Plump, friendly corners */
  padding: 48px 40px;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.05);
}

/* --- Header --- */
.vb-auth-header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vb-auth-icon-blob {
  width: 72px;
  height: 72px;
  background: #f5f3ff;
  color: #8b5cf6; /* Vivid Violet */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

.vb-headline {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.vb-text-dark {
  color: #1e1b4b; /* Deep Purple Black */
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6;
  font-weight: 800;
}

.vb-auth-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* --- Form & Inputs --- */
.vb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.vb-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vb-label {
  color: #1e1b4b;
  font-size: 15px;
  font-weight: 700;
}

.vb-required {
  color: #f43f5e; /* Rose asterisk */
}

.vb-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vb-input-icon {
  position: absolute;
  left: 18px;
  color: #a78bfa; /* Lilac icon */
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.vb-input {
  width: 100%;
  background: #f5f3ff;
  color: #1e1b4b;
  border: 2px solid transparent;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vb-input-with-icon {
  padding-left: 50px !important;
}

.vb-input::placeholder {
  color: #a78bfa;
}

.vb-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.vb-input-wrapper:focus-within .vb-input-icon {
  color: #8b5cf6; /* Icon darkens when focused */
}

/* --- Buttons --- */
.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f5f3ff;
  color: #8b5cf6 !important;
  border: 2px solid transparent;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.4s ease;
}

.vb-btn-outline:hover {
  background: #ffffff;
  border-color: #8b5cf6;
  color: #7c3aed !important;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.vb-btn-full {
  width: 100%;
}

/* --- Divider & Secondary Action --- */
.vb-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.vb-auth-divider::before,
.vb-auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 2px dashed #ede9fe;
}

.vb-auth-divider span {
  padding: 0 16px;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-auth-secondary {
  text-align: center;
}

.vb-secondary-text {
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 600px) {
  .vb-auth-card {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .vb-headline {
    font-size: 32px;
  }
}

/* =====================================================
   SIGNUP HERO — SERENE EARTH
===================================================== */

.signup-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed the data grid overlay completely */
.signup-x-hero::before {
  display: none;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Editorial Subtitle */

.signup-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed the terminal prompt prefix */
.signup-x-eyebrow::before {
  display: none;
}

/* LEFT CONTENT */

.signup-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and heavy text-shadows */
}

.signup-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon teal highlight and shadow */
}

.signup-x-hero-left p {
  max-width: 520px;
  font-size: 17px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* RIGHT PANEL — SOFT INFO CONTEXT */

.signup-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Clean, solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px; /* More breathing room */
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

/* Removed hover laser line */
.signup-x-panel-item::before {
  display: none;
}

.signup-x-panel-item:hover {
  border-color: var(--primary); /* Sage green hover border */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.signup-x-panel-item strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace/heavy heading */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.signup-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================
   SIGN UP / REGISTRATION SECTION — VIBRANT BERRY UI
===================================================== */

.vb-signup-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-signup-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  min-height: 85vh; /* Centers the card beautifully */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-auth-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-right {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-left {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Card --- */
.vb-signup-section .vb-container {
  width: 100%;
  max-width: 500px; /* Perfect width for a registration box */
  position: relative;
  z-index: 2;
}

.vb-auth-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 32px; /* Plump, friendly corners */
  padding: 48px 40px;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.05);
}

/* --- Header --- */
.vb-auth-header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vb-auth-icon-blob {
  width: 72px;
  height: 72px;
  background: #f5f3ff;
  color: #8b5cf6; /* Vivid Violet */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

.vb-headline {
  font-size: clamp(32px, 4vw, 36px);
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.vb-text-dark {
  color: #1e1b4b; /* Deep Purple Black */
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6;
  font-weight: 800;
}

.vb-auth-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* --- Form & Inputs --- */
.vb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.vb-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vb-label {
  color: #1e1b4b;
  font-size: 15px;
  font-weight: 700;
}

.vb-required {
  color: #f43f5e; /* Rose asterisk */
}

.vb-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vb-input-icon {
  position: absolute;
  left: 18px;
  color: #a78bfa; /* Lilac icon */
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.vb-input {
  width: 100%;
  background: #f5f3ff;
  color: #1e1b4b;
  border: 2px solid transparent;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vb-input-with-icon {
  padding-left: 50px !important;
}

.vb-input::placeholder {
  color: #a78bfa;
}

.vb-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.vb-input-wrapper:focus-within .vb-input-icon {
  color: #8b5cf6; /* Icon darkens when focused */
}

/* --- Buttons --- */
.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f5f3ff;
  color: #8b5cf6 !important;
  border: 2px solid transparent;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.4s ease;
}

.vb-btn-outline:hover {
  background: #ffffff;
  border-color: #8b5cf6;
  color: #7c3aed !important;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.vb-btn-full {
  width: 100%;
}

/* --- Divider --- */
.vb-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.vb-auth-divider::before,
.vb-auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 2px dashed #ede9fe;
}

.vb-auth-divider span {
  padding: 0 16px;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Secondary Action --- */
.vb-auth-secondary {
  text-align: center;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 600px) {
  .vb-auth-card {
    padding: 40px 24px;
    border-radius: 24px;
  }
}

/* =====================================================
   USER DASHBOARD SECTION — VIBRANT BERRY UI
===================================================== */

.vb-dashboard-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-dashboard-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 80px 20px 120px 20px;
  overflow: hidden;
  min-height: 80vh;
}

/* --- Organic Glowing Backgrounds --- */
.vb-dash-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-right {
  bottom: -5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Layout --- */
.vb-dashboard-section .vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-dash-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* =========================================
   SIDEBAR
========================================= */
.vb-dash-sidebar {
  width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
  position: sticky;
  top: 100px; /* Sticks elegantly when scrolling */
}

.vb-dash-user-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px dashed #ede9fe;
}

.vb-avatar-lg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff; /* Explicit white */
  border-radius: 24px; /* Squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.vb-user-details {
  display: flex;
  flex-direction: column;
}

.vb-user-name {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.vb-user-email {
  color: #6b7280; /* Soft Gray */
  font-size: 14px;
  font-weight: 500;
}

/* Navigation */
.vb-dash-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vb-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  color: #4b5563; /* Medium Gray */
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important; /* No underlines */
  transition: all 0.3s ease;
}

.vb-nav-link i {
  font-size: 1.2rem;
  color: #a78bfa; /* Lilac */
  transition: color 0.3s ease;
}

.vb-nav-link:hover {
  background: #f5f3ff;
  color: #8b5cf6;
}

.vb-nav-link:hover i {
  color: #8b5cf6;
}

.vb-nav-link.active {
  background: #f5f3ff;
  color: #8b5cf6; /* Vivid Violet */
}

.vb-nav-link.active i {
  color: #8b5cf6;
}

.vb-nav-divider {
  height: 2px;
  background: #ede9fe;
  margin: 8px 0;
}

.vb-nav-danger {
  color: #f43f5e; /* Rose */
}

.vb-nav-danger i {
  color: #fb7185;
}

.vb-nav-danger:hover {
  background: #fff1f2;
  color: #e11d48;
}

.vb-nav-danger:hover i {
  color: #e11d48;
}

/* =========================================
   MAIN CONTENT
========================================= */
.vb-dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vb-dash-header {
  margin-bottom: 10px;
}

.vb-headline {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6;
  font-weight: 800;
}

.vb-description {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* Bento Grid */
.vb-dash-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.vb-bento-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

.vb-bento-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vb-bento-icon {
  width: 48px;
  height: 48px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.vb-bento-title {
  color: #1e1b4b;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

/* Account Info Area */
.vb-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: #fcfbfe;
  border: 2px solid #ede9fe;
  padding: 24px;
  border-radius: 16px;
}

.vb-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vb-info-label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-info-value {
  color: #1e1b4b;
  font-size: 18px;
  font-weight: 800;
}

/* Action Cards */
.vb-action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.vb-action-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fcfbfe;
  border: 2px solid #ede9fe;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none !important; /* No underlines */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-action-link:hover {
  border-color: #ddd6fe;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
}

.vb-action-icon {
  width: 44px;
  height: 44px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.vb-action-link:hover .vb-action-icon {
  transform: scale(1.1) rotate(-10deg);
}

.vb-action-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vb-action-text strong {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.vb-action-text span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

.vb-action-arrow {
  color: #a78bfa;
  font-size: 1.2rem;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.vb-action-link:hover .vb-action-arrow {
  color: #8b5cf6;
  transform: translateX(4px); /* Pushes right slightly */
}

/* Notice Alert */
.vb-notice-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eff6ff; /* Soft blue */
  border: 2px solid #bfdbfe;
  padding: 24px;
  border-radius: 20px;
}

.vb-notice-icon {
  font-size: 1.5rem;
  color: #3b82f6; /* Blue */
}

.vb-notice-text strong {
  color: #1e3a8a;
  font-size: 16px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.vb-notice-text p {
  color: #1e40af;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 992px) {
  .vb-dash-layout {
    flex-direction: column;
  }
  .vb-dash-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
  }
  .vb-dash-user-card {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  .vb-avatar-lg {
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .vb-dashboard-section {
    padding: 60px 15px;
  }
  .vb-bento-card {
    padding: 24px;
  }
  .vb-info-grid {
    grid-template-columns: 1fr; /* Stack info vertically */
  }
  .vb-action-link {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .vb-action-arrow {
    display: none; /* Hide arrow on small screens to save space */
  }
}

/* =====================================================
   ORDER TRACKING SECTION — VIBRANT BERRY UI
===================================================== */

.vb-track-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-track-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white */
  padding: 80px 20px 120px 20px;
  min-height: 70vh;
  overflow: hidden;
}

/* --- Background Glow Orbs --- */
.vb-track-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-right {
  bottom: 0;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Layout --- */
.vb-track-section .vb-container {
  max-width: 800px; /* Centered narrow layout for forms */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-track-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* --- Track Card Base --- */
.vb-track-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.04);
}

.vb-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vb-header-icon {
  width: 48px;
  height: 48px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.vb-card-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}

.vb-track-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* --- Input Group & Button --- */
.vb-track-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vb-label {
  color: #1e1b4b;
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}

.vb-track-input-group {
  display: flex;
  gap: 12px;
}

.vb-input-wrapper {
  position: relative;
  flex: 1;
}

.vb-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #a78bfa;
  font-size: 1.2rem;
}

.vb-input {
  width: 100%;
  background: #f5f3ff;
  border: 2px solid transparent;
  padding: 16px 20px 16px 52px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #1e1b4b;
  transition: all 0.3s ease;
}

.vb-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  border: none;
  padding: 0 32px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.vb-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
}

/* --- Alerts --- */
.vb-alert-error {
  margin-top: 24px;
  background: #fff1f2;
  border: 2px solid #fecdd3;
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  gap: 14px;
}

.vb-alert-icon {
  color: #e11d48;
  font-size: 1.2rem;
}
.vb-alert-text strong {
  color: #9f1239;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}
.vb-alert-text p {
  color: #be123c;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

/* --- Results Card --- */
.vb-result-card {
  border-left: 6px solid #8b5cf6; /* Visual cue for status */
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vb-status-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #fcfbfe;
  border-radius: 20px;
  margin-bottom: 24px;
}

.vb-status-icon-blob {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.vb-status-processing .vb-status-icon-blob {
  background: #f5f3ff;
  color: #8b5cf6;
}
.vb-status-dispatched .vb-status-icon-blob {
  background: #d1fae5;
  color: #10b981;
}

.vb-status-title {
  color: #1e1b4b;
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.vb-status-desc {
  color: #6b7280;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.vb-track-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 2px dashed #ede9fe;
  padding-top: 24px;
}

.vb-summary-label {
  display: block;
  color: #a78bfa;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.vb-summary-value {
  color: #1e1b4b;
  font-size: 18px;
  font-weight: 800;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .vb-track-section {
    padding: 60px 15px;
  }
  .vb-track-card {
    padding: 24px;
  }
  .vb-track-input-group {
    flex-direction: column;
  }
  .vb-btn-primary {
    padding: 16px;
    justify-content: center;
  }
  .vb-status-banner {
    flex-direction: column;
    text-align: center;
  }
  .vb-track-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =====================================================
   RETURN ORDER SECTION — VIBRANT BERRY UI
===================================================== */

.vb-return-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-return-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-return-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-right {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-left {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Cards --- */
.vb-return-section .vb-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.vb-return-form-card,
.vb-return-success-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 32px; /* Plump, friendly corners */
  padding: 48px 40px;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Success State --- */
.vb-return-success-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vb-success-icon-blob {
  width: 90px;
  height: 90px;
  background: #d1fae5;
  color: #10b981; /* Emerald Green */
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.vb-return-summary {
  background: #f5f3ff;
  border: 2px dashed #ede9fe;
  border-radius: 16px;
  padding: 20px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 350px;
}

.vb-summary-label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-summary-value {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 24px;
  font-weight: 800;
}

/* --- Form Header --- */
.vb-card-header-center {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vb-header-icon-blob {
  width: 72px;
  height: 72px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

/* Shared Typography */
.vb-headline {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #8b5cf6;
  font-weight: 800;
}

.vb-description {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* --- Form & Inputs --- */
.vb-return-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vb-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vb-label {
  color: #1e1b4b;
  font-size: 15px;
  font-weight: 700;
}

.vb-required {
  color: #f43f5e;
}

.vb-optional {
  color: #9ca3af;
  font-weight: 500;
  font-size: 13px;
}

.vb-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vb-input-icon {
  position: absolute;
  left: 18px;
  color: #a78bfa;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.vb-input,
.vb-select,
.vb-textarea {
  width: 100%;
  background: #f5f3ff;
  color: #1e1b4b;
  border: 2px solid transparent;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vb-input-with-icon {
  padding-left: 50px !important;
}

/* Custom Select Dropdown Styling */
.vb-select {
  appearance: none; /* Removes default browser arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 45px; /* Room for custom arrow */
}

.vb-select-arrow {
  position: absolute;
  right: 20px;
  color: #a78bfa;
  font-size: 1rem;
  pointer-events: none; /* Clicks pass through to select */
  transition: transform 0.3s ease;
}

.vb-input-wrapper:focus-within .vb-select-arrow {
  transform: rotate(180deg);
  color: #8b5cf6;
}

.vb-input::placeholder,
.vb-textarea::placeholder {
  color: #a78bfa;
}

.vb-input:focus,
.vb-select:focus,
.vb-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.vb-input-wrapper:focus-within .vb-input-icon {
  color: #8b5cf6;
}

.vb-textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Error Alert --- */
.vb-alert-error {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff1f2;
  border: 2px solid #fecdd3;
  padding: 16px 20px;
  border-radius: 16px;
}

.vb-alert-icon {
  font-size: 1.4rem;
  color: #e11d48;
}

.vb-alert-text strong {
  color: #9f1239;
  font-size: 16px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.vb-alert-text p {
  color: #be123c;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

/* --- Button --- */
.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-full {
  width: 100%;
  margin-top: 10px;
}

/* --- Policy Note --- */
.vb-policy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fcfbfe;
  padding: 16px;
  border-radius: 16px;
  margin-top: 10px;
}

.vb-policy-note i {
  color: #8b5cf6;
  font-size: 1.2rem;
}

.vb-policy-note span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 600px) {
  .vb-return-form-card,
  .vb-return-success-card {
    padding: 32px 24px;
    border-radius: 24px;
  }
}

/* =====================================================
   CART PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.vb-cart-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-cart-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px;
  min-height: 70vh;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-cart-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-right {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container --- */
.vb-cart-section .vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================
   EMPTY STATE
========================================= */
.vb-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.vb-empty-icon-blob {
  width: 120px;
  height: 120px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 30px; /* Squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.vb-empty-state .vb-headline {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.vb-empty-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* =========================================
   POPULATED CART LAYOUT
========================================= */
.vb-cart-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* --- LEFT: Items --- */
.vb-cart-items-wrapper {
  flex: 1;
}

.vb-cart-header {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 30px 0;
  padding-bottom: 16px;
  border-bottom: 2px dashed #ede9fe;
}

.vb-cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vb-cart-item-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.02);
  transition: all 0.3s ease;
}

.vb-cart-item-card:hover {
  border-color: #ddd6fe;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
  transform: translateY(-2px);
}

.vb-item-img-box {
  width: 100px;
  height: 100px;
  background: #f5f3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.vb-item-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vb-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vb-item-title {
  color: #1e1b4b;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.vb-item-unit-price {
  color: #6b7280;
  font-size: 15px;
  font-weight: 700;
}

.vb-item-unit-price small {
  font-weight: 500;
}

/* Quantity Control */
.vb-qty-pill {
  display: flex;
  align-items: center;
  background: #f5f3ff;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 4px;
  transition: border-color 0.3s ease;
}

.vb-qty-pill:focus-within {
  border-color: #8b5cf6;
}

.vb-qty-input {
  width: 50px;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #1e1b4b;
  outline: none;
  -moz-appearance: textfield;
}

.vb-qty-input::-webkit-outer-spin-button,
.vb-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vb-qty-update-btn {
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: #8b5cf6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}

.vb-qty-update-btn:hover {
  background: #8b5cf6;
  color: #ffffff;
  transform: rotate(45deg);
}

/* Item Totals */
.vb-item-total-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 110px;
  gap: 8px;
}

.vb-item-total {
  color: #1e1b4b;
  font-size: 20px;
  font-weight: 800;
}

.vb-remove-btn {
  background: transparent;
  border: none;
  color: #f43f5e; /* Punchy Rose */
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.vb-remove-btn:hover {
  background: #fff1f2;
}

/* --- RIGHT: Summary --- */
.vb-cart-summary-wrapper {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 120px; /* Sticks nicely when scrolling past items */
}

.vb-summary-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.05);
}

.vb-summary-title {
  color: #1e1b4b;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 24px 0;
}

.vb-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vb-summary-label {
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
}

.vb-summary-value {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
}

.vb-summary-divider {
  border: none;
  border-top: 2px dashed #ede9fe;
  margin: 20px 0;
}

.vb-total-row .vb-summary-label {
  color: #1e1b4b;
  font-size: 18px;
  font-weight: 800;
}

.vb-total-row .vb-summary-value {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 24px;
  font-weight: 800;
}

.vb-summary-trust {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #10b981; /* Emerald Green */
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: #f0fdf4;
  padding: 10px;
  border-radius: 12px;
}

/* General Button Styles (Reused) */
.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-full {
  width: 100%;
  margin-top: 20px;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-cart-layout {
    flex-direction: column;
  }
  .vb-cart-summary-wrapper {
    width: 100%;
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .vb-cart-section {
    padding: 60px 15px;
  }
  .vb-cart-item-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
  .vb-item-total-wrap {
    align-items: center;
  }
  .vb-summary-card {
    padding: 24px;
  }
}

/* =====================================================
   CHECKOUT PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.vb-checkout-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-checkout-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 80px 20px 120px 20px;
  overflow: hidden;
  min-height: 80vh;
}

/* --- Organic Glowing Backgrounds --- */
.vb-checkout-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-right {
  bottom: 0;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container & Layout --- */
.vb-checkout-section .vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-checkout-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* =========================================
   ERROR ALERT
========================================= */
.vb-alert-error {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff1f2; /* Soft red */
  border: 2px solid #fecdd3;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.1);
}

.vb-alert-icon {
  font-size: 1.5rem;
  color: #e11d48; /* Deep Rose */
}

.vb-alert-text strong {
  color: #9f1239;
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.vb-alert-text p {
  color: #be123c;
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}

/* =========================================
   LEFT: FORM AREA
========================================= */
.vb-checkout-form-area {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vb-checkout-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

.vb-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 2px dashed #ede9fe;
  padding-bottom: 20px;
}

.vb-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.vb-card-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

/* Form Inputs */
.vb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.vb-grid-single {
  grid-template-columns: 1fr;
}

.vb-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.vb-label {
  color: #1e1b4b;
  font-size: 15px;
  font-weight: 700;
}

.vb-required {
  color: #f43f5e; /* Rose asterisk */
}

.vb-input,
.vb-textarea {
  width: 100%;
  background: #f5f3ff; /* Faint violet */
  color: #1e1b4b;
  border: 2px solid transparent;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vb-input::placeholder,
.vb-textarea::placeholder {
  color: #a78bfa; /* Lilac placeholder */
}

.vb-input:focus,
.vb-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2); /* Chunky violet ring */
}

.vb-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Payment Options */
.vb-payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vb-payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid #ede9fe;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s var(--ease);
}

.vb-payment-option:hover {
  border-color: #ddd6fe;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.05);
}

.vb-payment-option.active {
  border-color: #8b5cf6;
  background: #f5f3ff;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

.vb-pay-icon {
  font-size: 2rem;
  color: #6b7280;
  transition: color 0.3s;
}

.vb-payment-option.active .vb-pay-icon {
  color: #8b5cf6;
}

.vb-pay-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vb-pay-info strong {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.vb-pay-info span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.vb-pay-check {
  color: transparent; /* Hidden by default */
  font-size: 1.5rem;
  transition: color 0.3s;
}

.vb-payment-option.active .vb-pay-check {
  color: #8b5cf6; /* Shows Violet check when active */
}

/* =========================================
   RIGHT: ORDER SUMMARY
========================================= */
.vb-checkout-summary {
  flex: 0.8;
  position: sticky;
  top: 100px; /* Sticks nicely on scroll */
}

.vb-summary-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.05);
}

.vb-summary-title {
  color: #1e1b4b;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px dashed #ede9fe;
}

.vb-summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.vb-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.vb-item-name-qty {
  display: flex;
  flex-direction: column;
}

.vb-item-name {
  color: #4b5563; /* Medium Gray */
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.vb-item-qty {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 13px;
  font-weight: 800;
}

.vb-item-price {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
}

.vb-summary-totals {
  border-top: 2px dashed #ede9fe;
  padding-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vb-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vb-totals-label {
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
}

.vb-totals-value {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
}

.vb-total-final .vb-totals-label {
  color: #1e1b4b;
  font-size: 18px;
  font-weight: 800;
}

.vb-total-final .vb-totals-value {
  color: #f43f5e; /* Punchy Rose */
  font-size: 26px;
  font-weight: 800;
}

/* Button */
.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-full {
  width: 100%;
}

.vb-summary-trust {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #10b981; /* Emerald Green */
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: #f0fdf4;
  padding: 10px;
  border-radius: 12px;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-checkout-layout {
    flex-direction: column;
  }
  .vb-checkout-summary {
    width: 100%;
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .vb-checkout-section {
    padding: 60px 15px;
  }
  .vb-checkout-card {
    padding: 24px;
  }
  .vb-form-grid {
    grid-template-columns: 1fr; /* Stack inputs on mobile */
  }
  .vb-summary-card {
    padding: 24px;
  }
}

/* =====================================================
   ORDER SUCCESS SECTION — VIBRANT BERRY UI
===================================================== */

.vb-success-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-success-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 100px 20px 120px 20px;
  overflow: hidden;
  min-height: 80vh;
}

/* --- Organic Glowing Backgrounds --- */
.vb-success-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-left {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(16, 185, 129, 0.08); /* Emerald Green Glow */
}

.vb-glow-bottom-right {
  bottom: -5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.06); /* Violet Glow */
}

/* --- Container & Header --- */
.vb-success-section .vb-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vb-success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.vb-success-icon-blob {
  width: 100px;
  height: 100px;
  background: #d1fae5; /* Soft Emerald */
  color: #10b981; /* Emerald */
  border-radius: 30px; /* Squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.vb-headline {
  font-size: clamp(38px, 5vw, 40px);
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.vb-text-dark {
  color: #1e1b4b;
  font-weight: 800;
}

.vb-text-gradient {
  background: linear-gradient(
    135deg,
    #10b981,
    #059669
  ); /* Green Gradient for Success */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #10b981;
  font-weight: 800;
}

.vb-description {
  color: #6b7280; /* Soft Gray */
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/* --- Layout --- */
.vb-success-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* =========================================
   LEFT: MAIN CONTENT
========================================= */
.vb-success-main {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vb-success-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

.vb-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vb-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.vb-card-title {
  color: #1e1b4b;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

/* Payment Status */
.vb-payment-status {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fcfbfe;
  border: 2px dashed #ede9fe;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.vb-status-icon {
  font-size: 2rem;
  color: #8b5cf6;
}

.vb-status-text {
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.vb-status-text strong {
  color: #1e1b4b;
  font-weight: 800;
}

/* Stats Bento Grid */
.vb-stats-bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.vb-stat-box {
  background: #f5f3ff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vb-stat-label {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-stat-value {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
}

/* Next Steps */
.vb-next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vb-next-steps-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vb-next-steps-list i {
  color: #8b5cf6;
  font-size: 1.2rem;
}

.vb-next-steps-list span {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 600;
}

/* Actions */
.vb-success-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #8b5cf6 !important;
  border: 2px solid #ede9fe;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.4s ease;
}

.vb-btn-outline:hover {
  border-color: #8b5cf6;
  color: #7c3aed !important;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

/* =========================================
   RIGHT: SIDEBAR TRACKER
========================================= */
.vb-success-sidebar {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

.vb-tracker-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

.vb-tracker-title {
  color: #1e1b4b;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 24px 0;
}

/* Vertical Progress Rail */
.vb-progress-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Connecting Line */
.vb-progress-rail::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 2px;
  background: #ede9fe;
  z-index: 0;
}

.vb-rail-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.vb-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Active State */
.vb-rail-step.active .vb-step-circle {
  background: #8b5cf6;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}
.vb-rail-step.active .vb-step-info strong {
  color: #1e1b4b;
}

/* Pending State */
.vb-rail-step.pending .vb-step-circle {
  background: #f5f3ff;
  color: #a78bfa;
  border: 2px solid #ede9fe;
}
.vb-rail-step.pending .vb-step-info strong {
  color: #9ca3af;
}

.vb-step-info {
  display: flex;
  flex-direction: column;
  padding-top: 6px;
}

.vb-step-info strong {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.vb-step-info span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

/* Help Box */
.vb-help-card {
  background: #f5f3ff; /* Faint Violet */
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vb-help-icon {
  font-size: 1.8rem;
  color: #8b5cf6;
}

.vb-help-content {
  display: flex;
  flex-direction: column;
}

.vb-help-content strong {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.vb-help-content p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.vb-help-content a {
  color: #8b5cf6 !important;
  font-weight: 800;
  text-decoration: none !important; /* No underline */
  margin-bottom: 2px;
}

.vb-help-content span {
  color: #4b5563;
  font-weight: 600;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-success-layout {
    flex-direction: column;
  }
  .vb-success-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .vb-success-section {
    padding: 60px 15px;
  }
  .vb-success-card {
    padding: 24px;
  }
  .vb-stats-bento {
    grid-template-columns: 1fr;
  }
  .vb-success-actions {
    flex-direction: column;
  }
  .vb-btn-primary,
  .vb-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .vb-headline {
    font-size: 34px;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — SERENE EARTH
===================================================== */

.shop-hard {
  background: var(--bg); /* Warm off-white */
  position: relative;
}

/* Removed the subtle schematic grid overlay completely */
.shop-hard::before {
  display: none;
}

.shop-hard-body {
  padding: 100px 20px 120px; /* Added horizontal padding for safety */
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* =====================================================
   EMPTY STATE (NO PRODUCTS FOUND)
===================================================== */

.shop-hard-empty {
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border); /* Clean boundary */
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 56px;
  border-radius: var(--radius-lg); /* Soft corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed dark glass, cyberpunk red border, and glowing shadows */
}

.shop-hard-empty strong {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase, heavy letter-spacing, and neon red glow */
}

.shop-hard-empty p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(280px, 1fr)
  ); /* Slightly wider for elegant spacing */
  gap: 40px;
}

/* =====================================================
   SHOP PRODUCT — EDITORIAL TILE
===================================================== */

.shop-product-card {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-lg); /* Friendly rounded edges */
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  /* Removed dark glass filter and neon top separator */
}

.shop-product-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-color: var(--primary); /* Sage green hover border */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   IMAGE (SOFT HOUSING)
===================================================== */

.shop-product-image {
  position: relative;
  background: var(--card); /* Soft beige background */
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md); /* Soft corners */
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.shop-product-card:hover .shop-product-image {
  background: var(--surface);
  border-color: var(--border);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  /* Removed heavy drop shadow */
  transition: transform 0.6s var(--ease);
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.05); /* Gentle, elegant zoom */
  /* Removed hologram glow */
}

/* =====================================================
   STOCK BADGE — ELEGANT INDICATOR
===================================================== */

.shop-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px; /* Soft pill shape */
  z-index: 2;
  /* Removed neon box-shadows */
}

.shop-stock.in {
  background: rgba(92, 113, 94, 0.1); /* Subtle sage tint */
  color: var(--primary-dark);
  border: 1px solid rgba(92, 113, 94, 0.2);
}

.shop-stock.out {
  background: rgba(217, 125, 84, 0.1); /* Subtle terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.2);
}

/* =====================================================
   INFO (CLEAN TYPOGRAPHY)
===================================================== */

.shop-product-info {
  padding: 24px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter-spacing */
}

.shop-product-card:hover .shop-product-info h3 {
  color: var(--primary-dark);
  /* Removed neon teal text-shadow */
}

.shop-product-info p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border); /* Clean solid line instead of dashed */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  font-weight: 600;
  color: var(--text); /* Deep charcoal */
  /* Removed neon purple glow */
}

/* =====================================================
   ADD TO CART — PILL BUTTON
===================================================== */

.shop-add-btn {
  background: var(--surface);
  color: var(--primary); /* Sage green */
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px; /* Elegant pill shape */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.shop-add-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15); /* Soft sage lift */
  transform: translateY(-2px);
}

/* DISABLED (OUT OF STOCK) */

.shop-disabled-btn {
  background: var(--bg);
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px; /* Pill shape */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: not-allowed;
  /* Removed uppercase */
}

/* OUT OF STOCK DIMMING */

.shop-product-card.out {
  opacity: 0.7; /* Soften the dimming slightly */
  /* Removed grayscale for a cleaner look */
}

.shop-product-card.out:hover {
  transform: translateY(-2px); /* Much softer lift */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-color: var(--border); /* Remove hover color change for out of stock */
}

/* LINK */

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .shop-hard-body {
    padding: 80px 15px;
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   SINGLE PRODUCT PAGE — VIBRANT BERRY UI
===================================================== */

.vb-single-product-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-single-product-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 60px 20px 100px 20px;
  overflow: hidden;
}

/* --- Organic Glowing Backgrounds --- */
.vb-pro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-top-right {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-bottom-left {
  bottom: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container --- */
.vb-single-product-section .vb-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================
   TOP LAYOUT (Media + Info)
========================================= */
.vb-pro-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

/* LEFT: Image Box */
.vb-pro-media {
  flex: 1;
}

.vb-pro-image-box {
  width: 100%;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.05);
  transition: all 0.5s ease;
}

.vb-pro-image-box:hover {
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.vb-pro-main-img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-pro-image-box:hover .vb-pro-main-img {
  transform: scale(1.05) translateY(-10px);
  filter: drop-shadow(0 20px 30px rgba(139, 92, 246, 0.15));
}

/* RIGHT: Info Area */
.vb-pro-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vb-pro-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.vb-meta-brand {
  color: #1e1b4b; /* Deep Purple */
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vb-meta-divider {
  color: #d1d5db;
}

.vb-meta-category {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 14px;
  font-weight: 700;
}

.vb-pro-title {
  color: #1e1b4b;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.vb-pro-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.vb-stars {
  color: #fbbf24; /* Golden */
  font-size: 1.1rem;
}

.vb-pro-rating strong {
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
}

.vb-pro-rating span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.vb-pro-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px dashed #ede9fe;
}

.vb-pro-price {
  color: #f43f5e; /* Rose */
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.vb-tax-badge {
  background: #f5f3ff;
  color: #8b5cf6;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.vb-pro-desc {
  color: #4b5563; /* Medium Gray */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* Actions */
.vb-pro-actions {
  margin-bottom: 40px;
}

.vb-action-forms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vb-btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

.vb-btn-outline {
  background: #ffffff;
  color: #8b5cf6 !important;
  border: 2px solid #ede9fe;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.05);
}

.vb-btn-outline:hover {
  border-color: #8b5cf6;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.15);
}

.vb-btn-disabled {
  background: #f3f4f6;
  color: #9ca3af !important;
  border: 2px solid #e5e7eb;
  cursor: not-allowed;
}

/* Trust Badges */
.vb-pro-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vb-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 2px solid #ede9fe;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.02);
}

.vb-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vb-trust-item span {
  color: #1e1b4b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

/* =========================================
   BOTTOM: CSS TABS
========================================= */
.vb-pro-tabs-container {
  width: 100%;
}

.vb-tab-radio {
  display: none; /* Hide the actual radio inputs */
}

.vb-tab-headers {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.vb-tab-label {
  background: #ffffff;
  color: #6b7280;
  border: 2px solid #ede9fe;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.vb-tab-label:hover {
  border-color: #ddd6fe;
  color: #8b5cf6;
}

/* Tab Active States using CSS sibling selectors */
#vb_tab1:checked ~ .vb-tab-headers label[for="vb_tab1"],
#vb_tab2:checked ~ .vb-tab-headers label[for="vb_tab2"],
#vb_tab3:checked ~ .vb-tab-headers label[for="vb_tab3"],
#vb_tab4:checked ~ .vb-tab-headers label[for="vb_tab4"] {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Panel Hiding/Showing */
.vb-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#vb_tab1:checked ~ .vb-tab-content-wrapper .vb-panel-1,
#vb_tab2:checked ~ .vb-tab-content-wrapper .vb-panel-2,
#vb_tab3:checked ~ .vb-tab-content-wrapper .vb-panel-3,
#vb_tab4:checked ~ .vb-tab-content-wrapper .vb-panel-4 {
  display: block;
}

/* Tab Panel Styling */
.vb-panel-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

.vb-panel-title {
  color: #1e1b4b;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.vb-panel-text {
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.vb-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vb-panel-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 600;
}

.vb-panel-list i {
  color: #8b5cf6;
  font-size: 1.2rem;
}

/* Specifications Tables */
.vb-spec-table-wrap {
  overflow-x: auto;
}

.vb-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.vb-spec-table th,
.vb-spec-table td {
  padding: 16px 20px;
  border-bottom: 2px dashed #ede9fe;
}

.vb-spec-table tr:last-child th,
.vb-spec-table tr:last-child td {
  border-bottom: none;
}

.vb-spec-table th {
  background: #fcfbfe;
  color: #1e1b4b;
  font-size: 15px;
  font-weight: 800;
  width: 35%;
  border-right: 2px solid #ede9fe;
}

.vb-spec-table td {
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1024px) {
  .vb-pro-layout {
    flex-direction: column;
    gap: 40px;
  }
  .vb-pro-image-box {
    padding: 20px;
  }
  .vb-pro-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vb-single-product-section {
    padding: 40px 15px 80px 15px;
  }
  .vb-pro-title {
    font-size: 32px;
  }
  .vb-action-forms {
    flex-direction: column;
  }
  .vb-tab-label {
    width: 100%;
    text-align: center;
  }
  .vb-panel-card {
    padding: 24px;
  }
  .vb-spec-table th,
  .vb-spec-table td {
    padding: 12px;
    font-size: 14px;
  }
  .vb-spec-table th {
    width: 40%;
  }
}

/* =====================================================
   CATEGORY LANDING HERO — SERENE EARTH
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--bg); /* Warm off-white fallback */
}

/* LINK WRAPPER */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* IMAGE WITH LIGHT EDITORIAL OVERLAY */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* This elegant gradient ensures the dark text is readable over any image */
.cat-landing-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(249, 248, 246, 0.95) 0%,
    rgba(249, 248, 246, 0.4) 100%
  );
  z-index: 2;
  transition: opacity 0.4s var(--ease);
}

.cat-landing-link:hover::before {
  opacity: 0.85; /* Image reveals slightly more on hover */
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  position: relative;
  z-index: 3; /* Sits above the image overlay */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
}

.cat-landing-title {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text); /* Deep charcoal */
  max-width: 600px;
}

.cat-landing-title span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
}

.cat-landing-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cat-landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary); /* Sage green */
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.cat-landing-cta::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

/* Hover effects tied to the parent link wrapper */
.cat-landing-link:hover .cat-landing-cta {
  color: var(--primary-dark);
}

.cat-landing-link:hover .cat-landing-cta::after {
  transform: translateX(6px); /* Gentle slide */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }

  .cat-landing-link::before {
    /* More solid overlay on mobile for easier reading */
    background: linear-gradient(
      to bottom,
      rgba(249, 248, 246, 0.95) 0%,
      rgba(249, 248, 246, 0.7) 100%
    );
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 420px; /* Slight adjustment to give text room */
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 16px;
  }
}

/* =====================================================
   CATEGORY PAGE SECTION — VIBRANT BERRY UI
===================================================== */

.vb-category-section * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-category-section {
  position: relative;
  background-color: #fcfbfe; /* Soft violet-tinted white base */
  padding: 80px 20px 120px 20px;
  overflow: hidden;
  min-height: 60vh;
}

/* --- Organic Glowing Backgrounds --- */
.vb-cat-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-left {
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-right {
  bottom: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

/* --- Container --- */
.vb-category-section .vb-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================
   EMPTY STATE
========================================= */
.vb-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 2px dashed #ede9fe;
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.03);
}

.vb-empty-icon-blob {
  width: 100px;
  height: 100px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.vb-empty-state .vb-headline {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.vb-empty-desc {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* =========================================
   PRODUCT GRID & CARDS
========================================= */
.vb-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.vb-cat-product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-cat-product-card:hover {
  border-color: #ddd6fe;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

/* Ensure the link area stretches, pushing the button to the bottom */
.vb-cat-product-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none !important; /* NO UNDERLINES */
}

/* Image Presentation Box */
.vb-product-image-box {
  background: #f5f3ff;
  border-radius: 16px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.vb-cat-product-card:hover .vb-product-image-box {
  background: #efe9ff;
}

.vb-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vb-cat-product-card:hover .vb-product-img {
  transform: scale(1.08) rotate(-2deg);
}

/* Stock Badges */
.vb-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.vb-stock-in {
  background: #10b981; /* Emerald Green */
  color: #ffffff;
}

.vb-stock-out {
  background: #f43f5e; /* Punchy Rose */
  color: #ffffff;
}

/* Product Info */
.vb-cat-product-info {
  padding: 20px 8px 24px 8px;
  display: flex;
  flex-direction: column;
  flex: 1; /* Allows price to sit at the bottom of the info area */
}

.vb-product-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.vb-product-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.vb-product-price {
  color: #1e1b4b;
  font-size: 24px;
  font-weight: 800;
  margin-top: auto; /* Pushes price to the bottom if desc is short */
}

/* Action Area */
.vb-cat-product-action {
  margin-top: auto;
}

.vb-btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f3f4f6; /* Flat gray */
  color: #9ca3af !important;
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  border: 2px solid #e5e7eb;
  cursor: not-allowed;
}

.vb-btn-full {
  width: 100%;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 768px) {
  .vb-category-section {
    padding: 60px 15px;
  }
  .vb-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
  .vb-product-image-box {
    height: 200px;
  }
}

/* =====================================================
   CATEGORY BROWSER — VIBRANT BERRY UI
===================================================== */

.vb-category-browser * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-category-browser {
  position: relative;
  background-color: #fcfbfe; /* Soft violet white */
  padding: 80px 20px 120px 20px;
  overflow: hidden;
  min-height: 60vh;
}

/* --- Background Glow Orbs --- */
.vb-cat-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.vb-glow-1 {
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.08); /* Violet */
}

.vb-glow-2 {
  bottom: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(244, 63, 94, 0.05); /* Rose */
}

.vb-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================================
   EMPTY STATE STYLING
========================================= */
.vb-empty-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 30px;
  background: #ffffff;
  border: 2px dashed #ede9fe;
  border-radius: 32px;
}

.vb-empty-icon {
  width: 90px;
  height: 90px;
  background: #f5f3ff;
  color: #8b5cf6;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.vb-empty-text {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* =========================================
   PRODUCT GRID & CARDS
========================================= */
.vb-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.vb-product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: 28px; /* Plump edges */
  padding: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
}

.vb-product-card:hover {
  border-color: #ddd6fe;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

.vb-card-link {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Image Wrap */
.vb-card-image-wrap {
  position: relative;
  background: #f8f7ff;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vb-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.vb-product-card:hover .vb-card-img {
  transform: scale(1.1) rotate(2deg);
}

/* Tags */
.vb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.vb-tag-stock {
  background: #d1fae5;
  color: #065f46;
}
.vb-tag-out {
  background: #fee2e2;
  color: #991b1b;
}

/* Body Info */
.vb-card-body {
  padding: 20px 8px 12px 8px;
}

.vb-card-title {
  color: #1e1b4b; /* Deep Purple Black */
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.vb-card-desc {
  color: #6b7280; /* Soft Gray */
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.vb-card-price {
  color: #8b5cf6; /* Vivid Violet */
  font-size: 22px;
  font-weight: 800;
}

/* Footer Action */
.vb-card-footer {
  padding: 8px 0 0 0;
  margin-top: auto; /* Anchors button to bottom */
}

.vb-btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f3f4f6;
  color: #9ca3af !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #e5e7eb;
  width: 100%;
  cursor: not-allowed;
}

.vb-w-100 {
  width: 100%;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .vb-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  .vb-card-image-wrap {
    height: 200px;
  }
}

.text-black {
  color: black !important;
}
