﻿/* ================================================================
   WRAPSILO FRONTEND â€” Clean Marketplace Design System
   ================================================================ */

:root {
  --fv-green: #22C55E;
  --fv-green-dark: #16A34A;
  --fv-green-soft: #DCFCE7;
  --fv-green-tint: #F0FDF4;
  --fv-charcoal: #1A1D21;
  --fv-ink: #2B2F36;
  --fv-muted: #6B7280;
  --fv-line: #EDEFF2;
  --fv-gray-bg: #F6F8FA;
  --fv-white: #FFFFFF;
  --fv-shadow-sm: none;
  --fv-shadow: none;
  --fv-shadow-lg: none;
  --fv-radius: 18px;
  --fv-radius-sm: 12px;
}

/* Base */
body {
  background: var(--fv-white) !important;
  color: var(--fv-ink);
  font-family: var(--fv-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.fv-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.fv-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--fv-line);
}

.fv-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.fv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--fv-charcoal);
  letter-spacing: -.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.fv-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fv-green), var(--fv-green-dark));
  display: grid;
  place-items: center;
  box-shadow: none;
}

.fv-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--fv-muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 9px;
  transition: color .15s, background .15s;
}

.fv-nav-links a:hover {
  color: var(--fv-charcoal);
  background: var(--fv-gray-bg);
}

.fv-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fv-nav-search-wrap {
  position: relative;
}

.fv-nav-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fv-muted);
  font-size: .82rem;
  pointer-events: none;
}

.fv-nav-search-input {
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  border-radius: 10px;
  color: var(--fv-ink);
  font-size: .875rem;
  padding: 8px 12px 8px 30px;
  width: 200px;
  outline: none;
  transition: border-color .18s, width .25s;
  font-family: inherit;
}

.fv-nav-search-input::placeholder {
  color: var(--fv-muted);
}

.fv-nav-search-input:focus {
  border-color: var(--fv-green);
  width: 240px;
  background: #fff;
}

/* ── Rich AJAX search ──────────────────────────────────────────── */
.fv-search {
  position: relative;
}

.fv-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 6px;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .15s, color .15s;
}

.fv-search-clear:hover {
  background: #d1d5db;
  color: #374151;
}

.fv-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 420px;
  max-width: min(420px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: 16px;
  box-shadow: 0 20px 50px -12px rgba(16, 24, 40, .22), 0 6px 14px rgba(16, 24, 40, .06);
  z-index: 1200;
  overflow: hidden;
  animation: fv-search-pop .16s cubic-bezier(.4, 0, .2, 1);
}

@keyframes fv-search-pop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fv-search-body {
  max-height: min(460px, 70vh);
  overflow-y: auto;
}

.fv-search-section-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9aa1ab;
  padding: 12px 16px 6px;
}

.fv-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 14px 12px;
}

.fv-search-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fv-ink);
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .15s;
  cursor: pointer;
}

.fv-search-chip:hover,
.fv-search-chip.is-active {
  border-color: var(--fv-green);
  color: var(--fv-green-dark);
  background: var(--fv-green-tint);
}

.fv-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background .12s;
  text-decoration: none;
}

.fv-search-item:hover,
.fv-search-item.is-active {
  background: var(--fv-green-tint);
}

.fv-search-thumb {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
}

.fv-search-thumb-fallback {
  display: grid;
  place-items: center;
  color: #b6bcc6;
  font-size: 18px;
}

.fv-search-item-info {
  min-width: 0;
  flex: 1;
}

.fv-search-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-search-item-title mark {
  background: rgba(34, 197, 94, .22);
  color: inherit;
  padding: 0;
  border-radius: 2px;
}

.fv-search-item-cat {
  font-size: 11.5px;
  color: var(--fv-muted);
  margin-top: 1px;
}

.fv-search-item-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--fv-green-dark);
  flex-shrink: 0;
}

.fv-search-divider {
  height: 1px;
  background: var(--fv-line);
  margin: 6px 0;
}

.fv-search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px;
  border-top: 1px solid var(--fv-line);
  background: #fafbfc;
  font-size: 13px;
  font-weight: 700;
  color: var(--fv-green-dark);
  text-decoration: none;
  transition: background .12s;
}

.fv-search-footer:hover {
  background: var(--fv-green-tint);
}

.fv-search-footer .fv-search-count {
  color: var(--fv-muted);
  font-weight: 600;
  font-size: 12px;
}

.fv-search-state {
  padding: 28px 16px;
  text-align: center;
  color: var(--fv-muted);
  font-size: 13px;
}

.fv-search-state i {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
  color: #cbd2db;
}

.fv-search-spinner {
  width: 20px;
  height: 20px;
  margin: 0 auto 10px;
  border: 2.5px solid var(--fv-line);
  border-top-color: var(--fv-green);
  border-radius: 50%;
  animation: fv-spin .6s linear infinite;
}

@keyframes fv-spin {
  to {
    transform: rotate(360deg);
  }
}

.fv-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  color: var(--fv-ink);
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  transition: all .18s;
}

.fv-cart-btn:hover {
  background: var(--fv-green-tint);
  border-color: var(--fv-green-soft);
  color: var(--fv-green-dark);
}

/* Guest user icon (shown only on mobile — see the max-width:860px block) */
.fv-user-icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  color: var(--fv-ink);
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.18s;
}
.fv-user-icon-btn:hover {
  background: var(--fv-green);
  border-color: var(--fv-green);
  color: #fff;
}

.fv-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--fv-green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

.fv-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  border-radius: 10px;
  padding: 5px 10px 5px 5px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--fv-ink);
  cursor: pointer;
  transition: border-color .18s;
}

.fv-user-btn:hover {
  border-color: var(--fv-green-soft);
  background: var(--fv-green-tint);
}

.fv-user-btn::after {
  display: none !important;
}

.fv-user-ava {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fv-green), var(--fv-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.fv-login-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--fv-charcoal);
  text-decoration: none;
  padding: 0 4px;
  transition: color .15s;
}

.fv-login-link:hover {
  color: var(--fv-green-dark);
}

/* Dropdown */
.fv-dropdown-menu {
  border: 1px solid var(--fv-line) !important;
  border-radius: var(--fv-radius-sm) !important;
  box-shadow: var(--fv-shadow-lg) !important;
  padding: 6px !important;
  margin-top: 6px !important;
}

.fv-dropdown-item {
  border-radius: 8px !important;
  padding: 9px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--fv-ink) !important;
}

.fv-dropdown-item:hover {
  background: var(--fv-gray-bg) !important;
  color: var(--fv-charcoal) !important;
}

.fv-dropdown-item.danger {
  color: #DC2626 !important;
}

.fv-dropdown-item.danger:hover {
  background: #FEF2F2 !important;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .18s;
  text-decoration: none;
  line-height: 1;
  font-family: inherit;
}

.fv-btn-primary {
  background: var(--fv-green);
  color: #fff;
  box-shadow: none;
}

.fv-btn-primary:hover {
  background: var(--fv-green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.fv-btn-ghost {
  background: #fff;
  color: var(--fv-charcoal);
  border-color: var(--fv-line);
}

.fv-btn-ghost:hover {
  background: var(--fv-gray-bg);
  color: var(--fv-charcoal);
  border-color: #d4d8dd;
}

.fv-btn-dark {
  background: var(--fv-charcoal);
  color: #fff;
}

.fv-btn-dark:hover {
  background: #000;
  color: #fff;
}

.fv-btn-outline-green {
  background: transparent;
  color: var(--fv-green-dark);
  border-color: var(--fv-green-soft);
}

.fv-btn-outline-green:hover {
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
}

.fv-btn-sm {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 9px;
}

.fv-btn-lg {
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 14px;
}

.fv-btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 9px;
  font-size: .95rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.fv-footer {
  background: var(--fv-charcoal);
  color: #B7BEC9;
  padding: 64px 0 28px;
}

.fv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.fv-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}

.fv-footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--fv-green), var(--fv-green-dark));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fv-footer-about {
  font-size: 13.5px;
  line-height: 1.7;
  color: #9aa1ac;
  max-width: 290px;
  margin-bottom: 18px;
}

.fv-socials {
  display: flex;
  gap: 8px;
}

.fv-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .07);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  transition: background .18s;
}

.fv-social-btn:hover {
  background: var(--fv-green);
  color: #fff;
}

.fv-footer-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.fv-footer-col a {
  display: block;
  font-size: 13.5px;
  color: #9aa1ac;
  padding: 5px 0;
  text-decoration: none;
  transition: color .15s;
}

.fv-footer-col a:hover {
  color: var(--fv-green);
}

.fv-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #9aa1ac;
}

.fv-pay-badges {
  display: flex;
  gap: 7px;
}

.fv-pay-badge {
  background: rgba(255, 255, 255, .07);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.fv-section {
  padding: 80px 0;
}

.fv-section-light {
  background: var(--fv-gray-bg);
}

.fv-section-dark {
  background: var(--fv-charcoal);
}

.fv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--fv-green-dark);
  background: var(--fv-green-tint);
  border: 1px solid var(--fv-green-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.fv-sec-head {
  max-width: 640px;
  margin-bottom: 38px;
}

.fv-sec-head.center {
  margin: 0 auto 44px;
  text-align: center;
}

.fv-sec-head h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.025em;
  line-height: 1.14;
  margin: 10px 0 10px;
}

.fv-sec-head p {
  color: var(--fv-muted);
  font-size: 16px;
  line-height: 1.65;
}

.fv-sec-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
  gap: 16px;
  flex-wrap: wrap;
}

.fv-sec-top h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.025em;
  margin-bottom: 4px;
}

.fv-sec-top p {
  color: var(--fv-muted);
  font-size: 14px;
  margin: 0;
}

.fv-link-arrow {
  color: var(--fv-green-dark);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: gap .15s;
}

.fv-link-arrow:hover {
  gap: 9px;
  color: var(--fv-green-dark);
}

/* ================================================================
   HERO
   ================================================================ */
.fv-hero {
  padding: 60px 0 68px;
  background: radial-gradient(1100px 460px at 85% -5%, var(--fv-green-tint), transparent 58%);
}

.fv-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.fv-hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.06;
  color: var(--fv-charcoal);
  letter-spacing: -.03em;
  margin: 18px 0 16px;
}

.fv-hero-hl {
  color: var(--fv-green-dark);
}

.fv-hero-sub {
  font-size: 17px;
  color: var(--fv-muted);
  max-width: 520px;
  margin-bottom: 26px;
  line-height: 1.68;
}

/* Search bar */
.fv-searchbar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: 16px;
  box-shadow: var(--fv-shadow);
  padding: 6px 6px 6px 6px;
  max-width: 540px;
}

.fv-search-cat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  color: var(--fv-ink);
  padding: 0 14px;
  border-right: 1px solid var(--fv-line);
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

.fv-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14.5px;
  padding: 11px 12px;
  color: var(--fv-ink);
  background: transparent;
  font-family: inherit;
  min-width: 0;
}

.fv-search-input::placeholder {
  color: #9aa1ab;
}

.fv-search-btn {
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
  font-size: .95rem;
  transition: background .18s;
  text-decoration: none;
}

.fv-search-btn:hover {
  background: var(--fv-green-dark);
  color: #fff;
}

.fv-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
  align-items: center;
}

.fv-hero-tags>span {
  font-size: 12.5px;
  color: var(--fv-muted);
}

.fv-hero-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fv-ink);
  background: #fff;
  border: 1px solid var(--fv-line);
  padding: 5px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .15s;
}

.fv-hero-tag:hover {
  border-color: var(--fv-green);
  color: var(--fv-green-dark);
}

.fv-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.fv-trust-stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 13px;
}

.fv-trust-item b {
  color: var(--fv-charcoal);
  font-size: 15px;
  display: block;
}

.fv-trust-item small {
  color: var(--fv-muted);
  font-size: 12px;
}

/* ── Centered hero (full-width header + template finder) ───────── */
.fv-hero--centered {
  padding: 64px 0 60px;
  background: radial-gradient(1200px 520px at 50% -10%, var(--fv-green-tint), transparent 62%);
}

.fv-hero--centered .fv-hero-lead {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.fv-hero--centered .fv-eyebrow {
  display: inline-flex;
}

.fv-hero--centered h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 18px 0 14px;
}

.fv-hero--centered .fv-hero-sub {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 8px;
}

.fv-hero--centered .fv-hero-tags,
.fv-hero--centered .fv-hero-trust {
  justify-content: center;
}

.fv-hero--centered .fv-hero-trust {
  margin-top: 22px;
}

/* ── Template finder (tree-style cascading filter) ────────────── */
.fv-finder {
  max-width: 980px;
  margin: 32px auto 8px;
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: 20px;
  box-shadow: 0 18px 50px -22px rgba(16, 24, 40, .18), 0 2px 6px rgba(16, 24, 40, .04);
  padding: 18px 20px 20px;
}

.fv-finder-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fv-muted);
  margin-bottom: 14px;
}

.fv-finder-title i {
  color: var(--fv-green-dark);
}

.fv-finder-count {
  margin-left: auto;
  font-weight: 700;
  color: var(--fv-green-dark);
}

.fv-finder-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}

.fv-finder-field {
  flex: 1 1 0;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fv-finder-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--fv-muted);
}

.fv-finder-select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--fv-line);
  border-radius: 12px;
  background: var(--fv-gray-bg);
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--fv-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, opacity .15s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.fv-finder-select:focus {
  outline: none;
  border-color: var(--fv-green);
  background-color: #fff;
}

.fv-finder-select:disabled {
  opacity: .5;
  cursor: not-allowed;
  background-color: #f2f4f7;
}

.fv-finder-field--action {
  flex: 0 0 auto;
  min-width: 120px;
}

.fv-finder-btn {
  height: 46px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 0 20px;
  transition: background .18s;
}

.fv-finder-btn:hover {
  background: var(--fv-green-dark);
}

/* Hero art */
.fv-hero-art {
  position: relative;
}

.fv-hero-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: 24px;
  box-shadow: var(--fv-shadow-lg);
  padding: 16px;
  overflow: hidden;
}

.fv-hero-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.fv-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--fv-line);
  box-shadow: var(--fv-shadow);
  border-radius: 13px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
  white-space: nowrap;
  animation: fv-float-up 3.5s ease-in-out infinite;
  z-index: 2;
}

.fv-float-1 {
  top: -14px;
  left: -10px;
  animation-delay: 0s;
}

.fv-float-2 {
  bottom: 14px;
  right: -12px;
  animation-delay: 1.4s;
}

@keyframes fv-float-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.fv-float-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--fv-green-tint);
  display: grid;
  place-items: center;
  color: var(--fv-green-dark);
  flex-shrink: 0;
  font-size: .9rem;
}

.fv-float-icon-amber {
  background: #FEF3C7;
  color: #D97706;
}

/* ================================================================
   CATEGORIES
   ================================================================ */
.fv-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.fv-cat-card {
  flex: 0 1 190px;
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--fv-shadow-sm);
  transition: all .2s;
  text-decoration: none;
  display: block;
}

.fv-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fv-shadow-lg);
  border-color: var(--fv-green-soft);
  text-decoration: none;
}

.fv-cat-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--fv-green-tint);
  display: grid;
  place-items: center;
  color: var(--fv-green-dark);
  font-size: 1.45rem;
}

.fv-cat-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.fv-cat-card span {
  font-size: 12px;
  color: var(--fv-muted);
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.fv-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  overflow: hidden;
  box-shadow: var(--fv-shadow-sm);
  transition: all .22s;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.fv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fv-shadow-lg);
  border-color: var(--fv-green-soft);
}

.fv-card-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--fv-gray-bg);
  display: block;
}

.fv-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.fv-card:hover .fv-card-thumb img {
  transform: scale(1.04);
}

.fv-card-chip {
  position: absolute;
  top: 11px;
  left: 11px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--fv-charcoal);
  padding: 4px 9px;
  border-radius: 7px;
  z-index: 1;
}

.fv-chip-green {
  background: var(--fv-green) !important;
}

.fv-chip-amber {
  background: #F59E0B !important;
}

.fv-card-body {
  padding: 13px 15px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fv-card-cat {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--fv-green-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}

.fv-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
  line-height: 1.35;
  margin-bottom: 0;
  flex: 1;
}

.fv-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--fv-line);
  padding-top: 11px;
  margin-top: 12px;
  gap: 6px;
}

.fv-card-price {
  font-weight: 900;
  font-size: 16px;
  color: var(--fv-charcoal);
  line-height: 1;
}

.fv-card-price-old {
  font-weight: 500;
  font-size: 12px;
  color: #9aa1ab;
  text-decoration: line-through;
  margin-left: 4px;
}

.fv-card-rate {
  font-size: 12px;
  color: var(--fv-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.fv-card-rate b {
  color: var(--fv-charcoal);
}

.fv-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fv-card-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 9px;
  width: 33px;
  height: 33px;
  font-size: .9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .18s;
}

.fv-card-add:hover {
  background: var(--fv-green-dark);
  color: #fff;
}

/* Product grid */
.fv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.fv-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ================================================================
   BEST SELLERS LIST
   ================================================================ */
.fv-best-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fv-best {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  padding: 13px;
  box-shadow: var(--fv-shadow-sm);
  transition: all .2s;
  text-decoration: none;
  color: inherit;
}

.fv-best:hover {
  box-shadow: var(--fv-shadow);
  border-color: var(--fv-green-soft);
}

.fv-best-rank {
  font-size: 20px;
  font-weight: 900;
  color: var(--fv-line);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.fv-best-thumb {
  width: 88px;
  height: 66px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--fv-gray-bg);
}

.fv-best-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-best-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fv-charcoal);
  margin-bottom: 4px;
}

.fv-best-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--fv-charcoal);
}

/* ================================================================
   STATS / SOCIAL PROOF
   ================================================================ */
.fv-stats-section {
  background: var(--fv-charcoal);
  padding: 68px 0;
}

.fv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.fv-stat-num {
  display: block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(120deg, #fff, #9ff0bd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}

.fv-stat-label {
  color: #A6ADBB;
  font-size: 14px;
  font-weight: 600;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.fv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fv-review-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  padding: 24px;
  box-shadow: var(--fv-shadow-sm);
}

.fv-review-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.fv-review-text {
  font-size: 14.5px;
  color: var(--fv-ink);
  line-height: 1.68;
  margin-bottom: 18px;
}

.fv-review-user {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fv-review-ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.fv-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-review-role {
  font-size: 12px;
  color: var(--fv-muted);
}

/* ================================================================
   PROCESS / HOW IT WORKS
   ================================================================ */
.fv-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fv-process-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  padding: 28px 22px;
  box-shadow: var(--fv-shadow-sm);
  position: relative;
  overflow: hidden;
}

.fv-process-num {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.fv-process-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--fv-charcoal);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.fv-process-card p {
  color: var(--fv-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
.fv-newsletter-section {
  padding-bottom: 80px;
}

.fv-newsletter-card {
  background: linear-gradient(135deg, var(--fv-green-dark), var(--fv-green));
  border-radius: 26px;
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.fv-newsletter-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, .09);
  border-radius: 50%;
  top: -100px;
  right: -44px;
  pointer-events: none;
}

.fv-newsletter-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
  bottom: -90px;
  left: -28px;
  pointer-events: none;
}

.fv-newsletter-card h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.025em;
  position: relative;
}

.fv-newsletter-card p {
  color: rgba(255, 255, 255, .88);
  font-size: 15.5px;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.65;
  position: relative;
}

.fv-newsletter-form {
  display: flex;
  gap: 9px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.fv-newsletter-input {
  flex: 1;
  border: none;
  border-radius: 11px;
  padding: 13px 16px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  min-width: 0;
}

.fv-newsletter-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .75);
  font-size: 12.5px;
  position: relative;
}

/* ================================================================
   PRODUCTS LIST PAGE
   ================================================================ */
.fv-products-page {
  padding: 44px 0 80px;
}

.fv-products-page-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.025em;
  margin-bottom: 22px;
}

.fv-products-layout {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.fv-filter-sidebar {
  width: 232px;
  flex-shrink: 0;
}

.fv-filter-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  padding: 20px;
  box-shadow: var(--fv-shadow-sm);
}

.fv-filter-title {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--fv-charcoal);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}

.fv-filter-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--fv-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all .15s;
  margin-bottom: 1px;
}

.fv-filter-link:hover {
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
}

.fv-filter-link.active {
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
  font-weight: 700;
}

.fv-sort-select {
  width: 100%;
  border: 1px solid var(--fv-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fv-ink);
  background: var(--fv-gray-bg);
  outline: none;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.fv-sort-select:focus {
  border-color: var(--fv-green);
}

.fv-sort-select:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* Listing header + the finder bar that sits above the results */
.fv-products-head {
  margin-bottom: 18px;
}

/* Compact variant of the hero finder, used above the product grid. */
.fv-filterbar {
  max-width: none;
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: var(--fv-radius);
  box-shadow: var(--fv-shadow-sm);
}

.fv-filterbar .fv-finder-title {
  margin-bottom: 6px;
  font-size: 11.5px;
  min-height: 16px;
}

.fv-filterbar .fv-finder-row {
  gap: 8px;
}

.fv-filterbar .fv-finder-field {
  min-width: 108px;
  gap: 4px;
}

.fv-filterbar .fv-finder-field label {
  font-size: 10px;
  letter-spacing: .04em;
}

.fv-filterbar .fv-finder-select {
  height: 38px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 10px;
  background-position: right 10px center;
}

.fv-filterbar .fv-finder-field--action {
  min-width: 104px;
}

.fv-filterbar .fv-finder-btn {
  height: 38px;
  padding: 0 14px;
  font-size: 13.5px;
  border-radius: 10px;
}

.fv-filter-clear {
  margin-left: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--fv-muted);
  text-decoration: none;
}

.fv-filter-clear:hover {
  color: var(--fv-green-dark);
}

/* Load more */
.fv-loadmore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.fv-loadmore-info {
  margin: 0;
  font-size: 13px;
  color: var(--fv-muted);
}

/* Sidebar price + actions */
.fv-filter-price {
  display: flex;
  gap: 8px;
}

.fv-filter-price input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--fv-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fv-ink);
  background: var(--fv-gray-bg);
  font-family: inherit;
  outline: none;
}

.fv-filter-price input:focus {
  border-color: var(--fv-green);
}

.fv-filter-apply {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

.fv-filter-reset {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fv-muted);
  text-decoration: none;
}

.fv-filter-reset:hover {
  color: var(--fv-green-dark);
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.fv-product-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 24px 64px;
}

.fv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fv-muted);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.fv-breadcrumb a {
  color: var(--fv-muted);
  text-decoration: none;
  transition: color .15s;
}

.fv-breadcrumb a:hover {
  color: var(--fv-green-dark);
}

.fv-breadcrumb-sep {
  color: #d4d8dd;
}

/* Product Carousel */
.pd-carousel-wrap {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--fv-line);
  background: var(--fv-gray-bg);
}

.pd-carousel-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--fv-white);
  display: block;
}

/* Optional per-image caption overlaid at the bottom of a slide */
.pd-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 16px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
}

.pd-car-prev,
.pd-car-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--fv-charcoal);
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow .15s, background .15s;
}

.pd-car-prev:hover,
.pd-car-next:hover {
  background: #fff;
  box-shadow: none;
}

.pd-car-prev {
  left: 12px;
}

.pd-car-next {
  right: 12px;
}

.pd-zoom-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--fv-charcoal);
  cursor: pointer;
  transition: background .15s;
}

.pd-zoom-btn:hover {
  background: #fff;
}

.pd-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: var(--fv-gray-bg);
  border-top: 1px solid var(--fv-line);
  overflow-x: auto;
}

.pd-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--fv-green);
}

/* Product panel */
.fv-product-panel {
  position: sticky;
  top: 82px;
}

.fv-product-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--fv-green-dark);
  background: var(--fv-green-tint);
  border: 1px solid var(--fv-green-soft);
  padding: 4px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 11px;
}

.fv-product-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.025em;
  line-height: 1.22;
  margin-bottom: 14px;
}

.fv-meta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fv-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--fv-muted);
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  padding: 4px 10px;
  border-radius: 7px;
}

.fv-price-box {
  background: var(--fv-green-tint);
  border: 1px solid var(--fv-green-soft);
  border-radius: var(--fv-radius-sm);
  padding: 15px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.fv-product-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--fv-green-dark);
  letter-spacing: -.025em;
  line-height: 1;
}

.fv-price-label {
  font-size: 12.5px;
  color: var(--fv-muted);
  font-weight: 500;
}

.fv-info-box {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.fv-box-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--fv-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.fv-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fv-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--fv-line);
  font-size: 13.5px;
}

.fv-spec-item:last-child {
  border-bottom: none;
}

.fv-spec-label {
  color: var(--fv-muted);
}

.fv-spec-value {
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fv-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--fv-ink);
  padding: 4px 0;
}

.fv-feature-item::before {
  content: "âœ“";
  color: var(--fv-green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Add-ons */
.fv-addon-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 2px solid var(--fv-line);
  border-radius: 10px;
  cursor: pointer;
  transition: all .18s;
  margin-bottom: 7px;
  position: relative;
}

.fv-addon-item:has(input:checked) {
  border-color: var(--fv-green);
  background: var(--fv-green-tint);
}

.fv-addon-item:hover {
  border-color: var(--fv-green-soft);
}

.fv-addon-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fv-addon-checkmark {
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 2px solid var(--fv-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  font-size: .65rem;
  transition: all .15s;
}

.fv-addon-item:has(input:checked) .fv-addon-checkmark {
  border-color: var(--fv-green);
  background: var(--fv-green);
  color: #fff;
}

.fv-addon-name {
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fv-charcoal);
}

.fv-addon-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--fv-green-dark);
}

.fv-add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  font-family: inherit;
  box-shadow: none;
  margin-top: 14px;
}

.fv-add-to-cart-btn:hover {
  background: var(--fv-green-dark);
  transform: translateY(-1px);
  box-shadow: none;
}

/* Product tabs */
.fv-tabs-section {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--fv-line);
}

.fv-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--fv-line);
  margin-bottom: 26px;
}

.fv-tab-btn {
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fv-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .18s;
  font-family: inherit;
}

.fv-tab-btn:hover {
  color: var(--fv-charcoal);
}

.fv-tab-btn.active {
  color: var(--fv-green-dark);
  border-bottom-color: var(--fv-green);
}

.fv-tab-pane {
  display: none;
}

.fv-tab-pane.active {
  display: block;
}

/* Related */
.fv-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fv-related-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.02em;
}

/* ================================================================
   CART PAGE
   ================================================================ */
.fv-cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: flex-start;
}

.fv-cart-panel {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  overflow: hidden;
  box-shadow: var(--fv-shadow-sm);
}

.fv-panel-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--fv-line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--fv-line);
}

.fv-cart-item:last-child {
  border-bottom: none;
}

.fv-cart-item-img {
  width: 86px;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.fv-cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fv-charcoal);
  margin-bottom: 3px;
}

.fv-cart-item-cat {
  font-size: 12px;
  color: var(--fv-muted);
}

.fv-cart-addon-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
  border: 1px solid var(--fv-green-soft);
  padding: 3px 8px;
  border-radius: 5px;
  margin: 2px 3px 0 0;
}

.fv-cart-item-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--fv-charcoal);
  text-align: right;
  margin-bottom: 7px;
  white-space: nowrap;
}

.fv-cart-remove {
  background: none;
  border: 1px solid var(--fv-line);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fv-muted);
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  display: block;
  white-space: nowrap;
}

.fv-cart-remove:hover {
  border-color: #fca5a5;
  color: #dc2626;
  background: #fef2f2;
}

/* Order summary sidebar */
.fv-summary-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  overflow: hidden;
  box-shadow: var(--fv-shadow-sm);
  position: sticky;
  top: 82px;
}

.fv-summary-head {
  padding: 14px 18px;
  background: var(--fv-charcoal);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}

.fv-summary-body {
  padding: 16px 18px;
}

.fv-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 9px;
  color: var(--fv-muted);
}

.fv-summary-row span:last-child {
  font-weight: 600;
  color: var(--fv-ink);
}

.fv-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid var(--fv-line);
}

.fv-summary-total-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--fv-charcoal);
}

.fv-summary-total-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--fv-green-dark);
  letter-spacing: -.02em;
}

.fv-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  margin-top: 16px;
  font-family: inherit;
  box-shadow: none;
}

.fv-checkout-btn:hover {
  background: var(--fv-green-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ================================================================
   CHECKOUT PAGE
   ================================================================ */
.fv-checkout-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 34px;
  position: relative;
}

.fv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.fv-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--fv-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  font-size: 1rem;
  color: var(--fv-muted);
  transition: all .18s;
}

.fv-step.active .fv-step-circle {
  background: var(--fv-green);
  border-color: var(--fv-green);
  color: #fff;
  box-shadow: none;
}

.fv-step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--fv-muted);
}

.fv-step.active .fv-step-label {
  color: var(--fv-green-dark);
}

.fv-step-connector {
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--fv-line);
  z-index: 0;
}

.fv-step:last-child .fv-step-connector {
  display: none;
}

/* Payment options */
.fv-payment-option {
  display: block;
  cursor: pointer;
  margin-bottom: 10px;
}

.fv-payment-option input[type="radio"] {
  display: none;
}

.fv-payment-inner {
  padding: 14px 16px;
  border: 2px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  transition: all .18s;
  display: flex;
  align-items: center;
  gap: 13px;
}

.fv-payment-option:hover .fv-payment-inner {
  border-color: var(--fv-green-soft);
  background: var(--fv-green-tint);
}

.fv-payment-option input:checked+.fv-payment-inner {
  border-color: var(--fv-green);
  background: var(--fv-green-tint);
}

.fv-payment-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--fv-line);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: var(--fv-ink);
}

.fv-payment-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-payment-desc {
  font-size: 12px;
  color: var(--fv-muted);
}

.fv-place-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  font-family: inherit;
  box-shadow: none;
  margin-bottom: 12px;
}

.fv-place-order-btn:hover {
  background: var(--fv-green-dark);
  transform: translateY(-1px);
}

/* ================================================================
   SUCCESS PAGE
   ================================================================ */
.fv-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--fv-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  box-shadow: none;
  animation: fv-pop .5s ease-out;
  margin-bottom: 18px;
}

@keyframes fv-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Order confirmation receipt card */
.fv-rcpt {
  max-width: 520px;
  margin: 0 auto 24px;
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  overflow: hidden;
  text-align: left;
}

.fv-rcpt-head {
  text-align: center;
  padding: 20px 22px 18px;
  border-bottom: 1px dashed var(--fv-line);
}

.fv-rcpt-head-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fv-muted);
  margin-bottom: 6px;
}

.fv-rcpt-head-num {
  font-size: 19px;
  font-weight: 900;
  color: var(--fv-green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  word-break: break-all;
}

.fv-rcpt-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 22px;
  background: var(--fv-gray-bg);
  border-bottom: 1px dashed var(--fv-line);
}

.fv-rcpt-meta-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fv-muted);
  margin-bottom: 3px;
}

.fv-rcpt-meta-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-rcpt-items {
  padding: 6px 22px;
}

.fv-rcpt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--fv-line);
}

.fv-rcpt-item:last-child {
  border-bottom: none;
}

.fv-rcpt-item-img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--fv-line);
  flex-shrink: 0;
}

.fv-rcpt-item-img--ph {
  display: grid;
  place-items: center;
  background: var(--fv-gray-bg);
  color: var(--fv-muted);
  font-size: 1.1rem;
}

.fv-rcpt-item-info {
  flex: 1;
  min-width: 0;
}

.fv-rcpt-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-rcpt-item-dl {
  margin-top: 8px;
}

.fv-rcpt-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--fv-charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}

.fv-rcpt-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--fv-line);
  background: var(--fv-gray-bg);
}

.fv-rcpt-total>span:first-child {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fv-muted);
}

.fv-rcpt-total>span:last-child {
  font-size: 20px;
  font-weight: 900;
  color: var(--fv-green-dark);
}

.fv-rcpt-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

@media (max-width: 480px) {
  .fv-rcpt-item {
    flex-wrap: wrap;
  }

  .fv-rcpt-actions .fv-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ================================================================
   DASHBOARD
   ================================================================ */
.fv-dash-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

/* Two-column sidebar layout */
.fv-dash-layout {
  display: grid;
  grid-template-columns: 215px 1fr;
  gap: 20px;
  align-items: start;
}

.fv-dash-sidebar {
  position: sticky;
  top: 90px;
}

.fv-dash-main {
  min-width: 0;
}

/* User card in sidebar */
.fv-dash-user-card {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  padding: 18px 16px 16px;
  text-align: center;
  margin-bottom: 10px;
}

.fv-dash-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--fv-green);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.fv-dash-user-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--fv-charcoal);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-dash-user-email {
  font-size: 11.5px;
  color: var(--fv-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar nav */
.fv-dash-nav {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  overflow: hidden;
  box-shadow: var(--fv-shadow-sm);
}

.fv-dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fv-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--fv-line);
  transition: background .12s, color .12s;
  border-left: 3px solid transparent;
}

.fv-dash-nav-item:last-child {
  border-bottom: none;
}

.fv-dash-nav-item:hover {
  background: var(--fv-gray-bg);
  color: var(--fv-green-dark);
}

.fv-dash-nav-item.active {
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
  border-left-color: var(--fv-green);
  font-weight: 700;
}

.fv-dash-nav-item i {
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.fv-dash-nav-sep {
  border: 0;
  border-top: 1px solid var(--fv-line);
  margin: 0;
}

.fv-dash-nav-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #DC2626;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .12s;
  border-left: 3px solid transparent;
}

.fv-dash-nav-logout:hover {
  background: #FEE2E2;
}

/* Stats grid */
.fv-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.fv-dash-stat {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .15s;
}

.fv-dash-stat:hover {
  border-color: var(--fv-green-soft);
}

.fv-dash-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--fv-green-tint);
  color: var(--fv-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fv-dash-stat-label {
  font-size: 11px;
  color: var(--fv-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.fv-dash-stat-value {
  font-size: 20px;
  font-weight: 900;
  color: var(--fv-charcoal);
  line-height: 1;
}

/* Panels */
.fv-dash-panel {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.fv-dash-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--fv-line);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--fv-charcoal);
  background: var(--fv-gray-bg);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* â”€â”€ Compact order card (dashboard recent orders) â”€â”€ */
.fv-ocard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fv-line);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}

.fv-ocard:last-child {
  border-bottom: none;
}

.fv-ocard:hover {
  background: var(--fv-gray-bg);
}

.fv-ocard-left {
  flex: 1;
  min-width: 0;
}

.fv-ocard-num {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fv-ocard-meta {
  font-size: 11.5px;
  color: var(--fv-muted);
  margin-top: 3px;
}

.fv-ocard-right {
  text-align: right;
  flex-shrink: 0;
}

.fv-ocard-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--fv-green-dark);
  margin-top: 4px;
}

.fv-ocard-arrow {
  color: var(--fv-muted);
  font-size: 11px;
  flex-shrink: 0;
}

/* â”€â”€ Full order block (orders list page) â”€â”€ */
/* Orders list — single-column separate cards with tinted header */
.fv-orders-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fv-order-card {
  margin-bottom: 0;
  transition: border-color .15s;
}

.fv-order-card:hover {
  border-color: var(--fv-green-soft);
}

.fv-order-card .fv-ocard-block-head {
  background: var(--fv-green-tint);
  border-bottom: 1px solid var(--fv-line);
  padding-bottom: 12px;
}

.fv-order-card .fv-ocard-items {
  padding-top: 12px;
}

.fv-ocard-block {
  border-bottom: 1px solid var(--fv-line);
}

.fv-ocard-block:last-child {
  border-bottom: none;
}

.fv-ocard-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 10px;
  flex-wrap: wrap;
}

.fv-ocard-block-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.fv-ocard-items {
  padding: 0 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-ocard-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--fv-gray-bg);
  border-radius: 10px;
  padding: 10px 12px;
}

.fv-ocard-item-img {
  width: 50px;
  height: 38px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--fv-line);
  flex-shrink: 0;
}

.fv-ocard-item-img--placeholder {
  background: #e5e7eb;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--fv-muted);
}

.fv-ocard-item-info {
  flex: 1;
  min-width: 0;
}

.fv-ocard-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fv-charcoal);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fv-ocard-item-addons {
  font-size: 11.5px;
  color: var(--fv-muted);
  margin-top: 2px;
}

.fv-ocard-item-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--fv-charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}

.fv-ocard-block-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px 14px;
  border-top: 1px solid var(--fv-line);
  flex-wrap: wrap;
}

.fv-ocard-total {
  font-size: 13.5px;
  color: var(--fv-muted);
}

.fv-ocard-total strong {
  color: var(--fv-green-dark);
  font-size: 15px;
  font-weight: 900;
}

.fv-ocard-actions {
  display: flex;
  gap: 8px;
}

/* Kept for compatibility */
.fv-order-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--fv-line);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}

.fv-order-row:last-child {
  border-bottom: none;
}

.fv-order-row:hover {
  background: var(--fv-gray-bg);
}

.fv-order-num {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
  font-family: monospace;
}

.fv-order-date {
  font-size: 11.5px;
  color: var(--fv-muted);
  margin-top: 2px;
}

.fv-order-total {
  font-size: 14px;
  font-weight: 900;
  color: var(--fv-green-dark);
  white-space: nowrap;
}

/* Greeting heading (replaces the green welcome bar) */
.fv-dash-welcome {
  margin-bottom: 18px;
}

.fv-dash-welcome h4 {
  font-size: 22px;
  font-weight: 900;
  color: var(--fv-charcoal);
  margin: 0 0 4px;
  letter-spacing: -.01em;
}

.fv-dash-welcome p {
  color: var(--fv-muted);
  font-size: 13px;
  margin: 0;
}

/* Profile form */
.fv-form-section {
  padding: 20px 22px;
  border-bottom: 1px solid var(--fv-line);
}

.fv-form-section:last-child {
  border-bottom: none;
}

.fv-form-section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--fv-charcoal);
  margin-bottom: 14px;
}

.fv-form-group {
  margin-bottom: 14px;
}

.fv-form-group:last-child {
  margin-bottom: 0;
}

.fv-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--fv-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

.fv-form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--fv-line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--fv-charcoal);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}

.fv-form-control:focus {
  outline: none;
  border-color: var(--fv-green);
  box-shadow: none;
}

.fv-form-hint {
  font-size: 11.5px;
  color: var(--fv-muted);
  margin-top: 5px;
}

.fv-danger-zone {
  border: 1.5px solid #FCA5A5;
  border-radius: var(--fv-radius-sm);
  overflow: hidden;
}

.fv-danger-zone .fv-dash-panel-head {
  background: #FEE2E2;
  color: #991B1B;
}

/* ── Order receipt ──────────────────────────────────── */
/* ================================================================
   ORDER DETAILS
   ================================================================ */
.fv-od-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fv-od-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.fv-od-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--fv-charcoal);
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.01em;
  word-break: break-word;
}

.fv-od-subtitle {
  font-size: 12.5px;
  color: var(--fv-muted);
  margin-top: 7px;
}

.fv-od-subtitle i {
  margin-right: 4px;
}

/* Status banner */
.fv-od-banner {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: var(--fv-radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  color: var(--fv-charcoal);
}

.fv-od-banner i {
  font-size: 17px;
  flex-shrink: 0;
  color: var(--fv-muted);
}

.fv-od-banner.is-ok {
  background: var(--fv-green-tint);
  border-color: var(--fv-green-soft);
}

.fv-od-banner.is-ok i {
  color: var(--fv-green-dark);
}

.fv-od-banner.is-bad {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}

.fv-od-banner.is-bad i {
  color: #DC2626;
}

/* Item list */
.fv-od-items {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-od-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 12px;
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  border-radius: 10px;
}

.fv-od-item-img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--fv-line);
  flex-shrink: 0;
}

.fv-od-item-img--ph {
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--fv-muted);
  font-size: 1.1rem;
}

.fv-od-item-info {
  flex: 1;
  min-width: 0;
}

.fv-od-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fv-charcoal);
}

.fv-od-item-addons {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.fv-od-item-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.fv-od-item-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--fv-green-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fv-od-item-link:hover {
  text-decoration: underline;
}

.fv-od-item-amt {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.fv-od-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--fv-charcoal);
}

.fv-od-item-base {
  font-size: 11.5px;
  color: var(--fv-muted);
  margin-top: 2px;
}

/* Totals summary */
.fv-od-summary {
  padding: 14px 18px;
}

.fv-od-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 13px;
  color: var(--fv-muted);
}

.fv-od-summary-row>span:last-child {
  color: var(--fv-charcoal);
  font-weight: 700;
}

.fv-od-summary-total {
  margin-top: 6px;
  padding-top: 11px;
  border-top: 1px solid var(--fv-line);
}

.fv-od-summary-total>span:first-child {
  font-size: 14px;
  font-weight: 800;
  color: var(--fv-charcoal);
}

.fv-od-summary-total>span:last-child {
  font-size: 18px;
  font-weight: 900;
  color: var(--fv-green-dark);
}

/* Meta details */
.fv-od-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  padding: 16px 18px;
}

.fv-od-meta-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fv-muted);
  margin-bottom: 5px;
}

.fv-od-meta-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--fv-charcoal);
  word-break: break-word;
}

.fv-od-meta-val--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}

.fv-od-meta-sub {
  font-size: 12px;
  color: var(--fv-muted);
  margin-top: 2px;
  word-break: break-word;
}

@media (max-width: 560px) {
  .fv-od-item {
    flex-wrap: wrap;
  }

  .fv-od-item-amt {
    text-align: left;
  }

  .fv-od-meta {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .fv-dash-layout {
    grid-template-columns: 1fr;
  }

  .fv-dash-sidebar {
    position: static;
  }

  .fv-dash-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .fv-dash-stats {
    grid-template-columns: 1fr;
  }
}

/* Status badges */
.fv-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.fv-status-completed {
  background: #D1FAE5;
  color: #065F46;
}

.fv-status-pending {
  background: #FEF3C7;
  color: #92400E;
}

.fv-status-processing {
  background: #DBEAFE;
  color: #1E40AF;
}

.fv-status-failed {
  background: #FEE2E2;
  color: #991B1B;
}

.fv-status-refunded {
  background: #F3F4F6;
  color: #6B7280;
}

/* ================================================================
   AUTH PAGES
   ================================================================ */
.fv-auth-shell {
  min-height: 100vh;
  background: var(--fv-gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
}

.fv-auth-card {
  width: 100%;
  max-width: 408px;
}

.fv-auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--fv-charcoal);
  text-decoration: none;
  margin-bottom: 26px;
}

.fv-auth-inner {
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius);
  padding: 30px;
  box-shadow: var(--fv-shadow);
}

.fv-auth-title {
  font-size: 21px;
  font-weight: 900;
  color: var(--fv-charcoal);
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}

.fv-auth-sub {
  font-size: 13.5px;
  color: var(--fv-muted);
  text-align: center;
  margin-bottom: 22px;
}

.fv-form-group {
  margin-bottom: 15px;
}

.fv-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fv-charcoal);
  margin-bottom: 5px;
}

.fv-form-input {
  width: 100%;
  border: 1px solid var(--fv-line);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 14.5px;
  color: var(--fv-ink);
  background: var(--fv-gray-bg);
  outline: none;
  transition: border-color .18s, background .18s;
  font-family: inherit;
}

.fv-form-input:focus {
  border-color: var(--fv-green);
  background: #fff;
}

.fv-form-input.error {
  border-color: #EF4444;
}

.fv-form-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

.fv-auth-submit {
  width: 100%;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  font-family: inherit;
  margin-top: 4px;
  box-shadow: none;
}

.fv-auth-submit:hover {
  background: var(--fv-green-dark);
  transform: translateY(-1px);
}

.fv-auth-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--fv-muted);
}

.fv-auth-footer a {
  color: var(--fv-green-dark);
  font-weight: 700;
  text-decoration: none;
}

.fv-auth-footer a:hover {
  text-decoration: underline;
}

.fv-auth-divider {
  border: none;
  border-top: 1px solid var(--fv-line);
  margin: 18px 0;
}

/* ================================================================
   ALERTS
   ================================================================ */
.fv-alert {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.fv-alert-success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.fv-alert-danger {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.fv-alert-info {
  background: #DBEAFE;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

/* ================================================================
   DOWNLOAD CARDS
   ================================================================ */
.fv-dl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-dl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-radius-sm);
  padding: 14px 16px;
  transition: border-color .15s;
}

.fv-dl-card:hover {
  border-color: var(--fv-green-soft);
}

.fv-dl-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--fv-line);
  background: var(--fv-gray-bg);
}

.fv-dl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv-dl-thumb-ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--fv-muted);
  font-size: 18px;
}

.fv-dl-info {
  flex: 1;
  min-width: 0;
}

.fv-dl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fv-charcoal);
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fv-dl-title a {
  color: inherit;
  text-decoration: none;
}

.fv-dl-title a:hover {
  color: var(--fv-green-dark);
}

.fv-dl-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--fv-muted);
}

.fv-dl-meta i {
  font-size: 11px;
  margin-right: 2px;
}

.fv-dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fv-green-dark);
  margin-top: 5px;
}

.fv-dl-action {
  flex-shrink: 0;
  text-align: center;
}

.fv-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--fv-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}

.fv-dl-btn:hover {
  background: var(--fv-green-dark);
  color: #fff;
}

@media (max-width: 600px) {
  .fv-dl-card {
    flex-wrap: wrap;
  }

  .fv-dl-action {
    width: 100%;
  }

  .fv-dl-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   TABLES
   ================================================================ */
.fv-table {
  width: 100%;
  border-collapse: collapse;
}

.fv-table th {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fv-muted);
  padding: 11px 15px;
  border-bottom: 2px solid var(--fv-line);
  text-align: left;
  background: var(--fv-gray-bg);
  white-space: nowrap;
}

.fv-table td {
  padding: 13px 15px;
  font-size: 14px;
  color: var(--fv-ink);
  border-bottom: 1px solid var(--fv-line);
  vertical-align: middle;
}

.fv-table tr:last-child td {
  border-bottom: none;
}

.fv-table tbody tr:hover td {
  background: var(--fv-gray-bg);
}

/* ================================================================
   EMPTY STATES
   ================================================================ */
.fv-empty {
  text-align: center;
  padding: 56px 24px;
}

.fv-empty-icon {
  font-size: 52px;
  color: var(--fv-green-soft);
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.fv-empty-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--fv-charcoal);
  margin-bottom: 7px;
}

.fv-empty-desc {
  font-size: 14px;
  color: var(--fv-muted);
  margin-bottom: 20px;
}

/* ================================================================
   PAGE CONTENT
   ================================================================ */
.fv-page-hero {
  background: radial-gradient(800px 300px at 50% 0%, var(--fv-green-tint), transparent 60%);
  padding: 48px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--fv-line);
}

.fv-page-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.03em;
  margin-bottom: 10px;
  line-height: 1.14;
}

.fv-page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  font-size: 16px;
  color: var(--fv-ink);
  line-height: 1.75;
}

.fv-page-content h2,
.fv-page-content h3 {
  color: var(--fv-charcoal);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 28px 0 12px;
}

.fv-page-content p {
  margin-bottom: 16px;
}

/* ================================================================
   MISC UTILITY
   ================================================================ */
.fv-divider {
  border: none;
  border-top: 1px solid var(--fv-line);
}

.fv-product-page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.fv-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--fv-line);
}

.fv-info-row:last-child {
  border-bottom: none;
}

.fv-info-row span:first-child {
  color: var(--fv-muted);
}

.fv-info-row span:last-child {
  font-weight: 600;
  color: var(--fv-charcoal);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1080px) {
  .fv-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fv-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fv-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .fv-section {
    padding: 52px 0;
  }

  .fv-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fv-hero h1 {
    font-size: 34px;
  }

  .fv-hero--centered h1 {
    font-size: 36px;
  }

  .fv-hero-art {
    order: -1;
  }

  .fv-finder-field {
    flex: 1 1 46%;
  }

  .fv-finder-field--action {
    flex: 1 1 100%;
  }

  .fv-grid,
  .fv-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .fv-best-grid {
    grid-template-columns: 1fr;
  }

  .fv-cart-layout {
    grid-template-columns: 1fr;
  }

  .fv-summary-card {
    position: static;
  }

  .fv-dash-stats {
    grid-template-columns: 1fr;
  }

  .fv-process-grid,
  .fv-reviews-grid {
    grid-template-columns: 1fr;
  }

  .fv-newsletter-card {
    padding: 34px 20px;
  }

  .fv-newsletter-form {
    flex-direction: column;
  }

  .fv-products-layout {
    flex-direction: column;
  }

  .fv-filter-sidebar {
    width: 100%;
  }

  .fv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fv-nav-links {
    display: none;
  }

  .fv-nav-search-wrap {
    display: none;
  }

  /* Guest header: swap Login + Sign Up for a single user icon on mobile */
  .fv-guest-desktop {
    display: none;
  }
  .fv-user-icon-btn {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .fv-wrap {
    padding: 0 15px;
  }

  .fv-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fv-grid,
  .fv-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fv-stats-grid {
    grid-template-columns: 1fr;
  }

  .fv-hero h1 {
    font-size: 27px;
  }

  .fv-hero--centered h1 {
    font-size: 28px;
  }

  .fv-finder-field {
    flex: 1 1 100%;
  }

  .fv-footer-grid {
    grid-template-columns: 1fr;
  }

  .fv-search-cat {
    display: none;
  }

  .fv-cart-item {
    grid-template-columns: 72px 1fr;
  }

  .fv-feat-checklist {
    grid-template-columns: 1fr;
  }

  .fv-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   PRODUCT PAGE RESPONSIVE
   ================================================================ */

/* Below lg â€” columns stack, unstick panel */
@media (max-width: 991px) {
  .pd-panel {
    position: static;
    margin-top: 24px;
  }

  .pd-carousel-img {
    height: 320px;
  }

  .fv-product-page .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1rem;
  }
}

/* Tablet */
@media (max-width: 860px) {
  .fv-product-page {
    padding: 20px 16px 48px;
  }

  .pd-carousel-img {
    height: 280px;
  }

  .pd-title {
    font-size: 22px;
  }

  .pd-price {
    font-size: 26px;
  }

  .pd-feat-list {
    grid-template-columns: 1fr;
  }

  .pd-thumb {
    width: 72px;
    height: 56px;
  }

  .fv-tabs-section {
    margin-top: 32px;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .fv-product-page {
    padding: 14px 12px 40px;
  }

  .fv-breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .pd-carousel-img {
    height: 220px;
  }

  .pd-carousel-wrap {
    border-radius: 10px;
  }

  .pd-car-prev,
  .pd-car-next {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .pd-car-prev {
    left: 8px;
  }

  .pd-car-next {
    right: 8px;
  }

  .pd-thumb {
    width: 60px;
    height: 46px;
  }

  .pd-thumbs {
    gap: 6px;
    padding: 8px;
  }

  .pd-panel {
    margin-top: 16px;
  }

  .pd-top-row {
    flex-wrap: wrap;
    gap: 4px;
  }

  .pd-title {
    font-size: 19px;
    margin: 8px 0 10px;
  }

  .pd-price {
    font-size: 24px;
  }

  .pd-section-label {
    font-size: 10px;
  }

  .pd-spec-table td {
    padding: 6px 0;
    font-size: 13px;
  }

  .pd-feat-list {
    grid-template-columns: 1fr;
  }

  .pd-buy-btn {
    font-size: 14px;
    padding: 13px;
  }

  .pd-assurance {
    font-size: 11px;
  }

  .fv-tabs-section {
    margin-top: 24px;
  }

  .fv-tabs-nav {
    gap: 0;
  }

  .fv-tab-btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .fv-related-title {
    font-size: 17px;
  }
}

/* ================================================================
   PRODUCT DETAIL â€” CLEAN SIMPLE PANEL  (pd-*)
   ================================================================ */

.pd-panel {
  position: sticky;
  top: 82px;
}

/* Top row: category + stats */
.pd-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pd-cat {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fv-green-dark);
}

.pd-stats {
  font-size: 12px;
  color: var(--fv-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.pd-stats i {
  font-size: 11px;
}

/* Title */
.pd-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--fv-charcoal);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

/* Price */
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.pd-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--fv-charcoal);
  letter-spacing: -.02em;
  line-height: 1;
}

.pd-price-note {
  font-size: 12.5px;
  color: var(--fv-muted);
}

/* Divider */
.pd-hr {
  border: none;
  border-top: 1px solid var(--fv-line);
  margin: 14px 0;
}

/* Section block */
.pd-section {
  margin-bottom: 4px;
}

.pd-section-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fv-muted);
  margin-bottom: 8px;
}

/* Vehicle spec table */
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.pd-spec-table tr {
  border-bottom: 1px solid var(--fv-line);
}

.pd-spec-table tr:last-child {
  border-bottom: none;
}

.pd-spec-table td {
  padding: 7px 0;
  color: var(--fv-ink);
  vertical-align: middle;
}

.pd-spec-k {
  width: 72px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--fv-muted);
}

/* Feature list â€” 2-column checklist */
.pd-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
}

.pd-feat-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--fv-line);
}

.pd-feat-name {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fv-ink);
  line-height: 1.4;
}

.pd-feat-desc {
  font-size: 12px;
  color: var(--fv-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.pd-feat-desc p {
  margin: 0;
}

.pd-feat-desc ul,
.pd-feat-desc ol {
  margin: 2px 0 0 0;
  padding-left: 14px;
}

.pd-feat-desc li {
  padding: 0;
  border: none;
  font-size: 14px;
  line-height: 20px;
}

.pd-feat-desc li::before {
  display: none;
}

/* Add-on row */
.pd-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--fv-line);
  cursor: pointer;
  font-size: 13.5px;
}

.pd-addon:last-child {
  border-bottom: none;
}

.pd-addon input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--fv-green);
  cursor: pointer;
  flex-shrink: 0;
}

.pd-addon-name {
  flex: 1;
  color: var(--fv-ink);
  font-weight: 500;
}

.pd-addon-price {
  color: var(--fv-green-dark);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

/* Buy button */
.pd-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--fv-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .18s;
  font-family: inherit;
  margin-bottom: 12px;
}

.pd-buy-btn:hover {
  background: var(--fv-green-dark);
  transform: translateY(-1px);
}

/* Assurance line */
.pd-assurance {
  text-align: center;
  font-size: 11.5px;
  color: var(--fv-muted);
  margin: 0;
}

/* ================================================================
   PRODUCT DETAIL â€” COMPACT REDESIGN COMPONENTS
   ================================================================ */

/* Panel section block */
.fv-pnl-section {
  margin-bottom: 14px;
}

.fv-pnl-section-label {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fv-charcoal);
  margin-bottom: 8px;
}

/* Vehicle spec tiles â€” compact 2-col grid */
.fv-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.fv-spec-tile {
  background: var(--fv-gray-bg);
  border: 1px solid var(--fv-line);
  border-radius: 9px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color .15s;
}

.fv-spec-tile:hover {
  border-color: var(--fv-green-soft);
}

.fv-spec-key {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fv-muted);
}

.fv-spec-val {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--fv-charcoal);
  line-height: 1.2;
}

/* Feature 2-column checklist */
.fv-feat-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.fv-feat-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--fv-ink);
  line-height: 1.38;
  font-weight: 500;
}

.fv-feat-check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--fv-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* File format pills */
.fv-format-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.fv-format-pill {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.fv-fmt-psd {
  background: #EDE9FE;
  color: #5B21B6;
}

.fv-fmt-ai {
  background: #FFF3D4;
  color: #92400E;
}

.fv-fmt-pdf {
  background: #FEE2E2;
  color: #991B1B;
}

.fv-fmt-png {
  background: #DBEAFE;
  color: #1E40AF;
}

/* Trust strip below CTA */
.fv-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 11px;
  font-size: 12px;
  color: var(--fv-muted);
  font-weight: 500;
}

.fv-trust-strip span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fv-trust-strip i {
  color: var(--fv-green-dark);
}

/* Description tab body */
.fv-desc-body {
  font-size: 15px;
  color: var(--fv-ink);
  line-height: 1.75;
  max-width: 760px;
}

/* ================================================================
   PRODUCT PAGE â€” REDESIGN COMPONENTS
   ================================================================ */

/* Gallery card outer wrapper */
.pd-gallery-card {
  border-radius: var(--fv-radius);
  overflow: hidden;
  border: 1.5px solid var(--fv-line);
  box-shadow: var(--fv-shadow);
  background: var(--fv-white);
}

/* Reset inner wrap styles (border/radius already on gallery-card) */
.pd-gallery-card .pd-carousel-wrap {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* Gallery meta bar */
.pd-gallery-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
  border-top: 1px solid var(--fv-line);
  background: var(--fv-gray-bg);
}

.pd-gallery-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--fv-muted);
  font-weight: 500;
}

.pd-gallery-meta-item i {
  font-size: 12px;
  color: var(--fv-green-dark);
}

/* Panel card wrapper */
.pd-card {
  background: var(--fv-white);
  border: 1.5px solid var(--fv-line);
  border-radius: var(--fv-radius);
  padding: 24px;
  box-shadow: var(--fv-shadow);
}

/* Category + stat top row â€” all pills in one flex row */
.pd-cat-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

/* Shared pill base */
.pd-cat-chip,
.pd-mini-pill,
.pd-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
  line-height: 1;
  white-space: nowrap;
}

.pd-cat-chip {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fv-green-dark);
  background: var(--fv-green-tint);
  border-color: var(--fv-green-soft);
  text-decoration: none;
  transition: background .15s;
}

.pd-cat-chip:hover {
  background: var(--fv-green-soft);
  color: var(--fv-green-dark);
}

.pd-stat-badge {
  color: #92400E;
  background: #FFF3D4;
  border-color: #FDE68A;
}

.pd-stat-badge i {
  color: #F59E0B;
  font-size: 10px;
}

/* Price box */
.pd-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--fv-green-tint);
  border: 1.5px solid var(--fv-green-soft);
  border-radius: var(--fv-radius-sm);
  padding: 16px 18px;
  margin-bottom: 20px;
}

.pd-instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--fv-green-dark);
  background: var(--fv-green-soft);
  border: 1px solid #86EFAC;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pd-instant-badge i {
  color: var(--fv-green);
}

/* Section label icon */
.pd-section-label i {
  font-size: 11px;
  margin-right: 4px;
  color: var(--fv-green-dark);
  opacity: .8;
}

/* Enhanced buy button */
.pd-buy-btn {
  box-shadow: none;
  font-size: 14px;
  letter-spacing: -.01em;
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 0;
}

/* Two-button row */
.pd-btn-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.pd-btn-row .pd-buy-btn {
  flex: 1;
  width: auto;
}

.pd-buy-btn--now {
  background: var(--fv-charcoal);
  box-shadow: none;
}

.pd-buy-btn--now:hover {
  background: #111316;
  transform: translateY(-1px);
}

/* More format pills */
.fv-fmt-eps {
  background: #D1FAE5;
  color: #065F46;
}

.fv-fmt-svg {
  background: #FEF3C7;
  color: #78350F;
}

.fv-fmt-zip {
  background: #E5E7EB;
  color: #374151;
}

.fv-fmt-jpg {
  background: #DBEAFE;
  color: #1E40AF;
}

.fv-fmt-jpeg {
  background: #DBEAFE;
  color: #1E40AF;
}

.fv-fmt-tiff {
  background: #fdf4ff;
  color: #7e22ce;
}

/* â”€â”€ Product page: mini stats pills colors â”€â”€ */
.pd-mini-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.pd-mini-pill i {
  font-size: 10px;
}

.pd-mini-pill--view {
  color: #1D4ED8;
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.pd-mini-pill--sold {
  color: #166534;
  background: #F0FDF4;
  border-color: #BBF7D0;
}

/* â”€â”€ Product page: format pills (matching admin style) â”€â”€ */
.pd-fmt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pd-fmt-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 7px;
  border: 1.5px solid transparent;
}

.pd-fmt-psd {
  background: #ede9fe;
  color: #5b21b6;
  border-color: #c4b5fd;
}

.pd-fmt-ai {
  background: #fff3d4;
  color: #92400e;
  border-color: #fde68a;
}

.pd-fmt-eps {
  background: #d1fae5;
  color: #065f46;
  border-color: #6ee7b7;
}

.pd-fmt-svg {
  background: #fef3c7;
  color: #78350f;
  border-color: #fde68a;
}

.pd-fmt-zip {
  background: #f1f5f9;
  color: #475569;
  border-color: #cbd5e1;
}

.pd-fmt-png {
  background: #dbeafe;
  color: #1e40af;
  border-color: #93c5fd;
}

.pd-fmt-jpg {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #7dd3fc;
}

.pd-fmt-pdf {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}

.pd-fmt-tiff {
  background: #fdf4ff;
  color: #7e22ce;
  border-color: #e9d5ff;
}

/* â”€â”€ Product page: feature HTML (TinyMCE output) â”€â”€ */
.pd-feat-html {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fv-text);
}

.pd-feat-html p {
  margin: 0 0 6px;
}

.pd-feat-html ul,
.pd-feat-html ol {
  padding-left: 20px;
  margin: 0 0 6px;
}

.pd-feat-html strong {
  font-weight: 600;
}

/* Trust strip spacing within card */
.pd-card .fv-trust-strip {
  padding-top: 4px;
  border-top: 1px solid var(--fv-line);
  margin-top: 14px;
}

/* Responsive â€” new redesign elements */
@media (max-width: 520px) {
  .pd-gallery-card {
    border-radius: var(--fv-radius-sm);
  }

  .pd-card {
    padding: 16px;
    border-radius: var(--fv-radius-sm);
  }

  .pd-price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .pd-instant-badge {
    align-self: flex-start;
  }

  .pd-gallery-meta {
    gap: 12px;
    padding: 8px 12px;
    flex-wrap: wrap;
  }

  .pd-cat-row {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* ============================================================
   Thank-you / order-received page (checkout/success)  .ty-*
   ============================================================ */
.ty-wrap { max-width: 540px; margin: 0 auto; padding: 46px 18px 80px; }

/* Hero */
.ty-hero { text-align: center; margin-bottom: 22px; }
.ty-icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; font-size: 35px; box-shadow: 0 10px 26px rgba(34, 197, 94, .32); }
.ty-icon--wait { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 10px 26px rgba(245, 158, 11, .3); }
.ty-title { font-size: clamp(21px, 5.5vw, 26px); font-weight: 900; color: var(--fv-charcoal); letter-spacing: -.02em; margin: 16px 0 7px; }
.ty-sub { color: var(--fv-muted); font-size: 14.5px; margin: 0 auto; max-width: 400px; line-height: 1.5; }

/* Offline notice */
.ty-notice { display: flex; align-items: flex-start; gap: 10px; border-radius: 12px; padding: 12px 15px; margin-bottom: 16px; font-size: 13.5px; line-height: 1.5; }
.ty-notice--warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.ty-notice i { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.ty-notice-body { font-size: 13.5px; margin-top: 4px; line-height: 1.6; }

/* Meta strip */
.ty-meta { display: flex; background: #fff; border: 1px solid var(--fv-line); border-radius: 14px; padding: 14px 4px; margin-bottom: 18px; }
.ty-meta-item { flex: 1; min-width: 0; padding: 0 14px; border-left: 1px solid var(--fv-line); }
.ty-meta-item:first-child { border-left: none; }
.ty-meta-label { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--fv-muted); margin-bottom: 4px; }
.ty-meta-val { font-size: 14px; font-weight: 800; color: var(--fv-charcoal); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ty-meta-total { color: var(--fv-green-dark, #16a34a); }
.ty-mono { font-family: ui-monospace, monospace; font-size: 12.5px; }

/* Items card */
.ty-card { background: #fff; border: 1px solid var(--fv-line); border-radius: 16px; overflow: hidden; }
.ty-item { padding: 16px 18px; border-bottom: 1px solid var(--fv-line); }
.ty-item-top { display: flex; align-items: center; gap: 13px; }
.ty-item-thumb { width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0; object-fit: cover; border: 1px solid var(--fv-line); }
.ty-item-thumb--ph { display: grid; place-items: center; background: var(--fv-gray-bg); color: var(--fv-muted); font-size: 18px; }
.ty-item-title { flex: 1 1 auto; min-width: 0; font-size: 14px; font-weight: 700; color: var(--fv-charcoal); line-height: 1.35; }
.ty-item-price { font-size: 14.5px; font-weight: 800; color: var(--fv-charcoal); white-space: nowrap; }
.ty-download { display: flex; align-items: center; justify-content: center; gap: 8px; max-width: 180px; width: 100%; margin: 10px auto;
    background: var(--fv-green-dark); color: #fff; border-radius: 9px; padding: 8px 16px; font-size: 12px; font-weight: 700; text-decoration: none; transition: filter .15s; }
.ty-download:hover { filter: brightness(1.08); color: #fff; }

.ty-total { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; background: var(--fv-gray-bg, #f8fafc); font-size: 14px; font-weight: 700; color: var(--fv-charcoal); }
.ty-total-box { background: var(--fv-gray-bg, #f8fafc); border-top: 1px solid var(--fv-line); padding: 12px 18px 15px; }
.ty-total-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--fv-muted); padding: 3px 0; }
.ty-total-row--discount { color: var(--fv-green-dark, #16a34a); font-weight: 700; }
.ty-total-row--grand { font-size: 14px; font-weight: 800; color: var(--fv-charcoal); padding-top: 8px; margin-top: 4px; border-top: 1px solid var(--fv-line); }
.ty-total-amt { font-size: 19px; font-weight: 900; color: var(--fv-green-dark, #16a34a); }

.ty-hint { font-size: 12.5px; color: var(--fv-muted); line-height: 1.55; margin: 14px 2px 0; }
.ty-hint i { color: var(--fv-green-dark, #16a34a); margin-right: 3px; }
.ty-hint a { color: var(--fv-green-dark, #16a34a); font-weight: 600; text-decoration: none; }
.ty-hint a:hover { text-decoration: underline; }

/* Actions */
.ty-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.ty-btn { flex: 1 1 140px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 11px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .15s; white-space: nowrap; }
.ty-btn--primary { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; box-shadow: 0 6px 16px rgba(34, 197, 94, .25); }
.ty-btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); color: #fff; }
.ty-btn--ghost { background: #fff; color: var(--fv-charcoal); border: 1px solid var(--fv-line); }
.ty-btn--ghost:hover { border-color: var(--fv-green, #22c55e); color: var(--fv-green-dark, #16a34a); }

/* Billing */
.ty-billing { background: #fff; border: 1px solid var(--fv-line); border-radius: 14px; padding: 15px 18px; }
.ty-billing-label { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--fv-muted); margin-bottom: 7px; }
.ty-billing-body { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; color: var(--fv-muted); }
.ty-billing-name { font-weight: 800; color: var(--fv-charcoal); font-size: 14.5px; }
.ty-billing-email { color: var(--fv-green-dark, #16a34a); font-weight: 600; word-break: break-all; }

.ty-continue { display: block; text-align: center; margin-top: 20px; font-size: 13.5px; font-weight: 600; color: var(--fv-muted); text-decoration: none; }
.ty-continue:hover { color: var(--fv-charcoal); }

@media (max-width: 460px) {
    .ty-item-top { flex-wrap: wrap; }
    .ty-item-price { width: 100%; text-align: right; }
    .ty-actions { flex-direction: column; }
    .ty-btn { width: 100%; }
}

/* ============================================================
   Coupon (cart + checkout)  .fv-coupon-*
   ============================================================ */
.fv-coupon-form { display: flex; gap: 8px; margin: 14px 0; }
.fv-coupon-input { flex: 1 1 auto; min-width: 0; padding: 10px 12px; border: 1px solid var(--fv-line); border-radius: 9px; font-size: 13.5px; text-transform: uppercase; background: #fff; color: var(--fv-charcoal); }
.fv-coupon-input::placeholder { text-transform: none; }
.fv-coupon-input:focus { outline: none; border-color: var(--fv-green); box-shadow: 0 0 0 3px var(--fv-green-tint); }
.fv-coupon-btn { flex-shrink: 0; padding: 10px 16px; border: 1px solid var(--fv-green-dark); background: #fff; color: var(--fv-green-dark); border-radius: 9px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .15s; }
.fv-coupon-btn:hover { background: var(--fv-green-tint); }
.fv-coupon-applied { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 14px 0; padding: 10px 13px; background: #e7f8ee; border: 1px solid #bfe6cc; border-radius: 10px; font-size: 13px; color: var(--fv-charcoal); }
.fv-coupon-applied-code { font-weight: 800; color: var(--fv-green-dark); }
.fv-coupon-applied-code i { margin-right: 4px; }
.fv-coupon-remove { background: none; border: none; color: #dc2626; font-size: 12px; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; font-family: inherit; }
.fv-coupon-error { font-size: 12.5px; color: #dc2626; margin: -6px 0 10px; }

/* ============================================================
   Product reviews  .rv-*
   ============================================================ */
.rv-summary { display: flex; gap: 24px; align-items: center; padding: 6px 0 22px; border-bottom: 1px solid var(--fv-line); margin-bottom: 22px; }
.rv-summary-score { text-align: center; }
.rv-summary-num { font-size: 38px; font-weight: 900; color: var(--fv-charcoal); line-height: 1; }
.rv-stars { color: #f59e0b; font-size: 15px; display: flex; gap: 2px; align-items: center; }
.rv-stars--sm { font-size: 12.5px; }
.rv-summary .rv-stars { justify-content: center; margin: 6px 0 4px; }
.rv-summary-count { font-size: 12.5px; color: var(--fv-muted); }

.rv-form-card { background: var(--fv-gray-bg, #f8fafc); border: 1px solid var(--fv-line); border-radius: 14px; padding: 20px 22px; margin-bottom: 26px; }
.rv-form-title { font-size: 16px; font-weight: 800; color: var(--fv-charcoal); margin: 0 0 14px; }
.rv-rating-input { display: flex; gap: 4px; font-size: 24px; color: #d1d5db; margin-bottom: 12px; }
.rv-rating-input i { cursor: pointer; transition: color .1s; }
.rv-rating-input i.on { color: #f59e0b; }
.rv-input { width: 100%; padding: 11px 14px; border: 1px solid var(--fv-line); border-radius: 10px; font-size: 14px; margin-bottom: 12px; font-family: inherit; background: #fff; color: var(--fv-charcoal); }
.rv-input:focus { outline: none; border-color: var(--fv-green); box-shadow: 0 0 0 3px var(--fv-green-tint); }

.rv-note { display: flex; align-items: center; gap: 8px; background: var(--fv-gray-bg, #f8fafc); border: 1px solid var(--fv-line); border-radius: 12px; padding: 14px 16px; font-size: 13.5px; color: var(--fv-muted); margin-bottom: 24px; }
.rv-note i { color: var(--fv-green-dark); }

.rv-item { padding: 18px 0; border-bottom: 1px solid var(--fv-line); }
.rv-item:last-child { border-bottom: none; }
.rv-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rv-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--fv-green-tint); color: var(--fv-green-dark); display: grid; place-items: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.rv-item-name { font-weight: 700; color: var(--fv-charcoal); font-size: 14.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rv-verified { font-size: 11px; font-weight: 700; color: #16a34a; background: #e7f8ee; border-radius: 20px; padding: 2px 9px; }
.rv-verified i { font-size: 11px; }
.rv-date { color: var(--fv-muted); font-weight: 500; margin-left: 6px; }
.rv-item-title { font-weight: 700; color: var(--fv-charcoal); font-size: 14.5px; margin: 2px 0 4px; }
.rv-item-body { font-size: 14px; color: var(--fv-ink); line-height: 1.6; white-space: pre-line; }

/* ============================================================
   Homepage hero background image + text mode
   ============================================================ */
.fv-hero--bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Scrim so the headline stays readable over any photo — colour + strength
   are admin-controlled (Appearance::heroScrim() → --fv-hero-scrim). */
.fv-hero--bg::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--fv-hero-scrim, rgba(0, 0, 0, .4));
}
.fv-hero--bg > * { position: relative; z-index: 1; }

/* Light text — for dark background images */
.fv-hero--light h1 { color: #fff !important; }
.fv-hero--light .fv-hero-sub { color: rgba(255, 255, 255, .9) !important; }
.fv-hero--light .fv-eyebrow {
    background: rgba(255, 255, 255, .16) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .28) !important;
}
.fv-hero--light .fv-hero-tags > span { color: rgba(255, 255, 255, .85) !important; }
.fv-hero--light .fv-hero-tag {
    background: rgba(255, 255, 255, .14) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .28) !important;
}
.fv-hero--light .fv-hero-tag:hover { background: rgba(255, 255, 255, .26) !important; }
.fv-hero--light .fv-hero-trust,
.fv-hero--light .fv-hero-trust b,
.fv-hero--light .fv-hero-trust small,
.fv-hero--light .fv-trust-item b,
.fv-hero--light .fv-trust-item small { color: rgba(255, 255, 255, .92) !important; }
.fv-hero--light .fv-hero-trust > div[style*="background"] { background: rgba(255, 255, 255, .25) !important; }

/* ============================================================
   Contact page  .ct-*
   ============================================================ */
.ct-wrap { max-width: 1000px; margin: 0 auto; padding: 48px 20px 80px; }
.ct-head { text-align: center; margin-bottom: 30px; }
.ct-head h1 { font-size: clamp(26px, 6vw, 34px); font-weight: 900; color: var(--fv-charcoal); letter-spacing: -.025em; margin: 0 0 8px; }
.ct-head p { color: var(--fv-muted); font-size: 15px; margin: 0 auto; max-width: 480px; }
.ct-grid { display: grid; grid-template-columns: 340px 1fr; gap: 24px; align-items: start; }
.ct-info { background: linear-gradient(160deg, #16a34a, #22c55e); color: #fff; border-radius: 18px; padding: 28px 26px; }
.ct-info-title { font-size: 19px; font-weight: 800; margin: 0 0 8px; }
.ct-info-lead { font-size: 13.5px; line-height: 1.6; opacity: .92; margin: 0 0 22px; }
.ct-info-row { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.ct-info-ico { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 16px; }
.ct-info-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; opacity: .85; margin-bottom: 2px; }
.ct-info-row a { color: #fff; text-decoration: none; font-weight: 600; word-break: break-all; }
.ct-info-row a:hover { text-decoration: underline; }

.ct-form-card { background: #fff; border: 1px solid var(--fv-line); border-radius: 18px; padding: 28px 28px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { margin-bottom: 16px; }
.ct-label { display: block; font-size: 13px; font-weight: 600; color: var(--fv-ink); margin-bottom: 6px; }
.ct-input { width: 100%; padding: 11px 14px; border: 1px solid var(--fv-line); border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; color: var(--fv-charcoal); transition: border-color .15s, box-shadow .15s; }
.ct-input:focus { outline: none; border-color: var(--fv-green); box-shadow: 0 0 0 3px var(--fv-green-tint); }

@media (max-width: 760px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-row { grid-template-columns: 1fr; }
}

/* ── Products page: mobile filter off-canvas ─────────────────── */
.fv-filter-toggle,
.fv-filter-mobile-head,
.fv-filter-backdrop,
.fv-mobile-filter-bar { display: none; }

@media (max-width: 860px) {
  .fv-mobile-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .fv-filter-toggle {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--fv-ink);
    background: #fff;
    border: 1px solid var(--fv-line);
    border-radius: 10px;
    box-shadow: var(--fv-shadow-sm);
    cursor: pointer;
  }
  .fv-filter-toggle i { font-size: 16px; }
  .fv-filter-toggle-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fv-green);
  }

  .fv-filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 86%;
    max-width: 340px;
    z-index: 1050;
    background: #fff;
    padding: 0 16px 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.18);
  }
  .fv-filter-sidebar.is-open { transform: translateX(0); }

  .fv-filter-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 16px 0 12px;
    background: #fff;
    border-bottom: 1px solid var(--fv-line);
    font-size: 16px;
    font-weight: 800;
    color: var(--fv-ink);
  }
  .fv-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: var(--fv-gray-bg);
    color: var(--fv-ink);
    font-size: 15px;
    cursor: pointer;
  }
  .fv-filter-card {
    border: none;
    box-shadow: none;
    padding: 16px 0 0;
  }

  .fv-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .fv-filter-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  body.fv-filter-open { overflow: hidden; }

  /* Vehicle finder collapses behind the "Make & Model" button */
  .fv-finder {
    display: none;
  }
  .fv-finder.is-open {
    display: block;
  }
  .fv-finder-toggle.is-active {
    color: var(--fv-green);
    border-color: var(--fv-green);
  }
}