/* =========================================================================
   Voltage — a Bootstrap 5 theme
   Vibrant, modern theme for electronics / gadget affiliate sites, inspired
   by contemporary tech-store visual language: near-monochrome base (black,
   white, soft grey) punched through with one saturated electric blue and a
   red accent for "featured" / "top pick" callouts.

   Palette:  white #FFFFFF · off-white #FAFAFA · tile grey #F1F1F3
             border grey #E7E7EA · ink #0E0E10 · ink-soft #68686F
             electric blue (accent) #0B4CE0 · signal red (ribbon) #E42B45
   Type:     Manrope (display, bold/geometric) + Inter (body)
   Layout:   distinct from Modern Slate / Clean Green — split hero with
             decorative blob graphic, horizontally-scrolling rails for
             guides/blog, oversized two-up category tiles, diagonal corner
             ribbons on product cards.
   Signature: the diagonal corner ribbon (red = Featured, black = Top Pick)
              paired with bold black-outline pill buttons that fill solid
              on hover — carried through every card type for a cohesive,
              retail-forward feel.
   ========================================================================= */

:root {
  --v-surface: #FAFAFA;
  --v-tile: #F1F1F3;
  --v-surface-alt: #FFFFFF;
  --v-ink: #0E0E10;
  --v-ink-soft: #68686F;
  --v-border: #E7E7EA;
  --v-blue: #0B4CE0;
  --v-blue-dark: #0A3EB5;
  --v-blue-rgb: 11, 76, 224;
  --v-red: #E42B45;
  --v-red-dark: #C11F37;
  --v-red-rgb: 228, 43, 69;
  --v-radius-sm: 10px;
  --v-radius: 18px;
  --v-radius-lg: 28px;
  --v-shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.06), 0 1px 1px rgba(14, 14, 16, 0.04);
  --v-shadow: 0 10px 28px rgba(14, 14, 16, 0.09);
  --v-shadow-lg: 0 24px 56px rgba(14, 14, 16, 0.16);
  --v-font-display: "Manrope", "Inter", system-ui, sans-serif;
  --v-font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Retheme Bootstrap 5.3's CSS variable layer so bg-*/btn-*/text-*
     utilities used throughout the templates pick up this palette. */
  --bs-primary: var(--v-blue);
  --bs-primary-rgb: var(--v-blue-rgb);
  --bs-success: var(--v-blue);
  --bs-success-rgb: var(--v-blue-rgb);
  --bs-warning: var(--v-red);
  --bs-warning-rgb: var(--v-red-rgb);
  --bs-dark: var(--v-ink);
  --bs-dark-rgb: 14, 14, 16;
  --bs-body-color: var(--v-ink);
  --bs-body-bg: var(--v-surface);
  --bs-body-font-family: var(--v-font-body);
  --bs-border-radius: var(--v-radius-sm);
  --bs-border-radius-lg: var(--v-radius);
  --bs-link-color: var(--v-blue);
  --bs-link-hover-color: var(--v-blue-dark);
}

/* ---- Base --------------------------------------------------------------- */

body {
  font-family: var(--v-font-body);
  color: var(--v-ink);
  background: var(--v-surface-alt);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--v-font-display);
  color: var(--v-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  color: var(--v-blue);
  text-decoration: none;
}
a:hover { color: var(--v-blue-dark); }

p { color: var(--v-ink); }
.text-muted { color: var(--v-ink-soft) !important; }

::selection { background: rgba(var(--v-blue-rgb), 0.18); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---- Eyebrow / section headings ------------------------------------------ */

.eyebrow-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-blue);
}

.section-title {
  font-size: clamp(1.7rem, 1.35rem + 1.4vw, 2.5rem);
  font-weight: 800;
  margin-top: 0.35rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--v-ink-soft);
  font-size: 1.02rem;
}

.underline-link {
  color: var(--v-ink);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid var(--v-ink);
  padding-bottom: 2px;
}
.underline-link:hover { color: var(--v-blue); border-color: var(--v-blue); }

.disclaimer-text { color: var(--v-ink-soft) !important; }

.prose-content { line-height: 1.8; }
.prose-content img { max-width: 100%; height: auto; border-radius: var(--v-radius-sm); }

/* ---- Announcement bar (topbar) -------------------------------------------- */

.announce-bar {
  background: var(--v-ink);
  color: #D2D2D6;
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.announce-link { color: #D2D2D6; text-decoration: none; }
.announce-link:hover { color: #fff; }
.announce-marquee {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

/* ---- Navbar layout: logo left / nav centered / search right (desktop),
   toggler + logo left / search right (mobile) ---------------------------- */

.site-navbar .container > .d-flex {
  position: relative;
}

.site-navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.center-nav {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Desktop: 3-column grid guarantees true centering regardless of the
   width of the nav links or the search icon. */
@media (min-width: 992px) {
  .site-navbar .container > .d-flex {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .site-navbar .logo {
    grid-column: 1;
    margin: 0 !important;
  }

  .site-navbar .navbar-collapse {
    grid-column: 2;
    justify-self: center;
    margin-left: 40px;
  }

  .site-navbar .nav-icon-btn.order-lg-3 {
    grid-column: 3;
    justify-self: end;
    margin-left: 0 !important;
  }
}

/* Mobile: plain flex row — toggler, then logo, then search icon pinned
   right via margin-left: auto. The collapsible nav panel drops to its
   own full-width row underneath when expanded. */
@media (max-width: 991.98px) {

    /* Mobile navbar becomes a 2-row grid */
    .site-navbar .container > .d-flex {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        width: 100%;
        align-items: center;
    }

    /* Toggle - left */
    .site-navbar .navbar-toggler {
        grid-column: 1;
        grid-row: 1;
        order: unset !important;
    }

    /* Logo - centre */
    .site-navbar .navbar-brand {
        grid-column: 2;
        grid-row: 1;
        order: unset !important;
        justify-self: center;
        padding-right: 0 !important;
    }

    /* Mobile search icon - right */
    .site-navbar .nav-icon-btn.order-3 {
        grid-column: 3;
        grid-row: 1;
        order: unset !important;
        margin-left: 0;
        justify-self: end;
    }

    /* Mobile menu - full second row */
    .site-navbar .navbar-collapse {
        grid-column: 1 / -1;
        grid-row: 2;
        order: unset !important;
        width: 100%;
        flex-basis: auto !important;
    }

    /* Make the mobile menu full width */
    .site-navbar .navbar-collapse .navbar-nav {
        width: 100%;
    }

    /* Optional: make menu links easier to tap */
    .site-navbar .navbar-collapse .nav-link {
        display: block;
        padding: 10px 0;
    }
}

.site-navbar {
  background: #fff;
  border-bottom: 1px solid var(--v-border);
  padding: 0.85rem 0;
  z-index: 1030;
}

.site-navbar .logo {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--v-ink);
  letter-spacing: -0.02em;
  gap: 0.6rem;
  text-decoration: none;
}
.site-navbar .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.center-nav {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.center-nav .nav-link {
  color: var(--v-ink);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  position: relative;
}
.center-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--v-blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.center-nav .nav-link:hover { color: var(--v-blue); }
.center-nav .nav-link:hover::after { transform: scaleX(1); }

.nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v-ink);
  background: var(--v-tile);
  border: 1px solid var(--v-border);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-icon-btn:hover { background: var(--v-ink); color: #fff; }

/* ---- Buttons ----------------------------------------------------------------- */

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-volt {
  background: var(--v-blue);
  border: 1.5px solid var(--v-blue);
  color: #fff;
}
.btn-volt:hover {
  background: var(--v-blue-dark);
  border-color: var(--v-blue-dark);
  color: #fff;
  box-shadow: 0 8px 18px rgba(var(--v-blue-rgb), 0.28);
}

.btn-volt-outline {
  background: transparent;
  border: 1.5px solid var(--v-ink);
  color: var(--v-ink);
}
.btn-volt-outline:hover {
  background: var(--v-ink);
  border-color: var(--v-ink);
  color: #fff;
}

/* Re-skin legacy bootstrap semantic buttons still referenced in data */
.btn-success {
  background: var(--v-blue);
  border-color: var(--v-blue);
  border-radius: 999px;
  font-weight: 700;
}
.btn-success:hover { background: var(--v-blue-dark); border-color: var(--v-blue-dark); }
.btn-warning {
  background: var(--v-red);
  border-color: var(--v-red);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}
.btn-outline-success {
  border-radius: 999px;
  color: var(--v-blue-dark);
  border-color: var(--v-blue);
}
.btn-outline-success:hover { background: var(--v-blue); border-color: var(--v-blue); color: #fff; }

/* ---- Hero (split layout with decorative blobs) -------------------------------- */

.hero-split {
  background: var(--v-surface-alt);
  overflow: hidden;
  position: relative;
}
.hero-title {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem);
  color: var(--v-ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--v-ink-soft);
  max-width: 520px;
}
.hero-blob-wrap {
  position: relative;
  height: 360px;
}
.hero-blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  background: linear-gradient(135deg, var(--v-blue), #5B7CFF);
  width: 340px;
  height: 340px;
  top: 10px;
  right: 40px;
  opacity: 0.14;
  animation: v-blob-float 9s ease-in-out infinite;
}
.hero-blob-alt {
  width: 220px;
  height: 220px;
  right: 140px;
  top: 90px;
  background: linear-gradient(135deg, var(--v-red), #FF7A8C);
  opacity: 0.12;
  animation-delay: 2s;
}
@keyframes v-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14px, 16px) scale(1.04); }
}

/* ---- Horizontal scrolling rail (guides / blog) ---------------------------------- */

.rail-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.5rem;
}
.rail-scroll::-webkit-scrollbar { height: 6px; }
.rail-scroll::-webkit-scrollbar-thumb { background: var(--v-border); border-radius: 999px; }

.rail-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 1rem 0.5rem;
  width: max-content;
}
.rail-card {
  width: 260px;
  flex: 0 0 auto;
  color: var(--v-ink);
  display: block;
}
.rail-card-wide { width: 340px; }
.rail-card-img {
  position: relative;
  border-radius: var(--v-radius);
  overflow: hidden;
  background: var(--v-tile);
  box-shadow: var(--v-shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.rail-card:hover .rail-card-img {
  box-shadow: var(--v-shadow);
  transform: translateY(-3px);
}
.rail-card:hover .rail-card-img img { transform: scale(1.05); }
.rail-card h3 { color: var(--v-ink); font-size: 1rem; }

/* ---- Category tiles (large, 2-up) ------------------------------------------------ */

.bg-tile-section { background: var(--v-surface); }

.category-tile-lg {
  background: var(--v-tile);
  border-radius: var(--v-radius-lg);
  padding: 2.5rem 2rem 0;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  color: var(--v-ink);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-tile-lg:hover {
  transform: translateY(-4px);
  box-shadow: var(--v-shadow);
}
.category-tile-lg-text h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.category-tile-lg-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 1.5rem;
}
.category-tile-lg-img img {
  max-width: 88%;
  max-height: 260px;
  object-fit: contain;
}

/* ---- Product cards (with diagonal corner ribbon) --------------------------------- */

.product-card {
  background: var(--v-surface-alt);
  border-radius: var(--v-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.product-card, .product-card { color: var(--v-ink); }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v-shadow);
}

.product-card-img {
  position: relative;
  background: var(--v-tile);
  overflow: hidden;
  border-radius: var(--v-radius);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body { padding: 1rem 0.25rem; }
.product-card-body h3 a { color: var(--v-ink); }

.product-card-img-link { display: block; }

.corner-ribbon {
  /* Explicitly cancel Bootstrap's ".ratio > *" rule (which forces
     width/height/left/top on every direct child of a .ratio box) since
     this ribbon is nested inside product/rail image wrappers that use
     the .ratio utility. */
  position: absolute;
  top: 14px;
  left: auto;
  right: -34px;
  width: auto;
  height: auto;
  transform: rotate(45deg);
  background: var(--v-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 2.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
  white-space: nowrap;
}
.corner-ribbon-winner { background: var(--v-ink); }
.corner-ribbon-blue { background: var(--v-blue); }

/* Defensive: Bootstrap's .ratio forces direct children to position:absolute;
   inset:0, which would stretch the ribbon full-size if it were ever nested
   inside a ratio wrapper. Keep it pinned to its intended corner regardless. */
.ratio > .corner-ribbon {
  inset: auto;
  top: 14px;
  right: -34px;
  width: auto;
  height: auto;
}

/* ---- Badges / tag pills ----------------------------------------------------------- */

.tag-pill {
  background: var(--v-ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  padding: 0.4em 0.85em;
  border-radius: 999px;
}
.badge.bg-primary { background: var(--v-blue) !important; }
.badge.bg-light { background: var(--v-tile) !important; color: var(--v-ink) !important; border: 1px solid var(--v-border); }

.rating-stars i { color: var(--v-ink); font-size: 0.85rem; }
.rating-stars i.fa-regular { color: #D2D2D6; }

/* ---- USP strip --------------------------------------------------------------------- */

.usp-strip { background: var(--v-tile); }
.usp-icon {
  font-size: 1.6rem;
  color: var(--v-blue);
  margin-bottom: 0.6rem;
  display: block;
}
.usp-strip p { color: var(--v-ink-soft); }

/* ---- Guide page: quick comparison + review cards -------------------------------------- */

.lead-intro { font-size: 1.1rem; color: var(--v-ink-soft); line-height: 1.8; }
.article-title { font-family: var(--v-font-display); font-weight: 800; letter-spacing: -0.01em; }

.article-hero-img, .product-hero-img {
  border-radius: var(--v-radius);
  overflow: hidden;
  height: 420px;
  background: var(--v-tile);
}
.article-hero-img img, .product-hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.product-hero-img { height: auto; }
.product-hero-img img { object-fit: contain; background: var(--v-tile); }

.quick-comparison {
  background: var(--v-tile);
  border-radius: var(--v-radius-lg);
}

.quick-compare-thumb { width: 120px; height: 120px; }
.quick-compare-thumb img { width: 100%; height: 100%; object-fit: contain; }

.price-tag {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--v-ink);
}

.review-card-header {
  background: var(--v-tile);
  color: var(--v-ink);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}
.review-card-img { max-height: 320px; object-fit: contain; }
.review-verdict { line-height: 1.75; color: var(--v-ink-soft); }
.pros-heading { color: var(--v-blue-dark); }
.cons-heading { color: var(--v-red-dark); }
.specs-toggle { color: var(--v-ink) !important; }

.conclusion-box {
  background: var(--v-ink);
  border-radius: var(--v-radius-lg);
}
.conclusion-box h2 { color: #fff; }
.conclusion-box p { color: rgba(255, 255, 255, 0.78); line-height: 1.8; }

.volt-accordion .accordion-item {
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--v-shadow-sm);
}
.volt-accordion .accordion-button { background: var(--v-surface-alt); color: var(--v-ink); font-weight: 700; }
.volt-accordion .accordion-button:not(.collapsed) {
  background: var(--v-tile);
  color: var(--v-blue-dark);
  box-shadow: none;
}
.volt-accordion .accordion-button:focus { box-shadow: none; }

/* ---- Pagination ------------------------------------------------------------------------ */

.volt-pagination .page-link {
  border: none;
  color: var(--v-ink-soft);
  font-weight: 700;
  margin: 0 3px;
  border-radius: 999px;
}
.volt-pagination .page-item.active .page-link { background: var(--v-ink); color: #fff; }
.volt-pagination .page-item.disabled .page-link { color: #CFCFD4; }

/* ---- Contact page ------------------------------------------------------------------------- */

.contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--v-tile);
  color: var(--v-blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.policy-meta { color: var(--v-ink-soft); }

/* ---- Links page --------------------------------------------------------------------------- */

.link-wrapper {
  background: var(--v-surface-alt);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.link-wrapper-div .link:hover .link-wrapper {
  transform: translateY(-2px);
  box-shadow: var(--v-shadow);
}
.link-wrapper-div { margin-bottom: 0.85rem; }

/* ---- Forms / search modal ------------------------------------------------------------------- */

.form-control { border-radius: var(--v-radius-sm); border-color: var(--v-border); }
.form-control:focus {
  border-color: var(--v-blue);
  box-shadow: 0 0 0 0.2rem rgba(var(--v-blue-rgb), 0.15);
}
.input-group-text { border-radius: var(--v-radius-sm); background: var(--v-tile); border-color: var(--v-border); }

.search-modal-content { border-radius: var(--v-radius-lg); box-shadow: var(--v-shadow-lg); }

.volt-alert {
  border-radius: var(--v-radius-sm);
  background: var(--v-tile);
  color: var(--v-ink);
  border: 1px solid var(--v-border);
}

/* ---- Footer --------------------------------------------------------------------------------- */

.site-footer { background: var(--v-tile); color: var(--v-ink); }
.footer-brand {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--v-ink);
}
.footer-brand-mark { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.footer-heading {
  color: var(--v-ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 800;
}
.footer-link-list li { margin-bottom: 0.6rem; color: var(--v-ink-soft); }
.footer-link-list a { color: var(--v-ink-soft); }
.footer-link-list a:hover { color: var(--v-blue); }
.footer-newsletter-text { color: var(--v-ink-soft); font-size: 0.92rem; }
.footer-subscribe .form-control { background: #fff; }
.footer-subscribe .input-group-text { background: var(--v-ink); color: #fff; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--v-border);
  color: var(--v-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-socials a:hover { background: var(--v-ink); color: #fff; }

.footer-bottom {
  background: var(--v-ink);
  color: #B8B8BE;
  font-size: 0.85rem;
}
.legal-links { color: #B8B8BE; }
.legal-links:hover { color: #fff; }

/* ---- Responsive tweaks ------------------------------------------------------------------------ */

@media (max-width: 991.98px) {
  .site-navbar { padding: 0.65rem 0; }
  .center-nav { gap: 0; flex-direction: column; }
  .center-nav .nav-link { padding: 0.7rem 0.25rem; }
  .category-tile-lg { min-height: 320px; padding: 2rem 1.5rem 0; }
}

/* ---- Featured products: row layout, image left / name+price right ---------------- */

.product-v17-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.product-v17-row-img-link {
  display: block;
  flex: 0 0 auto;
  width: 80px;
  overflow: hidden;
  border-radius: var(--v-radius-sm);
}

.product-v17-row-img {
  position: relative;
  background: var(--v-tile);
  overflow: hidden;
}

.product-v17-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0, 0, 0.3, 1);
}

.hover-style--scale-up:hover .product-v17-row-img img {
  transform: scale(1.08);
}

.product-v17-row-body {
  min-width: 0;
}

.product-v17-row-title {
  font-family: var(--v-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--v-ink);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-v17-price {
  font-weight: 700;
  font-size: 0.9rem;
}

.product-v17-price span {
  color: var(--v-blue);
}

.product-v17-price del {
  color: var(--v-ink-soft);
  font-weight: 500;
  margin-left: 0.35rem;
}

@media (max-width: 767.98px) {
  .product-v17-row-img-link { width: 64px; }
}

/* ---- Buying guide page: Novqo-style redesign --------------------------------- */

.guide-hero {
  background: var(--v-tile);
  padding-bottom: 1rem;
}

.guide-title {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--v-ink);
}

.lead-intro {
  font-size: 1.15rem;
  color: var(--v-ink-soft);
  line-height: 1.75;
  max-width: 780px;
}

.article-hero-img {
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  height: 440px;
  background: var(--v-tile);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quick list */

.quick-comparison {
  background: var(--v-tile);
  border-radius: var(--v-radius-lg);
}

.quick-list-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--v-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.quick-compare-card {
  background: var(--v-surface-alt);
  border-radius: var(--v-radius);
  overflow: hidden;
  box-shadow: var(--v-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quick-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v-shadow);
}
.quick-compare-card.is-winner {
  box-shadow: 0 0 0 2px var(--v-ink), var(--v-shadow-sm);
}

.quick-compare-body { padding: 1.5rem 1.25rem 1.25rem; }

.quick-compare-thumb {
  width: 130px;
  height: 130px;
  border-radius: var(--v-radius-sm);
  background: var(--v-tile);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.quick-compare-thumb img { width: 100%; height: 100%; object-fit: contain; }

.price-tag {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--v-ink);
}

/* In-depth review cards */

.review-card {
  background: var(--v-surface-alt);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  box-shadow: var(--v-shadow-sm);
  position: relative;
  transition: box-shadow 0.2s ease;
}
.review-card:hover { box-shadow: var(--v-shadow); }
.review-card.is-winner { box-shadow: 0 0 0 2px var(--v-ink), var(--v-shadow-sm); }

.review-card-header {
  background: var(--v-ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
}

.review-card-img-wrap {
  background: var(--v-tile);
  border-radius: var(--v-radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.review-card-img { max-height: 260px; width: 100%; object-fit: contain; }

.review-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--v-blue);
  color: #fff;
  font-size: 0.85rem;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.review-verdict { line-height: 1.75; color: var(--v-ink-soft); }
.pros-heading { color: var(--v-blue-dark); }
.cons-heading { color: var(--v-red-dark); }
.specs-toggle { color: var(--v-ink) !important; text-decoration: none; }

/* FAQ + conclusion */

.volt-accordion .accordion-item {
  border: none;
  border-radius: var(--v-radius) !important;
  overflow: hidden;
  background: var(--v-surface-alt);
  box-shadow: var(--v-shadow-sm);
}
.volt-accordion .accordion-button {
  background: var(--v-surface-alt);
  color: var(--v-ink);
  font-weight: 700;
  padding: 1.1rem 1.4rem;
}
.volt-accordion .accordion-button:not(.collapsed) {
  background: var(--v-tile);
  color: var(--v-blue-dark);
  box-shadow: none;
}
.volt-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }

.conclusion-box {
  background: var(--v-ink);
  border-radius: var(--v-radius-lg);
}
.conclusion-box h2 { color: #fff; }
.conclusion-box p { color: rgba(255,255,255,0.78); line-height: 1.8; }

/* ---- Home page v2: bigger, bolder sections --------------------------------- */

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
@media (max-width: 767.98px) {
  .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
}

/* Hero v2 */

.hero-v2 {
  position: relative;
  overflow: hidden;
  background: var(--v-surface-alt);
}

.hero-v2-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--v-border) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-v2-title {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.7rem + 3vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--v-ink);
}

.hero-v2-lead {
  font-size: 1.2rem;
  color: var(--v-ink-soft);
  max-width: 560px;
}

.hero-v2-trust {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--v-ink-soft);
}
.hero-v2-trust i { color: var(--v-blue); margin-right: 0.3rem; }

/* Category tiles v2: numbered */

.category-tile-lg {
  position: relative;
}
.category-tile-lg-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(14, 14, 16, 0.1);
  line-height: 1;
}

/* USP icon circles */

.usp-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--v-blue);
  color: #fff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

/* Closing CTA banner */

.cta-banner {
  background: var(--v-ink);
  color: #fff;
}
.cta-banner-title {
  font-family: var(--v-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  color: #fff;
}
.cta-banner-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}
.btn-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-cta-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--v-ink);
}
