/* Vijay Construction — app-style light theme (mobile-first) */
:root {
  --vco-orange: #e11d48;
  --vco-orange-soft: #fb7185;
  --vco-navy: #1e3a8a;
  --vco-bg: #f4f4f2;
  --vco-surface: #ffffff;
  --vco-text: #0f172a;
  --vco-muted: #64748b;
  --vco-border: #e8e8e4;
  --vco-radius: 1.1rem;
  --vco-radius-pill: 999px;
  --vco-font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --vco-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --vco-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  --vco-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --vco-fs-base: clamp(0.9375rem, 0.22vw + 0.86rem, 1.0625rem);
  --vco-fs-sm: clamp(0.8125rem, 0.18vw + 0.76rem, 0.9375rem);
  --vco-fs-xs: clamp(0.75rem, 0.12vw + 0.7rem, 0.8125rem);
  --vco-fs-h1: clamp(1.45rem, 2.2vw + 1rem, 2.35rem);
  --vco-fs-h2: clamp(1.2rem, 1.5vw + 0.95rem, 1.75rem);
  --vco-fs-h3: clamp(1.05rem, 1vw + 0.88rem, 1.35rem);
  --vco-container-pad: clamp(0.75rem, 2.5vw, 1.5rem);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body.vco-body.vco-app {
  font-family: var(--vco-font);
  font-size: var(--vco-fs-base);
  line-height: 1.55;
  color: var(--vco-text);
  background: var(--vco-bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

/* Legacy pages: white utilities on light cards → readable dark text */
.vco-app .vco-main .vco-card .text-white,
.vco-app .vco-main .vco-card .text-white-50,
.vco-app .vco-main .vco-app-tile .text-white,
.vco-app .vco-main .vco-app-tile .text-white-50,
.vco-app .vco-main .container .vco-card .text-white,
.vco-app .vco-main .container .vco-card .text-white-50 {
  color: var(--vco-text) !important;
}
.vco-app .vco-main .vco-card .text-white-50,
.vco-app .vco-main .vco-app-tile .text-white-50,
.vco-app .vco-main .container .vco-card .text-white-50 {
  color: var(--vco-muted) !important;
}
/* Dark / gradient blocks keep light text */
.vco-home-why__shell .text-white,
.vco-home-why__shell .text-white-50,
.vco-home-brands-surface .text-white,
.vco-home-brands-surface .text-white-50 {
  color: #fff !important;
}
.vco-home-why__shell .text-white-50,
.vco-home-brands-surface .text-white-50 {
  color: rgba(255, 255, 255, 0.72) !important;
}

.vco-main {
  min-height: 50vh;
  overflow-x: hidden;
  max-width: 100%;
}

.pb-nav {
  padding-bottom: 5.75rem;
}
@media (min-width: 992px) {
  .pb-nav {
    padding-bottom: 0;
  }
}

h1,
.vco-section-title.h1,
.vco-section-title:not(.h3):not(.h4):not(.h5) {
  font-size: var(--vco-fs-h1);
}
h2,
.vco-section-title.h2 {
  font-size: var(--vco-fs-h2);
}
h3,
.vco-section-title.h3 {
  font-size: var(--vco-fs-h3);
}
h1,
h2,
h3,
.vco-section-title {
  font-family: var(--vco-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--vco-text);
}

.vco-section-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vco-orange);
}

/* ---------- Header (store red bar) ---------- */
.vco-app .vco-header {
  background: transparent !important;
  border-bottom: none !important;
}
.vco-header.vco-header--store {
  z-index: 1030;
  box-shadow: 0 4px 28px rgba(15, 23, 42, 0.14);
  max-width: 100%;
  /* Do not clip dropdowns — child search uses its own overflow */
}
.vco-header--store .vco-topbar-actions {
  position: relative;
  z-index: 2;
}
.vco-header--store .dropdown-menu {
  z-index: 1080;
}

.vco-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--vco-orange), #c2410c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.28);
}

.vco-brand-text strong {
  color: var(--vco-text);
  font-size: 1.1rem;
}

.vco-brand-text small {
  color: var(--vco-muted) !important;
  font-size: 0.72rem;
  font-weight: 600;
}

.vco-app .vco-glass-input {
  background: #f1f5f9 !important;
  border: 1px solid var(--vco-border) !important;
  border-radius: var(--vco-radius-pill) !important;
}

.vco-app .vco-glass-input .form-control {
  color: var(--vco-text);
}
.vco-app .vco-glass-input .form-control::placeholder {
  color: #94a3b8;
}
.vco-app .vco-glass-input .input-group-text {
  color: var(--vco-muted);
}

.vco-icon-btn {
  color: var(--vco-text) !important;
}
.vco-icon-btn:hover {
  color: var(--vco-orange) !important;
}

.vco-badge-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--vco-orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: var(--vco-radius-pill);
}

/* Mega nav */
.vco-mega {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid var(--vco-border);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}
.vco-mega__bar {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.vco-mega-ico-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vco-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.vco-mega-ico-link i {
  font-size: 1.05rem;
  opacity: 0.9;
}
.vco-mega-ico-link:hover,
.vco-mega-ico-link.is-active {
  color: var(--vco-orange);
  background: rgba(225, 29, 72, 0.08);
}
.vco-mega-ico-link.is-active {
  font-weight: 700;
}

/* Desktop topbar — animated quality badge (replaces duplicate menu) */
.vco-topbar-quality {
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
}
.vco-quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 1rem 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  animation: vco-quality-wiggle 3.2s ease-in-out infinite;
}
.vco-quality-pill__icon {
  font-size: 1.05rem;
  color: #fde68a;
  flex-shrink: 0;
  animation: vco-quality-icon-pulse 1.6s ease-in-out infinite;
}
.vco-quality-pill__rotator {
  position: relative;
  display: inline-block;
  height: 1.2em;
  min-width: 9.5rem;
  width: max-content;
  max-width: 14rem;
  overflow: hidden;
  vertical-align: middle;
}
.vco-quality-pill__line {
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  min-width: 100%;
  padding-right: 0.15rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  animation: vco-quality-text-cycle 9s ease-in-out infinite;
}
.vco-quality-pill__line:nth-child(1) {
  animation-delay: 0s;
}
.vco-quality-pill__line:nth-child(2) {
  animation-delay: 3s;
}
.vco-quality-pill__line:nth-child(3) {
  animation-delay: 6s;
}
@keyframes vco-quality-wiggle {
  0%,
  88%,
  100% {
    transform: translateX(0) rotate(0);
  }
  90% {
    transform: translateX(-2px) rotate(-1deg);
  }
  94% {
    transform: translateX(2px) rotate(1deg);
  }
  97% {
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes vco-quality-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}
@keyframes vco-quality-text-cycle {
  0%,
  6%,
  33%,
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
  10%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vco-quality-pill,
  .vco-quality-pill__icon,
  .vco-quality-pill__line {
    animation: none;
  }
  .vco-quality-pill__line {
    position: static;
    opacity: 1;
    transform: none;
  }
  .vco-quality-pill__line:not(:first-child) {
    display: none;
  }
}

/* Mobile browse offcanvas — main menu pills */
.vco-browse-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  color: var(--vco-text);
  background: #f1f5f9;
  border: 1px solid var(--vco-border);
}
.vco-browse-menu__link:hover {
  color: var(--vco-orange);
  border-color: rgba(225, 29, 72, 0.25);
  background: rgba(225, 29, 72, 0.06);
}
.vco-browse-menu__link.is-active {
  color: #fff;
  background: linear-gradient(135deg, #be123c, #e11d48);
  border-color: transparent;
}

/* Breadcrumb */
.vco-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--vco-border);
}
.vco-breadcrumb .breadcrumb-item a {
  color: var(--vco-muted);
  text-decoration: none;
}
.vco-breadcrumb .breadcrumb-item.active {
  color: var(--vco-text);
}

/* ---------- Hero (keeps dark overlay + white text) ---------- */
.vco-hero {
  border-radius: 0 0 var(--vco-radius) var(--vco-radius);
  overflow: hidden;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
@media (min-width: 992px) {
  .vco-hero {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}

.vco-hero .carousel-item {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .vco-hero .carousel-item {
    min-height: 300px;
  }
}

.vco-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 100%);
}

.vco-hero-caption {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 1.5rem 1rem 2rem;
}

.vco-hero .text-white,
.vco-hero .text-white-50,
.vco-hero h1,
.vco-hero .lead {
  color: #fff !important;
}
.vco-hero .text-white-50,
.vco-hero .lead {
  color: rgba(255, 255, 255, 0.82) !important;
}

.vco-hero .vco-section-kicker {
  color: var(--vco-orange-soft) !important;
}

/* Offer badge on hero (optional) */
.vco-hero-badge {
  display: inline-block;
  background: var(--vco-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--vco-radius-pill);
  margin-bottom: 0.5rem;
}

/* ---------- Category strip (horizontal, circular icons) ---------- */
.vco-cat-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0.25rem 0.5rem;
}
.vco-cat-scroll::-webkit-scrollbar {
  display: none;
}

.vco-cat-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 4.5rem;
  max-width: 5.5rem;
  text-align: center;
}

.vco-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vco-surface);
  border: 1px solid var(--vco-border);
  box-shadow: var(--vco-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--vco-orange);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.vco-cat-pill:hover .vco-cat-icon {
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: var(--vco-shadow-lg);
}

.vco-cat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--vco-text);
  line-height: 1.2;
}

/* Horizontal product rail */
.vco-hscroll {
  scroll-snap-type: x mandatory;
}
.vco-hscroll > div {
  scroll-snap-align: start;
}

/* ---------- Cards ---------- */
.vco-card {
  background: var(--vco-surface);
  border: 1px solid var(--vco-border);
  border-radius: var(--vco-radius);
  box-shadow: var(--vco-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vco-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--vco-shadow-lg);
}

.vco-card-burst {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fff 100%);
  border-color: rgba(234, 88, 12, 0.25);
}

.vco-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
  border-radius: calc(var(--vco-radius) - 2px) calc(var(--vco-radius) - 2px) 0 0;
}

.vco-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.45s ease;
}
.vco-card:hover .vco-card-img-wrap img {
  transform: scale(1.04);
}

.vco-product-link {
  color: var(--vco-text);
  font-weight: 700;
  line-height: 1.35;
}
.vco-product-link:hover {
  color: var(--vco-orange);
}

/* ---------- Buttons ---------- */
.vco-btn-primary {
  background: linear-gradient(135deg, var(--vco-orange), #c2410c);
  border: none;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--vco-radius-pill);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vco-btn-primary:hover {
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.35);
}

.vco-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  border-radius: var(--vco-radius-pill);
  padding: 0.55rem 1.25rem;
}
.vco-btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}

.vco-app .vco-card .vco-btn-outline {
  border-color: var(--vco-border);
  color: var(--vco-text) !important;
  background: #fff;
}
.vco-app .vco-card .vco-btn-outline:hover {
  border-color: var(--vco-orange);
  color: var(--vco-orange) !important;
  background: rgba(234, 88, 12, 0.06);
}

/* ---------- Stats ---------- */
.vco-stat {
  text-align: center;
  padding: 1.2rem 0.75rem;
  border-radius: var(--vco-radius);
  background: var(--vco-surface);
  border: 1px solid var(--vco-border);
  box-shadow: var(--vco-shadow);
}
.vco-stat .num {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--vco-navy);
}

/* ---------- Floating bottom nav (reference style) ---------- */
.vco-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(0.65rem + env(safe-area-inset-bottom));
  width: calc(100% - 1.5rem);
  max-width: 420px;
  z-index: 1020;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.55rem 0.35rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.35rem;
  border: 1px solid var(--vco-border);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
}
@media (min-width: 992px) {
  .vco-bottom-nav {
    display: none !important;
  }
}

.vco-bottom-nav::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: #0f172a;
  border-radius: 4px;
  opacity: 0.25;
}

.vco-bottom-nav a {
  flex: 1;
  text-align: center;
  color: var(--vco-muted);
  text-decoration: none;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.35rem 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.vco-bottom-nav a i {
  font-size: 1.25rem;
}
.vco-bottom-nav a.active,
.vco-bottom-nav a:hover {
  color: var(--vco-text);
}
.vco-bottom-nav a.active i {
  color: var(--vco-orange);
}

/* Footer — desktop (dark) + mobile panel */
.vco-footer {
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  position: relative;
}
.vco-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgba(190, 18, 60, 0.85), rgba(251, 191, 36, 0.75), rgba(190, 18, 60, 0.85));
}
.vco-footer__muted {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.55;
}
.vco-footer__heading {
  color: rgba(248, 250, 252, 0.55);
  letter-spacing: 0.08em;
  font-weight: 700;
}
.vco-footer__list a {
  color: rgba(226, 232, 240, 0.88);
  text-decoration: none;
  font-weight: 600;
}
.vco-footer__list a:hover {
  color: #fff;
}
.vco-footer__link-inline {
  color: rgba(226, 232, 240, 0.92);
  text-decoration: none;
  font-weight: 600;
}
.vco-footer__link-inline:hover {
  color: var(--vco-orange-soft);
}
.vco-footer__brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--vco-orange), #9f1239);
  color: #fff;
  font-size: 1.1rem;
}
.vco-footer__hr {
  border-color: rgba(248, 250, 252, 0.12) !important;
  opacity: 1;
}
.vco-footer__legal,
.vco-footer__legal a {
  color: rgba(226, 232, 240, 0.55);
}
.vco-footer__legal a {
  text-decoration: none;
  font-weight: 600;
}
.vco-footer__legal a:hover {
  color: var(--vco-orange-soft);
}
.vco-footer__bottomline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  color: rgba(226, 232, 240, 0.58);
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 992px) {
  .vco-footer__bottomline {
    justify-content: space-between;
    text-align: left;
  }
}
.vco-footer__bottomline a {
  color: rgba(226, 232, 240, 0.75);
  text-decoration: none;
  font-weight: 600;
}
.vco-footer__bottomline a:hover {
  color: var(--vco-orange-soft);
}
.vco-footer__bottomline-sep {
  opacity: 0.45;
  user-select: none;
}
.vco-footer-mobile__panel .vco-footer__bottomline {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.vco-footer-mobile__panel {
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(248, 250, 252, 0.08);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  overflow-x: hidden;
  max-width: 100%;
}
.vco-footer-logo-wrap--solid,
.vco-footer-desktop-logo-wrap {
  background: #fff !important;
  border: 1px solid rgba(248, 250, 252, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.vco-footer-desktop-logo-wrap {
  border-radius: 0.75rem;
}
.vco-footer-mobile__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 1rem;
  background: linear-gradient(145deg, var(--vco-orange), #9f1239) !important;
  border: none !important;
  box-shadow: none !important;
}
.vco-footer-mobile__tag {
  color: rgba(248, 250, 252, 0.55);
}
.vco-footer-mobile__link {
  display: block;
  color: rgba(248, 250, 252, 0.88);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-radius: 0.35rem;
}
.vco-footer-mobile__link:hover {
  color: #fff;
}
.vco-footer-mobile__cta {
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
}
.vco-footer-mobile__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.vco-footer-mobile__quick {
  margin-top: -0.15rem;
}
.vco-footer-mobile__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #22c55e, #15803d);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}
.vco-footer-mobile__pill:hover {
  color: #fff !important;
  filter: brightness(1.06);
}
.vco-footer-mobile__pill--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(248, 250, 252, 0.18);
  box-shadow: none;
  font-weight: 650;
}
.vco-footer-mobile__pill--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.vco-footer__promo {
  background: linear-gradient(125deg, rgba(225, 29, 72, 0.22) 0%, rgba(15, 23, 42, 0.92) 42%, #0f172a 100%);
  border: 1px solid rgba(248, 250, 252, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.vco-footer__promo-kicker {
  color: rgba(251, 191, 36, 0.95);
  letter-spacing: 0.12em;
}
.vco-footer__promo-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}
.vco-footer__promo-btn--wa {
  background: linear-gradient(135deg, #22c55e, #15803d) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}
.vco-footer__promo-btn--wa:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

/* Home page footer polish */
.vco-footer--home::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.9), rgba(190, 18, 60, 0.9), rgba(251, 191, 36, 0.85));
}
.vco-footer--home .vco-footer__promo {
  background: linear-gradient(125deg, rgba(225, 29, 72, 0.32) 0%, rgba(15, 23, 42, 0.9) 40%, #0b1220 100%);
  border-color: rgba(251, 191, 36, 0.18);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}
.vco-footer__trustrow {
  text-align: center;
}
@media (min-width: 992px) {
  .vco-footer__trustrow {
    text-align: left;
  }
}
.vco-footer__trustchip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(248, 250, 252, 0.12);
  font-size: 0.8rem;
  font-weight: 650;
  color: rgba(248, 250, 252, 0.92);
  height: 100%;
}
.vco-footer__trustchip i {
  font-size: 1.15rem;
  color: rgba(251, 191, 36, 0.95);
}
.vco-footer-mobile--home .vco-footer-mobile__panel {
  border-color: rgba(251, 191, 36, 0.12);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.28);
}
.vco-footer-mobile__home-line {
  color: rgba(226, 232, 240, 0.65);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.vco-footer-mobile__legal,
.vco-footer-mobile__legal a {
  color: rgba(226, 232, 240, 0.5);
  font-size: 0.78rem;
}
.vco-footer-mobile__legal a {
  text-decoration: none;
  font-weight: 600;
}
.vco-footer-mobile__legal a:hover {
  color: var(--vco-orange-soft);
}

/* Forms */
.vco-form-control,
.vco-form-control:focus {
  background: #fff;
  border: 1px solid var(--vco-border);
  color: var(--vco-text);
  border-radius: 0.75rem;
}
.vco-form-control:focus {
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

.vco-glass-modal {
  background: #fff !important;
  color: var(--vco-text) !important;
}

.vco-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 40%, #f1f5f9 65%);
  background-size: 240% 100%;
  animation: vco-shimmer 1s ease-in-out infinite;
  border-radius: 10px;
}
@keyframes vco-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.vco-zoom-wrap {
  border-radius: var(--vco-radius);
  border: 1px solid var(--vco-border);
  background: #fff;
}

.text-orange {
  color: var(--vco-orange) !important;
}
.bg-orange {
  background: var(--vco-orange) !important;
  color: #fff !important;
}

.bg-navy-card {
  background: #f1f5f9;
  border-radius: 0.75rem;
}

.policy-body h2 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--vco-text);
}
.policy-body h2:first-child {
  margin-top: 0;
}
.policy-body p {
  margin-bottom: 0.75rem;
  color: var(--vco-muted);
}

/* —— Reference: red store header + image-only hero —— */
.vco-preheader {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}
.vco-preheader .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}
.vco-preheader__inner {
  min-height: 30px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  max-width: 100%;
  min-width: 0;
}
.vco-preheader__social {
  gap: 0.15rem;
}
.vco-preheader__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  color: rgba(248, 250, 252, 0.88);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.vco-preheader__icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.vco-preheader__ticker {
  text-align: right;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.vco-preheader__marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.vco-preheader__track {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
  white-space: nowrap;
  animation: vco-preheader-marquee 40s linear infinite;
}
.vco-preheader__tick {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: rgba(251, 191, 36, 0.95);
}
.vco-preheader__tick i {
  font-size: 0.85rem;
  opacity: 0.95;
}
.vco-preheader__tick > span:last-child {
  color: rgba(248, 250, 252, 0.88);
  font-weight: 500;
}
@keyframes vco-preheader-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vco-preheader__track {
    animation: none;
    justify-content: flex-end;
    flex-wrap: wrap;
    white-space: normal;
    gap: 0.5rem 1rem;
  }
}
@media (max-width: 575.98px) {
  .vco-preheader__inner {
    flex-wrap: nowrap;
    gap: 0.35rem;
  }
  .vco-preheader__social {
    flex-shrink: 0;
  }
  .vco-preheader__ticker {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }
  .vco-preheader__icon {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.8rem;
  }
  .vco-preheader__tick {
    font-size: 0.65rem;
    gap: 0.3rem;
  }
  .vco-preheader__tick > span:last-child {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.vco-topbar-store {
  background: linear-gradient(135deg, #be123c 0%, #e11d48 45%, #f43f5e 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(190, 18, 60, 0.25);
  max-width: 100%;
}
.vco-topbar-inner {
  max-width: 100%;
}
.vco-topbar-search {
  min-width: 0;
  overflow: hidden;
}
.vco-topbar-store .vco-topbar-tagline {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.68rem;
  font-weight: 600;
}
.vco-brand-mark--light {
  background: rgba(255, 255, 255, 0.2) !important;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.vco-brand-logo-slot {
  flex-shrink: 0;
  line-height: 0;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
}
.vco-brand-logo-slot--header-pill {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 0.2rem 0.6rem !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  max-width: min(240px, 50vw);
}
.vco-brand-logo-slot--header-pill .vco-site-logo--header {
  filter: none;
  object-position: center center;
}
.vco-site-logo--header {
  max-width: min(200px, 72vw);
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.2));
}
@media (min-width: 576px) {
  .vco-site-logo--header {
    max-width: min(220px, 36vw);
    max-height: 46px;
  }
}
@media (min-width: 992px) {
  .vco-site-logo--header {
    max-width: min(260px, 22vw);
    max-height: 52px;
  }
  .vco-topbar-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem 1rem;
  }
  .vco-topbar-mid {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 420px);
  }
  .vco-topbar-search {
    width: auto;
    max-width: min(520px, 42vw);
    margin: 0 !important;
    flex: 1 1 auto;
    min-width: 10rem;
  }
  .vco-topbar-quality {
    flex-shrink: 0;
  }
}
.vco-site-logo--footer {
  max-height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.vco-site-logo--footer-desktop {
  max-height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.vco-search-pill {
  background: #fff !important;
  border-radius: var(--vco-radius-pill) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
  align-items: stretch;
}
.vco-search-pill:focus-within {
  border-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35), 0 4px 20px rgba(0, 0, 0, 0.1);
}
.vco-search-pill .input-group-text {
  background: transparent !important;
  color: #64748b;
  padding-left: 1rem;
}
.vco-search-pill .form-control {
  color: var(--vco-text);
  min-height: 44px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.vco-search-pill .form-control::placeholder {
  color: #94a3b8;
}
.vco-topbar-navfab {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  background: #f8fafc !important;
  color: #be123c !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
@media (max-width: 991.98px) {
  .vco-topbar-navfab {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .vco-topbar-navfab {
    display: none !important;
  }
}
.vco-topbar-navfab:hover,
.vco-topbar-navfab:focus-visible {
  background: #fff !important;
  color: #9f1239 !important;
}
.vco-topbar-navfab:focus {
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.9);
}
.vco-topbar-icon {
  color: #fff !important;
}
.vco-badge-count--light {
  background: #fff !important;
  color: #be123c !important;
}
.vco-profile-btn:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .vco-topbar-inner {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
  }
  .vco-topbar-row {
    flex-wrap: wrap !important;
    align-items: center !important;
    row-gap: 0.4rem;
  }
  .vco-topbar-brand {
    order: 1;
    flex: 0 0 auto;
  }
  .vco-topbar-actions {
    order: 2;
    margin-left: auto !important;
    gap: 0.2rem !important;
  }
  .vco-topbar-mid {
    order: 3;
    flex: 1 1 100% !important;
    min-width: 0 !important;
  }
  .vco-topbar-search {
    flex: 1 1 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .vco-brand-logo-slot--header-pill {
    max-width: min(200px, 42vw) !important;
  }
  .vco-site-logo--header {
    max-width: min(180px, 40vw) !important;
    max-height: 40px !important;
  }
  .vco-topbar-store .vco-search-pill .form-control {
    font-size: 0.84rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    min-height: 40px;
  }
  .vco-topbar-store .vco-search-pill {
    min-height: 40px;
  }
  .vco-topbar-navfab {
    width: 40px;
    height: 40px;
    border-radius: 11px !important;
  }
  .vco-topbar-store .vco-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .vco-topbar-icon {
    padding: 0.3rem !important;
  }
  .vco-topbar-icon i {
    font-size: 1.15rem !important;
  }
  .vco-profile-btn img {
    width: 34px !important;
    height: 34px !important;
  }
}

/* Hero banner: fixed frame so slide height does not jump (esp. desktop) */
.vco-hero--media .vco-hero-carousel {
  background: #e2e8f0;
}
.vco-hero--media .carousel-inner {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: #e2e8f0;
}
@media (max-width: 575.98px) {
  .vco-hero--media .carousel-inner {
    height: 190px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .vco-hero--media .carousel-inner {
    height: clamp(220px, 38vw, 320px);
  }
}
@media (min-width: 992px) {
  .vco-hero--media .carousel-inner {
    height: clamp(320px, 28vw, 480px);
    min-height: 320px;
    max-height: 520px;
  }
}
.vco-hero--media .carousel-item {
  min-height: 100% !important;
  height: 100%;
}
.vco-hero--media .carousel-item > .vco-hero-slide-link {
  min-height: 100%;
}
.vco-hero--media .carousel-item picture {
  display: block;
  height: 100%;
  width: 100%;
}
.vco-hero--media .vco-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.vco-hero--media .carousel-control-prev,
.vco-hero--media .carousel-control-next {
  width: 12%;
  opacity: 1;
}
.vco-hero--media .carousel-control-prev-icon,
.vco-hero--media .carousel-control-next-icon {
  background-color: rgba(15, 23, 42, 0.35);
  border-radius: 50%;
  background-size: 60% 60%;
}

.vco-main > section.vco-hero.vco-hero--media:first-of-type {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .vco-main > section.vco-hero.vco-hero--media:first-of-type {
    margin-top: 0.85rem;
  }
}

.vco-cat-icon--img {
  padding: 0 !important;
  overflow: hidden;
  border: 2px solid rgba(225, 29, 72, 0.2);
}
.vco-cat-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vco-cat-tile {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vco-cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12) !important;
}

.vco-mega-dd {
  position: relative;
}
.vco-mega-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--vco-text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}
.vco-mega-dd-btn > i {
  font-size: 1.05rem;
  opacity: 0.9;
}
.vco-mega-dd-btn:hover,
.vco-mega-dd-btn:focus,
.vco-mega-dd-btn.show {
  background: rgba(225, 29, 72, 0.08);
  color: var(--vco-orange);
}
.vco-mega-dd-btn.dropdown-toggle::after {
  margin-left: 0.25rem;
  vertical-align: 0.15em;
}
.vco-mega-panel {
  min-width: min(420px, calc(100vw - 2rem));
  max-width: min(920px, calc(100vw - 1.5rem));
  max-height: min(72vh, 640px);
  overflow-y: auto;
  border-radius: 1rem !important;
  z-index: 1050;
}
.vco-nav-tile:hover {
  background: rgba(225, 29, 72, 0.06);
}
.vco-nav-tile-img {
  width: 72px;
  height: 72px;
}
.vco-nav-tile-img--sm {
  width: 56px;
  height: 56px;
}
.vco-nav-tile-label {
  line-height: 1.2;
}

.vco-browse-canvas {
  height: 78vh !important;
  max-height: 560px;
  border-top-left-radius: 1.1rem;
  border-top-right-radius: 1.1rem;
}
.vco-browse-canvas .offcanvas-body {
  overflow-y: auto;
}
.vco-browse-canvas .nav-pills .nav-link {
  font-size: 0.78rem;
  padding: 0.4rem 0.5rem;
}

.vco-hero--media .carousel-indicators {
  margin-bottom: 0.35rem;
}

/* ---------- Home: programs strip, promos, newsletter ---------- */
.vco-home-wrap {
  padding-bottom: 0.25rem;
  overflow-x: hidden;
  max-width: 100%;
}

/* Home mobile — compact app-like spacing, no dead gaps */
@media (max-width: 991.98px) {
  .vco-page-home .vco-main {
    background: #f1f5f9;
  }
  .vco-page-home .vco-home-wrap {
    padding-bottom: 0;
  }
  .vco-page-home .vco-home-app-block {
    margin-bottom: 0.65rem;
  }
  .vco-page-home .vco-home-app-block > .mb-4,
  .vco-page-home .vco-home-app-block > .mb-lg-5,
  .vco-page-home .vco-app-panel.mb-4,
  .vco-page-home .vco-app-panel.mb-lg-5,
  .vco-page-home .vco-home-feat-brands-block.mb-4,
  .vco-page-home .vco-home-feat-brands-block.mb-lg-5,
  .vco-page-home .vco-home-why-block.mb-4,
  .vco-page-home .vco-home-why-block.mb-lg-5,
  .vco-page-home .vco-home-gallery-block.mb-4,
  .vco-page-home .vco-home-gallery-block.mb-lg-5 {
    margin-bottom: 0.65rem !important;
  }
  .vco-page-home .vco-home-about-snap {
    margin-bottom: 0.65rem !important;
  }
  .vco-page-home .vco-home-newsletter--panel {
    padding: 1.25rem 1rem !important;
  }
  .vco-page-home .vco-footer-mobile {
    margin-top: 0.5rem !important;
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }
  .vco-page-home .vco-footer-mobile__panel {
    padding: 1rem 1rem 0.85rem !important;
  }
  .vco-page-home .vco-footer-mobile__home-line {
    margin-bottom: 0.65rem !important;
  }
  .vco-page-home .vco-footer-mobile .row.g-2 {
    margin-bottom: 0.65rem !important;
  }
  .vco-page-home .vco-hero {
    margin-bottom: 0.5rem !important;
  }
}
.vco-home-about-snap__panel {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08) !important;
}
.vco-home-about-snap__col-text {
  order: 1;
}
.vco-home-about-snap__col-media {
  order: 2;
}
.vco-home-about-snap__media {
  min-height: 200px;
  background: linear-gradient(145deg, #e2e8f0, #f8fafc);
}
@media (min-width: 768px) {
  .vco-home-about-snap__media {
    min-height: 100%;
  }
}
.vco-home-about-snap__img {
  display: block;
  object-fit: cover;
  min-height: 200px;
}
@media (min-width: 768px) {
  .vco-home-about-snap__img {
    min-height: 260px;
  }
}
.vco-home-section-head {
  margin-top: 0.15rem;
}
.vco-home-section-head--with-icon .vco-home-sec-icon {
  margin-top: 0.1rem;
}
.vco-home-sec-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(251, 191, 36, 0.16));
  color: #be123c;
  font-size: 1.15rem;
}
.vco-home-sec-icon--sm {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.05rem;
  border-radius: 10px;
}
.vco-home-sec-icon--inline {
  display: inline-flex !important;
}
.vco-home-sec-icon--rail {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(251, 191, 36, 0.22));
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.12);
}
.vco-home-sec-icon--featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(225, 29, 72, 0.16));
  color: #1d4ed8;
}
.vco-home-rail-head {
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 42%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}
.vco-home-rail-head--featured {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 45%, #fffbeb 100%);
  border-color: rgba(59, 130, 246, 0.12);
}
.vco-home-rail-cta {
  border: 1px solid rgba(225, 29, 72, 0.35) !important;
  color: #9f1239 !important;
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(225, 29, 72, 0.1);
}
.vco-home-rail-cta:hover {
  border-color: #be123c !important;
  color: #881337 !important;
  background: #fff7fb !important;
}
.vco-home-rail-cta--featured {
  border-color: rgba(37, 99, 235, 0.35) !important;
  color: #1d4ed8 !important;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
}
.vco-home-rail-cta--featured:hover {
  border-color: #1d4ed8 !important;
  color: #1e3a8a !important;
  background: #eff6ff !important;
}
@media (min-width: 768px) {
  .vco-home-sec-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }
  .vco-home-sec-icon--sm {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
  }
}
.vco-home-programs__inner {
  border-radius: var(--vco-radius);
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 38%, #fffbeb 100%);
  border: 1px solid rgba(225, 29, 72, 0.12);
  box-shadow: var(--vco-shadow);
  padding: 1rem 1.1rem;
}
@media (min-width: 768px) {
  .vco-home-programs__inner {
    padding: 1.35rem 1.5rem;
  }
}
.vco-home-programs__title {
  color: var(--vco-text);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.vco-home-programs__lead {
  color: var(--vco-muted);
  max-width: 36rem;
}
.vco-home-programs__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
@media (min-width: 576px) {
  .vco-home-programs__actions {
    grid-template-columns: 1fr 1fr;
    min-width: min(100%, 340px);
  }
}
@media (min-width: 992px) {
  .vco-home-programs__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
    min-width: 0;
  }
}
.vco-home-programs__btn {
  border-radius: 0.9rem !important;
  padding: 0.65rem 0.85rem !important;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.2;
  min-height: 3.25rem;
}
.vco-home-programs__btn-secondary {
  border-radius: 0.9rem !important;
  padding: 0.65rem 0.85rem !important;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.2;
  min-height: 3.25rem;
  border: 2px solid var(--vco-border) !important;
  color: var(--vco-text) !important;
  background: #fff !important;
}
.vco-home-programs__btn-secondary:hover {
  border-color: var(--vco-orange) !important;
  color: var(--vco-orange) !important;
  background: rgba(225, 29, 72, 0.04) !important;
}

.vco-home-promo__title {
  color: var(--vco-text);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .vco-home-promo__title {
    font-size: 1.15rem;
  }
}

.vco-home-newsletter {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--vco-shadow);
}
.vco-home-newsletter h3 {
  color: var(--vco-text);
  font-weight: 800;
}
.vco-home-newsletter__form .btn {
  border-radius: var(--vco-radius-pill);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Home: Shop by type + Trending rails */
.vco-home-cats__shell {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06) !important;
  overflow: hidden;
}
.vco-home-cats-rail-wrap {
  padding: 0 0.15rem;
}
.vco-home-cat-scroll {
  scroll-padding-inline: 0.75rem;
  gap: 0.85rem !important;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  mask-image: linear-gradient(90deg, transparent 0, #000 1.5%, #000 98.5%, transparent 100%);
}
.vco-home-cat-scroll .vco-cat-pill {
  scroll-snap-align: start;
}
.vco-home-cats-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.vco-home-cats-nav:hover {
  background: var(--vco-orange);
  color: #fff;
  border-color: transparent;
}
.vco-home-cats-nav--prev {
  left: -0.35rem;
}
.vco-home-cats-nav--next {
  right: -0.35rem;
}
@media (min-width: 768px) {
  .vco-home-cat-scroll .vco-cat-icon {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
  }
  .vco-home-cat-scroll .vco-cat-pill {
    min-width: 5.25rem;
    max-width: 6.25rem;
  }
  .vco-home-cat-scroll .vco-cat-label {
    font-size: 0.72rem;
  }
}
.vco-home-trending__shell {
  overflow: hidden;
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06) !important;
}
.vco-home-trending__shell--rail {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}
.vco-home-trending__shell--rail::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 1.25rem;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), transparent);
}
.vco-home-trending__shell--rail::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 1.25rem;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), transparent);
}
.vco-home-trending__shell--rail .vco-home-trend-scroll {
  position: relative;
  z-index: 2;
}
.vco-home-featured__shell {
  overflow: hidden;
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
.vco-home-featured__cell {
  min-width: 0;
}
.vco-home-trend-scroll {
  scroll-padding-inline: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.vco-home-trend-scroll > .vco-home-trend-col {
  scroll-snap-align: start;
}
.vco-home-trend-col .vco-card {
  border-radius: 1rem;
  min-height: 100%;
}
@media (max-width: 575.98px) {
  .vco-home-trend-col {
    min-width: 11.5rem;
    max-width: 13rem;
  }
}

/* ---------- Home: app-style panels & tiles ---------- */
.vco-home-app {
  padding-bottom: 0.5rem;
}
.vco-home-app-block {
  margin-bottom: 0;
}
.vco-home-app .vco-home-promo.vco-card {
  border-radius: 1.15rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.vco-app-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 1.25rem;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
}
.vco-home-app .vco-app-panel-inner .vco-card,
.vco-home-app .vco-app-tile {
  border-radius: 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vco-home-app .vco-app-panel-inner .vco-card:hover,
.vco-home-app .vco-app-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.vco-home-app .vco-stat {
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.vco-home-brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vco-text);
  background: #fff;
  border: 1px solid var(--vco-border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.vco-home-brand-chip:hover {
  border-color: rgba(225, 29, 72, 0.35);
  color: var(--vco-orange);
}
.vco-app-gallery-cell {
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}
.vco-home-newsletter--panel {
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 40%, #f0fdf4 100%);
  border: 1px solid rgba(225, 29, 72, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.vco-home-newsletter--panel h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Home: services — one row on desktop, app-style gradient cards */
.vco-home-services-grid {
  --svc-n: 6;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .vco-home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .vco-home-services-grid {
    grid-template-columns: repeat(var(--svc-n, 6), minmax(0, 1fr));
    gap: 0.85rem;
  }
}
.vco-home-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  padding: 1.15rem 1rem;
  border: 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}
.vco-home-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 55%);
  pointer-events: none;
}
.vco-home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
}
.vco-home-service-card__icon-wrap {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.vco-home-service-card__title {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.vco-home-service-card__summary {
  position: relative;
  z-index: 1;
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  line-height: 1.5;
  font-weight: 600;
  color: #fff !important;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0;
}
.vco-home-app .vco-app-panel .vco-home-service-card__summary {
  color: #fff !important;
}
.vco-home-service-card--1 {
  background: linear-gradient(145deg, #0ea5e9 0%, #0369a1 55%, #0c4a6e 100%);
}
.vco-home-service-card--2 {
  background: linear-gradient(145deg, #a855f7 0%, #7c3aed 50%, #5b21b6 100%);
}
.vco-home-service-card--3 {
  background: linear-gradient(145deg, #f97316 0%, #ea580c 50%, #9a3412 100%);
}
.vco-home-service-card--4 {
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 50%, #115e59 100%);
}
.vco-home-service-card--5 {
  background: linear-gradient(145deg, #ec4899 0%, #db2777 50%, #9d174d 100%);
}
.vco-home-service-card--6 {
  background: linear-gradient(145deg, #6366f1 0%, #4f46e5 50%, #312e81 100%);
}
.vco-service-page__body {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.55;
}
.vco-service-page__body p {
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 0.5rem;
}
.vco-service-page__body p:last-child {
  margin-bottom: 0;
}

/* ---------- Home: brands marquee (app strip) ---------- */
.vco-home-brands-surface {
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 42%, #312e81 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: hidden;
  max-width: 100%;
}
.vco-home-brands-marquee-wrap {
  overflow: hidden;
  padding: 0.35rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.vco-home-brands-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: vco-home-brands-x 48s linear infinite;
}
.vco-home-brands-track:hover {
  animation-play-state: paused;
}
.vco-home-brands-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
}
@media (min-width: 768px) {
  .vco-home-brands-group {
    gap: 0.85rem;
  }
}
@keyframes vco-home-brands-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vco-home-brands-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 0.5rem;
  }
}
.vco-home-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 9.5rem;
  max-width: 14rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  border-radius: 999px;
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vco-home-brand-pill:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: #fff !important;
}
.vco-home-brand-pill__logo {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.vco-home-brand-pill__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 3px;
}
.vco-home-brand-pill__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.vco-home-brand-pill__name {
  flex: 1 1 auto;
  min-width: 0;
}
.vco-home-brand-pill__go {
  font-size: 0.75rem;
  opacity: 0.85;
}
.vco-home-brand-pill--1 {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
}
.vco-home-brand-pill--2 {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
}
.vco-home-brand-pill--3 {
  background: linear-gradient(135deg, #f97316, #c2410c);
}
.vco-home-brand-pill--4 {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}
.vco-home-brand-pill--5 {
  background: linear-gradient(135deg, #ec4899, #be185d);
}
.vco-home-brand-pill--6 {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}
.vco-home-brand-pill--7 {
  background: linear-gradient(135deg, #22c55e, #15803d);
}
.vco-home-brand-pill--8 {
  background: linear-gradient(135deg, #eab308, #a16207);
}

/* ---------- Home: featured brands rail (Flipkart-style) ---------- */
.vco-home-feat-brands__title {
  letter-spacing: -0.02em;
  color: var(--vco-text);
}
.vco-feat-brands-rail-wrap {
  padding: 0 0.15rem;
}
.vco-feat-brands-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0.35rem 0.5rem;
}
.vco-feat-brands-rail::-webkit-scrollbar {
  display: none;
}
.vco-feat-brand-card {
  display: flex;
  flex-direction: column;
  width: 9.75rem;
  min-height: 11.5rem;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: inherit;
}
.vco-feat-brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}
.vco-feat-brand-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.55rem 0.35rem;
  min-height: 0;
}
.vco-feat-brand-card__brand-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.75rem;
}
.vco-feat-brand-card__logo {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  flex-shrink: 0;
}
.vco-feat-brand-card__logo-fallback {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vco-feat-brand-card__name {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vco-feat-brand-card__tagline {
  font-size: 0.62rem;
  line-height: 1.35;
  color: #64748b;
  margin: 0.25rem 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.65rem;
}
.vco-feat-brand-card__visual {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}
.vco-feat-brand-card__visual .bi-building {
  font-size: 1.75rem;
  color: #94a3b8;
}
.vco-feat-brand-card__product-img {
  max-width: 92%;
  max-height: 4.25rem;
  object-fit: contain;
}
.vco-feat-brand-card__product-img--logo {
  max-height: 3rem;
  opacity: 0.9;
}
.vco-feat-brand-card__offer {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #be123c, #e11d48);
  letter-spacing: -0.01em;
}
.vco-feat-brand-card--1 .vco-feat-brand-card__visual {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}
.vco-feat-brand-card--2 .vco-feat-brand-card__visual {
  background: linear-gradient(180deg, #faf5ff 0%, #ede9fe 100%);
}
.vco-feat-brand-card--3 .vco-feat-brand-card__visual {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}
.vco-feat-brand-card--4 .vco-feat-brand-card__visual {
  background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%);
}
.vco-feat-brand-card--5 .vco-feat-brand-card__visual {
  background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%);
}
.vco-feat-brand-card--6 .vco-feat-brand-card__visual {
  background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
}
.vco-feat-brands-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.vco-feat-brands-nav:hover {
  background: var(--vco-orange);
  color: #fff;
  border-color: transparent;
}
.vco-feat-brands-nav--prev {
  left: -0.35rem;
}
.vco-feat-brands-nav--next {
  right: -0.35rem;
}
@media (min-width: 768px) {
  .vco-feat-brand-card {
    width: 11.25rem;
    min-height: 12.75rem;
  }
  .vco-feat-brands-rail {
    gap: 0.85rem;
  }
  .vco-feat-brand-card__name {
    font-size: 0.78rem;
  }
  .vco-feat-brand-card__tagline {
    font-size: 0.68rem;
  }
  .vco-feat-brand-card__offer {
    font-size: 0.72rem;
  }
}

/* ---------- Home: why us (redesigned) ---------- */
.vco-home-why__shell {
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 48%, #312e81 100%);
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.vco-home-why__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vco-home-why__card {
  height: 100%;
  padding: 0.75rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.18s ease, transform 0.18s ease;
}
.vco-home-why__card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}
.vco-home-why__card-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: rgba(225, 29, 72, 0.22);
  color: #fda4af;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.vco-home-why__card-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.vco-home-why__card-text {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}
.vco-home-why__stat {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.vco-home-why__stat-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.vco-home-why__stat-lbl {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}
@media (min-width: 768px) {
  .vco-home-why__stat-num {
    font-size: 1.35rem;
  }
  .vco-home-why__card-title {
    font-size: 0.85rem;
  }
}

/* ---------- Home: projects + reviews (app cards) ---------- */
.vco-home-pr-panel .vco-section-title {
  color: var(--vco-text);
}
.vco-home-project-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vco-home-project-card:last-child {
  margin-bottom: 0 !important;
}
.vco-home-project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
}
.vco-home-project-card__media {
  width: 108px;
  min-height: 108px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.vco-home-project-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}
.vco-home-project-card__body {
  flex: 1 1 auto;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.vco-home-project-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 0.35rem;
}
.vco-home-project-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.25;
}
.vco-home-project-card__loc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}
.vco-home-project-card--1 {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 55%, #172554 100%);
}
.vco-home-project-card--2 {
  background: linear-gradient(135deg, #b45309 0%, #9a3412 50%, #7c2d12 100%);
}
.vco-home-project-card--3 {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 50%, #134e4a 100%);
}
.vco-home-project-card--4 {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #4c1d95 100%);
}
@media (max-width: 575.98px) {
  .vco-home-project-card {
    flex-direction: column;
  }
  .vco-home-project-card__media {
    width: 100%;
    min-height: 140px;
  }
  .vco-home-project-card__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent);
  }
}

.vco-home-reviews-viewport {
  overflow: hidden;
  position: relative;
  min-height: 260px;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.07) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
@media (min-width: 992px) {
  .vco-home-reviews-viewport {
    min-height: 0;
  }
}
.vco-home-reviews-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.25rem;
  z-index: 2;
  pointer-events: none;
}
.vco-home-reviews-fade--top {
  top: 0;
  background: linear-gradient(180deg, rgba(250, 251, 252, 1), rgba(250, 251, 252, 0));
}
.vco-home-reviews-fade--bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(250, 251, 252, 1), rgba(250, 251, 252, 0));
}
.vco-home-app .vco-home-reviews-fade--top {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.vco-home-app .vco-home-reviews-fade--bottom {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.vco-home-reviews-duo {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0.65rem 0.65rem;
  animation: vco-home-reviews-y var(--reviews-dur, 32s) linear infinite;
}
.vco-home-reviews-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vco-home-reviews-viewport:hover .vco-home-reviews-duo {
  animation-play-state: paused;
}
@keyframes vco-home-reviews-y {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vco-home-reviews-duo {
    animation: none !important;
  }
  .vco-home-reviews-viewport {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .vco-home-reviews-viewport {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .vco-home-reviews-fade {
    display: none !important;
  }
  .vco-home-reviews-duo {
    animation: none !important;
    padding: 0;
    gap: 0;
  }
  .vco-home-reviews-group[aria-hidden='true'] {
    display: none !important;
  }
  .vco-home-reviews-group {
    gap: 0.65rem;
  }
  .vco-home-pr-panel {
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  .vco-home-pr-panel .row {
    --bs-gutter-y: 1rem;
  }
}
.vco-home-review-card {
  flex-shrink: 0;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(145deg, #fdf2f8 0%, #fff 40%, #eff6ff 100%);
  border: 1px solid rgba(225, 29, 72, 0.12);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.vco-home-review-card:nth-child(even) {
  background: linear-gradient(145deg, #ecfdf5 0%, #fff 45%, #fff7ed 100%);
  border-color: rgba(14, 165, 233, 0.15);
}
.vco-home-review-card__text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #334155;
  margin: 0;
}
.vco-home-review-card__who {
  font-size: 0.78rem;
  color: #0f172a;
}

/* ---------- Home: gallery strip + lightbox ---------- */
.vco-home-gallery-surface {
  background: linear-gradient(155deg, #134e4a 0%, #0f766e 38%, #164e63 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow-x: hidden;
  max-width: 100%;
}
.vco-home-gallery-marquee-wrap {
  overflow: hidden;
  padding: 0.4rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.vco-home-gallery-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: vco-home-gallery-x 55s linear infinite;
}
.vco-home-gallery-track:hover {
  animation-play-state: paused;
}
.vco-home-gallery-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
}
@media (min-width: 768px) {
  .vco-home-gallery-group {
    gap: 0.85rem;
  }
}
@keyframes vco-home-gallery-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vco-home-gallery-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 0.5rem;
    padding: 0 0.5rem 0.75rem;
  }
}
.vco-home-gallery-thumb {
  width: 5.35rem;
  height: 5.35rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 576px) {
  .vco-home-gallery-thumb {
    width: 6rem;
    height: 6rem;
  }
}
@media (min-width: 992px) {
  .vco-home-gallery-thumb {
    width: 6.75rem;
    height: 6.75rem;
  }
}
.vco-home-gallery-thumb:hover,
.vco-home-gallery-thumb:focus-visible {
  transform: scale(1.06);
  border-color: rgba(253, 224, 71, 0.95) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  outline: none;
}
.vco-home-gallery-thumb:focus-visible {
  box-shadow: 0 0 0 3px rgba(253, 224, 71, 0.45), 0 12px 32px rgba(0, 0, 0, 0.28);
}
.vco-home-gallery-thumb__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}
.vco-home-gallery-thumb__img {
  display: block;
  object-position: center;
}
.vco-home-gallery-modal .modal-dialog {
  max-width: min(1040px, 100vw - 1rem);
}
.vco-home-gallery-modal__content {
  min-height: min(92vh, 880px);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.92) 100%) !important;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .vco-home-gallery-modal__content {
    border-radius: 0;
    min-height: 100vh;
  }
}
.vco-home-gallery-modal__toolbar {
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vco-home-gallery-modal__stage {
  min-height: 0;
}
.vco-home-gallery-modal__figure {
  max-height: calc(100vh - 5.5rem);
}
.vco-home-gallery-modal__img {
  max-height: calc(100vh - 6rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.25);
}
.vco-home-gallery-modal__iconbtn {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  transition: background 0.15s ease, transform 0.1s ease;
}
.vco-home-gallery-modal__iconbtn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
.vco-home-gallery-modal__nav {
  flex-shrink: 0;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .vco-home-gallery-modal__nav--prev {
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .vco-home-gallery-modal__nav--next {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ---------- Product detail gallery ---------- */
.vco-product-gallery-carousel .carousel-control-prev,
.vco-product-gallery-carousel .carousel-control-next {
  width: 12%;
  opacity: 1;
}
.vco-product-gallery-carousel .carousel-control-prev-icon,
.vco-product-gallery-carousel .carousel-control-next-icon {
  background-color: rgba(15, 23, 42, 0.45);
  border-radius: 50%;
  background-size: 55% 55%;
}
.vco-product-gallery-thumbs .vco-product-gallery-thumb {
  border-width: 2px !important;
  opacity: 0.75;
}
.vco-product-gallery-thumbs .vco-product-gallery-thumb.active {
  opacity: 1;
  border-color: var(--vco-orange) !important;
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.2);
}

/* ---------- Product detail page (PDP) ---------- */
.vco-page-product {
  background: var(--vco-bg);
}
.vco-page-product .vco-product-pdp-card {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06) !important;
}
.vco-page-product .vco-product-summary .vco-price {
  color: var(--vco-text);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.vco-page-product .vco-product-buy {
  border-width: 2px;
}
.vco-page-product .vco-product-buy:hover {
  background: var(--vco-text);
  color: #fff !important;
  border-color: var(--vco-text);
}
.vco-page-product .vco-product-prose {
  font-size: 0.95rem;
  line-height: 1.65;
}
.vco-page-product .vco-product-prose p:last-child {
  margin-bottom: 0;
}
.vco-page-product .vco-review-form .form-control,
.vco-page-product .vco-review-form .form-select {
  border-radius: 0.65rem;
}
.vco-page-product .vco-review-card__img {
  max-width: min(100%, 220px);
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* ---------- Listing & utility pages (shop, categories, brands, forms) ---------- */
.vco-page-hero {
  border-radius: 1.25rem;
}
.vco-filter-list .vco-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.5rem;
  margin-left: -0.5rem;
  border-radius: 0.5rem;
  color: var(--vco-muted);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.vco-filter-list .vco-filter-link:hover {
  background: rgba(225, 29, 72, 0.08);
  color: var(--vco-text);
}
.vco-filter-list .vco-filter-link.is-active {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(251, 191, 36, 0.12));
  color: #9f1239;
  font-weight: 700;
}
.vco-page-shop #shopLiveResults a {
  color: var(--vco-text) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  border-radius: 0.5rem;
}
.vco-page-shop #shopLiveResults a:hover {
  background: rgba(225, 29, 72, 0.06) !important;
}
.vco-shop-filters-mobile > summary {
  list-style: none;
  cursor: pointer;
}
.vco-shop-filters-mobile > summary::-webkit-details-marker {
  display: none;
}
.vco-cat-tile--page .vco-cat-tile__chev {
  transition: transform 0.2s ease;
}
.vco-cat-tile--page:hover .vco-cat-tile__chev {
  transform: translateX(2px);
}
.vco-brand-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vco-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12) !important;
  border-color: rgba(225, 29, 72, 0.25) !important;
}
.vco-brand-card__logo {
  width: 100%;
  max-width: 140px;
  height: 72px;
}
.vco-brand-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vco-contact-pill {
  transition: background 0.15s ease;
}
.vco-contact-pill:hover {
  background: rgba(225, 29, 72, 0.06);
}
.vco-form-page .form-control,
.vco-form-page .form-select {
  border-radius: 0.65rem;
}
.vco-page-contact .vco-form-page .form-control:focus,
.vco-page-shop .form-control:focus,
.vco-page-shop .form-select:focus {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(225, 29, 72, 0.12);
}

.vco-contact-map-strip {
  border-radius: 1rem;
}
.vco-contact-map-inner {
  position: relative;
  height: clamp(180px, 38vw, 220px);
  min-height: 160px;
  background: #e2e8f0;
}
@media (min-width: 768px) {
  .vco-contact-map-inner {
    height: clamp(200px, 22vw, 280px);
  }
}
@media (min-width: 1200px) {
  .vco-contact-map-inner {
    height: 300px;
  }
}
.vco-contact-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 112px;
  display: block;
  filter: saturate(1.06) contrast(1.02);
}
@media (min-width: 992px) {
  .vco-contact-side {
    position: sticky;
    top: 1rem;
  }
}

/* ---------- Header search (submit + polish) ---------- */
.vco-search-pill--enhanced {
  overflow: hidden;
}
.vco-search-pill--enhanced .form-control {
  padding-right: 0.25rem;
}
.vco-search-submit {
  background: linear-gradient(135deg, #be123c, #f43f5e) !important;
  color: #fff !important;
  border-radius: 0 999px 999px 0 !important;
  padding-left: 0.85rem !important;
  padding-right: 1rem !important;
  min-width: 2.75rem;
  transition: filter 0.15s ease, transform 0.1s ease;
}
.vco-search-submit:hover {
  filter: brightness(1.08);
  color: #fff !important;
}
.vco-search-submit:active {
  transform: scale(0.97);
}

/* ---------- Auth pages (login / register) ---------- */
.vco-page-auth .vco-breadcrumb {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}
.vco-page-auth .vco-main {
  position: relative;
  z-index: 1;
}
.vco-page-auth .vco-mega {
  display: none !important;
}
.vco-page-auth .vco-header {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.vco-auth-shell {
  min-height: min(70vh, 720px);
  background: linear-gradient(180deg, rgba(255, 241, 246, 0.65) 0%, rgba(248, 250, 252, 0.9) 45%, #f8fafc 100%);
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.vco-auth-aside {
  background: linear-gradient(155deg, #9f1239 0%, #be123c 42%, #e11d48 100%);
  box-shadow: 0 16px 48px rgba(190, 18, 60, 0.28);
}
.vco-auth-aside--register {
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.2);
}
.vco-page-auth .vco-auth-form .form-control:focus,
.vco-page-auth .form-control:focus {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(225, 29, 72, 0.1);
}
.vco-page-auth .nav-pills .nav-link {
  color: var(--vco-muted);
}
.vco-page-auth .nav-pills .nav-link.active {
  background: #fff !important;
  color: #9f1239 !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}
.vco-auth-step {
  min-width: 1.65rem;
  line-height: 1.65rem;
  text-align: center;
}
.vco-page-auth .tracking-wide {
  letter-spacing: 0.2em;
}

/* Split card (login / register): visual column + form column */
.vco-auth-split {
  background: #fff;
  position: relative;
  z-index: 1;
}
.vco-auth-split__visual {
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  min-height: 240px;
}
.vco-auth-split__visual--login {
  background: linear-gradient(155deg, #881337 0%, #be123c 45%, #fb7185 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  min-height: 260px;
}
.vco-auth-split__visual--compact {
  min-height: auto;
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 55%, #334155 100%);
}
.vco-auth-split__visual--photo {
  background-color: #1e293b;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.vco-auth-split__visual.vco-auth-split__visual--photo:not(.vco-auth-split__visual--login) {
  background-image: linear-gradient(115deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.68) 40%, rgba(190, 24, 60, 0.38) 100%), var(--vco-auth-img);
}
.vco-auth-split__visual--login.vco-auth-split__visual--photo {
  background-image: linear-gradient(115deg, rgba(88, 7, 26, 0.88) 0%, rgba(190, 24, 60, 0.52) 42%, rgba(15, 23, 42, 0.78) 100%), var(--vco-auth-img);
}
.vco-auth-split__visual--compact.vco-auth-split__visual--photo {
  background-image: linear-gradient(115deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(190, 24, 60, 0.35) 100%), var(--vco-auth-img);
}
.vco-otp-sent-banner {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 45%, #ffffff 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.vco-otp-sent-banner--show {
  opacity: 1;
  transform: translateY(0);
}
.vco-otp-sent-banner__tick {
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.45);
  animation: vco-otp-tick-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes vco-otp-tick-pop {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .vco-auth-split__visual,
  .vco-auth-split__visual--login {
    min-height: 100%;
  }
}
.vco-auth-split__form {
  background: #fff;
  position: relative;
  z-index: 2;
}
.vco-auth-split__form--compact .form-control {
  border-radius: 0.65rem;
}
.vco-reg-stepper__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid #cbd5e1;
  color: #64748b;
  background: #fff;
  flex-shrink: 0;
}
.vco-reg-stepper__dot.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}
.vco-reg-stepper__dot.is-done {
  background: #059669;
  border-color: #059669;
  color: #fff;
}
.vco-reg-stepper__sep {
  opacity: 0.45;
  user-select: none;
}

/* ---------- Footer credit ---------- */
.vco-footer-credit {
  color: rgba(255, 255, 255, 0.55);
}
.vco-footer .vco-footer-credit {
  color: rgba(226, 232, 240, 0.55);
}
.vco-footer-mobile__panel .vco-footer-credit {
  color: rgba(255, 255, 255, 0.55);
}
.vco-footer-credit__link {
  color: rgba(251, 191, 36, 0.95) !important;
  font-weight: 600;
  text-decoration: none;
}
.vco-footer-credit__link:hover {
  text-decoration: underline;
  color: #fde68a !important;
}

/* ---------- Fluid layout: all viewports (mobile app + desktop) ---------- */
.vco-app .container,
.vco-app .container-fluid {
  max-width: 100%;
}
@media (min-width: 1400px) {
  .vco-app .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .vco-app .container {
    max-width: 1440px;
  }
  .vco-app .container-fluid.px-lg-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (max-width: 991.98px) {
  body.vco-body.vco-app {
    font-size: clamp(1rem, 2.8vw, 1.0625rem);
    line-height: 1.62;
    letter-spacing: 0.01em;
  }
  .vco-app .vco-main {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .vco-section-kicker {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
  }
  .vco-cat-label,
  .vco-card .small,
  .vco-app-panel .small,
  .text-muted.small {
    font-size: clamp(0.78rem, 2.4vw, 0.875rem) !important;
    line-height: 1.45 !important;
  }
  .vco-product-link {
    font-size: clamp(0.82rem, 2.6vw, 0.92rem);
    line-height: 1.4;
  }
  .vco-card .vco-price {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
  .vco-btn-primary,
  .vco-app .btn-sm {
    font-size: clamp(0.84rem, 2.5vw, 0.9rem);
  }
  .vco-topbar-search .form-control {
    font-size: clamp(0.9rem, 2.8vw, 1rem) !important;
  }
  .vco-bottom-nav__label {
    font-size: clamp(0.62rem, 2vw, 0.68rem);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .vco-home-trend-col {
    flex: 0 0 auto;
    width: 11.5rem;
  }
  .vco-feat-brand-card {
    width: 10.5rem;
  }
}

@media (min-width: 1200px) {
  .vco-home-trend-col {
    flex: 0 0 auto;
    width: 12.5rem;
  }
}

/* Legacy inner pages — readable panels on all sizes */
.vco-app .vco-main .container .vco-card,
.vco-app .vco-main .container-fluid .vco-app-panel {
  font-size: var(--vco-fs-base);
}
.vco-app .vco-main .vco-card .vco-section-title {
  font-size: var(--vco-fs-h2);
}
.vco-app .vco-main .vco-card p:not(.vco-home-service-card__summary),
.vco-app .vco-main .vco-app-panel > p,
.vco-app .vco-main .vco-page-hero p,
.vco-app .vco-main .vco-about-prose p {
  font-size: var(--vco-fs-sm);
  line-height: 1.6;
  color: var(--vco-muted);
}

/* ---------- About page ---------- */
.vco-page-about .vco-main {
  background: var(--vco-bg);
}
.vco-about-stat-card {
  text-align: center;
  padding: 1rem 0.65rem;
  border-radius: var(--vco-radius);
  background: var(--vco-surface);
  border: 1px solid var(--vco-border);
  box-shadow: var(--vco-shadow);
}
.vco-about-stat-card--accent {
  background: linear-gradient(145deg, #fff1f2 0%, #ffffff 55%);
  border-color: rgba(225, 29, 72, 0.2);
}
.vco-about-stat-card__year {
  display: block;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--vco-orange);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.vco-about-stat-card__lbl {
  display: block;
  font-size: var(--vco-fs-xs);
  font-weight: 700;
  color: var(--vco-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}
.vco-about-prose {
  font-size: var(--vco-fs-sm);
  line-height: 1.7;
  color: var(--vco-text);
}
.vco-about-prose p {
  margin-bottom: 1rem;
}
.vco-about-prose p:last-child {
  margin-bottom: 0;
}
.vco-about-prose strong {
  color: var(--vco-text);
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .vco-about-stat-card__lbl {
    font-size: clamp(0.72rem, 2.5vw, 0.8rem);
  }
  .vco-about-prose {
    font-size: clamp(0.9rem, 2.8vw, 1rem);
    line-height: 1.65;
  }
}

/* Compare table — horizontal scroll on small screens */
.vco-app .table-responsive {
  -webkit-overflow-scrolling: touch;
}
