/* ============================================
   Verifane — child.css
   PALETTE:
   --navy:       #0b1640
   --blue:       #1e5cff
   --blue-light: #3a7bff
   --pink:       #e91e8c
   --light-bg:   #f4f6fb
   --off-white:  #f8f9fc
============================================ */

/* ── SCOPE RESET ── */
.vf-page *,
.vf-page *::before,
.vf-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vf-page a {
  color: inherit;
  text-decoration: none;
}

.vf-page button {
  cursor: pointer;
  font-family: inherit;
}

.vf-page,
.vp-page {
  --navy: #0b1640;
  --blue: #1e5cff;
  --blue-light: #3a7bff;
  --pink: #e91e8c;
  --light-bg: #f4f6fb;
  --off-white: #f8f9fc;
  --text-muted: rgba(255, 255, 255, 0.75);
  --promo-border: rgba(255, 255, 255, 0.25);
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: var(--navy);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.vf-page .hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 90px;
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 0;
  transform: translateZ(0);
  backface-visibility: hidden;

}

/* Dot grid + glow blobs */
.vf-page .dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vf-page .dot-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vf-page .dg1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -160px;
  left: -120px;
  opacity: 0.18;
}

.vf-page .dg2 {
  width: 380px;
  height: 380px;
  background: #6b3fa0;
  bottom: -100px;
  right: -80px;
  opacity: 0.18;
}

.vf-page .dg3 {
  width: 260px;
  height: 260px;
  background: var(--blue-light);
  top: 40%;
  left: 55%;
  opacity: 0.10;
}

.vf-page .announce-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 16px rgba(30, 92, 255, 0.45));
}

.vf-page .announce-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

@keyframes floatIcon {

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

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

.vf-page .promo-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border: 1px solid var(--promo-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  transition: background 0.2s, border-color 0.2s;
}

.vf-page .promo-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.vf-page .promo-text {
  background: linear-gradient(90deg, #ff6b8a, #ff4fc8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.vf-page .hero-headline {
  position: relative;
  z-index: 2;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  text-align: center;
  max-width: 820px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #fff !important;
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.vf-page .hero-sub {
  position: relative;
  z-index: 2;
  max-width: 580px;
  text-align: center;
  font-size: clamp(0.75rem, 1.3vw, 0.88rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.vf-page .cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 34px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(30, 92, 255, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 20px;
}

.vf-page .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(30, 92, 255, 0.55);
}

.vf-page .chevrons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.vf-page .chevrons span {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2.5px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

.vf-page .chevrons span:last-child {
  opacity: 0.45;
  margin-top: -4px;
}

.vf-page .benefits {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.7s 0.45s ease both;
}

.vf-page .benefits-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.vf-page .benefits-items {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.vf-page .benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.vf-page .benefit-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-page .benefit-icon svg {
  width: 22px;
  height: 22px;
}



/* ══════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════ */

/* Tablet landscape — iPad Pro, Surface Pro */
@media (max-width: 1024px) {
  .vf-page .hero {
    min-height: unset;
    height: auto;
    padding: 100px 32px 80px;
  }

  .vf-page .hero-headline {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  }

  .vf-page .hero-sub {
    font-size: 0.88rem;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .vf-page .hero {
    padding: 80px 28px 70px;
    justify-content: center;
  }

  .vf-page .announce-icon {
    width: 46px;
    height: 46px;
  }

  .vf-page .announce-icon img {
    width: 46px;
    height: 46px;
  }

  .vf-page .hero-headline {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
  }

  .vf-page .hero-sub {
    font-size: 0.86rem;
    max-width: 520px;
  }


}

/* Mobile */
@media (max-width: 600px) {
  .vf-page .hero {
    padding: 75px 20px 65px;
    justify-content: center;
    align-items: center;
  }

  .vf-page .announce-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .vf-page .announce-icon img {
    width: 40px;
    height: 40px;
  }

  .vf-page .promo-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    max-width: 88vw;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .vf-page .hero-headline {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .vf-page .hero-sub {
    font-size: 0.82rem;
    margin-bottom: 16px;
    line-height: 1.5;
    max-width: 90vw;
  }

  .vf-page .cta-btn {
    padding: 11px 28px;
    font-size: 0.74rem;
    margin-bottom: 16px;
  }

  .vf-page .benefits-label {
    font-size: 0.75rem;
  }

  .vf-page .benefits-items {
    gap: 14px;
  }

  .vf-page .benefit-item {
    font-size: 0.78rem;
  }


}

/* Small phones */
@media (max-width: 390px) {
  .vf-page .hero {
    padding: 70px 16px 55px;
  }

  .vf-page .hero-headline {
    font-size: clamp(1.25rem, 7.5vw, 1.7rem);
  }

  .vf-page .hero-sub {
    font-size: 0.78rem;
  }

  .vf-page .cta-btn {
    padding: 10px 24px;
    font-size: 0.72rem;
  }
}

/* ══════════════════════════════════════
   COUNTDOWN
══════════════════════════════════════ */
.vf-page .countdown-section {
  position: relative;
  z-index: 4;
  background: var(--light-bg);
  color: #0a1535;
  text-align: center;
  padding: 55px 24px 45px;
  margin-top: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vf-page .countdown-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.6rem);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  color: #0a1535;
}

.vf-page .countdown-boxes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vf-page .cbox {
  background: var(--navy);
  border-radius: 10px;
  width: 140px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 24px rgba(14, 30, 74, 0.25);
}

.vf-page .cbox-num {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}

.vf-page .cbox-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

@media (max-width: 560px) {
  .vf-page .cbox {
    width: 90px;
    height: 84px;
  }

  .vf-page .cbox-num {
    font-size: 1.9rem;
  }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.vf-page .services-section {
  background: var(--light-bg);
  padding: 10px 24px 60px;
}

.vf-page .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width:900px) {
  .vf-page .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .vf-page .services-grid {
    grid-template-columns: 1fr;
  }
}

.vf-page .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vf-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(30, 92, 255, 0.13);
}

.vf-page .scard-icon svg {
  width: 62px;
  height: 62px;
}

/* Font Awesome brand icons */
.vf-page .scard-fa {
  font-size: 58px;
  line-height: 1;
  display: block;
}

.vf-page .ig-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vf-page .tt-icon {
  color: #000000;
}

.vf-page .fb-icon {
  color: #1877F2;
}

.vf-page .yt-icon {
  color: #FF0000;
}

.vf-page .scard-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.vf-page .scard-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-page .scard-buttons button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  background: transparent;
}

.vf-page .scard-buttons.ig button {
  border: 1.5px solid #e1306c;
  color: #e1306c;
}

.vf-page .scard-buttons.ig button:hover {
  background: #e1306c;
  color: #fff;
}

.vf-page .scard-buttons.tt button {
  border: 1.5px solid #1a1a2e;
  color: #1a1a2e;
}

.vf-page .scard-buttons.tt button:hover {
  background: #1a1a2e;
  color: #fff;
}

.vf-page .scard-buttons.fb button {
  border: 1.5px solid #1877f2;
  color: #1877f2;
}

.vf-page .scard-buttons.fb button:hover {
  background: #1877f2;
  color: #fff;
}

.vf-page .scard-buttons.yt button {
  border: 1.5px solid #ff0000;
  color: #ff0000;
}

.vf-page .scard-buttons.yt button:hover {
  background: #ff0000;
  color: #fff;
}

/* ══════════════════════════════════════
   WHY VERIFANE
══════════════════════════════════════ */
.vf-page .why-section {
  background: #fff;
  padding: 70px 40px;
}

.vf-page .why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width:768px) {
  .vf-page .why-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
}

.vf-page .why-illustration {
  flex: 0 0 46%;
}

.vf-page .why-svg {
  width: 100%;
  height: auto;
  display: block;
}

.vf-page .why-text {
  flex: 1;
}

.vf-page .why-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #0a1535;
  margin-bottom: 20px;
  line-height: 1.25;
}

.vf-page .why-title span {
  color: var(--blue);
}

.vf-page .why-body {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: #444;
  line-height: 1.8;
}

@media (max-width:560px) {
  .vf-page .why-section {
    padding: 50px 20px;
  }

  .vf-page .why-title {
    font-size: 1.4rem;
  }
}

/* ══════════════════════════════════════
   SERVIZI CHE OFFRIAMO
══════════════════════════════════════ */
.vf-page .offriamo-section {
  background: var(--off-white);
  padding: 60px 24px 70px;
}

.vf-page .offriamo-header {
  text-align: center;
  margin-bottom: 40px;
}

.vf-page .offriamo-header h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #0a1535;
}

.vf-page .offriamo-header h2 span {
  color: var(--blue);
}

.vf-page .offriamo-squiggle {
  display: block;
  margin: 10px auto 0;
  width: 56px;
}

.vf-page .offriamo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width:900px) {
  .vf-page .offriamo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .vf-page .offriamo-grid {
    grid-template-columns: 1fr;
  }
}

.vf-page .ocard {
  background: #fff;
  border-radius: 14px;
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vf-page .ocard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(30, 92, 255, 0.12);
}

.vf-page .ocard-icon svg {
  width: 48px;
  height: 48px;
}

.vf-page .ocard h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #0a1535;
  letter-spacing: 0.03em;
}

.vf-page .ocard p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.72;
}

/* ══════════════════════════════════════
   COME ACQUISTARE
══════════════════════════════════════ */
.vf-page .how-section {
  position: relative;
  background: var(--navy);
  padding: 65px 40px 72px;
  overflow: hidden;
}

.vf-page .how-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.vf-page .how-header {
  text-align: center;
  margin-bottom: 48px;
}

.vf-page .how-header h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}

.vf-page .how-header p {
  font-size: clamp(0.84rem, 1.6vw, 0.96rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

.vf-page .how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width:768px) {
  .vf-page .how-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width:560px) {
  .vf-page .how-section {
    padding: 50px 20px 60px;
  }
}

.vf-page .how-step-num {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.vf-page .how-step h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #fff;
  margin-bottom: 10px;
}

.vf-page .how-step p {
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  color: var(--text-muted);
  line-height: 1.72;
}

/* ══════════════════════════════════════
   RISULTATI SLIDER
══════════════════════════════════════ */
.vf-page .risultati-section,
.vp-page .risultati-section {
  background: #fff;
  padding: 55px 0 55px;
  overflow: hidden;
}

.vf-page .risultati-header,
.vp-page .risultati-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 32px;
}

.vf-page .risultati-line,
.vp-page .risultati-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(11, 22, 64, 0.2), transparent);
  max-width: 320px;
}

.vf-page .risultati-header h2,
.vp-page .risultati-header h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #0b1640;
  white-space: nowrap;
  letter-spacing: 0.16em;
  padding: 10px 36px;
  border-radius: 10px;
  border: 2px solid #0b1640;
  background: transparent;
  box-shadow: 2px 2px 0 rgba(11, 22, 64, 0.12);
}

.vf-page .slider-outer,
.vp-page .slider-outer {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.vf-page .slider-outer:active,
.vp-page .slider-outer:active {
  cursor: grabbing;
}

.vf-page .slider-track,
.vp-page .slider-track {
  display: flex;
  gap: 20px;
  padding: 0 32px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vf-page .slide,
.vp-page .slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.vf-page .slide-img-placeholder,
.vp-page .slide-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0d1535 0%, #1e3a8a 50%, #0d1535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.vf-page .slide-img,
.vp-page .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}

.vf-page .slider-dots,
.vp-page .slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.vf-page .slider-dot,
.vp-page .slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.vf-page .slider-dot.active,
.vp-page .slider-dot.active {
  background: #1e5cff;
  transform: scale(1.35);
}

@media (max-width:900px) {

  .vf-page .slide,
  .vp-page .slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width:560px) {

  .vf-page .slide,
  .vp-page .slide {
    flex: 0 0 calc(82% - 10px);
  }

  .vf-page .risultati-section,
  .vp-page .risultati-section {
    padding: 40px 0;
  }
}

/* ══════════════════════════════════════
   PERCHÉ SCELGONO VERIFANE
══════════════════════════════════════ */
.vf-page .perche-section,
.vp-page .perche-section {
  background: var(--off-white);
  padding: 60px 24px 70px;
}

.vf-page .perche-title,
.vp-page .perche-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  color: #0a1535;
  text-align: center;
  margin-bottom: 40px;
}

.vf-page .perche-title span,
.vp-page .perche-title span {
  color: #1e5cff;
}

.vf-page .perche-grid,
.vp-page .perche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width:768px) {

  .vf-page .perche-grid,
  .vp-page .perche-grid {
    grid-template-columns: 1fr;
  }

  .vf-page .pcard-full,
  .vp-page .pcard-full {
    grid-column: 1 !important;
  }
}

.vf-page .pcard,
.vp-page .pcard {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.vf-page .pcard-full,
.vp-page .pcard-full {
  grid-column: 1/-1;
}

.vf-page .pcard-icon,
.vp-page .pcard-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.vf-page .pcard-icon svg,
.vp-page .pcard-icon svg {
  width: 24px;
  height: 24px;
}

.vf-page .pcard-heading,
.vp-page .pcard-heading {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0a1535;
  margin-bottom: 10px;
  min-height: 2.2em;
  display: flex;
  align-items: flex-start;
}

.vf-page .pcard-body,
.vp-page .pcard-body {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
}

.vf-page .pcard-review,
.vp-page .pcard-review {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vf-page .review-avatar,
.vp-page .review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}

.vf-page .review-meta,
.vp-page .review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vf-page .review-name,
.vp-page .review-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0a1535;
}

.vf-page .review-handle,
.vp-page .review-handle {
  font-size: 0.72rem;
  color: #aaa;
}

.vf-page .review-text,
.vp-page .review-text {
  background: #f4f6fb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.83rem;
  color: #444;
  line-height: 1.68;
}

.vf-page .pcard-full-body,
.vp-page .pcard-full-body {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.vf-page .pcard-full-col,
.vp-page .pcard-full-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width:768px) {

  .vf-page .pcard-full-body,
  .vp-page .pcard-full-body {
    flex-direction: column;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   CUSTOM FOOTER
══════════════════════════════════════ */
.vf-footer {
  position: relative;
  background: var(--navy, #0b1640);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.vf-footer .dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  overflow: hidden;
}

.vf-footer .dot-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.vf-footer .dg1 {
  width: 400px;
  height: 400px;
  background: #1e5cff;
  top: -120px;
  left: -80px;
  opacity: 0.12;
}

.vf-footer .dg2 {
  width: 320px;
  height: 320px;
  background: #6b3fa0;
  bottom: -80px;
  right: -60px;
  opacity: 0.14;
}

.vf-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 32px;
}

/* ── TOP ROW ── */
.vf-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .vf-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vf-footer-inner {
    padding: 48px 24px 28px;
  }
}

.vf-footer-heading {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.vf-footer-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.82;
}

/* Right column */
.vf-footer-col--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 769px) {
  .vf-footer-col--right {
    align-items: flex-end;
    text-align: right;
  }
}

.vf-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vf-footer-contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.vf-footer-contact-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.vf-footer-contact-value:hover {
  color: #1e5cff;
}

/* Social icons */
.vf-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.vf-footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.vf-footer-social:hover {
  border-color: #1e5cff;
  color: #fff;
  background: rgba(30, 92, 255, 0.15);
}

/* ── DIVIDER ── */
.vf-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin-bottom: 32px;
}

/* ── BOTTOM ROW ── */
.vf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .vf-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Payment badges */
.vf-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.vf-pay-badge:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Legal links */
.vf-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-footer-legal a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.vf-footer-legal a:hover {
  color: #fff;
}

.vf-footer-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

/* Copyright */
.vf-footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ══════════════════════════════════════
   INNER PAGE WRAPPER
══════════════════════════════════════ */
.vp-page {
  background: #f4f6fb;
  font-family: 'Inter', sans-serif;
  padding-top: 20px;
  /* push below fixed nav */
}

.vp-page *,
.vp-page *::before,
.vp-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vp-page a {
  text-decoration: none;
  color: inherit;
}

/* ══════════════════════════════════════
   PITCH BOX
══════════════════════════════════════ */
.vp-pitch {
  padding: 24px 24px 0px;
  background: #f4f6fb;
}

.vp-pitch-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
  .vp-pitch-inner {
    padding: 28px 20px;
  }
}

.vp-pitch-inner h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #0b1640;
  margin-bottom: 10px;
  line-height: 1.25;
}

.vp-pitch-inner h2 span {
  color: #1e5cff;
}

.vp-pitch-inner>p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.vp-pitch-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

@media (max-width: 640px) {
  .vp-pitch-features {
    grid-template-columns: 1fr;
  }
}

.vp-pitch-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.55;
}

.vp-pitch-feat span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════
   PRODUCT SECTION
══════════════════════════════════════ */
.vp-section {
  padding: 0 24px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.vp-section:first-of-type {
  padding-top: 4px;
}

.vp-section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #0b1640;
  text-align: center;
  margin-bottom: 28px;
  padding-top: 32px;
}

.vp-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .vp-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .vp-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════ */
.vp-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.09);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}

.vp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

/* Coloured header */
.vp-card-header {
  padding: 22px 24px 18px;
  text-align: center;
}

.vp-card-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.25;
}

.vp-card-bonus {
  font-size: 0.82rem;
  margin-top: 5px;
  opacity: 0.9;
}

/* White body */
.vp-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Price */
.vp-card-price {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vp-old-price {
  font-size: 0.82rem;
  color: #bbb;
  text-decoration: line-through;
  letter-spacing: 0.02em;
}

.vp-price-block {
  display: flex;
  align-items: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #1a1a1a;
  line-height: 1;
}

.vp-currency {
  font-size: 1rem;
  font-weight: 600;
  margin-right: 3px;
  align-self: flex-start;
  margin-top: 8px;
  color: #888;
  letter-spacing: 0;
}

/* Features list */
.vp-features {
  list-style: none;
  width: 100%;
  flex: 1;
}

.vp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 92, 255, 0.12);
}

.vp-features li:last-child {
  border-bottom: none;
}

.vp-features .vp-feat-highlight {
  font-size: 0.88rem;
  color: #333;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(30, 92, 255, 0.15);
  padding-bottom: 14px;
  margin-bottom: 2px;
  display: block;
}

.vp-features i {
  font-size: 1rem;
  flex-shrink: 0;
  color: #6b6b6b;
}

.vp-features .fa-circle-check {
  color: #4caf50;
}

.vp-features .fa-circle-xmark {
  color: #9e9e9e;
}

.vp-features .fa-comment-dots {
  color: #1e5cff;
}

/* Buy button */
.vp-buy-btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  background: #4caf50;
  color: #fff;
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: underline;
}

.vp-buy-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(9, 245, 119, 0.119) !important;
  color: #fff
}



/* ══════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════ */
.vp-checkout-page {
  padding-top: 70px;
}

.vp-checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.vp-checkout-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #0b1640;
  text-align: center;
  margin-bottom: 32px;
}

.vp-checkout-title span {
  color: #1e5cff;
}

/* ── WooCommerce checkout layout ── */
.vp-checkout-page .woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .vp-checkout-page .woocommerce-checkout {
    grid-template-columns: 1fr;
  }
}

/* Customer details = left column */
.vp-checkout-page .ct-customer-details,
.vp-checkout-page .col2-set {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {

  .vp-checkout-page .ct-customer-details,
  .vp-checkout-page .col2-set {
    padding: 20px;
  }
}

/* Order review = right column */
.vp-checkout-page .ct-order-review {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 90px;
}

@media (max-width: 600px) {
  .vp-checkout-page .ct-order-review {
    padding: 20px;
  }
}

/* Section headings inside checkout */
.vp-checkout-page h3 {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  color: #0b1640 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  margin-bottom: 20px !important;
}

/* ── Form fields ── */
.vp-checkout-page .form-row {
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.vp-checkout-page label {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #555 !important;
  margin-bottom: 5px !important;
  display: block !important;
  letter-spacing: 0.02em !important;
}

.vp-checkout-page .required {
  color: #1e5cff !important;
}

.vp-checkout-page .optional {
  color: #bbb !important;
  font-weight: 400 !important;
}

.vp-checkout-page input.input-text,
.vp-checkout-page textarea,
.vp-checkout-page select {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1.5px solid #e0e4ef !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-family: 'Inter', sans-serif !important;
  color: #1a1a2e !important;
  background: #fafbff !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}

.vp-checkout-page input.input-text:focus,
.vp-checkout-page textarea:focus {
  border-color: #1e5cff !important;
  outline: none !important;
  background: #fff !important;
}

/* Two-column field rows */
.vp-checkout-page .form-row-first,
.vp-checkout-page .form-row-last {
  width: calc(50% - 7px) !important;
  display: inline-block !important;
}

.vp-checkout-page .form-row-first {
  margin-right: 14px !important;
}

.vp-checkout-page .form-row-wide {
  width: 100% !important;
  display: block !important;
}

/* Select2 */
.vp-checkout-page .select2-container .select2-selection--single {
  height: 42px !important;
  border: 1.5px solid #e0e4ef !important;
  border-radius: 8px !important;
  background: #fafbff !important;
}

.vp-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  padding-left: 14px !important;
  font-size: 0.9rem !important;
  color: #1a1a2e !important;
}

.vp-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}

/* ── Order review table ── */
.vp-checkout-page .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.vp-checkout-page .shop_table th,
.vp-checkout-page .shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  text-align: left;
}

.vp-checkout-page .shop_table thead th {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vp-checkout-page .shop_table tfoot .order-total th,
.vp-checkout-page .shop_table tfoot .order-total td {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0b1640;
  border-bottom: none;
  padding-top: 16px;
}

/* ── Payment section ── */
.vp-checkout-page #payment {
  margin-top: 20px;
}

.vp-checkout-page #payment ul.payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.vp-checkout-page #payment ul.payment_methods li label {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: #0b1640 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.vp-checkout-page .payment_box {
  background: #fafbff;
  border-radius: 10px;
  padding: 12px;
  margin: 0 auto !important;
  border: 1px solid #e8ebf5;
  box-sizing: border-box;
  max-width: calc(100% - 16px) !important;
}

.vp-checkout-page .payment_box .testmode-info {
  font-size: 0.76rem;
  color: #999;
  line-height: 1.55;
  margin-bottom: 12px;
}

/* Privacy policy text */
.vp-checkout-page .woocommerce-privacy-policy-text {
  font-size: 0.76rem;
  color: #bbb;
  line-height: 1.55;
  margin-bottom: 14px;
}

.vp-checkout-page .woocommerce-privacy-policy-text a {
  color: #1e5cff;
}

/* ── Place order button ── */
.vp-checkout-page #place_order {
  display: block !important;
  width: calc(100% - 16px) !important;
  padding: 16px !important;
  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
  color: #fff !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  box-shadow: 0 8px 28px rgba(30, 92, 255, 0.35) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  margin: 0 auto !important;
}

.vp-checkout-page #place_order:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(30, 92, 255, 0.5) !important;
}


.woocommerce-billing-fields>h3 {
  display: none !important;
}

.woocommerce-additional-fields>h3 {
  display: none !important;
}

/* ══════════════════════════════════════
   WC ADD-TO-CART NOTICE
══════════════════════════════════════ */
.vp-checkout-page .woocommerce-notices-wrapper .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #fff !important;
  border: 1.5px solid #e0e4ef !important;
  border-left: 4px solid #1e5cff !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  margin-bottom: 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  color: #0b1640 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  list-style: none !important;
}

.vp-checkout-page .woocommerce-notices-wrapper .woocommerce-message::before {
  content: '\f05a' !important;
  /* FA info icon */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  color: #1e5cff !important;
  margin-right: 10px !important;
  font-size: 1rem !important;
}

.vp-checkout-page .woocommerce-notices-wrapper .woocommerce-message .button {
  background: #1e5cff !important;
  color: #fff !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  border: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.2s !important;
}

.vp-checkout-page .woocommerce-notices-wrapper .woocommerce-message .button:hover {
  background: #3a7bff !important;
}


/* ══════════════════════════════════════
   MINI CART DROPDOWN
══════════════════════════════════════ */
.ct-cart-content {
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 40px rgba(11, 22, 64, 0.15) !important;
  border: 1px solid #e8ebf5 !important;
  padding: 20px !important;
  min-width: 300px !important;
}

.ct-cart-content .woocommerce-mini-cart {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
}

.ct-cart-content .mini_cart_item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #f0f2f8 !important;
}

.ct-cart-content .ct-media-container img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  border: 1px solid #eee !important;
}

.ct-cart-content .product-data {
  flex: 1 !important;
}

.ct-cart-content .product-title {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  color: #0b1640 !important;
  text-decoration: none !important;
  display: block !important;
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
}

.ct-cart-content .quantity {
  font-size: 0.78rem !important;
  color: #888 !important;
  font-family: 'Inter', sans-serif !important;
}

.ct-cart-content .remove_from_cart_button {
  color: #ccc !important;
  flex-shrink: 0 !important;
  transition: color 0.2s !important;
}

.ct-cart-content .remove_from_cart_button:hover {
  color: #ff4d4d !important;
}

.ct-cart-content .woocommerce-mini-cart__total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  color: #0b1640 !important;
  margin: 0 0 14px !important;
  padding-top: 12px !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .button {
  display: block !important;
  text-align: center !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .wc-forward:not(.checkout) {
  background: #f4f6fb !important;
  color: #0b1640 !important;
  border: 1.5px solid #e0e4ef !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .wc-forward:not(.checkout):hover {
  background: #e8ebf5 !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .checkout {
  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(30, 92, 255, 0.3) !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .checkout:hover {
  box-shadow: 0 6px 20px rgba(30, 92, 255, 0.45) !important;
  transform: translateY(-1px) !important;
}


/* ══════════════════════════════════════
   CART PAGE
══════════════════════════════════════ */

.woocommerce-cart .hero-section .page-title {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  color: #0b1640 !important;
  text-align: center !important;
  margin: 24px 0 32px !important;
}

/* Main cart layout */
.woocommerce-cart .entry-content>.woocommerce {
  max-width: 1100px;
  margin: 0 auto;
}

/* Cart form card */
.woocommerce-cart .ct-woocommerce-cart-form {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .woocommerce-cart .ct-woocommerce-cart-form {
    grid-template-columns: 1fr;
  }
}

/* Left side table wrapper feeling */
.woocommerce-cart .woocommerce-cart-form {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 28px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Right side totals card */
.woocommerce-cart .cart_totals {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 28px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  position: sticky;
  top: 90px;
}

@media (max-width: 600px) {

  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart_totals {
    padding: 20px !important;
  }
}

/* Table */
.woocommerce-cart .shop_table.cart {
  border: none !important;
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

.woocommerce-cart .shop_table.cart thead th {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 0.75rem !important;
  color: #999 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid #eef1f6 !important;
}

.woocommerce-cart .shop_table.cart td {
  padding: 18px 0 !important;
  border-bottom: 1px solid #eef1f6 !important;
  vertical-align: middle !important;
  color: #333 !important;
}

/* Product image */
.woocommerce-cart .product-thumbnail img {
  width: 74px !important;
  height: 74px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  border: 1px solid #e8ebf5 !important;
  background: #fafbff !important;
}

/* Product title */
.woocommerce-cart .product-name a {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #0b1640 !important;
  text-decoration: none !important;
}

.woocommerce-cart .product-name a:hover {
  color: #1e5cff !important;
}

/* Small price under name */
.woocommerce-cart .product-name .price {
  margin-top: 6px !important;
  font-size: 0.82rem !important;
  color: #888 !important;
  font-family: 'Inter', sans-serif !important;
}

/* Quantity box */
.woocommerce-cart .quantity .qty {
  width: 84px !important;
  height: 42px !important;

  border: 1.5px solid #e0e4ef !important;
  border-radius: 8px !important;
  background: #fafbff !important;
  color: #1a1a2e !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: none !important;
  text-align: center !important;
}

.woocommerce-cart .quantity .qty:focus {
  border-color: #1e5cff !important;
  outline: none !important;
  background: #fff !important;
}

/* Price/subtotal cells */
.woocommerce-cart .product-subtotal,
.woocommerce-cart td[data-title="Subtotal"],
.woocommerce-cart .product-price {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  color: #0b1640 !important;
}

/* Remove icon */
.woocommerce-cart .product-remove .remove {
  color: #c5cad8 !important;
  font-size: 1rem !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart .product-remove .remove:hover {
  color: #ff4d4d !important;
  transform: scale(1.08) !important;
  background: transparent !important;
}

/* Actions row */
.woocommerce-cart .shop_table.cart td.actions {
  padding-top: 22px !important;
  border-bottom: none !important;
}

/* Coupon area */
.woocommerce-cart .coupon {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
}

.woocommerce-cart .coupon .input-text {
  min-width: 220px !important;
  height: 44px !important;
  padding: 10px 14px !important;
  border: 1.5px solid #e0e4ef !important;
  border-radius: 8px !important;
  background: #fafbff !important;
  color: #1a1a2e !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: none !important;
}

.woocommerce-cart .coupon .input-text:focus {
  border-color: #1e5cff !important;
  outline: none !important;
  background: #fff !important;
}

/* Generic cart buttons */
.woocommerce-cart .actions .button,
.woocommerce-cart .coupon .button,
.woocommerce-cart button[name="update_cart"] {
  height: 44px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border: 1.5px solid #e0e4ef !important;
  background: #f4f6fb !important;
  color: #0b1640 !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart .actions .button:hover,
.woocommerce-cart .coupon .button:hover,
.woocommerce-cart button[name="update_cart"]:hover {
  background: #e8ebf5 !important;
  border-color: #d7deef !important;
}

/* Disabled update cart */
.woocommerce-cart button[name="update_cart"]:disabled {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}

/* Totals heading */
.woocommerce-cart .cart_totals h2 {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  color: #0b1640 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  margin-bottom: 18px !important;
}

/* Totals table */
.woocommerce-cart .cart_totals .shop_table {
  border: none !important;
  margin-bottom: 20px !important;
}

.woocommerce-cart .cart_totals .shop_table th,
.woocommerce-cart .cart_totals .shop_table td {
  padding: 12px 0 !important;
  border-bottom: 1px solid #eef1f6 !important;
  color: #333 !important;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.05rem !important;
  color: #0b1640 !important;
  border-bottom: none !important;
  padding-top: 16px !important;
}

/* Checkout button */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.button.alt {
  display: block !important;
  width: 100% !important;
  padding: 16px !important;
  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
  color: #fff !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 10px !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(30, 92, 255, 0.35) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.button.alt:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(30, 92, 255, 0.5) !important;
}

/* Space under checkout button before f express */
.woocommerce-cart .wc-proceed-to-checkout>*+* {
  margin-top: 14px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .woocommerce-cart .coupon {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .woocommerce-cart .coupon .input-text,
  .woocommerce-cart .coupon .button,
  .woocommerce-cart button[name="update_cart"] {
    width: 100% !important;
  }

  .woocommerce-cart .shop_table.cart thead {
    display: none !important;
  }

  .woocommerce-cart .shop_table.cart tr.cart_item {
    display: grid !important;
    grid-template-columns: 74px 1fr !important;
    gap: 14px !important;
    padding: 14px 0 !important;
  }

  .woocommerce-cart .shop_table.cart tr.cart_item td {
    border-bottom: none !important;
    padding: 0 !important;
  }

  .woocommerce-cart .product-thumbnail {
    grid-row: span 3;
  }

  .woocommerce-cart .product-quantity,
  .woocommerce-cart .product-subtotal,
  .woocommerce-cart .product-remove {
    margin-top: 8px !important;
  }
}

/* ══════════════════════════════════════
   CART QTY BUTTONS
══════════════════════════════════════ */

.woocommerce-cart .quantity[data-type="type-2"] {
  border: 1.5px solid #e0e4ef !important;
  border-radius: 10px !important;
  background: #fafbff !important;
  overflow: hidden !important;
}

.woocommerce-cart .quantity[data-type="type-2"] .ct-increase,
.woocommerce-cart .quantity[data-type="type-2"] .ct-decrease {
  background: #f4f6fb !important;
  color: #0b1640 !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart .quantity[data-type="type-2"] .ct-increase:hover,
.woocommerce-cart .quantity[data-type="type-2"] .ct-decrease:hover {
  background: #1e5cff !important;
  color: #fff !important;
}

.woocommerce-cart .quantity[data-type="type-2"] .qty {
  background: #fff !important;
  color: #0b1640 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


/* CLEAN NOTICE CARD */
.woocommerce-cart .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;

  background: #fff !important;
  border: 1.5px solid #e0e4ef !important;
  border-top: none !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;

  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  color: #0b1640 !important;

  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* top accent */
.woocommerce-cart .woocommerce-message::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(135deg, #1e5cff, #3a7bff);
}

.woocommerce-cart .woocommerce-message::before {
  display: none !important;
  content: none !important;
}


/* ══════════════════════════════════════
   CART NOTICES / EMPTY CART / UNDO
══════════════════════════════════════ */

/* Undo link -> make it look like your buttons */
.woocommerce-cart .woocommerce-message .restore-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-left: auto !important;
  padding: 10px 18px !important;
  min-height: 42px !important;

  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  text-decoration: none !important;

  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;

  box-shadow: 0 6px 20px rgba(30, 92, 255, 0.28) !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart .woocommerce-message .restore-item:hover {
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 26px rgba(30, 92, 255, 0.4) !important;
}

/* Empty cart info notice */
.woocommerce-cart .cart-empty.woocommerce-info {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  background: #fff !important;
  border: 1.5px solid #e0e4ef !important;
  border-radius: 12px !important;
  padding: 18px 20px !important;
  margin-bottom: 24px !important;

  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  color: #0b1640 !important;

  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
  position: relative !important;
  overflow: hidden !important;
}

.woocommerce-cart .cart-empty.woocommerce-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(135deg, #1e5cff, #3a7bff);
}

.woocommerce-cart .cart-empty.woocommerce-info::before {
  position: static !important;
  margin: 0 !important;
  color: #1e5cff !important;
  flex-shrink: 0 !important;
}

/* Return to shop button */
.woocommerce-cart .return-to-shop .button.wc-backward {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 14px 22px !important;
  min-height: 48px !important;

  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  text-decoration: none !important;

  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.04em !important;

  box-shadow: 0 8px 28px rgba(30, 92, 255, 0.35) !important;
  transition: all 0.2s ease !important;
}

.woocommerce-cart .return-to-shop .button.wc-backward:hover {
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(30, 92, 255, 0.5) !important;
}

/* Better layout for removed notice */
.woocommerce-cart .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* Mobile */
@media (max-width: 640px) {
  .woocommerce-cart .woocommerce-message .restore-item {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .woocommerce-cart .return-to-shop .button.wc-backward {
    width: 100% !important;
  }
}

/* Add-to-cart notice button */
.woocommerce-message .button.wc-forward,
.woocommerce-cart .woocommerce-message .button.wc-forward,
.woocommerce-checkout .woocommerce-message .button.wc-forward {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-left: auto !important;
  padding: 10px 18px !important;
  min-height: 42px !important;

  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  text-decoration: none !important;

  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em !important;

  box-shadow: 0 6px 20px rgba(30, 92, 255, 0.28) !important;
  transition: all 0.2s ease !important;
}

.woocommerce-message .button.wc-forward:hover,
.woocommerce-cart .woocommerce-message .button.wc-forward:hover,
.woocommerce-checkout .woocommerce-message .button.wc-forward:hover {
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 26px rgba(30, 92, 255, 0.4) !important;
}






/* Cart */
.woocommerce-cart .product-thumbnail a.ct-media-container,
.woocommerce-cart .product-name>a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

/* Mini-cart */
.woocommerce-mini-cart a.ct-media-container,
.woocommerce-mini-cart .product-data>a.product-title {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}


/* ══════════════════════════════════════
   CHECKOUT MOBILE FIX
══════════════════════════════════════ */
@media (max-width: 900px) {
  .vp-checkout-page .ct-order-review {
    position: static !important;
  }
}



.vp-checkout-page .form-row.place-order {
  padding: 0 !important;
}



/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.vp-legal-page {
  background: #f4f6fb;
  padding-top: 70px;
}

.vp-legal-hero {
  padding: 36px 24px 18px;
}

.vp-legal-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.vp-legal-kicker {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1e5cff;
  margin-bottom: 10px;
}

.vp-legal-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: #0b1640;
  margin-bottom: 12px;
}

.vp-legal-title span {
  color: #1e5cff;
}

.vp-legal-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #667085;
  line-height: 1.7;
}

.vp-legal-section {
  padding: 20px 24px 64px;
}

.vp-legal-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 40px 42px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.vp-legal-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vp-legal-block {
  border-bottom: 1px solid #eef1f6;
  padding-bottom: 26px;
}

.vp-legal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vp-legal-block h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0b1640;
  margin-bottom: 14px;
  line-height: 1.3;
}

.vp-legal-block h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #1e5cff;
  margin: 18px 0 10px;
  line-height: 1.4;
}

.vp-legal-block p,
.vp-legal-block li {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: #555;
  line-height: 1.85;
}

.vp-legal-block p+p {
  margin-top: 12px;
}

.vp-legal-block ul {
  margin: 12px 0 0 18px;
  padding: 0;
}

.vp-legal-block li+li {
  margin-top: 8px;
}

.vp-legal-block strong {
  color: #0b1640;
}

@media (max-width: 768px) {
  .vp-legal-card {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .vp-legal-section {
    padding: 16px 16px 52px;
  }

  .vp-legal-hero {
    padding: 28px 16px 12px;
  }

  .vp-legal-block h2 {
    font-size: 1.02rem;
  }

  .vp-legal-block p,
  .vp-legal-block li {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}

/* ══════════════════════════════════════
   PREMIUM FAQ PAGE
══════════════════════════════════════ */
.vp-faq-page .vp-legal-hero {
  padding-bottom: 8px;
}

.vp-faq-card {
  max-width: 900px;
}

.vp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vp-faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #e6ebf5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(11, 22, 64, 0.05);
  transition: all 0.25s ease;
}

.vp-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(11, 22, 64, 0.08);
  border-color: #d8e2f7;
}

.vp-faq-item.active {
  border-color: rgba(30, 92, 255, 0.22);
  box-shadow: 0 14px 38px rgba(30, 92, 255, 0.10);
}

.vp-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 26px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0b1640;
  transition: background 0.2s ease, color 0.2s ease;
}

.vp-faq-question:hover {
  background: rgba(30, 92, 255, 0.02);
}

.vp-faq-item.active .vp-faq-question {
  color: #1e5cff;
}

.vp-faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #f4f7ff;
  border: 1px solid #dfe7fb;
  position: relative;
  transition: all 0.25s ease;
}

.vp-faq-icon::before,
.vp-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #1e5cff;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  border-radius: 999px;
}

.vp-faq-icon::before {
  width: 14px;
  height: 2.5px;
}

.vp-faq-icon::after {
  width: 2.5px;
  height: 14px;
}

.vp-faq-item.active .vp-faq-icon {
  background: linear-gradient(135deg, #1e5cff, #3a7bff);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(30, 92, 255, 0.26);
}

.vp-faq-item.active .vp-faq-icon::before,
.vp-faq-item.active .vp-faq-icon::after {
  background: #fff;
}

.vp-faq-item.active .vp-faq-icon::after {
  height: 0;
}

.vp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.vp-faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #5b6475;
}

.vp-faq-item.active .vp-faq-answer p {
  color: #4a5568;
}

/* subtle highlight line */
.vp-faq-item.active::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(135deg, #1e5cff, #3a7bff);
}

/* mobile */
@media (max-width: 768px) {
  .vp-faq-question {
    padding: 18px 18px;
    font-size: 0.95rem;
    align-items: flex-start;
  }

  .vp-faq-answer p {
    padding: 0 18px 18px;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .vp-faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .vp-faq-icon::before {
    width: 12px;
  }

  .vp-faq-icon::after {
    height: 12px;
  }
}



/* ===== NEW SALES NOTIFICATION ===== */
.vf-sales-wrap {
  position: relative;
  z-index: 6;
  width: 100%;
  background: var(--light-bg);
  margin-top: 0;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
}

.vf-sales-toast {
  width: min(100%, 720px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(248, 249, 252, 0.96);
  border: 1px solid rgba(30, 92, 255, 0.08);
  border-radius: 22px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(11, 22, 64, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  position: relative;
  top: -1px;

  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.vf-sales-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vf-sales-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 92, 255, 0.10);
  color: #1e5cff;
  font-size: 0.95rem;
}

.vf-sales-content {
  min-width: 0;
  flex: 1;
}

.vf-sales-top {
  display: block;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c86a5;
  margin-bottom: 4px;
  font-weight: 700;
}

.vf-sales-text {
  margin: 0;
  color: #44506f;
  font-size: 0.92rem;
  line-height: 1.35;
  word-break: break-word;
}

.vf-sales-text strong {
  color: #0b1640;
  font-weight: 800;
}

.vf-sales-pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: vfPulse 1.8s infinite;
}

@keyframes vfPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .vf-sales-wrap {
    margin-top: -14px;
    padding: 0 14px;
  }

  .vf-sales-toast {
    width: min(100%, 640px);
    padding: 11px 12px;
    border-radius: 20px;
    gap: 10px;
  }

  .vf-sales-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 0.88rem;
  }

  .vf-sales-text {
    font-size: 0.84rem;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .vf-sales-wrap {
    margin-top: -10px;
    padding: 0 12px;
  }

  .vf-sales-toast {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    padding: 10px 12px;
    gap: 10px;
    align-items: center;
  }

  .vf-sales-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 0.8rem;
  }

  .vf-sales-top {
    font-size: 0.62rem;
    margin-bottom: 3px;
  }

  .vf-sales-text {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .vf-sales-pulse {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .vf-sales-wrap {
    padding: 0 10px;
  }

  .vf-sales-toast {
    padding: 9px 10px;
    gap: 8px;
  }

  .vf-sales-text {
    font-size: 0.73rem;
  }

  .vf-sales-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

/* ══════════════════════════════════════
   ORDER RECEIVED / THANK YOU PAGE
══════════════════════════════════════ */

/* Notice: same vibe as cart */
body.woocommerce-order-received .woocommerce-thankyou-order-received,
body.woocommerce-order-received .woocommerce-notice--success {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  background: #fff !important;
  border: 1.5px solid #e0e4ef !important;
  border-top: none !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  color: #0b1640 !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 0 0 22px !important;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received::after,
body.woocommerce-order-received .woocommerce-notice--success::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 2px !important;
  width: 100% !important;
  background: linear-gradient(135deg, #1e5cff, #3a7bff) !important;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received::before,
body.woocommerce-order-received .woocommerce-notice--success::before {
  display: none !important;
  content: none !important;
}

/* Top overview card */
body.woocommerce-order-received .woocommerce-order-overview {
  list-style: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07) !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

body.woocommerce-order-received .woocommerce-order-overview li {
  padding: 20px 24px !important;
  margin: 0 !important;
  border-right: 1px solid #f0f2f8 !important;
  border-bottom: 1px solid #f0f2f8 !important;
  color: #7f889d !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

body.woocommerce-order-received .woocommerce-order-overview li:nth-child(2n) {
  border-right: none !important;
}

body.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block !important;
  margin-top: 6px !important;
  color: #0b1640 !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}

/* Keep price and euro on same line */
body.woocommerce-order-received .woocommerce-order-overview .amount,
body.woocommerce-order-received .woocommerce-order-overview .woocommerce-Price-amount,
body.woocommerce-order-received .woocommerce-order-overview .woocommerce-Price-currencySymbol,
body.woocommerce-order-received .woocommerce-table--order-details .amount,
body.woocommerce-order-received .woocommerce-table--order-details .woocommerce-Price-amount,
body.woocommerce-order-received .woocommerce-table--order-details .woocommerce-Price-currencySymbol,
body.woocommerce-order-received .shop_table.order_details .amount,
body.woocommerce-order-received .shop_table.order_details .woocommerce-Price-amount,
body.woocommerce-order-received .shop_table.order_details .woocommerce-Price-currencySymbol,
body.woocommerce-order-received bdi {
  display: inline !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
}

/* Main sections */
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 28px 32px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 24px !important;
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title,
body.woocommerce-order-received .woocommerce-customer-details h2 {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 900 !important;
  font-size: 0.95rem !important;
  color: #0b1640 !important;
  margin-bottom: 18px !important;
}

/* Table */
body.woocommerce-order-received .woocommerce-table--order-details,
body.woocommerce-order-received .shop_table.order_details {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

body.woocommerce-order-received .woocommerce-table--order-details th,
body.woocommerce-order-received .woocommerce-table--order-details td,
body.woocommerce-order-received .shop_table.order_details th,
body.woocommerce-order-received .shop_table.order_details td {
  padding: 14px 0 !important;
  border-bottom: 1px solid #f0f2f8 !important;
  color: #0b1640 !important;
  text-align: left !important;
}

body.woocommerce-order-received .woocommerce-table--order-details thead th,
body.woocommerce-order-received .shop_table.order_details thead th {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 0.78rem !important;
  color: #8b93a6 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

/* Product name: make it look like normal text */
body.woocommerce-order-received .woocommerce-table--order-details .product-name a,
body.woocommerce-order-received .shop_table.order_details .product-name a {
  color: #0b1640 !important;
  text-decoration: none !important;
  pointer-events: none !important;
  cursor: default !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
}

/* Qty and totals */
body.woocommerce-order-received .product-quantity,
body.woocommerce-order-received .woocommerce-table--order-details tfoot th,
body.woocommerce-order-received .woocommerce-table--order-details tfoot td,
body.woocommerce-order-received .shop_table.order_details tfoot th,
body.woocommerce-order-received .shop_table.order_details tfoot td {
  color: #0b1640 !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
}

/* Billing/address box */
body.woocommerce-order-received .woocommerce-customer-details address {
  background: #fafbff !important;
  border: 1px dashed #d7ddeb !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  color: #0b1640 !important;
  font-style: normal !important;
  line-height: 1.7 !important;
}

/* Mobile */
@media (max-width: 900px) {
  body.woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-order-received .woocommerce-order-overview li {
    border-right: none !important;
  }
}

@media (max-width: 600px) {

  body.woocommerce-order-received .woocommerce-order-details,
  body.woocommerce-order-received .woocommerce-customer-details {
    padding: 20px !important;
  }

  body.woocommerce-order-received .woocommerce-order-overview li {
    padding: 16px 18px !important;
  }
}