:root {
  /* =========================================
COLORS — MODERN PREMIUM BLUE
========================================= */

  --bg: #f5f7fb;
  --surface: #ffffff;
  --card: rgba(255, 255, 255, 0.8);

  --primary: #4f46e5;
  --primary-dark: #3730a3;

  --secondary: #06b6d4;
  --accent: #8b5cf6;

  --text: #0f172a;
  --text-muted: #64748b;
  --text-faint: #94a3b8;

  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.15);

  /* =========================================
SHADOWS
========================================= */

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 40px 80px rgba(15, 23, 42, 0.15);

  /* =========================================
GLASS EFFECTS
========================================= */

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: 18px;

  /* =========================================
RADIUS
========================================= */

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  /* =========================================
SPACING
========================================= */

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 140px;

  /* =========================================
TYPOGRAPHY
========================================= */

  --font-body: "Inter", sans-serif;
  --font-heading: "Space Grotesk", "Inter", sans-serif;

  /* =========================================
GRADIENTS
========================================= */

  --gradient-primary: linear-gradient(
    135deg,
    #4f46e5 0%,
    #8b5cf6 50%,
    #06b6d4 100%
  );

  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* =========================================
MOTION
========================================= */

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.45s var(--ease);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(79, 70, 229, 0.06),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(6, 182, 212, 0.05),
      transparent 35%
    ),
    var(--bg);

  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* =========================================
PREMIUM TYPOGRAPHY SYSTEM
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

/* Hero Headlines */

h1 {
  font-size: clamp(56px, 8vw, 96px);

  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  max-width: 12ch;
}

/* Section Headlines */

h2 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 16ch;
}

/* Card Headlines */

h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
}

/* Small Headlines */

h4 {
  font-size: 22px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Paragraphs */

p {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0 0 var(--space-md);
  max-width: 65ch;
}

/* Strong Text */

strong {
  color: var(--text);
  font-weight: 600;
  position: relative;
}

/* Modern Link Style */

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Selection */

::selection {
  background: rgba(79, 70, 229, 0.15);
  color: var(--text);
}

/* Utilities */

.mt-5 {
  margin-top: 40px;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* Responsive */

@media (max-width: 768px) {
  h1 {
    font-size: 52px;
    max-width: 100%;
  }

  h2 {
    font-size: 36px;
    max-width: 100%;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =====================================================
LINKS
===================================================== */

a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

a.link-animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.4s var(--ease);
}

a.link-animated:hover::after {
  width: 100%;
}

/* =====================================================
DIVIDER
===================================================== */

.hr {
  width: 100%;
  height: 1px;
  border: none;
  margin: var(--space-xl) 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 23, 42, 0.12),
    transparent
  );
}

/* =====================================================
BUTTON SYSTEM
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 32px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;

  border-radius: var(--radius-sm);
  border: none;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: var(--transition);
}

/* =========================================
PRIMARY BUTTON
========================================= */

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;

  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* =========================================
GLASS BUTTON
========================================= */

.btn-ghost {
  background: var(--glass-bg);

  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));

  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: #ffffff;

  border-color: rgba(79, 70, 229, 0.2);

  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* =========================================
OUTLINE BUTTON
========================================= */

.btn-outline {
  background: transparent;

  border: 1.5px solid var(--primary);

  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;

  transform: translateY(-4px);
}

/* =====================================================
SURFACES
===================================================== */

.surface {
  background: var(--surface);
}

/* =====================================================
PREMIUM GLASS CARD
===================================================== */

.card {
  background: var(--glass-bg);

  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: var(--space-lg);

  box-shadow: var(--shadow-md);

  transition: var(--transition);

  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

/* =========================================
CARD HOVER
========================================= */

.card:hover {
  transform: translateY(-10px);

  border-color: rgba(79, 70, 229, 0.18);

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

/* Premium glow */

.card:hover::after {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(79, 70, 229, 0.08),
    transparent 40%
  );

  pointer-events: none;
}

/* =====================================================
PREMIUM FORM SYSTEM
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: var(--text);

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  padding: 18px 22px;

  font-size: 15px;
  font-weight: 500;

  font-family: inherit;

  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);

  transition: var(--transition);
}

/* =========================================
PLACEHOLDERS
========================================= */

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
  font-weight: 400;
}

/* =========================================
HOVER STATE
========================================= */

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(79, 70, 229, 0.18);

  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

/* =========================================
FOCUS STATE
========================================= */

input:focus,
textarea:focus,
select:focus {
  outline: none;

  background: #ffffff;

  border-color: rgba(79, 70, 229, 0.35);

  box-shadow:
    0 0 0 5px rgba(79, 70, 229, 0.08),
    0 12px 30px rgba(79, 70, 229, 0.12);

  transform: translateY(-1px);
}

/* =========================================
TEXTAREA
========================================= */

textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.8;
}

/* =========================================
SELECT
========================================= */

select {
  cursor: pointer;
}

/* =========================================
DISABLED
========================================= */

input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* =====================================================
UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--text-muted);
}

.w-100 {
  width: 100%;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

/* =====================================================
SECTION SPACING
===================================================== */

.section {
  position: relative;
  padding: var(--space-2xl) 0;
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  input,
  textarea,
  select {
    padding: 16px 18px;
    font-size: 15px;
  }

  p {
    font-size: 16px;
  }
}

/* =====================================================
SURFACES & GLASS CARDS
===================================================== */

.surface {
  background: var(--surface);
  position: relative;
}

/* =========================================
PREMIUM CARD
========================================= */

.card {
  position: relative;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: var(--radius-md);

  padding: var(--space-lg);

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);

  transition: var(--transition);
}

/* Top Highlight */

.card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
}

/* Gradient Glow */

.card::after {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);

  opacity: 0;

  transition: var(--transition);
}

/* Hover */

.card:hover {
  transform: translateY(-12px);

  border-color: rgba(79, 70, 229, 0.18);

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.card:hover::after {
  opacity: 1;
}

/* =========================================
FEATURE CARD VARIANT
========================================= */

.card-feature {
  text-align: center;
}

.card-feature .icon {
  margin-bottom: 24px;
}

/* =========================================
DARK CARD VARIANT
========================================= */

.card-dark {
  background: var(--gradient-dark);

  border: none;

  color: #ffffff;
}

.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4,
.card-dark h5,
.card-dark p {
  color: #ffffff;
}

/* =====================================================
UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--text-muted);
}

.w-100 {
  width: 100%;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .card {
    padding: 24px;
  }

  .section {
    padding: 80px 0;
  }

  p {
    font-size: 16px;
  }
}

/* =====================================================
PAGE HEADER — PREMIUM MODERN
===================================================== */

.vb-page-header * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-page-header {
  position: relative;

  padding: 180px 20px 120px;

  overflow: hidden;
  text-align: center;

  background:
    radial-gradient(
      circle at top left,
      rgba(79, 70, 229, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at top right,
      rgba(6, 182, 212, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* =========================================
BACKGROUND ORBS
========================================= */

.vb-header-glow {
  position: absolute;

  top: -250px;
  left: 50%;

  transform: translateX(-50%);

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(79, 70, 229, 0) 70%
  );

  filter: blur(60px);

  pointer-events: none;
  z-index: 0;
}

/* =========================================
CONTENT WRAPPER
========================================= */

.vb-page-header-inner {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================
BREADCRUMB GLASS PILL
========================================= */

.vb-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 12px 26px;

  margin-bottom: 40px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

  transition: var(--transition);
}

.vb-breadcrumb:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.vb-breadcrumb a {
  color: var(--text-muted);

  font-size: 14px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-breadcrumb a:hover {
  color: var(--primary);
}

.vb-breadcrumb a i {
  color: var(--primary);
  font-size: 15px;
}

.vb-separator {
  color: var(--text-faint);
}

.vb-current {
  color: var(--primary);
  font-weight: 700;
}

/* =========================================
PAGE TITLE
========================================= */

.vb-page-header .vb-headline {
  font-size: clamp(56px, 8vw, 92px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 28px;

  max-width: 12ch;
}

/* =========================================
TEXT HELPERS
========================================= */

.vb-text-dark {
  color: var(--text);
  font-weight: 700;
}

.vb-text-gradient {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  color: var(--primary);
}

/* =========================================
DESCRIPTION
========================================= */

.vb-page-header .vb-description {
  max-width: 700px;

  font-size: 19px;
  line-height: 1.9;

  color: var(--text-muted);

  margin: 0 auto;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .vb-page-header {
    padding: 140px 20px 80px;
  }

  .vb-page-header .vb-headline {
    font-size: 52px;
    max-width: 100%;
  }

  .vb-breadcrumb {
    padding: 10px 18px;
    gap: 10px;
  }

  .vb-page-header .vb-description {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =====================================================
TOP BAR — PREMIUM ANNOUNCEMENT BAR
===================================================== */

.topbar-dark {
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.05),
    rgba(6, 182, 212, 0.05)
  );

  border-bottom: 1px solid rgba(15, 23, 42, 0.06);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  color: var(--text);

  font-size: 14px;

  overflow: hidden;
}

/* =========================================
TOPBAR GLOW
========================================= */

.topbar-dark::before {
  content: "";

  position: absolute;

  top: -80px;
  left: 50%;

  transform: translateX(-50%);

  width: 400px;
  height: 200px;

  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);

  pointer-events: none;
}

/* =========================================
INNER WRAPPER
========================================= */

.topbar-inner {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 52px;
}

/* =========================================
LEFT SIDE
========================================= */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-msg {
  color: var(--text-muted);

  font-size: 14px;
  font-weight: 500;
}

.topbar-msg strong {
  color: var(--text);

  font-weight: 600;
}

/* =========================================
BADGE
========================================= */

.topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 14px;

  border-radius: 999px;

  background: var(--gradient-primary);

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;

  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);

  transition: var(--transition);
}

.topbar-badge:hover {
  transform: translateY(-2px);

  box-shadow: 0 16px 35px rgba(79, 70, 229, 0.3);
}

/* =========================================
RIGHT SIDE
========================================= */

.topbar-right {
  color: var(--text-muted);

  font-size: 14px;
  font-weight: 500;
}

/* =========================================
HELP LINK
========================================= */

.topbar-help strong {
  color: var(--primary);

  font-weight: 600;

  text-decoration: none;

  transition: var(--transition);
}

.topbar-help strong:hover {
  color: var(--primary-dark);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    text-align: center;
  }

  .topbar-msg {
    font-size: 13px;
  }
}

/* =====================================================
PREMIUM FLOATING HEADER
===================================================== */

.header-soft {
  position: sticky;
  top: 20px;

  z-index: 1000;

  width: calc(100% - 40px);
  max-width: 1450px;

  margin: 0 auto;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 24px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);

  transition: var(--transition);
}

.header-soft:hover {
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* =========================================
INNER
========================================= */

.header-soft-inner {
  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 40px;

  min-height: 82px;

  padding: 0 28px;
}

.container.header-soft-inner {
  max-width: 100%;
  margin: 0;
}

/* =========================================
LOGO
========================================= */

.logo-soft {
  display: flex;
  align-items: center;
}

.logo-soft img {
  display: block;

  max-height: 46px;

  margin: 0;

  transition: var(--transition);
}

.logo-soft:hover img {
  transform: scale(1.04);
}

/* =========================================
NAVIGATION
========================================= */

.nav-soft {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 36px;
}

.nav-soft a {
  position: relative;

  color: var(--text-muted);

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  transition: var(--transition);
}

.nav-soft a:hover,
.nav-soft a.active {
  color: var(--text);
}

/* Modern Dot Indicator */

.nav-soft a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -10px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--primary);

  transform: translateX(-50%) scale(0);

  transition: var(--transition);
}

.nav-soft a:hover::after,
.nav-soft a.active::after {
  transform: translateX(-50%) scale(1);
}

/* =========================================
HEADER ACTIONS
========================================= */

.header-actions {
  display: flex;

  align-items: center;

  gap: 12px;
}

/* =========================================
SEARCH
========================================= */

.search-soft {
  display: flex;
  align-items: center;

  gap: 10px;

  width: 220px;

  padding: 0 18px;

  height: 48px;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(15, 23, 42, 0.06);

  border-radius: 999px;

  transition: var(--transition);
}

.search-soft:hover,
.search-soft:focus-within {
  background: #ffffff;

  border-color: rgba(79, 70, 229, 0.15);

  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
}

.search-soft i {
  color: var(--text-faint);

  font-size: 14px;

  margin: 0;
}

.search-soft input {
  width: 100%;

  background: transparent;

  border: none;
  outline: none;

  padding: 0;

  font-size: 14px;

  box-shadow: none !important;
}

.search-soft input:focus {
  transform: none;
}

.search-soft input::placeholder {
  color: var(--text-faint);
}

/* =========================================
ICON BUTTONS
========================================= */

.icon-btn {
  width: 48px;
  height: 48px;

  border-radius: 16px;

  border: 1px solid rgba(15, 23, 42, 0.06);

  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text);

  position: relative;

  transition: var(--transition);
}

.icon-btn:hover {
  transform: translateY(-3px);

  background: #ffffff;

  border-color: rgba(79, 70, 229, 0.15);

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

/* =========================================
CART BADGE
========================================= */

.cart-badge {
  position: absolute;

  top: -4px;
  right: -4px;

  min-width: 20px;
  height: 20px;

  padding: 0 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-primary);

  color: #ffffff;

  font-size: 10px;
  font-weight: 700;

  border-radius: 999px;

  border: 2px solid #ffffff;
}

/* =========================================
MOBILE TOGGLE
========================================= */

.menu-toggle {
  display: none;

  width: 48px;
  height: 48px;

  border-radius: 16px;

  border: 1px solid rgba(15, 23, 42, 0.06);

  background: rgba(255, 255, 255, 0.7);

  color: var(--text);

  cursor: pointer;

  transition: var(--transition);
}

.menu-toggle:hover {
  transform: translateY(-2px);

  background: #ffffff;
}

/* =========================================
MOBILE MENU
========================================= */

.mobile-menu {
  position: fixed;
  inset: 0;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(30px);

  padding: 40px;

  z-index: 2000;

  transform: translateX(100%);

  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 50px;
}

.mobile-menu-header button {
  width: 48px;
  height: 48px;

  border-radius: 16px;

  border: none;

  background: rgba(15, 23, 42, 0.05);

  cursor: pointer;
}

/* =========================================
MOBILE NAV
========================================= */

.mobile-nav a {
  display: block;

  font-size: clamp(32px, 5vw, 48px);

  font-weight: 700;

  margin-bottom: 24px;

  color: var(--text);

  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);

  transform: translateX(12px);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .nav-soft,
  .search-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-soft {
    width: calc(100% - 20px);
    top: 10px;
  }

  .header-soft-inner {
    min-height: 70px;
    padding: 0 18px;
  }
}

@media (max-width: 600px) {
  .topbar-dark {
    display: none;
  }

  .icon-btn {
    display: none;
  }
}

/* =====================================================
HERO BANNER — PREMIUM MODERN VERSION
===================================================== */

.vb-hero-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-hero-section {
  position: relative;
  width: 100%;
  min-height: 900px;

  overflow: hidden;

  display: flex;
  align-items: center;
}

/* =========================================
BACKGROUND EFFECTS
========================================= */

.vb-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}

.vb-glow-primary {
  width: 650px;
  height: 650px;

  top: -200px;
  left: -200px;
}

.vb-glow-accent {
  width: 650px;
  height: 650px;

  bottom: -250px;
  right: -200px;

  background: rgba(6, 182, 212, 0.12);
}

/* =========================================
CONTAINER
========================================= */

.vb-hero-container {
  position: relative;
  z-index: 2;

  max-width: 1450px;
  width: 100%;

  margin: 0 auto;

  padding: 140px 20px 120px;
}

.vb-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.vb-slider-track {
  display: flex;
  width: 100%;

  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.vb-slide {
  flex: 0 0 100%;
  min-width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;
}

/* =========================================
CONTENT AREA
========================================= */

.vb-content-area {
  flex: 1;
  max-width: 650px;
}

/* =========================================
BADGE
========================================= */

.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  margin-bottom: 30px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);

  transition: var(--transition);
}

.vb-badge-pill:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.vb-badge-icon {
  color: var(--primary);
}

.vb-badge-text {
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--text);
}

/* =========================================
HEADLINE
========================================= */

.vb-headline {
  font-size: clamp(60px, 7vw, 100px);

  line-height: 0.95;

  letter-spacing: -0.06em;

  margin-bottom: 30px;

  max-width: 10ch;
}

.vb-text-dark {
  color: var(--text);
}

.vb-text-gradient {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
DESCRIPTION
========================================= */

.vb-description {
  font-size: 20px;

  line-height: 1.9;

  color: var(--text-muted);

  margin-bottom: 45px;

  max-width: 580px;
}

/* =========================================
BUTTONS
========================================= */

.vb-action-row {
  display: flex;
  gap: 18px;

  flex-wrap: wrap;

  margin-bottom: 50px;
}

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 18px 34px;

  border-radius: 16px;

  background: var(--gradient-primary);

  color: #fff !important;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);

  transition: var(--transition);
}

.vb-btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 60px rgba(79, 70, 229, 0.35);
}

.vb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 18px 34px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.75);

  border: 1px solid rgba(15, 23, 42, 0.08);

  color: var(--text) !important;

  backdrop-filter: blur(20px);

  transition: var(--transition);
}

.vb-btn-secondary:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* =========================================
SOCIAL PROOF
========================================= */

.vb-social-proof {
  display: flex;
  align-items: center;
  gap: 18px;

  padding-top: 24px;

  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.vb-avatar-stack {
  display: flex;
}

.vb-avatar-stack img {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  border: 3px solid #fff;

  margin-right: -14px;
}

.vb-avatar-count {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: var(--gradient-primary);

  color: #fff;

  font-size: 12px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.vb-proof-text {
  display: flex;
  flex-direction: column;
}

.vb-stars {
  color: #f59e0b;
  margin-bottom: 4px;
}

.vb-text-muted {
  color: var(--text-muted);
}

/* =========================================
VISUAL AREA
========================================= */

.vb-visual-area {
  flex: 1;

  display: flex;
  justify-content: center;

  position: relative;
}

.vb-main-image-wrapper {
  position: relative;

  width: 100%;
  max-width: 620px;

  padding: 25px;

  border-radius: 32px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.1);
}

.vb-hero-img {
  width: 100%;
  display: block;
}

/* =========================================
FLOATING WIDGETS
========================================= */

.vb-float-widget {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 20px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px);

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.vb-widget-top-left {
  top: 12%;
  left: -6%;
}

.vb-widget-top-right {
  top: 20%;
  right: -6%;
}

.vb-widget-bottom-right {
  bottom: 10%;
  right: -8%;
}

.vb-widget-icon {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  background: var(--gradient-primary);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.vb-widget-info {
  display: flex;
  flex-direction: column;
}

/* =========================================
SLIDER DOCK
========================================= */

.vb-slider-dock {
  position: absolute;

  left: 50%;
  bottom: 30px;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(20px);

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.vb-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: rgba(15, 23, 42, 0.15);

  transition: var(--transition);
}

.vb-dot.active {
  width: 28px;

  border-radius: 999px;

  background: var(--primary);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .vb-slide {
    flex-direction: column;
    text-align: center;
  }

  .vb-content-area {
    max-width: 100%;
  }

  .vb-headline {
    max-width: 100%;
    font-size: 56px;
  }

  .vb-action-row,
  .vb-social-proof {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .vb-headline {
    font-size: 42px;
  }

  .vb-btn-primary,
  .vb-btn-secondary {
    width: 100%;
  }

  .vb-float-widget {
    display: none;
  }

  .vb-hero-container {
    padding: 100px 15px;
  }
}

/* =====================================================
FEATURES & TRUST SECTION
===================================================== */

.vb-features-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-features-section {
  position: relative;

  padding: 140px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================================
BACKGROUND GLOWS
========================================= */

.vb-feature-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.vb-glow-left {
  top: 0;
  left: -250px;

  width: 500px;
  height: 500px;

  background: rgba(79, 70, 229, 0.08);
}

.vb-glow-right {
  bottom: 0;
  right: -250px;

  width: 600px;
  height: 600px;

  background: rgba(6, 182, 212, 0.08);
}

/* =========================================
CONTAINER
========================================= */

.vb-container {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: 0 auto;
}

/* =========================================
HEADER
========================================= */

.vb-section-header {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 80px;
}

.vb-section-header .vb-headline {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 24px;
}

.vb-section-header .vb-description {
  max-width: 650px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
FEATURES GRID
========================================= */

.vb-features-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  margin-bottom: 100px;
}

/* =========================================
FEATURE CARD
========================================= */

.vb-feature-card {
  position: relative;

  padding: 36px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: var(--transition);
}

.vb-feature-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
}

.vb-feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.1);
}

/* =========================================
ICON
========================================= */

.vb-icon-blob {
  width: 72px;
  height: 72px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  background: var(--gradient-primary);

  color: #fff;

  font-size: 24px;

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);

  transition: var(--transition);
}

.vb-feature-card:hover .vb-icon-blob {
  transform: translateY(-4px) scale(1.05);
}

/* =========================================
CARD CONTENT
========================================= */

.vb-card-title {
  font-size: 24px;

  font-weight: 700;

  color: var(--text);

  margin-bottom: 14px;

  letter-spacing: -0.03em;
}

.vb-card-text {
  color: var(--text-muted);

  line-height: 1.8;

  font-size: 15px;
}

/* =========================================
TRUST STRIP
========================================= */

.vb-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 40px;

  padding: 32px 40px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.vb-trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vb-trust-badge i {
  font-size: 22px;

  color: var(--primary);
}

.vb-trust-badge span {
  font-size: 15px;
  font-weight: 600;

  color: var(--text);
}

.vb-trust-divider {
  width: 1px;
  height: 32px;

  background: rgba(15, 23, 42, 0.08);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .vb-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vb-features-section {
    padding: 80px 15px;
  }

  .vb-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .vb-feature-card {
    padding: 28px;
  }

  .vb-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
  }

  .vb-trust-divider {
    display: none;
  }
}

/* =====================================================
   CATEGORIES SECTION
===================================================== */

.vb-categories-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-categories-section {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.vb-cat-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.vb-glow-center {
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.08),
    rgba(6, 182, 212, 0.04),
    transparent 70%
  );
}

/* =========================================
   CONTAINER
========================================= */

.vb-categories-section .vb-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.vb-categories-section .vb-section-header {
  max-width: 850px;
  margin: 0 auto 80px;
  text-align: center;
}

.vb-categories-section .vb-headline {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.vb-categories-section .vb-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* =========================================
   GRID
========================================= */

.vb-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* =========================================
   CATEGORY CARD
========================================= */

.vb-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  text-decoration: none !important;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: all 0.4s var(--ease);
}

.vb-cat-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

/* =========================================
   IMAGE AREA
========================================= */

.vb-cat-image-box {
  position: relative;

  height: 280px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.04),
    rgba(6, 182, 212, 0.04)
  );
}

.vb-cat-image-box::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(79, 70, 229, 0.08),
    transparent 60%
  );
}

.vb-cat-img {
  max-width: 80%;
  max-height: 80%;

  object-fit: contain;

  transition: all 0.6s var(--ease);
}

.vb-cat-card:hover .vb-cat-img {
  transform: scale(1.08) translateY(-6px);
}

/* =========================================
   ICON BADGE
========================================= */

.vb-cat-icon {
  position: absolute;

  top: 20px;
  left: 20px;

  width: 54px;
  height: 54px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  color: #ffffff;

  background: var(--gradient-primary);

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);

  z-index: 2;
}

/* =========================================
   INFO
========================================= */

.vb-cat-info {
  flex: 1;
  padding: 30px;
}

.vb-cat-title {
  margin: 0 0 12px;

  font-size: 24px;
  font-weight: 700;

  letter-spacing: -0.03em;

  color: var(--text);
}

.vb-cat-desc {
  margin: 0;

  font-size: 15px;
  line-height: 1.8;

  color: var(--text-muted);
}

/* =========================================
   FOOTER
========================================= */

.vb-cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 30px;

  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.vb-shop-text {
  font-size: 15px;
  font-weight: 600;

  color: var(--text);

  transition: all 0.3s var(--ease);
}

.vb-cat-card:hover .vb-shop-text {
  color: var(--primary);
}

.vb-shop-arrow {
  width: 44px;
  height: 44px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(79, 70, 229, 0.08);

  color: var(--primary);

  transition: all 0.3s var(--ease);
}

.vb-cat-card:hover .vb-shop-arrow {
  background: var(--gradient-primary);

  color: #ffffff;

  transform: translateX(6px);
}

/* =========================================
   CENTER ACTION
========================================= */

.vb-center-action {
  display: flex;
  justify-content: center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .vb-categories-section {
    padding: 80px 15px;
  }

  .vb-categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vb-cat-image-box {
    height: 220px;
  }
}

/* =====================================================
   PRODUCTS SECTION
===================================================== */

.vb-products-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-products-section {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-products-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================
   SECTION HEADER
========================================= */

.vb-section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.vb-section-header .vb-headline {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.vb-section-header .vb-description {
  max-width: 700px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
   FILTER TABS
========================================= */

.vb-products-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 70px;
}

.vb-tab-btn {
  border: none;

  padding: 14px 24px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(15, 23, 42, 0.08);

  color: var(--text-muted);

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.35s var(--ease);
}

.vb-tab-btn:hover {
  color: var(--text);

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.vb-tab-btn.active {
  background: var(--gradient-primary);

  color: #ffffff;

  border-color: transparent;

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);
}

/* =========================================
   PRODUCTS GRID
========================================= */

.vb-products-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

  gap: 30px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.vb-product-card {
  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  text-decoration: none !important;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: all 0.45s var(--ease);
}

.vb-product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

/* =========================================
   PRODUCT IMAGE AREA
========================================= */

.vb-product-image-box {
  position: relative;

  height: 280px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.04),
    rgba(6, 182, 212, 0.04)
  );
}

.vb-product-image-box::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(79, 70, 229, 0.08),
    transparent 60%
  );
}

.vb-product-img {
  max-width: 85%;
  max-height: 85%;

  object-fit: contain;

  transition: all 0.6s var(--ease);
}

.vb-product-card:hover .vb-product-img {
  transform: scale(1.08) translateY(-6px);
}

/* =========================================
   PRODUCT BADGES
========================================= */

.vb-product-badge {
  position: absolute;

  top: 16px;
  left: 16px;

  padding: 8px 14px;

  border-radius: 999px;

  background: var(--gradient-primary);

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  z-index: 2;

  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.2);
}

.vb-product-rating {
  position: absolute;

  top: 16px;
  right: 16px;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 8px 12px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(10px);

  color: var(--text);

  font-size: 13px;
  font-weight: 600;

  z-index: 2;
}

.vb-product-rating i {
  color: #f59e0b;
}

/* =========================================
   PRODUCT INFO
========================================= */

.vb-product-info {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 28px;
}

.vb-product-category {
  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--primary);
}

.vb-product-title {
  margin: 0 0 12px;

  font-size: 24px;
  font-weight: 700;

  line-height: 1.3;

  letter-spacing: -0.03em;

  color: var(--text);
}

.vb-product-desc {
  margin: 0;

  font-size: 15px;
  line-height: 1.8;

  color: var(--text-muted);
}

/* =========================================
   PRODUCT FOOTER
========================================= */

.vb-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: auto;

  padding: 22px 28px;

  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.vb-product-price {
  font-size: 28px;
  font-weight: 800;

  letter-spacing: -0.03em;

  color: var(--text);
}

/* =========================================
   CTA BUTTON
========================================= */

.vb-product-cta {
  width: 48px;
  height: 48px;

  border: none;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(79, 70, 229, 0.08);

  color: var(--primary);

  font-size: 18px;

  transition: all 0.35s var(--ease);
}

.vb-product-card:hover .vb-product-cta {
  background: var(--gradient-primary);

  color: #ffffff;

  transform: translateX(4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .vb-products-section {
    padding: 80px 15px;
  }

  .vb-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vb-product-image-box {
    height: 220px;
  }

  .vb-product-title {
    font-size: 20px;
  }

  .vb-product-info {
    padding: 24px;
  }

  .vb-product-footer {
    padding: 20px 24px;
  }
}

/* =====================================================
   ABOUT / MISSION SECTION
===================================================== */

.vb-about-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-about-section {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.vb-glow-top-right {
  top: -150px;
  right: -150px;

  width: 550px;
  height: 550px;

  background: rgba(79, 70, 229, 0.08);
}

.vb-glow-bottom-left {
  bottom: -200px;
  left: -200px;

  width: 650px;
  height: 650px;

  background: rgba(6, 182, 212, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-about-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 100px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.vb-about-content {
  flex: 1;
  max-width: 620px;
}

.vb-about-content .vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  margin-bottom: 28px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.vb-about-content .vb-badge-icon {
  color: var(--primary);
}

.vb-about-content .vb-badge-text {
  color: var(--text);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.vb-about-content .vb-headline {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 24px;

  color: var(--text);
}

.vb-about-content .vb-lead-text {
  font-size: 19px;
  line-height: 1.9;

  color: var(--text-muted);

  margin-bottom: 20px;
}

.vb-about-content .vb-lead-text strong {
  color: var(--text);
  font-weight: 700;
}

.vb-about-content .vb-sub-text {
  font-size: 16px;
  line-height: 1.9;

  color: var(--text-muted);

  margin-bottom: 40px;
}

.vb-about-content .vb-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================
   RIGHT GRID
========================================= */

.vb-about-grid {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.vb-card-stagger {
  margin-top: 60px;
}

/* =========================================
   ABOUT CARD
========================================= */

.vb-about-card {
  position: relative;

  overflow: hidden;

  padding: 32px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: all 0.45s var(--ease);
}

.vb-about-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
}

.vb-about-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.1);
}

/* =========================================
   ICON
========================================= */

.vb-about-card .vb-card-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  margin-bottom: 24px;

  background: var(--gradient-primary);

  color: #ffffff;

  font-size: 22px;

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);

  transition: all 0.35s var(--ease);
}

.vb-about-card:hover .vb-card-icon {
  transform: translateY(-4px) scale(1.05);
}

/* =========================================
   CARD CONTENT
========================================= */

.vb-about-card .vb-stat-number {
  font-size: 42px;
  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.04em;

  margin-bottom: 12px;

  color: var(--text);
}

.vb-about-card .vb-card-title {
  font-size: 18px;
  font-weight: 700;

  margin-bottom: 10px;

  color: var(--text);
}

.vb-about-card .vb-card-desc {
  margin: 0;

  font-size: 14px;
  line-height: 1.8;

  color: var(--text-muted);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .vb-about-section .vb-container {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .vb-about-section {
    padding: 90px 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;
  }

  .vb-card-stagger {
    margin-top: 0;
  }

  .vb-about-grid {
    width: 100%;

    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .vb-about-grid {
    grid-template-columns: 1fr;
  }

  .vb-about-card {
    padding: 28px;
  }

  .vb-about-content .vb-action-row {
    flex-direction: column;
    width: 100%;
  }
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */

.vb-why-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-why-section {
  position: relative;

  padding: 140px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.vb-glow-left {
  top: 10%;
  left: -250px;

  width: 600px;
  height: 600px;

  background: rgba(79, 70, 229, 0.08);
}

.vb-glow-right {
  bottom: -200px;
  right: -200px;

  width: 700px;
  height: 700px;

  background: rgba(6, 182, 212, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-container {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: 0 auto;
}

/* =========================================
   SECTION HEADER
========================================= */

.vb-section-header {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 80px;
}

.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  margin-bottom: 28px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.vb-badge-icon {
  color: var(--primary);
}

.vb-badge-text {
  color: var(--text);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vb-headline {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 24px;
}

.vb-text-dark {
  color: var(--text);
}

.vb-text-gradient {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-description {
  max-width: 700px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
   WHY GRID
========================================= */

.vb-why-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;
}

/* =========================================
   WHY CARD
========================================= */

.vb-why-card {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 24px;

  padding: 36px;

  overflow: hidden;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: all 0.45s var(--ease);
}

.vb-why-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
}

.vb-why-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.1);
}

/* =========================================
   ICON BOX
========================================= */

.vb-icon-box {
  width: 72px;
  height: 72px;

  flex-shrink: 0;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  color: #ffffff;

  background: var(--gradient-primary);

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);

  transition: all 0.35s var(--ease);
}

.vb-why-card:hover .vb-icon-box {
  transform: translateY(-4px) scale(1.05);
}

/* =========================================
   CARD CONTENT
========================================= */

.vb-card-info {
  flex: 1;
}

.vb-card-title {
  margin: 0 0 12px;

  font-size: 22px;
  font-weight: 700;

  line-height: 1.3;

  letter-spacing: -0.03em;

  color: var(--text);
}

.vb-card-desc {
  margin: 0;

  font-size: 15px;
  line-height: 1.8;

  color: var(--text-muted);
}

/* =========================================
   PREMIUM HOVER GLOW
========================================= */

.vb-why-card:hover::after {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 250px;
  height: 250px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);

  pointer-events: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .vb-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vb-why-section {
    padding: 90px 20px;
  }

  .vb-why-card {
    padding: 28px;
    gap: 18px;
  }

  .vb-icon-box {
    width: 60px;
    height: 60px;

    font-size: 20px;
  }

  .vb-card-title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .vb-why-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */

.vb-testimonials-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-testimonials-section {
  position: relative;

  padding: 140px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-testi-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
}

.vb-glow-center {
  top: 50%;
  left: 50%;

  width: 900px;
  height: 700px;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.08) 0%,
    rgba(6, 182, 212, 0.05) 60%,
    transparent 100%
  );
}

/* =========================================
   CONTAINER
========================================= */

.vb-container {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.vb-section-header {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 90px;
}

.vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  margin-bottom: 28px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(15, 23, 42, 0.08);

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.vb-badge-icon {
  color: var(--primary);
}

.vb-badge-text {
  color: var(--text);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vb-headline {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 24px;
}

.vb-text-dark {
  color: var(--text);
}

.vb-text-gradient {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-description {
  max-width: 700px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
   TESTIMONIAL GRID
========================================= */

.vb-testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  align-items: stretch;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.vb-testi-card {
  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  padding: 40px;

  border-radius: 32px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: all 0.45s var(--ease);
}

.vb-testi-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

/* =========================================
   FEATURED CARD
========================================= */

.vb-card-highlight {
  transform: translateY(-25px);
}

.vb-card-highlight:hover {
  transform: translateY(-35px);
}

/* =========================================
   GIANT QUOTE MARK
========================================= */

.vb-quote-watermark {
  position: absolute;

  top: -20px;
  right: 20px;

  font-size: 180px;
  font-weight: 900;

  line-height: 1;

  color: rgba(79, 70, 229, 0.05);

  user-select: none;

  pointer-events: none;
}

/* =========================================
   STARS
========================================= */

.vb-stars,
.vb-testi-text,
.vb-testi-user {
  position: relative;
  z-index: 2;
}

.vb-stars {
  display: flex;
  gap: 4px;

  margin-bottom: 24px;

  color: #fbbf24;

  font-size: 18px;
}

/* =========================================
   TESTIMONIAL TEXT
========================================= */

.vb-testi-text {
  flex: 1;

  margin: 0 0 32px;

  font-size: 16px;
  line-height: 1.9;

  color: var(--text-muted);

  font-style: italic;
}

/* =========================================
   USER INFO
========================================= */

.vb-testi-user {
  display: flex;
  align-items: center;
  gap: 16px;

  padding-top: 24px;

  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.vb-avatar {
  width: 56px;
  height: 56px;

  flex-shrink: 0;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 800;

  color: #ffffff;

  background: var(--gradient-primary);

  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.2);
}

.vb-user-info {
  display: flex;
  flex-direction: column;
}

.vb-user-name {
  margin-bottom: 4px;

  font-size: 16px;
  font-weight: 700;

  color: var(--text);
}

.vb-user-role {
  font-size: 13px;
  font-weight: 600;

  color: var(--primary);
}

/* =========================================
   HOVER LIGHT EFFECT
========================================= */

.vb-testi-card:hover::after {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);

  pointer-events: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .vb-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vb-card-highlight {
    transform: none;
  }

  .vb-card-highlight:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 768px) {
  .vb-testimonials-section {
    padding: 90px 20px;
  }

  .vb-section-header {
    margin-bottom: 50px;
  }

  .vb-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .vb-testi-card {
    padding: 30px;
  }

  .vb-quote-watermark {
    font-size: 120px;
  }
}

/* =====================================================
   RECENTLY VIEWED SECTION
===================================================== */

.vb-recent-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

.vb-recent-section {
  position: relative;

  padding: 140px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-recent-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
}

.vb-glow-left-bottom {
  left: -250px;
  bottom: -250px;

  width: 650px;
  height: 650px;

  background: rgba(79, 70, 229, 0.08);
}

.vb-glow-right-top {
  top: -250px;
  right: -250px;

  width: 700px;
  height: 700px;

  background: rgba(6, 182, 212, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-recent-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.vb-recent-section .vb-section-header {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 80px;
}

.vb-recent-section .vb-headline {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 24px;
}

.vb-recent-section .vb-description {
  max-width: 700px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
   GRID
========================================= */

.vb-recent-grid,
.recent-modern-grid,
.recent-soft-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

  gap: 30px;
}

/* =========================================
   CARD
========================================= */

.recent-item,
.recent-card {
  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  padding: 20px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);

  transition: all 0.45s var(--ease);
}

.recent-item:hover,
.recent-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

/* =========================================
   IMAGE BOX
========================================= */

.recent-item-image,
.recent-card-img {
  position: relative;

  height: 260px;

  overflow: hidden;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.04),
    rgba(6, 182, 212, 0.04)
  );
}

.recent-item-image::before,
.recent-card-img::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(79, 70, 229, 0.08),
    transparent 60%
  );
}

.recent-item-image img,
.recent-card-img img {
  max-width: 85%;
  max-height: 85%;

  object-fit: contain;

  transition: all 0.6s var(--ease);
}

.recent-item:hover .recent-item-image img,
.recent-card:hover .recent-card-img img {
  transform: scale(1.08) translateY(-4px);
}

/* =========================================
   CONTENT
========================================= */

.recent-item h3,
.recent-card h3 {
  margin: 0 0 12px;

  font-size: 22px;
  font-weight: 700;

  line-height: 1.3;

  letter-spacing: -0.03em;

  color: var(--text);

  transition: all 0.3s ease;
}

.recent-item:hover h3,
.recent-card:hover h3 {
  color: var(--primary);
}

.recent-item p {
  margin: 0 0 20px;

  font-size: 15px;
  line-height: 1.8;

  color: var(--text-muted);
}

.recent-card-rating {
  margin-bottom: 20px;

  color: #fbbf24;

  font-size: 14px;

  letter-spacing: 2px;
}

/* =========================================
   FOOTER
========================================= */

.recent-item-footer,
.recent-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: auto;

  padding-top: 20px;

  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.recent-item-footer strong,
.recent-card-footer strong {
  font-size: 18px;
  font-weight: 700;

  color: var(--text);
}

.recent-item-footer span,
.recent-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 600;

  color: var(--primary);

  transition: all 0.3s ease;
}

.recent-item-footer span::after,
.recent-view-btn::after {
  content: "→";

  transition: transform 0.3s ease;
}

.recent-item:hover .recent-item-footer span::after,
.recent-card:hover .recent-view-btn::after {
  transform: translateX(5px);
}

/* =========================================
   MODERN HEADER STYLE
========================================= */

.recent-modern-head,
.recent-soft-head {
  text-align: center;

  max-width: 800px;

  margin: 0 auto 80px;

  border: none;

  padding: 0;
}

.recent-modern-eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;

  color: var(--primary);
}

.recent-modern-head h2,
.recent-soft-head h2 {
  font-size: clamp(42px, 5vw, 68px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 20px;

  color: var(--text);
}

.recent-modern-head p,
.recent-soft-head p {
  max-width: 600px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
   PREMIUM HOVER LIGHT
========================================= */

.recent-item:hover::after,
.recent-card:hover::after {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);

  pointer-events: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .vb-recent-grid,
  .recent-modern-grid,
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vb-recent-section,
  .recent-modern,
  .recent-soft {
    padding: 90px 20px;
  }

  .vb-recent-grid,
  .recent-modern-grid,
  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recent-item-image,
  .recent-card-img {
    height: 220px;
  }

  .recent-modern-head h2,
  .recent-soft-head h2 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .recent-item,
  .recent-card {
    padding: 16px;
  }

  .recent-item-image,
  .recent-card-img {
    height: 200px;
  }
}

/* =====================================================
   FOOTER
===================================================== */

.footer-blue {
  position: relative;

  padding-top: 120px;

  overflow: hidden;

  color: #ffffff;

  background-image: url("../images/footimg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-blue::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.1),
    rgba(15, 23, 42, 0.75)
  );

  pointer-events: none;
}

/* =========================================
   TOP GRID
========================================= */

.footer-blue-top {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;

  gap: 60px;

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 20px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand img {
  width: 320px;
  max-width: 100%;

  margin-bottom: 24px;
}

.footer-brand p {
  margin-bottom: 28px;

  font-size: 15px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   CONTACT
========================================= */

.footer-contact {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

.footer-contact strong {
  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;

  color: var(--primary);
}

.footer-contact a {
  color: #ffffff;

  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

/* =========================================
   LINKS
========================================= */

.footer-links h4,
.footer-newsletter h4 {
  margin-bottom: 24px;

  font-size: 20px;
  font-weight: 700;

  color: #ffffff;
}

.footer-links a {
  display: block;

  margin-bottom: 14px;

  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;

  transform: translateX(6px);
}

/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter p {
  margin-bottom: 24px;

  font-size: 15px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  gap: 10px;

  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;

  height: 54px;

  padding: 0 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  color: #ffffff;

  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.newsletter-form button {
  height: 54px;

  padding: 0 24px;

  border: none;

  border-radius: 16px;

  background: var(--gradient-primary);

  color: #ffffff;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.25);
}

.newsletter-note {
  font-size: 12px;

  color: rgba(255, 255, 255, 0.45);
}

/* =========================================
   DIVIDER
========================================= */

.footer-divider {
  position: relative;
  z-index: 2;

  height: 1px;

  margin: 70px 0 35px;

  border: none;

  background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 20px 40px;
}

.footer-company strong {
  display: block;

  margin-bottom: 4px;

  font-size: 16px;
  font-weight: 700;

  color: #ffffff;
}

.footer-company span {
  font-size: 13px;

  color: rgba(255, 255, 255, 0.55);
}

.footer-copy {
  font-size: 13px;

  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {
  .footer-blue-top {
    grid-template-columns: repeat(2, 1fr);

    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-blue {
    padding-top: 90px;
  }

  .footer-blue-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 20px;

    text-align: center;
  }
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* =====================================================
   ABOUT INTRO SECTION
===================================================== */

.about-intro {
  position: relative;

  padding: 140px 0;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-intro::before {
  content: "";

  position: absolute;
  top: -200px;
  right: -150px;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );

  pointer-events: none;
}

.about-intro::after {
  content: "";

  position: absolute;
  bottom: -200px;
  left: -150px;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );

  pointer-events: none;
}

/* =========================================
   LAYOUT
========================================= */

.about-intro-inner {
  position: relative;
  z-index: 2;

  max-width: 980px;

  margin: 0 auto;

  padding: 90px 70px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 36px;

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.about-intro-inner::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 120px;
  height: 4px;

  transform: translateX(-50%);

  border-radius: 999px;

  background: var(--gradient-primary);
}

/* =========================================
   CONTENT
========================================= */

.about-intro-text h2 {
  margin-bottom: 30px;

  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;

  color: var(--text);
}

.about-intro-text h2::after {
  content: "";

  display: block;

  width: 80px;
  height: 4px;

  margin-top: 24px;

  border-radius: 999px;

  background: var(--gradient-primary);
}

.about-intro-lead {
  margin-bottom: 24px;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;

  color: var(--text);
}

.about-intro-text p {
  margin-bottom: 20px;

  font-size: 16px;
  line-height: 1.9;

  color: var(--text-muted);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .about-intro {
    padding: 90px 20px;
  }

  .about-intro-inner {
    padding: 60px 40px;
    border-radius: 28px;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding: 80px 15px;
  }

  .about-intro-inner {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .about-intro-text h2 {
    font-size: 34px;
  }

  .about-intro-lead {
    font-size: 18px;
  }
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.vb-contact-section {
  position: relative;

  padding: 120px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-contact-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

/* =========================================
   BACKGROUND EFFECTS
========================================= */

.vb-contact-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(140px);
}

.vb-glow-top-left {
  top: -200px;
  left: -150px;

  width: 550px;
  height: 550px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-right {
  right: -200px;
  bottom: -200px;

  width: 650px;
  height: 650px;

  background: rgba(59, 130, 246, 0.1);
}

/* =========================================
   LAYOUT
========================================= */

.vb-contact-inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;

  gap: 80px;

  max-width: 1400px;

  margin: 0 auto;
}

/* =========================================
   LEFT CONTENT
========================================= */

.vb-contact-info {
  flex: 1.1;
}

.vb-contact-info .vb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;

  margin-bottom: 24px;

  border-radius: 999px;

  background: #ffffff;

  border: 1px solid rgba(99, 102, 241, 0.15);

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.vb-badge-icon {
  color: var(--primary);
}

.vb-badge-text {
  font-size: 13px;
  font-weight: 700;

  color: var(--text);

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vb-headline {
  margin-bottom: 24px;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.vb-text-dark {
  color: var(--text);
}

.vb-text-gradient {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-lead-text {
  margin-bottom: 32px;

  color: var(--text-muted);

  font-size: 18px;
  line-height: 1.8;
}

/* =========================================
   FEATURE POINTS
========================================= */

.vb-contact-points {
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin: 0 0 40px;
  padding: 0;

  list-style: none;
}

.vb-contact-points li {
  display: flex;
  align-items: center;

  gap: 14px;
}

.vb-contact-points i {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(99, 102, 241, 0.08);

  color: var(--primary);
}

.vb-contact-points span {
  color: var(--text);

  font-size: 16px;
  font-weight: 600;
}

/* =========================================
   CONTACT CARDS
========================================= */

.vb-contact-details {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.vb-detail-card {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  padding: 24px;

  background: #ffffff;

  border: 1px solid rgba(99, 102, 241, 0.1);

  border-radius: 24px;

  transition: all 0.35s ease;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.vb-detail-card:hover {
  transform: translateY(-6px);

  border-color: rgba(99, 102, 241, 0.25);

  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.vb-detail-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--gradient-primary);

  color: #ffffff;

  flex-shrink: 0;
}

.vb-detail-text strong {
  display: block;

  margin-bottom: 4px;

  color: var(--text);

  font-size: 15px;
  font-weight: 700;
}

.vb-detail-text span {
  color: var(--text-muted);

  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   FORM AREA
========================================= */

.vb-contact-form-wrap {
  flex: 1;

  max-width: 560px;
}

.vb-form-card {
  padding: 40px;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 32px;

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.vb-form-title {
  margin-bottom: 10px;

  color: var(--text);

  font-size: 30px;
  font-weight: 800;
}

.vb-form-desc {
  margin-bottom: 30px;

  color: var(--text-muted);

  line-height: 1.7;
}

/* =========================================
   FORM
========================================= */

.vb-contact-form {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.vb-form-row {
  display: flex;
  gap: 20px;
}

.vb-input,
.vb-textarea {
  width: 100%;

  padding: 16px 20px;

  background: #f8fafc;

  border: 1px solid transparent;

  border-radius: 16px;

  color: var(--text);

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.vb-input::placeholder,
.vb-textarea::placeholder {
  color: var(--text-faint);
}

.vb-input:focus,
.vb-textarea:focus {
  outline: none;

  background: #ffffff;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.vb-textarea {
  min-height: 140px;

  resize: vertical;
}

/* =========================================
   BUTTONS
========================================= */

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  height: 58px;

  border: none;

  border-radius: 18px;

  background: var(--gradient-primary);

  color: #ffffff !important;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.35s ease;
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(99, 102, 241, 0.25);
}

.vb-btn-full {
  width: 100%;
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 16px 32px;

  border-radius: 18px;

  border: 1px solid rgba(99, 102, 241, 0.15);

  background: #ffffff;

  color: var(--text) !important;

  text-decoration: none;

  transition: all 0.3s ease;
}

.vb-btn-outline:hover {
  border-color: var(--primary);

  color: var(--primary) !important;
}

/* =========================================
   SUCCESS STATE
========================================= */

.vb-contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  padding: 60px 40px;

  background: #ffffff;

  border-radius: 32px;

  border: 1px solid rgba(99, 102, 241, 0.12);

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

.vb-success-icon {
  margin-bottom: 20px;

  font-size: 64px;

  color: var(--primary);
}

.vb-success-title {
  margin-bottom: 12px;

  color: var(--text);

  font-size: 32px;
  font-weight: 800;
}

.vb-success-desc {
  max-width: 450px;

  color: var(--text-muted);

  line-height: 1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .vb-contact-inner {
    flex-direction: column;

    gap: 60px;
  }

  .vb-contact-form-wrap {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .vb-contact-section {
    padding: 80px 15px;
  }

  .vb-contact-details {
    grid-template-columns: 1fr;
  }

  .vb-form-row {
    flex-direction: column;
  }

  .vb-form-card {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .vb-headline {
    font-size: 38px;
  }

  .vb-contact-info {
    text-align: center;
  }

  .vb-contact-points li {
    justify-content: center;
  }
}

/* =====================================================
   FAQ SECTION
===================================================== */

.vb-faq-section {
  position: relative;

  min-height: 80vh;

  padding: 120px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-faq-section * {
  box-sizing: border-box;
  font-family: var(--font-heading);
}

/* =========================================
   BACKGROUND EFFECTS
========================================= */

.vb-faq-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(150px);

  pointer-events: none;
}

.vb-glow-top-right {
  top: -250px;
  right: -150px;

  width: 650px;
  height: 650px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-left {
  bottom: -250px;
  left: -150px;

  width: 600px;
  height: 600px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-faq-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 1000px;

  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.vb-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  margin-bottom: 70px;
}

.vb-badge-pill {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  margin-bottom: 24px;

  border-radius: 999px;

  background: #ffffff;

  border: 1px solid rgba(99, 102, 241, 0.15);

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.vb-badge-icon {
  color: var(--primary);
}

.vb-badge-text {
  color: var(--text);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.vb-headline {
  margin-bottom: 20px;

  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.vb-text-dark {
  color: var(--text);
}

.vb-text-gradient {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-description {
  max-width: 650px;

  color: var(--text-muted);

  font-size: 18px;
  line-height: 1.8;
}

/* =========================================
   FAQ LAYOUT
========================================= */

.vb-faq-layout {
  display: flex;
  flex-direction: column;

  gap: 30px;
}

/* =========================================
   FAQ GROUP CARD
========================================= */

.vb-faq-group-card {
  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 32px;

  padding: 35px;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}

/* =========================================
   GROUP HEADER
========================================= */

.vb-group-header {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 30px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.vb-group-icon {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--gradient-primary);

  color: #ffffff;

  font-size: 20px;
}

.vb-group-title {
  margin: 0;

  color: var(--text);

  font-size: 24px;
  font-weight: 800;
}

/* =========================================
   FAQ ITEMS
========================================= */

.vb-faq-item {
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.vb-faq-item:last-child {
  border-bottom: none;
}

.vb-faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 0;

  background: transparent;

  border: none;

  cursor: pointer;

  text-align: left;

  color: var(--text);

  font-size: 17px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.vb-faq-question:hover {
  color: var(--primary);
}

.vb-faq-toggle-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(99, 102, 241, 0.08);

  color: var(--primary);

  transition: all 0.35s ease;
}

.vb-faq-question:hover .vb-faq-toggle-icon {
  background: var(--gradient-primary);

  color: #ffffff;
}

/* =========================================
   ANSWER
========================================= */

.vb-faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.35s ease;
}

.vb-answer-inner {
  overflow: hidden;

  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   ACTIVE STATE
========================================= */

.vb-faq-item.active .vb-faq-answer {
  grid-template-rows: 1fr;
}

.vb-faq-item.active .vb-answer-inner {
  padding-bottom: 24px;
}

.vb-faq-item.active .vb-faq-question {
  color: var(--primary);
}

.vb-faq-item.active .vb-faq-toggle-icon {
  background: var(--gradient-primary);

  color: #ffffff;

  transform: rotate(45deg);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .vb-faq-section {
    padding: 80px 15px;
  }

  .vb-faq-group-card {
    padding: 24px;
    border-radius: 24px;
  }

  .vb-group-title {
    font-size: 20px;
  }

  .vb-faq-question {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .vb-headline {
    font-size: 36px;
  }

  .vb-group-header {
    align-items: flex-start;
  }

  .vb-group-icon {
    width: 48px;
    height: 48px;
  }
}

/* =====================================================
   AUTH HERO SECTION
===================================================== */

.auth-x-hero {
  position: relative;

  padding: 140px 0 100px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.auth-x-hero::before {
  content: "";

  position: absolute;
  top: -250px;
  right: -150px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 70%
  );

  pointer-events: none;
}

.auth-x-hero::after {
  content: "";

  position: absolute;
  bottom: -250px;
  left: -150px;

  width: 550px;
  height: 550px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );

  pointer-events: none;
}

/* =========================================
   LAYOUT
========================================= */

.auth-x-hero-inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 90px;

  align-items: center;

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 20px;
}

/* =========================================
   EYEBROW
========================================= */

.auth-x-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  margin-bottom: 24px;

  border-radius: 999px;

  background: #ffffff;

  border: 1px solid rgba(99, 102, 241, 0.15);

  color: var(--primary);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* =========================================
   LEFT CONTENT
========================================= */

.auth-x-hero-left h1 {
  margin-bottom: 24px;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;

  color: var(--text);
}

.auth-x-hero-left h1 span {
  background: var(--gradient-primary);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-x-hero-left p {
  max-width: 580px;

  color: var(--text-muted);

  font-size: 18px;
  line-height: 1.9;
}

/* =========================================
   RIGHT PANEL
========================================= */

.auth-x-hero-panel {
  display: flex;
  flex-direction: column;

  gap: 24px;
}

.auth-x-panel-item {
  position: relative;

  padding: 28px 30px;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 28px;

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.auth-x-panel-item::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: var(--gradient-primary);

  opacity: 0;

  transition: opacity 0.35s ease;
}

.auth-x-panel-item:hover {
  transform: translateY(-6px);

  border-color: rgba(99, 102, 241, 0.25);

  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.auth-x-panel-item:hover::before {
  opacity: 1;
}

.auth-x-panel-item strong {
  display: block;

  margin-bottom: 8px;

  color: var(--text);

  font-size: 16px;
  font-weight: 700;
}

.auth-x-panel-item span {
  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .auth-x-hero {
    padding: 100px 0 80px;
  }

  .auth-x-hero-inner {
    grid-template-columns: 1fr;

    gap: 60px;
  }
}

@media (max-width: 600px) {
  .auth-x-hero {
    padding: 80px 0 60px;
  }

  .auth-x-hero-inner {
    padding: 0 15px;
  }

  .auth-x-hero-left h1 {
    font-size: 38px;
  }

  .auth-x-panel-item {
    padding: 24px;
  }
}

/* =====================================================
   AUTH SECTION
===================================================== */

.vb-auth-section {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-auth-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-auth-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-left {
  top: -200px;
  left: -200px;

  width: 600px;
  height: 600px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-right {
  right: -200px;
  bottom: -200px;

  width: 550px;
  height: 550px;

  background: rgba(59, 130, 246, 0.1);
}

/* =========================================
   CONTAINER
========================================= */

.vb-auth-section .vb-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 520px;
}

/* =========================================
   AUTH CARD
========================================= */

.vb-auth-card {
  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.15);

  border-radius: 32px;

  padding: 50px 40px;

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/* =========================================
   HEADER
========================================= */

.vb-auth-header {
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 35px;
}

.vb-auth-icon-blob {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 24px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 2rem;

  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.vb-headline {
  margin: 0 0 12px;

  font-size: clamp(34px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;

  letter-spacing: -0.03em;
}

.vb-text-dark {
  color: #0f172a;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #6366f1, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-auth-desc {
  color: #64748b;

  font-size: 15px;
  line-height: 1.7;

  max-width: 340px;
}

/* =========================================
   FORM
========================================= */

.vb-auth-form {
  display: flex;
  flex-direction: column;

  gap: 22px;

  margin-bottom: 32px;
}

.vb-input-group {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.vb-label {
  color: #0f172a;

  font-size: 14px;
  font-weight: 700;
}

.vb-required {
  color: #ef4444;
}

/* =========================================
   INPUTS
========================================= */

.vb-input-wrapper {
  position: relative;
}

.vb-input-icon {
  position: absolute;

  top: 50%;
  left: 18px;

  transform: translateY(-50%);

  color: #94a3b8;

  transition: 0.3s ease;
}

.vb-input {
  width: 100%;

  border: 1px solid #e2e8f0;

  background: #ffffff;

  color: #0f172a;

  padding: 16px 18px;

  border-radius: 16px;

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.vb-input-with-icon {
  padding-left: 50px !important;
}

.vb-input::placeholder {
  color: #94a3b8;
}

.vb-input:focus {
  outline: none;

  border-color: #6366f1;

  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.vb-input-wrapper:focus-within .vb-input-icon {
  color: #6366f1;
}

/* =========================================
   BUTTONS
========================================= */

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  width: 100%;

  padding: 16px 28px;

  border: none;

  border-radius: 16px;

  cursor: pointer;

  font-size: 15px;
  font-weight: 700;

  color: #ffffff !important;

  text-decoration: none !important;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.25);

  transition: all 0.35s ease;
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 25px 45px rgba(99, 102, 241, 0.35);
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  width: 100%;

  padding: 16px 28px;

  border-radius: 16px;

  border: 1px solid #e2e8f0;

  background: #ffffff;

  color: #0f172a !important;

  text-decoration: none !important;

  font-size: 15px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.vb-btn-outline:hover {
  border-color: #6366f1;

  color: #6366f1 !important;

  transform: translateY(-2px);
}

.vb-btn-full {
  width: 100%;
}

/* =========================================
   DIVIDER
========================================= */

.vb-auth-divider {
  display: flex;
  align-items: center;

  margin-bottom: 30px;
}

.vb-auth-divider::before,
.vb-auth-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background: #e2e8f0;
}

.vb-auth-divider span {
  padding: 0 16px;

  color: #94a3b8;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================
   SECONDARY
========================================= */

.vb-auth-secondary {
  text-align: center;
}

.vb-secondary-text {
  margin: 0 0 16px;

  color: #64748b;

  font-size: 14px;
  font-weight: 500;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {
  .vb-auth-section {
    padding: 60px 15px;
  }

  .vb-auth-card {
    padding: 35px 22px;

    border-radius: 24px;
  }

  .vb-auth-icon-blob {
    width: 70px;
    height: 70px;

    font-size: 1.7rem;
  }

  .vb-headline {
    font-size: 30px;
  }
}

/* =====================================================
   SIGNUP HERO
===================================================== */

.signup-x-hero {
  position: relative;

  padding: 120px 0 90px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.signup-x-hero-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* =========================================
   EYEBROW
========================================= */

.signup-x-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #6366f1;
}

.signup-x-eyebrow::before {
  content: "";

  width: 40px;
  height: 2px;

  border-radius: 20px;

  background: linear-gradient(90deg, #6366f1, #3b82f6);
}

/* =========================================
   LEFT CONTENT
========================================= */

.signup-x-hero-left h1 {
  margin-bottom: 24px;

  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;

  letter-spacing: -0.04em;

  color: #0f172a;
}

.signup-x-hero-left h1 span {
  background: linear-gradient(135deg, #6366f1, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signup-x-hero-left p {
  max-width: 580px;

  font-size: 18px;
  line-height: 1.8;

  color: #64748b;
}

/* =========================================
   RIGHT PANEL
========================================= */

.signup-x-hero-panel {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.signup-x-panel-item {
  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 22px;

  padding: 24px 28px;

  transition: all 0.35s ease;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
}

.signup-x-panel-item:hover {
  transform: translateY(-5px);

  border-color: rgba(99, 102, 241, 0.25);

  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.signup-x-panel-item strong {
  display: block;

  margin-bottom: 6px;

  color: #0f172a;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signup-x-panel-item span {
  color: #64748b;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   RESPONSIVE HERO
========================================= */

@media (max-width: 900px) {
  .signup-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* =====================================================
   SIGNUP SECTION
===================================================== */

.vb-signup-section {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-signup-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-auth-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-right {
  top: -220px;
  right: -220px;

  width: 650px;
  height: 650px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-left {
  left: -200px;
  bottom: -200px;

  width: 550px;
  height: 550px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-signup-section .vb-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 560px;
}

/* =========================================
   CARD
========================================= */

.vb-auth-card {
  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 32px;

  padding: 50px 40px;

  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/* =========================================
   HEADER
========================================= */

.vb-auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  margin-bottom: 35px;
}

.vb-auth-icon-blob {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 24px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 2rem;

  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.vb-headline {
  margin: 0 0 12px;

  font-size: clamp(34px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;

  letter-spacing: -0.03em;
}

.vb-text-dark {
  color: #0f172a;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #6366f1, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-auth-desc {
  color: #64748b;

  font-size: 15px;
  line-height: 1.7;

  max-width: 360px;
}

/* =========================================
   FORM
========================================= */

.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: #0f172a;

  font-size: 14px;
  font-weight: 700;
}

.vb-required {
  color: #ef4444;
}

/* =========================================
   INPUTS
========================================= */

.vb-input-wrapper {
  position: relative;
}

.vb-input-icon {
  position: absolute;

  top: 50%;
  left: 18px;

  transform: translateY(-50%);

  color: #94a3b8;

  transition: 0.3s ease;
}

.vb-input {
  width: 100%;

  padding: 16px 18px;

  border: 1px solid #e2e8f0;

  border-radius: 16px;

  background: #ffffff;

  color: #0f172a;

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.vb-input-with-icon {
  padding-left: 52px !important;
}

.vb-input::placeholder {
  color: #94a3b8;
}

.vb-input:focus {
  outline: none;

  border-color: #6366f1;

  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.vb-input-wrapper:focus-within .vb-input-icon {
  color: #6366f1;
}

/* =========================================
   BUTTONS
========================================= */

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  width: 100%;

  padding: 16px 28px;

  border: none;

  border-radius: 16px;

  cursor: pointer;

  font-size: 15px;
  font-weight: 700;

  color: #ffffff !important;

  text-decoration: none !important;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.25);

  transition: all 0.35s ease;
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 25px 45px rgba(99, 102, 241, 0.35);
}

.vb-btn-full {
  width: 100%;
}

/* =========================================
   DIVIDER
========================================= */

.vb-auth-divider {
  display: flex;
  align-items: center;

  margin-bottom: 28px;
}

.vb-auth-divider::before,
.vb-auth-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background: #e2e8f0;
}

.vb-auth-divider span {
  padding: 0 16px;

  color: #94a3b8;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================
   SECONDARY
========================================= */

.vb-auth-secondary {
  text-align: center;
}

.vb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 16px 28px;

  border-radius: 16px;

  border: 1px solid #e2e8f0;

  background: #ffffff;

  color: #0f172a !important;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none !important;

  transition: all 0.3s ease;
}

.vb-btn-outline:hover {
  border-color: #6366f1;

  color: #6366f1 !important;

  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {
  .vb-signup-section {
    padding: 60px 15px;
  }

  .vb-auth-card {
    padding: 35px 22px;

    border-radius: 24px;
  }

  .vb-headline {
    font-size: 30px;
  }
}

/* =====================================================
   USER DASHBOARD
===================================================== */

.vb-dashboard-section {
  position: relative;

  min-height: 100vh;

  padding: 80px 20px 120px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-dashboard-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-dash-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-left {
  top: -200px;
  left: -200px;

  width: 600px;
  height: 600px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-right {
  right: -250px;
  bottom: -250px;

  width: 700px;
  height: 700px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-dashboard-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;
}

.vb-dash-layout {
  display: flex;
  gap: 30px;

  align-items: flex-start;
}

/* =========================================
   SIDEBAR
========================================= */

.vb-dash-sidebar {
  width: 320px;
  flex-shrink: 0;

  position: sticky;
  top: 100px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 28px;

  padding: 30px;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}

/* =========================================
   USER CARD
========================================= */

.vb-dash-user-card {
  text-align: center;

  margin-bottom: 30px;
  padding-bottom: 24px;

  border-bottom: 1px solid #e2e8f0;
}

.vb-avatar-lg {
  width: 90px;
  height: 90px;

  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 26px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 34px;
  font-weight: 800;

  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.vb-user-name {
  margin-bottom: 4px;

  color: #0f172a;

  font-size: 22px;
  font-weight: 800;
}

.vb-user-email {
  color: #64748b;

  font-size: 14px;
}

/* =========================================
   NAVIGATION
========================================= */

.vb-dash-nav {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.vb-nav-link {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 14px 18px;

  border-radius: 16px;

  text-decoration: none !important;

  color: #475569;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.vb-nav-link i {
  color: #94a3b8;

  font-size: 1.1rem;

  transition: 0.3s ease;
}

.vb-nav-link:hover {
  background: #f8fafc;

  color: #6366f1;
}

.vb-nav-link:hover i {
  color: #6366f1;
}

.vb-nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(59, 130, 246, 0.08)
  );

  color: #6366f1;
}

.vb-nav-link.active i {
  color: #6366f1;
}

.vb-nav-divider {
  height: 1px;

  background: #e2e8f0;

  margin: 10px 0;
}

.vb-nav-danger {
  color: #ef4444;
}

.vb-nav-danger i {
  color: #ef4444;
}

.vb-nav-danger:hover {
  background: #fef2f2;

  color: #dc2626;
}

/* =========================================
   MAIN AREA
========================================= */

.vb-dash-main {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 24px;
}

.vb-dash-header {
  margin-bottom: 10px;
}

.vb-headline {
  margin: 0 0 12px;

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;

  letter-spacing: -0.03em;
}

.vb-text-dark {
  color: #0f172a;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #6366f1, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-description {
  max-width: 650px;

  color: #64748b;

  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   BENTO GRID
========================================= */

.vb-dash-bento-grid {
  display: grid;

  gap: 24px;
}

.vb-bento-card {
  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.1);

  border-radius: 28px;

  padding: 30px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

/* =========================================
   CARD HEADER
========================================= */

.vb-bento-header {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 24px;
}

.vb-bento-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 1.3rem;
}

.vb-bento-title {
  margin: 0;

  color: #0f172a;

  font-size: 22px;
  font-weight: 800;
}

/* =========================================
   ACCOUNT INFO
========================================= */

.vb-info-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 18px;
}

.vb-info-item {
  padding: 20px;

  border-radius: 18px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
}

.vb-info-label {
  display: block;

  margin-bottom: 8px;

  color: #94a3b8;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.vb-info-value {
  color: #0f172a;

  font-size: 18px;
  font-weight: 700;
}

/* =========================================
   ACTION CARDS
========================================= */

.vb-action-cards {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;
}

.vb-action-link {
  display: flex;
  align-items: center;

  gap: 16px;

  padding: 20px;

  text-decoration: none !important;

  border-radius: 20px;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  transition: all 0.35s ease;
}

.vb-action-link:hover {
  transform: translateY(-4px);

  border-color: rgba(99, 102, 241, 0.25);

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.vb-action-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(99, 102, 241, 0.1);

  color: #6366f1;

  font-size: 1.2rem;

  flex-shrink: 0;

  transition: 0.35s ease;
}

.vb-action-link:hover .vb-action-icon {
  transform: scale(1.08);
}

.vb-action-text {
  flex: 1;
}

.vb-action-text strong {
  display: block;

  margin-bottom: 4px;

  color: #0f172a;

  font-size: 16px;
  font-weight: 700;
}

.vb-action-text span {
  color: #64748b;

  font-size: 13px;
}

.vb-action-arrow {
  color: #94a3b8;

  transition: 0.3s ease;
}

.vb-action-link:hover .vb-action-arrow {
  color: #6366f1;

  transform: translateX(4px);
}

/* =========================================
   NOTICE
========================================= */

.vb-notice-alert {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  padding: 24px;

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(99, 102, 241, 0.08)
  );

  border: 1px solid rgba(59, 130, 246, 0.15);
}

.vb-notice-icon {
  color: #3b82f6;

  font-size: 1.5rem;
}

.vb-notice-text strong {
  display: block;

  margin-bottom: 6px;

  color: #1e40af;

  font-size: 16px;
  font-weight: 700;
}

.vb-notice-text p {
  margin: 0;

  color: #475569;

  line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .vb-dash-layout {
    flex-direction: column;
  }

  .vb-dash-sidebar {
    width: 100%;

    position: relative;
    top: 0;
  }

  .vb-dash-user-card {
    display: flex;
    align-items: center;

    text-align: left;

    gap: 20px;
  }

  .vb-avatar-lg {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .vb-dashboard-section {
    padding: 60px 15px;
  }

  .vb-bento-card {
    padding: 22px;
  }

  .vb-info-grid {
    grid-template-columns: 1fr;
  }

  .vb-action-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .vb-action-arrow {
    display: none;
  }
}

/* =====================================================
   ORDER TRACKING SECTION
===================================================== */

.vb-track-section {
  position: relative;

  min-height: 100vh;

  padding: 80px 20px 120px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-track-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-track-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-left {
  top: -200px;
  left: -200px;

  width: 600px;
  height: 600px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-right {
  right: -250px;
  bottom: -250px;

  width: 700px;
  height: 700px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-track-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 850px;
  margin: 0 auto;
}

.vb-track-layout {
  display: flex;
  flex-direction: column;

  gap: 24px;
}

/* =========================================
   CARD
========================================= */

.vb-track-card {
  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  border-radius: 30px;

  padding: 36px;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}

/* =========================================
   HEADER
========================================= */

.vb-card-header {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 20px;
}

.vb-header-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 1.4rem;

  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}

.vb-card-title {
  margin: 0;

  color: #0f172a;

  font-size: 28px;
  font-weight: 800;
}

.vb-track-desc {
  margin-bottom: 28px;

  color: #64748b;

  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   FORM
========================================= */

.vb-track-form {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.vb-label {
  color: #334155;

  font-size: 14px;
  font-weight: 700;
}

.vb-track-input-group {
  display: flex;

  gap: 12px;
}

.vb-input-wrapper {
  position: relative;

  flex: 1;
}

.vb-input-icon {
  position: absolute;

  top: 50%;
  left: 18px;

  transform: translateY(-50%);

  color: #94a3b8;

  font-size: 1.1rem;
}

.vb-input {
  width: 100%;

  padding: 16px 20px 16px 50px;

  border-radius: 18px;

  border: 1px solid #e2e8f0;

  background: #f8fafc;

  color: #0f172a;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.vb-input::placeholder {
  color: #94a3b8;
}

.vb-input:focus {
  outline: none;

  background: #ffffff;

  border-color: #6366f1;

  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

/* =========================================
   BUTTON
========================================= */

.vb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 32px;

  border: none;

  border-radius: 18px;

  cursor: pointer;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  transition: all 0.35s ease;

  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(99, 102, 241, 0.35);
}

/* =========================================
   ERROR ALERT
========================================= */

.vb-alert-error {
  display: flex;

  gap: 14px;

  margin-top: 24px;

  padding: 18px 20px;

  border-radius: 18px;

  background: #fef2f2;

  border: 1px solid #fecaca;
}

.vb-alert-icon {
  color: #ef4444;

  font-size: 1.2rem;
}

.vb-alert-text strong {
  display: block;

  margin-bottom: 4px;

  color: #b91c1c;

  font-size: 15px;
}

.vb-alert-text p {
  margin: 0;

  color: #dc2626;

  font-size: 14px;
}

/* =========================================
   RESULT CARD
========================================= */

.vb-result-card {
  border-left: 4px solid #6366f1;

  animation: vbSlideUp 0.5s ease;
}

@keyframes vbSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   STATUS BANNER
========================================= */

.vb-status-banner {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 24px;

  padding: 24px;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.06),
    rgba(59, 130, 246, 0.04)
  );
}

.vb-status-icon-blob {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 20px;

  font-size: 1.8rem;
}

.vb-status-processing .vb-status-icon-blob {
  background: rgba(99, 102, 241, 0.12);

  color: #6366f1;
}

.vb-status-dispatched .vb-status-icon-blob {
  background: rgba(34, 197, 94, 0.12);

  color: #22c55e;
}

.vb-status-title {
  display: block;

  margin-bottom: 4px;

  color: #0f172a;

  font-size: 18px;
  font-weight: 800;
}

.vb-status-desc {
  margin: 0;

  color: #64748b;

  line-height: 1.6;
}

/* =========================================
   SUMMARY GRID
========================================= */

.vb-track-summary {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  padding-top: 24px;

  border-top: 1px solid #e2e8f0;
}

.vb-summary-label {
  display: block;

  margin-bottom: 6px;

  color: #94a3b8;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.vb-summary-value {
  color: #0f172a;

  font-size: 18px;
  font-weight: 700;
}

/* =========================================
   TRACKING TIMELINE
========================================= */

.vb-track-timeline {
  margin-top: 30px;

  padding-top: 24px;

  border-top: 1px solid #e2e8f0;
}

.vb-track-step {
  position: relative;

  display: flex;

  gap: 18px;

  padding-bottom: 24px;
}

.vb-track-step:last-child {
  padding-bottom: 0;
}

.vb-track-step::before {
  content: "";

  position: absolute;

  top: 38px;
  left: 14px;

  width: 2px;
  height: calc(100% - 10px);

  background: #e2e8f0;
}

.vb-track-step:last-child::before {
  display: none;
}

.vb-step-dot {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #e2e8f0;

  position: relative;
  z-index: 2;
}

.vb-track-step.active .vb-step-dot {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.vb-step-content strong {
  display: block;

  margin-bottom: 4px;

  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
}

.vb-step-content span {
  color: #64748b;

  font-size: 14px;
}

/* =========================================
   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 {
    width: 100%;

    min-height: 56px;
  }

  .vb-status-banner {
    flex-direction: column;

    text-align: center;
  }

  .vb-track-summary {
    grid-template-columns: 1fr;

    text-align: center;
  }
}

/* =====================================================
   RETURN ORDER SECTION
===================================================== */

.vb-return-section {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-return-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-return-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-right {
  top: -220px;
  right: -220px;

  width: 650px;
  height: 650px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-left {
  bottom: -220px;
  left: -220px;

  width: 650px;
  height: 650px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-return-section .vb-container {
  position: relative;
  z-index: 2;

  width: 100%;
}

/* =========================================
   MAIN CARDS
========================================= */

.vb-return-form-card,
.vb-return-success-card {
  max-width: 700px;
  margin: 0 auto;

  padding: 42px;

  border-radius: 32px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}

/* =========================================
   SUCCESS CARD
========================================= */

.vb-return-success-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.vb-success-icon-blob {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border-radius: 24px;

  background: linear-gradient(135deg, #22c55e, #16a34a);

  color: #ffffff;

  font-size: 2.4rem;

  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);

  animation: vbPopIn 0.6s ease;
}

@keyframes vbPopIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.vb-return-summary {
  width: 100%;
  max-width: 380px;

  margin: 28px 0;

  padding: 24px;

  display: flex;
  flex-direction: column;

  gap: 8px;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.06),
    rgba(59, 130, 246, 0.04)
  );

  border: 1px solid rgba(99, 102, 241, 0.12);
}

.vb-summary-label {
  color: #94a3b8;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.vb-summary-value {
  color: #0f172a;

  font-size: 26px;
  font-weight: 800;
}

/* =========================================
   HEADER
========================================= */

.vb-card-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  margin-bottom: 32px;
}

.vb-header-icon-blob {
  width: 74px;
  height: 74px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 22px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 2rem;

  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.25);
}

.vb-headline {
  margin: 0 0 12px;

  font-size: clamp(32px, 4vw, 44px);

  line-height: 1.1;

  color: #0f172a;

  font-weight: 800;
}

.vb-text-dark {
  color: #0f172a;
}

.vb-text-gradient {
  background: linear-gradient(135deg, #6366f1, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vb-description {
  color: #64748b;

  font-size: 16px;
  line-height: 1.7;
}

/* =========================================
   FORM
========================================= */

.vb-return-form {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.vb-input-group {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.vb-label {
  color: #334155;

  font-size: 14px;
  font-weight: 700;
}

.vb-required {
  color: #ef4444;
}

.vb-optional {
  color: #94a3b8;

  font-size: 13px;
  font-weight: 500;
}

.vb-input-wrapper {
  position: relative;

  display: flex;
  align-items: center;
}

.vb-input-icon {
  position: absolute;

  left: 18px;

  color: #94a3b8;

  font-size: 1rem;

  transition: 0.3s ease;
}

.vb-input,
.vb-select,
.vb-textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 18px;

  border: 1px solid #e2e8f0;

  background: #f8fafc;

  color: #0f172a;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.vb-input-with-icon {
  padding-left: 50px !important;
}

.vb-select {
  appearance: none;

  cursor: pointer;

  padding-right: 50px;
}

.vb-select-arrow {
  position: absolute;

  right: 18px;

  color: #94a3b8;

  pointer-events: none;
}

.vb-input::placeholder,
.vb-textarea::placeholder {
  color: #94a3b8;
}

.vb-input:focus,
.vb-select:focus,
.vb-textarea:focus {
  outline: none;

  background: #ffffff;

  border-color: #6366f1;

  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.vb-input-wrapper:focus-within .vb-input-icon,
.vb-input-wrapper:focus-within .vb-select-arrow {
  color: #6366f1;
}

.vb-textarea {
  resize: vertical;

  min-height: 130px;
}

/* =========================================
   ERROR ALERT
========================================= */

.vb-alert-error {
  display: flex;

  gap: 14px;

  padding: 18px 20px;

  border-radius: 18px;

  background: #fef2f2;

  border: 1px solid #fecaca;
}

.vb-alert-icon {
  color: #ef4444;

  font-size: 1.2rem;
}

.vb-alert-text strong {
  display: block;

  margin-bottom: 4px;

  color: #b91c1c;

  font-size: 15px;
}

.vb-alert-text p {
  margin: 0;

  color: #dc2626;

  font-size: 14px;
}

/* =========================================
   BUTTON
========================================= */

.vb-btn-primary {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 16px 24px;

  border: none;

  border-radius: 18px;

  cursor: pointer;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  transition: all 0.35s ease;

  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(99, 102, 241, 0.35);
}

.vb-btn-full {
  margin-top: 6px;
}

/* =========================================
   POLICY NOTE
========================================= */

.vb-policy-note {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 18px;

  border-radius: 18px;

  background: rgba(99, 102, 241, 0.04);

  border: 1px solid rgba(99, 102, 241, 0.1);
}

.vb-policy-note i {
  color: #6366f1;

  font-size: 1.1rem;
}

.vb-policy-note span {
  color: #64748b;

  font-size: 13px;

  line-height: 1.6;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
  .vb-return-section {
    padding: 60px 15px;
  }

  .vb-return-form-card,
  .vb-return-success-card {
    padding: 28px 22px;

    border-radius: 24px;
  }

  .vb-headline {
    font-size: 30px;
  }

  .vb-summary-value {
    font-size: 22px;
  }
}

/* =====================================================
   CART PAGE SECTION
===================================================== */

.vb-cart-section {
  position: relative;

  min-height: 100vh;

  padding: 80px 20px 120px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-cart-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.vb-cart-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-left {
  top: -220px;
  left: -220px;

  width: 650px;
  height: 650px;

  background: rgba(99, 102, 241, 0.12);
}

.vb-glow-bottom-right {
  right: -250px;
  bottom: -250px;

  width: 700px;
  height: 700px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-cart-section .vb-container {
  position: relative;
  z-index: 2;

  max-width: 1300px;
  margin: 0 auto;
}

/* =========================================
   EMPTY STATE
========================================= */

.vb-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  min-height: 500px;
}

.vb-empty-icon-blob {
  width: 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  border-radius: 32px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff;

  font-size: 3rem;

  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
}

.vb-empty-state .vb-headline {
  margin-bottom: 16px;

  font-size: clamp(36px, 5vw, 56px);

  font-weight: 800;

  color: #0f172a;
}

.vb-empty-desc {
  max-width: 520px;

  margin-bottom: 30px;

  color: #64748b;

  font-size: 18px;
  line-height: 1.7;
}

/* =========================================
   CART LAYOUT
========================================= */

.vb-cart-layout {
  display: flex;

  gap: 32px;

  align-items: flex-start;
}

/* =========================================
   CART ITEMS
========================================= */

.vb-cart-items-wrapper {
  flex: 1;
}

.vb-cart-header {
  margin: 0 0 30px;

  padding-bottom: 16px;

  color: #0f172a;

  font-size: 30px;
  font-weight: 800;

  border-bottom: 1px solid #e2e8f0;
}

.vb-cart-list {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.vb-cart-item-card {
  display: flex;
  align-items: center;

  gap: 24px;

  padding: 22px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);

  transition: all 0.35s ease;
}

.vb-cart-item-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.vb-item-img-box {
  width: 110px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  padding: 12px;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.06),
    rgba(59, 130, 246, 0.04)
  );
}

.vb-item-img {
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
}

/* =========================================
   PRODUCT INFO
========================================= */

.vb-item-info {
  flex: 1;
}

.vb-item-title {
  margin: 0 0 6px;

  color: #0f172a;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.4;
}

.vb-item-unit-price {
  color: #64748b;

  font-size: 14px;
  font-weight: 600;
}

/* =========================================
   QUANTITY
========================================= */

.vb-qty-pill {
  display: flex;
  align-items: center;

  padding: 4px;

  border-radius: 50px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
}

.vb-qty-pill:focus-within {
  border-color: #6366f1;
}

.vb-qty-input {
  width: 55px;

  border: none;
  outline: none;

  background: transparent;

  text-align: center;

  color: #0f172a;

  font-size: 16px;
  font-weight: 700;

  -moz-appearance: textfield;
}

.vb-qty-input::-webkit-inner-spin-button,
.vb-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vb-qty-update-btn {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 50%;

  cursor: pointer;

  background: #ffffff;

  color: #6366f1;

  transition: all 0.3s ease;

  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.vb-qty-update-btn:hover {
  background: #6366f1;

  color: #ffffff;

  transform: rotate(45deg);
}

/* =========================================
   ITEM TOTAL
========================================= */

.vb-item-total-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  min-width: 120px;

  gap: 10px;
}

.vb-item-total {
  color: #0f172a;

  font-size: 22px;
  font-weight: 800;
}

.vb-remove-btn {
  display: flex;
  align-items: center;

  gap: 6px;

  border: none;

  padding: 6px 10px;

  border-radius: 10px;

  background: transparent;

  color: #ef4444;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;
}

.vb-remove-btn:hover {
  background: #fef2f2;
}

/* =========================================
   SUMMARY SIDEBAR
========================================= */

.vb-cart-summary-wrapper {
  width: 380px;

  flex-shrink: 0;

  position: sticky;
  top: 120px;
}

.vb-summary-card {
  padding: 32px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.12);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.vb-summary-title {
  margin: 0 0 24px;

  color: #0f172a;

  font-size: 24px;
  font-weight: 800;
}

.vb-summary-row {
  display: flex;
  justify-content: space-between;

  margin-bottom: 16px;
}

.vb-summary-label {
  color: #64748b;

  font-size: 15px;
  font-weight: 600;
}

.vb-summary-value {
  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
}

.vb-summary-divider {
  margin: 22px 0;

  border: none;

  border-top: 1px solid #e2e8f0;
}

.vb-total-row .vb-summary-label {
  color: #0f172a;

  font-size: 18px;
  font-weight: 800;
}

.vb-total-row .vb-summary-value {
  color: #6366f1;

  font-size: 28px;
  font-weight: 800;
}

/* =========================================
   TRUST BADGE
========================================= */

.vb-summary-trust {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 20px;

  padding: 12px;

  border-radius: 14px;

  background: rgba(34, 197, 94, 0.08);

  color: #16a34a;

  font-size: 13px;
  font-weight: 700;
}

/* =========================================
   BUTTON
========================================= */

.vb-btn-primary {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 20px;

  padding: 16px 24px;

  border: none;

  border-radius: 18px;

  cursor: pointer;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff !important;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none !important;

  transition: all 0.35s ease;

  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(99, 102, 241, 0.35);
}

.vb-btn-full {
  width: 100%;
}

/* =========================================
   RESPONSIVE
========================================= */

@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;

    text-align: center;
  }

  .vb-item-total-wrap {
    align-items: center;
  }

  .vb-summary-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .vb-empty-icon-blob {
    width: 90px;
    height: 90px;

    font-size: 2.4rem;
  }

  .vb-cart-header {
    font-size: 24px;
  }
}

/* =====================================================
   CHECKOUT PAGE — MODERN GLASS COMMERCE UI
===================================================== */

.vb-checkout-section {
  position: relative;

  min-height: 100vh;

  padding: 80px 20px 120px;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vb-checkout-section * {
  box-sizing: border-box;

  font-family: "Outfit", "Inter", sans-serif;
}

/* =========================================
   BACKGROUND EFFECTS
========================================= */

.vb-checkout-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;
}

.vb-glow-top-left {
  top: -220px;
  left: -220px;

  width: 650px;
  height: 650px;

  background: rgba(99, 102, 241, 0.1);
}

.vb-glow-bottom-right {
  right: -250px;
  bottom: -250px;

  width: 700px;
  height: 700px;

  background: rgba(59, 130, 246, 0.08);
}

/* =========================================
   CONTAINER
========================================= */

.vb-checkout-section .vb-container {
  max-width: 1350px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

.vb-checkout-layout {
  display: flex;

  gap: 32px;

  align-items: flex-start;
}

/* =========================================
   ERROR ALERT
========================================= */

.vb-alert-error {
  display: flex;
  gap: 16px;

  margin-bottom: 28px;

  padding: 20px;

  border-radius: 20px;

  background: rgba(254, 242, 242, 0.95);

  border: 1px solid rgba(239, 68, 68, 0.15);

  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.08);
}

.vb-alert-icon {
  font-size: 1.5rem;

  color: #ef4444;
}

.vb-alert-text strong {
  display: block;

  margin-bottom: 4px;

  color: #991b1b;

  font-size: 16px;
  font-weight: 800;
}

.vb-alert-text p {
  margin: 0;

  color: #b91c1c;

  font-size: 14px;
}

/* =========================================
   LEFT FORM AREA
========================================= */

.vb-checkout-form-area {
  flex: 1.2;

  display: flex;
  flex-direction: column;

  gap: 28px;
}

.vb-checkout-card {
  padding: 36px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.1);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

/* =========================================
   CARD HEADER
========================================= */

.vb-card-header {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 30px;

  padding-bottom: 20px;

  border-bottom: 1px solid #e2e8f0;
}

.vb-header-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(59, 130, 246, 0.08)
  );

  color: #6366f1;

  font-size: 1.2rem;
}

.vb-card-title {
  margin: 0;

  color: #0f172a;

  font-size: 24px;
  font-weight: 800;
}

/* =========================================
   FORM GRID
========================================= */

.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: 18px;
}

.vb-label {
  color: #0f172a;

  font-size: 14px;
  font-weight: 700;
}

.vb-required {
  color: #ef4444;
}

/* =========================================
   INPUTS
========================================= */

.vb-input,
.vb-textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 16px;

  border: 1px solid #e2e8f0;

  background: #ffffff;

  color: #0f172a;

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.vb-input::placeholder,
.vb-textarea::placeholder {
  color: #94a3b8;
}

.vb-input:focus,
.vb-textarea:focus {
  outline: none;

  border-color: #6366f1;

  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.vb-textarea {
  min-height: 120px;

  resize: vertical;
}

/* =========================================
   PAYMENT OPTIONS
========================================= */

.vb-payment-options {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.vb-payment-option {
  display: flex;
  align-items: center;

  gap: 18px;

  padding: 20px;

  cursor: pointer;

  border-radius: 20px;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  transition: all 0.35s ease;
}

.vb-payment-option:hover {
  transform: translateY(-3px);

  border-color: #c7d2fe;

  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.vb-payment-option.active {
  border-color: #6366f1;

  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(59, 130, 246, 0.03)
  );
}

.vb-pay-icon {
  font-size: 2rem;

  color: #64748b;
}

.vb-payment-option.active .vb-pay-icon {
  color: #6366f1;
}

.vb-pay-info {
  flex: 1;
}

.vb-pay-info strong {
  display: block;

  margin-bottom: 4px;

  color: #0f172a;

  font-size: 16px;
  font-weight: 700;
}

.vb-pay-info span {
  color: #64748b;

  font-size: 14px;
}

.vb-pay-check {
  color: transparent;

  font-size: 22px;

  transition: 0.3s;
}

.vb-payment-option.active .vb-pay-check {
  color: #22c55e;
}

/* =========================================
   SUMMARY
========================================= */

.vb-checkout-summary {
  flex: 0.8;

  position: sticky;
  top: 100px;
}

.vb-summary-card {
  padding: 32px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(99, 102, 241, 0.1);

  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.vb-summary-title {
  margin: 0 0 24px;

  padding-bottom: 18px;

  color: #0f172a;

  font-size: 24px;
  font-weight: 800;

  border-bottom: 1px solid #e2e8f0;
}

/* =========================================
   ITEMS
========================================= */

.vb-summary-items {
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin-bottom: 26px;
}

.vb-summary-item {
  display: flex;
  justify-content: space-between;

  gap: 16px;
}

.vb-item-name {
  color: #334155;

  font-size: 15px;
  font-weight: 600;
}

.vb-item-qty {
  display: inline-flex;

  margin-top: 4px;

  padding: 4px 10px;

  border-radius: 50px;

  background: rgba(99, 102, 241, 0.08);

  color: #6366f1;

  font-size: 12px;
  font-weight: 700;
}

.vb-item-price {
  color: #0f172a;

  font-size: 16px;
  font-weight: 800;
}

/* =========================================
   TOTALS
========================================= */

.vb-summary-totals {
  padding-top: 22px;

  border-top: 1px solid #e2e8f0;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

.vb-totals-row {
  display: flex;
  justify-content: space-between;
}

.vb-totals-label {
  color: #64748b;

  font-size: 15px;
  font-weight: 600;
}

.vb-totals-value {
  color: #0f172a;

  font-size: 15px;
  font-weight: 700;
}

.vb-total-final {
  margin-top: 6px;

  padding-top: 18px;

  border-top: 1px solid #e2e8f0;
}

.vb-total-final .vb-totals-label {
  color: #0f172a;

  font-size: 18px;
  font-weight: 800;
}

.vb-total-final .vb-totals-value {
  color: #6366f1;

  font-size: 30px;
  font-weight: 900;
}

/* =========================================
   PLACE ORDER BUTTON
========================================= */

.vb-btn-primary {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 24px;

  padding: 18px 24px;

  border: none;

  border-radius: 18px;

  cursor: pointer;

  background: linear-gradient(135deg, #6366f1, #3b82f6);

  color: #ffffff !important;

  font-size: 15px;
  font-weight: 700;

  transition: all 0.35s ease;

  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.25);
}

.vb-btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.35);
}

/* =========================================
   TRUST BAR
========================================= */

.vb-summary-trust {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 18px;

  padding: 12px;

  border-radius: 14px;

  background: rgba(34, 197, 94, 0.08);

  color: #16a34a;

  font-size: 13px;
  font-weight: 700;
}

/* =========================================
   RESPONSIVE
========================================= */

@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,
  .vb-summary-card {
    padding: 24px;
  }

  .vb-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .vb-card-title {
    font-size: 20px;
  }

  .vb-summary-title {
    font-size: 20px;
  }

  .vb-total-final .vb-totals-value {
    font-size: 26px;
  }
}

/* =====================================================
   ORDER SUCCESS — LUXURY GLASS DASHBOARD
===================================================== */

.vb-success-section {
  position: relative;
  padding: 120px 20px;
  min-height: 100vh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(245, 158, 11, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(59, 130, 246, 0.08),
      transparent 35%
    ),
    #fafafa;
}

/* =====================================================
   CONTAINER
===================================================== */

.vb-success-section .vb-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* =====================================================
   HEADER
===================================================== */

.vb-success-header {
  text-align: center;
  margin-bottom: 80px;
}

.vb-success-icon-blob {
  width: 130px;
  height: 130px;

  margin: 0 auto 30px;

  border-radius: 40px;

  background: linear-gradient(135deg, #10b981, #059669);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 3.5rem;

  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);

  animation: successFloat 4s ease-in-out infinite;
}

@keyframes successFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.vb-headline {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 20px;
  color: #0f172a;
  font-weight: 900;
}

.vb-description {
  max-width: 700px;
  margin: auto;

  color: #64748b;

  font-size: 20px;
  line-height: 1.8;
}

/* =====================================================
   ORDER NUMBER
===================================================== */

.vb-order-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 30px;

  padding: 14px 26px;

  border-radius: 999px;

  background: white;

  border: 1px solid #e2e8f0;

  font-size: 15px;
  font-weight: 700;

  color: #0f172a;

  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* =====================================================
   LAYOUT
===================================================== */

.vb-success-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
}

/* =====================================================
   GLASS CARDS
===================================================== */

.vb-success-card,
.vb-tracker-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 32px;

  padding: 35px;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}

.vb-card-title,
.vb-tracker-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

/* =====================================================
   PAYMENT STATUS
===================================================== */

.vb-payment-status {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(16, 185, 129, 0.03)
  );

  border: 1px solid rgba(16, 185, 129, 0.15);

  padding: 24px;

  border-radius: 24px;

  display: flex;
  gap: 20px;

  margin-bottom: 30px;
}

.vb-status-icon {
  color: #10b981;
  font-size: 2rem;
}

.vb-status-text strong {
  color: #0f172a;
}

/* =====================================================
   STATS
===================================================== */

.vb-stats-bento {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 18px;
}

.vb-stat-box {
  padding: 24px;

  border-radius: 22px;

  background: linear-gradient(180deg, #ffffff, #f8fafc);

  border: 1px solid #e2e8f0;

  transition: 0.35s ease;
}

.vb-stat-box:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.vb-stat-label {
  color: #64748b;
  margin-bottom: 8px;
}

.vb-stat-value {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
}

/* =====================================================
   TIMELINE
===================================================== */

.vb-progress-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.vb-progress-rail::before {
  content: "";

  position: absolute;

  left: 21px;
  top: 10px;
  bottom: 10px;

  width: 3px;

  background: linear-gradient(to bottom, #10b981, #dbeafe);
}

.vb-step-circle {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;

  flex-shrink: 0;
}

.vb-rail-step.active .vb-step-circle {
  background: #10b981;
  color: white;

  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

.vb-rail-step.pending .vb-step-circle {
  background: white;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
}

.vb-step-info strong {
  color: #0f172a;
  font-size: 16px;
}

.vb-step-info span {
  color: #64748b;
}

/* =====================================================
   NEXT STEPS
===================================================== */

.vb-next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vb-next-steps-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vb-next-steps-list i {
  color: #10b981;
  font-size: 1.2rem;
}

.vb-next-steps-list span {
  color: #334155;
  font-weight: 600;
}

/* =====================================================
   BUTTONS
===================================================== */

.vb-btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);

  color: white !important;

  border-radius: 18px;

  padding: 16px 30px;

  font-weight: 800;

  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);

  transition: 0.3s ease;
}

.vb-btn-primary:hover {
  transform: translateY(-3px);
}

.vb-btn-outline {
  background: white;

  border: 1px solid #dbeafe;

  color: #0f172a !important;

  border-radius: 18px;

  padding: 16px 30px;

  font-weight: 800;
}

/* =====================================================
   HELP CARD
===================================================== */

.vb-help-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);

  border: 1px solid #e2e8f0;

  border-radius: 24px;

  padding: 25px;
}

.vb-help-icon {
  color: #3b82f6;
}

.vb-help-content a {
  color: #2563eb !important;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .vb-success-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vb-success-section {
    padding: 80px 15px;
  }

  .vb-headline {
    font-size: 40px;
  }

  .vb-success-card,
  .vb-tracker-card {
    padding: 25px;
  }
}

/* =====================================================
   SHOP PAGE — MODERN LUXURY STORE
===================================================== */

.shop-hard {
  background:
    radial-gradient(
      circle at top left,
      rgba(217, 125, 84, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(92, 113, 94, 0.08),
      transparent 30%
    ),
    var(--bg);

  position: relative;
}

.shop-hard-body {
  max-width: 1500px;
  margin: auto;
  padding: 100px 24px 140px;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.shop-hard-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

  gap: 32px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.shop-product-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.6);

  border-radius: 30px;

  overflow: hidden;

  transition: 0.45s ease;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);

  position: relative;
}

.shop-product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   IMAGE AREA
===================================================== */

.shop-product-image {
  height: 300px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, #ffffff, #f8f8f8);

  padding: 40px;

  overflow: hidden;
}

.shop-product-image img {
  max-width: 100%;
  max-height: 240px;

  object-fit: contain;

  transition: 0.7s ease;
}

.shop-product-card:hover img {
  transform: scale(1.12) rotate(-2deg);
}

/* =====================================================
   STOCK BADGE
===================================================== */

.shop-stock {
  position: absolute;

  top: 20px;
  left: 20px;

  z-index: 10;

  padding: 8px 16px;

  border-radius: 999px;

  backdrop-filter: blur(15px);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
}

.shop-stock.in {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.shop-stock.out {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

/* =====================================================
   INFO
===================================================== */

.shop-product-info {
  padding: 28px;
}

.shop-product-info h3 {
  font-size: 20px;
  line-height: 1.4;

  margin-bottom: 10px;

  color: var(--text);

  font-weight: 700;
}

.shop-product-info p {
  color: var(--text-muted);

  line-height: 1.7;

  font-size: 14px;

  margin-bottom: 20px;
}

/* =====================================================
   PRICE
===================================================== */

.shop-price {
  font-size: 28px;

  font-weight: 800;

  color: var(--primary-dark);
}

.shop-price small {
  font-size: 14px;
  color: var(--text-faint);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 20px;
}

/* =====================================================
   BUTTON
===================================================== */

.shop-add-btn {
  width: 100%;

  border: none;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: white;

  padding: 15px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.35s ease;
}

.shop-add-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 15px 25px rgba(92, 113, 94, 0.25);
}

.shop-disabled-btn {
  width: 100%;

  border: none;

  background: #e5e7eb;

  color: #6b7280;

  padding: 15px;

  border-radius: 16px;

  font-weight: 700;

  cursor: not-allowed;
}

/* =====================================================
   OUT OF STOCK
===================================================== */

.shop-product-card.out {
  opacity: 0.75;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.shop-hard-empty {
  background: white;

  border-radius: 32px;

  padding: 80px 40px;

  text-align: center;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.shop-hard-empty strong {
  display: block;

  font-size: 32px;

  margin-bottom: 14px;

  color: var(--text);
}

.shop-hard-empty p {
  max-width: 500px;

  margin: auto;

  color: var(--text-muted);

  line-height: 1.8;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
  .shop-hard-body {
    padding: 80px 15px;
  }

  .shop-hard-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-image {
    height: 260px;
  }

  .shop-product-info {
    padding: 22px;
  }
}

/* =====================================================
   SINGLE PRODUCT PAGE — LUXE GLASS COMMERCE
===================================================== */

.product-single {
  position: relative;
  background:
    radial-gradient(circle at top left, #fff8eb 0%, transparent 35%),
    radial-gradient(circle at bottom right, #fff2e7 0%, transparent 35%),
    #fafafa;
  padding: 100px 24px;
  overflow: hidden;
}

.product-single .container {
  max-width: 1400px;
  margin: auto;
}

/* =====================================================
   LAYOUT
===================================================== */

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.product-gallery {
  position: sticky;
  top: 120px;
}

.product-image-box {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.7)
  );

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 40px;

  padding: 60px;

  min-height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.product-image-box img {
  max-width: 100%;
  max-height: 560px;
  object-fit: contain;

  transition: 0.6s;
}

.product-image-box:hover img {
  transform: scale(1.08);
}

/* =====================================================
   PRODUCT INFO
===================================================== */

.product-brand {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: #fff;

  border-radius: 999px;

  padding: 8px 18px;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  color: #ca8a04;

  margin-bottom: 20px;
}

.product-title {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;

  font-weight: 900;

  color: #111827;

  margin-bottom: 24px;
}

.product-description {
  font-size: 18px;

  line-height: 1.9;

  color: #6b7280;

  margin-bottom: 40px;
}

/* =====================================================
   PRICE
===================================================== */

.product-price-wrap {
  display: flex;

  align-items: end;

  gap: 20px;

  margin-bottom: 40px;
}

.product-price {
  font-size: 64px;

  font-weight: 900;

  line-height: 1;

  color: #111827;
}

.product-tax {
  background: #fff7ed;

  color: #ea580c;

  padding: 10px 16px;

  border-radius: 999px;

  font-size: 12px;

  font-weight: 700;
}

/* =====================================================
   PURCHASE PANEL
===================================================== */

.purchase-box {
  background: white;

  padding: 32px;

  border-radius: 32px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  margin-bottom: 32px;
}

.purchase-buttons {
  display: flex;

  gap: 16px;

  flex-wrap: wrap;
}

.btn-primary {
  flex: 1;

  min-height: 64px;

  border: none;

  border-radius: 20px;

  background: linear-gradient(135deg, #ca8a04, #ea580c);

  color: white;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.4s;
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.25);
}

.btn-secondary {
  flex: 1;

  min-height: 64px;

  border-radius: 20px;

  border: 2px solid #e5e7eb;

  background: white;

  font-weight: 700;

  cursor: pointer;
}

/* =====================================================
   TRUST STRIP
===================================================== */

.trust-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.trust-card {
  background: white;

  padding: 20px;

  border-radius: 24px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.trust-icon {
  font-size: 24px;

  color: #ca8a04;

  margin-bottom: 12px;
}

/* =====================================================
   DETAILS SECTION
===================================================== */

.product-details {
  margin-top: 100px;
}

.details-card {
  background: white;

  border-radius: 40px;

  padding: 50px;

  margin-bottom: 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.details-title {
  font-size: 30px;

  font-weight: 900;

  color: #111827;

  margin-bottom: 25px;
}

.details-text {
  color: #6b7280;

  line-height: 1.9;

  font-size: 16px;
}

/* =====================================================
   SPEC TABLE
===================================================== */

.spec-table {
  width: 100%;

  border-collapse: separate;

  border-spacing: 0 12px;
}

.spec-table th {
  width: 35%;

  background: #f8fafc;

  padding: 18px 22px;

  border-radius: 14px;

  text-align: left;

  font-size: 14px;

  font-weight: 700;
}

.spec-table td {
  background: #ffffff;

  padding: 18px 22px;

  border-radius: 14px;

  color: #64748b;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .product-single {
    padding: 70px 15px;
  }

  .product-image-box {
    min-height: 450px;
    padding: 30px;
  }

  .product-title {
    font-size: 38px;
  }

  .purchase-buttons {
    flex-direction: column;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .details-card {
    padding: 30px;
  }
}

/* =====================================================
   CATEGORY LANDING HERO — LUXURY GLASS
===================================================== */

.cat-landing {
  position: relative;
  height: 700px;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  background: #0f172a;
}

.cat-landing-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Background Image */

.cat-landing-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 8s ease;
}

.cat-landing:hover .cat-landing-img {
  transform: scale(1.08);
}

/* Overlay */

.cat-landing-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.15) 100%
  );
}

/* Glow */

.cat-landing-link::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;

  background: radial-gradient(circle, rgba(202, 138, 4, 0.25), transparent 70%);

  top: -250px;
  left: -150px;

  z-index: 2;
  pointer-events: none;
}

/* Content */

.cat-landing-content {
  position: relative;
  z-index: 5;

  max-width: 1400px;
  margin: auto;

  height: 100%;

  padding: 0 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge */

.cat-landing-eyebrow {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #fbbf24;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

/* Title */

.cat-landing-title {
  color: white;

  font-size: clamp(48px, 6vw, 88px);

  line-height: 0.95;

  font-weight: 900;

  max-width: 800px;

  margin-bottom: 24px;
}

.cat-landing-title span {
  background: linear-gradient(135deg, #fbbf24, #f97316);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.cat-landing-text {
  color: rgba(255, 255, 255, 0.75);

  font-size: 18px;

  line-height: 1.8;

  max-width: 650px;

  margin-bottom: 40px;
}

/* CTA */

.cat-landing-cta {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 32px;

  border-radius: 18px;

  background: linear-gradient(135deg, #ca8a04, #ea580c);

  color: white;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition: 0.4s;
}

.cat-landing-cta:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.35);
}

.cat-landing-cta i {
  transition: 0.3s;
}

.cat-landing-cta:hover i {
  transform: translateX(6px);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {
  .cat-landing {
    height: 600px;
  }

  .cat-landing-content {
    padding: 0 30px;
  }

  .cat-landing-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .cat-landing {
    height: 500px;
    border-radius: 0 0 30px 30px;
  }

  .cat-landing-content {
    padding: 0 20px;
  }

  .cat-landing-title {
    font-size: 38px;
  }

  .cat-landing-text {
    font-size: 15px;
  }

  .cat-landing-cta {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   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: #ca8a04;
  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);
  mix-blend-mode: darken;
}

.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: #ca8a04; /* 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 — MODERN PREMIUM MARKETPLACE
===================================================== */

.vb-category-browser {
  position: relative;
  background: linear-gradient(180deg, #fafafa 0%, #f5f7fb 100%);
  padding: 100px 24px;
  overflow: hidden;
}

.vb-category-browser * {
  box-sizing: border-box;
  font-family: "Outfit", "Inter", sans-serif;
}

.vb-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.vb-empty-box {
  background: #ffffff;
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.vb-empty-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  background: linear-gradient(135deg, #ca8a04, #ea580c);
  color: #ffffff;
}

.vb-empty-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.vb-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.vb-product-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  transition: all 0.45s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.vb-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.vb-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.vb-card-image-wrap {
  position: relative;
  height: 300px;
  background: linear-gradient(145deg, #f8fafc, #eef2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vb-card-image-wrap::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.15), transparent);
}

.vb-card-img {
  position: relative;
  z-index: 2;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: all 0.6s ease;
}

.vb-product-card:hover .vb-card-img {
  transform: scale(1.08) rotate(-2deg);
}

/* =====================================================
   BADGES
===================================================== */

.vb-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vb-tag-stock {
  background: #dcfce7;
  color: #166534;
}

.vb-tag-out {
  background: #fee2e2;
  color: #991b1b;
}

/* =====================================================
   CARD CONTENT
===================================================== */

.vb-card-body {
  padding: 28px;
  flex: 1;
}

.vb-card-title {
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
}

.vb-card-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.vb-card-price {
  color: #111827;
  font-size: 32px;
  font-weight: 900;
}

/* =====================================================
   CARD FOOTER
===================================================== */

.vb-card-footer {
  padding: 0 28px 28px;
}

.vb-btn-primary {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #ca8a04, #ea580c);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
}

.vb-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.25);
}

.vb-btn-disabled {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: #f1f5f9;
  color: #94a3b8 !important;
  font-size: 15px;
  font-weight: 700;
  cursor: not-allowed;
}

.vb-w-100 {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .vb-category-browser {
    padding: 70px 15px;
  }

  .vb-category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vb-card-image-wrap {
    height: 240px;
  }

  .vb-card-title {
    font-size: 20px;
  }

  .vb-card-price {
    font-size: 28px;
  }
}

.text-black {
  color: #000 !important;
}

/* =====================================================
   SINGLE PRODUCT PAGE - MODERN PREMIUM
===================================================== */

.vb-single-product-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.vb-single-product-section * {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

.vb-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* =====================================================
   LAYOUT
===================================================== */

.vb-pro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.vb-pro-image-box {
  background: #ffffff;
  border-radius: 40px;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.vb-pro-image-box::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.15), transparent);
}

.vb-pro-main-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  transition: all 0.6s ease;
}

.vb-pro-image-box:hover .vb-pro-main-img {
  transform: scale(1.05);
}

/* =====================================================
   PRODUCT INFO
===================================================== */

.vb-pro-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.vb-meta-brand {
  background: #fff7ed;
  color: #ea580c;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.vb-meta-divider {
  color: #cbd5e1;
}

.vb-meta-category {
  color: #64748b;
  font-weight: 600;
}

.vb-pro-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 24px;
}

.vb-pro-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.vb-stars {
  color: #f59e0b;
}

.vb-pro-rating strong {
  color: #0f172a;
}

.vb-pro-rating span {
  color: #64748b;
}

/* =====================================================
   PRICE
===================================================== */

.vb-pro-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
}

.vb-pro-price {
  font-size: 56px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

.vb-tax-badge {
  background: #ecfdf5;
  color: #047857;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.vb-pro-desc {
  color: #64748b;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* =====================================================
   BUTTONS
===================================================== */

.vb-action-forms {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.vb-flex-form {
  flex: 1;
}

.vb-btn-primary,
.vb-btn-outline,
.vb-btn-disabled {
  width: 100%;
  height: 60px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.vb-btn-primary {
  border: none;
  background: linear-gradient(135deg, #ca8a04, #ea580c);
  color: #fff;
}

.vb-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.25);
}

.vb-btn-outline {
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #0f172a;
}

.vb-btn-outline:hover {
  border-color: #ca8a04;
}

.vb-btn-disabled {
  background: #f1f5f9;
  border: none;
  color: #94a3b8;
  cursor: not-allowed;
}

/* =====================================================
   TRUST CARDS
===================================================== */

.vb-pro-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vb-trust-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.vb-trust-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vb-trust-item span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

/* =====================================================
   TABS
===================================================== */

.vb-tab-headers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.vb-tab-label {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

#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: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.vb-tab-radio {
  display: none;
}

.vb-tab-panel {
  display: none;
}

#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;
}

.vb-panel-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.vb-panel-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.vb-panel-text {
  color: #64748b;
  line-height: 1.9;
}

.vb-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vb-panel-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: #334155;
}

.vb-panel-list i {
  color: #10b981;
}

/* =====================================================
   TABLE
===================================================== */

.vb-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.vb-spec-table th,
.vb-spec-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.vb-spec-table th {
  width: 35%;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
}

.vb-spec-table td {
  color: #64748b;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .vb-pro-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vb-pro-trust-grid {
    grid-template-columns: 1fr;
  }

  .vb-pro-image-box {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .vb-single-product-section {
    padding: 60px 15px;
  }

  .vb-pro-title {
    font-size: 38px;
  }

  .vb-pro-price {
    font-size: 42px;
  }

  .vb-action-forms {
    flex-direction: column;
  }

  .vb-panel-card {
    padding: 25px;
  }

  .vb-tab-label {
    width: 100%;
    text-align: center;
  }
}

.policy-page {
  padding: 50px;
}
