/* ============================================================
   Volpartes Premium - Main Stylesheet Components
   (loaded via style.css base + this is the main file)
   All section styles for front-page, header, footer, etc.
   ============================================================ */

/* ============ TOP BAR ============ */
.vp-topbar {
  background: var(--vp-primary-dark);
  color: var(--vp-neutral-300);
  font-size: 0.82rem;
  padding: 8px 0;
}

.vp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.vp-topbar-left,
.vp-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vp-topbar-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vp-neutral-300);
}

.vp-topbar-info svg {
  color: var(--vp-accent);
}

.vp-topbar-link {
  color: var(--vp-neutral-300);
  transition: var(--vp-transition);
}

.vp-topbar-link:hover {
  color: var(--vp-accent);
}

/* ============ HEADER ============ */
.vp-header {
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--vp-transition);
}

.vp-header-scrolled {
  box-shadow: var(--vp-shadow-md);
}

.vp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

/* Logo */
.vp-logo-wrap {
  flex-shrink: 0;
}

.vp-logo-text {
  font-family: var(--vp-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}

.vp-logo-main {
  color: var(--vp-primary-dark);
}

.vp-logo-accent {
  color: var(--vp-accent);
}

.custom-logo-link img {
  max-height: 70px;
  width: auto;
}

/* Search */
.vp-header-search {
  flex: 1;
  max-width: 600px;
}

.vp-search-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--vp-neutral-200);
  border-radius: var(--vp-radius-md);
  background: var(--vp-neutral-50);
  color: var(--vp-neutral-500);
  font-family: var(--vp-font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--vp-transition);
}

.vp-search-toggle:hover,
.vp-search-toggle[aria-expanded="true"] {
  border-color: var(--vp-primary);
  color: var(--vp-primary);
}

.vp-search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.vp-search-panel.vp-search-panel-open {
  max-height: 560px;
  overflow-y: auto;
}

.vp-search-panel .container {
  padding-top: 24px;
  padding-bottom: 24px;
}

.vp-search-form {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--vp-neutral-200);
  border-radius: var(--vp-radius-md);
  overflow: hidden;
  transition: var(--vp-transition);
}

.vp-search-form:focus-within {
  border-color: var(--vp-primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.vp-search-cat {
  border: none;
  border-right: 1px solid var(--vp-neutral-200);
  background: var(--vp-neutral-50);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--vp-neutral-600);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='16' height='16' fill='%236c7680' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
}

.vp-search-input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  background: var(--vp-white);
  outline: none;
}

.vp-search-btn {
  background: var(--vp-primary);
  color: var(--vp-white);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vp-transition);
}

.vp-search-btn:hover {
  background: var(--vp-primary-dark);
}

/* Header actions */
.vp-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.vp-cart-link {
  position: relative;
  color: var(--vp-primary-dark);
  display: flex;
  align-items: center;
  padding: 8px;
  transition: var(--vp-transition);
}

.vp-cart-link:hover {
  color: var(--vp-accent);
}

.vp-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--vp-accent);
  color: var(--vp-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.vp-mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--vp-primary-dark);
  border-radius: 2px;
  transition: var(--vp-transition);
}

/* Navigation */
.vp-nav-wrap {
  background: var(--vp-primary);
  position: relative;
}

.vp-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.vp-nav > li {
  position: relative;
}

.vp-nav > li > a {
  display: block;
  padding: 14px 22px;
  color: var(--vp-white);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--vp-transition);
  position: relative;
}

.vp-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--vp-accent);
  transition: var(--vp-transition);
  transform: translateX(-50%);
}

.vp-nav > li > a:hover,
.vp-nav > li.current-menu-item > a {
  color: var(--vp-accent);
}

.vp-nav > li > a:hover::after,
.vp-nav > li.current-menu-item > a::after {
  width: 60%;
}

/* Submenu */
.vp-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--vp-white);
  min-width: 220px;
  box-shadow: var(--vp-shadow-lg);
  border-radius: 0 0 var(--vp-radius-md) var(--vp-radius-md);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--vp-transition);
  z-index: 200;
}

.vp-nav > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vp-nav .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--vp-neutral-700);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--vp-transition);
}

.vp-nav .sub-menu a:hover {
  background: var(--vp-neutral-50);
  color: var(--vp-accent);
  padding-left: 26px;
}

/* ============ MOBILE NAV ============ */
.vp-mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow-xl);
  z-index: 1000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.vp-mobile-nav-open {
  right: 0;
}

.vp-mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--vp-primary);
  color: var(--vp-white);
}

.vp-mobile-nav-title {
  font-family: var(--vp-font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.vp-mobile-close {
  background: none;
  border: none;
  color: var(--vp-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.vp-mobile-menu {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}

.vp-mobile-menu li {
  border-bottom: 1px solid var(--vp-neutral-100);
}

.vp-mobile-menu a {
  display: block;
  padding: 14px 24px;
  color: var(--vp-neutral-700);
  font-weight: 500;
  text-decoration: none;
  transition: var(--vp-transition);
}

.vp-mobile-menu a:hover {
  background: var(--vp-neutral-50);
  color: var(--vp-accent);
}

.vp-mobile-menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: var(--vp-neutral-50);
}

.vp-mobile-menu .sub-menu a {
  padding-left: 40px;
  font-size: 0.85rem;
}

.vp-mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid var(--vp-neutral-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vp-mobile-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #25d366;
  color: var(--vp-white);
  border-radius: var(--vp-radius-md);
  text-decoration: none;
  font-weight: 600;
}

.vp-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--vp-transition);
}

.vp-mobile-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* ============ HERO ============ */
.vp-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--vp-white);
}

.vp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vp-primary-dark) 0%, var(--vp-primary) 50%, var(--vp-primary-light) 100%);
  z-index: 1;
}

.vp-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(232, 119, 34, 0.15), transparent 50%);
  z-index: 2;
}

.vp-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.vp-hero-text {
  max-width: 600px;
}

.vp-hero-eyebrow {
  color: var(--vp-accent-light) !important;
  margin-bottom: 20px;
}

.vp-hero-title {
  color: var(--vp-white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.vp-hero-subtitle {
  font-size: 1.15rem;
  color: var(--vp-neutral-200);
  line-height: 1.7;
  margin-bottom: 32px;
}

.vp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero badges */
.vp-hero-badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--vp-radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vp-hero-badge-inner {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--vp-radius-md);
}

.vp-hero-badge-num {
  display: block;
  font-family: var(--vp-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vp-accent);
  line-height: 1;
}

.vp-hero-badge-label {
  display: block;
  font-size: 0.8rem;
  color: var(--vp-neutral-200);
  margin-top: 4px;
}

/* Hero wave */
.vp-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
}

.vp-hero-wave svg {
  width: 100%;
  height: 60px;
}

/* ============ BRANDS STRIP ============ */
.vp-brands-strip {
  padding: 24px 0;
  background: var(--vp-white);
  overflow: hidden;
  border-bottom: 1px solid var(--vp-neutral-100);
}

.vp-brands-track {
  display: flex;
  gap: 60px;
  animation: vp-marquee 25s linear infinite;
  white-space: nowrap;
}

.vp-brand-item {
  font-family: var(--vp-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vp-neutral-400);
  letter-spacing: 0.05em;
  transition: var(--vp-transition);
  flex-shrink: 0;
}

.vp-brand-item:hover {
  color: var(--vp-primary);
}

/* ============ FEATURES ============ */
.vp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vp-feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--vp-white);
  border-radius: var(--vp-radius-lg);
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  border-bottom: 4px solid transparent;
}

.vp-feature-card:hover {
  box-shadow: var(--vp-shadow-lg);
  border-bottom-color: var(--vp-accent);
  transform: translateY(-6px);
}

.vp-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-light) 100%);
  color: var(--vp-white);
  border-radius: var(--vp-radius-md);
  transition: var(--vp-transition);
}

.vp-feature-card:hover .vp-feature-icon {
  background: var(--vp-accent);
  transform: rotate(-5deg) scale(1.1);
}

.vp-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.vp-feature-card p {
  font-size: 0.9rem;
  color: var(--vp-neutral-500);
  line-height: 1.6;
}

/* ============ CATEGORIES ============ */
.vp-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vp-category-card {
  position: relative;
  border-radius: var(--vp-radius-lg);
  overflow: hidden;
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  background: var(--vp-white);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.vp-category-card:hover {
  box-shadow: var(--vp-shadow-lg);
  transform: translateY(-6px);
}

.vp-category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--vp-transition);
}

.vp-category-card:hover .vp-category-image {
  transform: scale(1.1);
}

.vp-category-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-light) 100%);
  color: var(--vp-white);
  border-radius: 50%;
  transition: var(--vp-transition);
}

.vp-category-card:hover .vp-category-icon {
  background: var(--vp-accent);
  transform: translate(-50%, -50%) scale(1.15);
}

.vp-category-info {
  position: relative;
  z-index: 2;
  padding: 16px;
  background: linear-gradient(to top, rgba(15, 37, 64, 0.9) 0%, transparent 100%);
  width: 100%;
}

.vp-category-name {
  color: var(--vp-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.vp-category-count {
  color: var(--vp-neutral-300);
  font-size: 0.8rem;
}

/* ============ SECTION HEADER ============ */
.vp-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.vp-section-header .vp-eyebrow {
  margin-bottom: 8px;
}

/* ============ PROMO BANNER ============ */
.vp-promo-banner {
  position: relative;
  border-radius: var(--vp-radius-xl);
  overflow: hidden;
  padding: 60px 40px;
  text-align: center;
}

.vp-promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--vp-accent-dark) 0%, var(--vp-accent) 50%, var(--vp-accent-light) 100%);
}

.vp-promo-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vp-promo-content {
  position: relative;
  z-index: 2;
  color: var(--vp-white);
  max-width: 600px;
  margin: 0 auto;
}

.vp-promo-title {
  color: var(--vp-white);
  margin-bottom: 16px;
}

.vp-promo-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ============ IMPORT SECTION ============ */
.vp-import-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.vp-import-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.vp-import-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--vp-neutral-700);
}

.vp-import-image {
  position: relative;
}

.vp-import-image-inner {
  aspect-ratio: 4 / 3;
  border-radius: var(--vp-radius-xl);
  background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-light) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--vp-shadow-xl);
}

.vp-import-image-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vp-import-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--vp-white);
  z-index: 2;
}

.vp-import-badge-num {
  display: block;
  font-family: var(--vp-font-heading);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--vp-accent);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vp-import-badge-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ============ TALLER SECTION ============ */
.vp-taller-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.vp-taller-image-inner {
  aspect-ratio: 4 / 5;
  border-radius: var(--vp-radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.vp-taller-image-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vp-taller-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 20px;
  background: var(--vp-accent);
  color: var(--vp-white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vp-taller-features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vp-taller-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vp-neutral-200);
  font-size: 1rem;
}

/* ============ TESTIMONIALS ============ */
.vp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vp-testimonial-card {
  background: var(--vp-white);
  padding: 32px;
  border-radius: var(--vp-radius-lg);
  box-shadow: var(--vp-shadow-sm);
  transition: var(--vp-transition);
  display: flex;
  flex-direction: column;
}

.vp-testimonial-card:hover {
  box-shadow: var(--vp-shadow-lg);
  transform: translateY(-4px);
}

.vp-testimonial-stars {
  color: var(--vp-warning);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.vp-testimonial-card p {
  color: var(--vp-neutral-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.vp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--vp-neutral-100);
}

.vp-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-light) 100%);
  color: var(--vp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.vp-testimonial-author strong {
  display: block;
  color: var(--vp-primary-dark);
  font-size: 0.95rem;
}

.vp-testimonial-author span {
  color: var(--vp-neutral-500);
  font-size: 0.82rem;
}

/* ============ FAQ ============ */
.vp-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.vp-faq-item {
  background: var(--vp-white);
  border-radius: var(--vp-radius-md);
  margin-bottom: 12px;
  box-shadow: var(--vp-shadow-sm);
  overflow: hidden;
  transition: var(--vp-transition);
}

.vp-faq-item.vp-faq-active {
  box-shadow: var(--vp-shadow-md);
}

.vp-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--vp-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vp-primary-dark);
  text-align: left;
  transition: var(--vp-transition);
}

.vp-faq-question:hover {
  color: var(--vp-accent);
}

.vp-faq-icon {
  transition: var(--vp-transition);
  flex-shrink: 0;
}

.vp-faq-active .vp-faq-icon {
  transform: rotate(180deg);
  color: var(--vp-accent);
}

.vp-faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.vp-faq-answer p {
  color: var(--vp-neutral-600);
  line-height: 1.7;
  margin: 0;
}

/* ============ FOOTER CTA ============ */
.vp-footer-cta {
  padding: 60px 0;
  background: var(--vp-neutral-100);
}

.vp-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.vp-footer-cta-text h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.vp-footer-cta-text p {
  color: var(--vp-neutral-600);
  margin: 0;
}

.vp-footer-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.vp-footer {
  background: var(--vp-neutral-900);
  color: var(--vp-neutral-300);
  padding: 60px 0 0;
}

.vp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.vp-logo-footer {
  margin-bottom: 20px;
  display: inline-block;
}

.vp-logo-footer .vp-logo-main {
  color: var(--vp-white);
}

.vp-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--vp-neutral-400);
  margin-bottom: 20px;
}

.vp-footer-social {
  display: flex;
  gap: 12px;
}

.vp-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--vp-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--vp-neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vp-transition);
}

.vp-social-link:hover {
  background: var(--vp-accent);
  color: var(--vp-white);
  transform: translateY(-3px);
}

.vp-footer-widget-title {
  color: var(--vp-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vp-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vp-footer-menu li {
  margin-bottom: 10px;
}

.vp-footer-menu a {
  color: var(--vp-neutral-400);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--vp-transition);
}

.vp-footer-menu a:hover {
  color: var(--vp-accent);
  padding-left: 6px;
}

.vp-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vp-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--vp-neutral-400);
  line-height: 1.5;
}

.vp-footer-contact li svg {
  color: var(--vp-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.vp-footer-contact a {
  color: var(--vp-neutral-400);
  text-decoration: none;
}

.vp-footer-contact a:hover {
  color: var(--vp-accent);
}

.vp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.vp-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vp-footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--vp-neutral-500);
}

.vp-footer-credits {
  color: var(--vp-neutral-600) !important;
}

/* ============ WHATSAPP FLOAT ============ */
.vp-wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: #25d366;
  color: var(--vp-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--vp-transition);
  text-decoration: none;
  overflow: hidden;
}

.vp-wa-float:hover {
  width: auto;
  border-radius: 30px;
  padding: 0 20px;
  gap: 8px;
  color: var(--vp-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.vp-wa-float svg {
  flex-shrink: 0;
}

.vp-wa-float-label {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}

.vp-wa-float:hover .vp-wa-float-label {
  display: inline;
}

/* ============ BACK TO TOP ============ */
#vp-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  background: var(--vp-primary);
  color: var(--vp-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vp-shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--vp-transition);
}

#vp-back-to-top.vp-back-to-top-visible {
  opacity: 1;
  visibility: visible;
}

#vp-back-to-top:hover {
  background: var(--vp-accent);
  transform: translateY(-4px);
}

/* ============ BLOG / PAGE ============ */
.vp-page-header {
  background: linear-gradient(135deg, var(--vp-primary-dark) 0%, var(--vp-primary) 100%);
  padding: 60px 0 40px;
  text-align: center;
  color: var(--vp-white);
}

.vp-page-header h1 {
  color: var(--vp-white);
}

.vp-breadcrumb {
  color: var(--vp-neutral-300);
  font-size: 0.9rem;
  margin-top: 8px;
}

.vp-breadcrumb a {
  color: var(--vp-neutral-300);
}

.vp-breadcrumb a:hover {
  color: var(--vp-accent);
}

.vp-content-area {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.vp-content-area h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.vp-content-area h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.vp-content-area p {
  margin-bottom: 1.2em;
  line-height: 1.8;
}

.vp-content-area img {
  border-radius: var(--vp-radius-md);
  margin: 24px 0;
}

.vp-content-area blockquote {
  border-left: 4px solid var(--vp-accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--vp-neutral-50);
  border-radius: 0 var(--vp-radius-md) var(--vp-radius-md) 0;
  font-style: italic;
  color: var(--vp-neutral-600);
}

/* ============ 404 ============ */
.vp-404 {
  text-align: center;
  padding: 120px 0;
}

.vp-404-num {
  font-family: var(--vp-font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: var(--vp-primary);
  line-height: 1;
}

.vp-404 h2 {
  margin-bottom: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .vp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vp-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .vp-header-search {
    display: none;
  }
  .vp-mobile-toggle {
    display: flex;
  }
  .vp-nav-wrap {
    display: none;
  }
  .vp-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .vp-hero-actions {
    justify-content: center;
  }
  .vp-hero-badge {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .vp-import-grid,
  .vp-taller-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vp-footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .vp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .vp-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .vp-topbar-right {
    display: none;
  }
  .vp-topbar-left {
    width: 100%;
    justify-content: center;
  }
  .vp-features-grid {
    grid-template-columns: 1fr;
  }
  .vp-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-hero-badge {
    flex-direction: column;
  }
  .vp-footer-grid {
    grid-template-columns: 1fr;
  }
  .vp-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .vp-promo-banner {
    padding: 40px 24px;
  }
  .vp-import-badge-num {
    font-size: 4rem;
  }
  .vp-section {
    padding: 48px 0;
  }
}

@media (max-width: 400px) {
  .vp-categories-grid {
    grid-template-columns: 1fr;
  }
  .vp-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .vp-hero-actions .vp-btn {
    width: 100%;
  }
}

/* Slot del buscador de repuestos (plugin Volpartes Buscador), justo bajo el hero */
.vp-buscador-slot {
  margin-top: -32px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.vp-buscador-slot .volpartes-buscador {
  margin: 0 auto;
}
