/* =============================================================
   VAPE STATION WIDGETS — Global Stylesheet
   All default styles live here. Elementor controls override
   via generated CSS (no inline style conflicts possible).
   ============================================================= */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* ── RESETS ── */
.vape-station-widget,
.vape-station-widget * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
.vape-station-widget img { display: block; max-width: 100%; }
.vape-station-widget a   { text-decoration: none; }
.vape-station-widget ul  { list-style: none; padding: 0; margin: 0; }
.vape-station-widget h1,
.vape-station-widget h2,
.vape-station-widget h3,
.vape-station-widget h4,
.vape-station-widget p   { margin: 0; }

/* ── MATERIAL SYMBOLS ── */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* =============================================================
   VS HERO
   ============================================================= */
.vs-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 800px;
    overflow: hidden;
    background-color: #0f172a;
    font-family: 'Space Grotesk', sans-serif;
}
.vs-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.vs-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.5) 60%, transparent 100%);
}
.vs-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 32px;
}
.vs-hero__content   { max-width: 800px; }
.vs-hero__tagline {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 99px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3525cd;
    background: rgba(53,37,205,0.1);
}
.vs-hero__title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 28px;
}
.vs-hero__desc {
    font-size: 20px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 48px;
    max-width: 600px;
}
.vs-hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.vs-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    border-radius: 12px;
    background: #3525cd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 16px 40px rgba(53,37,205,0.35);
    transition: opacity 0.2s, transform 0.2s;
}
.vs-hero__btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.vs-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}
.vs-hero__play-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.vs-hero__btn-secondary:hover .vs-hero__play-ring { background: rgba(255,255,255,0.15); }

@media (max-width: 1024px) { .vs-hero__title  { font-size: 56px; } }
@media (max-width: 768px)  {
    .vs-hero                { min-height: auto; }
    .vs-hero__title         { font-size: 40px; }
    .vs-hero__desc          { font-size: 17px; }
    .vs-hero__inner         { padding: 80px 24px; }
    .vs-hero__btn-primary   { padding: 16px 32px; }
}

/* =============================================================
   VS TRUST BADGES
   ============================================================= */
.vs-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid #f1f5f9;
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
}
.vs-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}
.vs-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3525cd;
    font-size: 22px;
    flex-shrink: 0;
}
.vs-badge__icon svg { width: 22px; height: 22px; }
.vs-badge__text {
    font-size: 13px;
    font-weight: 700;
    color: #191c1d;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .vs-badges { justify-content: center; gap: 32px; }
}
@media (max-width: 767px) {
    .vs-badges {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .vs-badge {
        width: 100%;
    }
}

/* =============================================================
   VS BENTO CATEGORIES
   ============================================================= */
.vs-bento-wrap {
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
}
.vs-bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.vs-bento-header__left { max-width: 520px; }
.vs-bento__heading {
    font-size: 32px;
    font-weight: 700;
    color: #191c1d;
    margin-bottom: 12px;
    line-height: 1.2;
}
.vs-bento__subheading {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}
.vs-bento-header__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3525cd;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 8px;
    transition: opacity 0.2s;
}
.vs-bento-header__link:hover { opacity: 0.75; }

/* Grid */
.vs-bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 680px;
}
/* First card spans both rows */
.vs-bento-card--large {
    grid-row: 1 / span 2;
}
.vs-bento-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s;
}
.vs-bento-card:hover { transform: scale(1.01); }
.vs-bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}
.vs-bento-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vs-bento__card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.vs-bento__card-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}
.vs-bento-card--small .vs-bento__card-title { font-size: 22px; }
.vs-bento__card-btn {
    display: inline-block;
    width: fit-content;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.35);
    padding-bottom: 3px;
    transition: border-color 0.2s;
    margin-top: 4px;
}
.vs-bento__card-btn:hover { border-color: #ffffff; }

@media (max-width: 1024px) {
    .vs-bento-grid { height: auto; grid-template-rows: 500px 260px 260px; }
}
@media (max-width: 768px) {
    .vs-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .vs-bento-card--large { grid-row: auto; height: 420px; }
    .vs-bento-card--small { height: 280px; }
    .vs-bento__card-title { font-size: 24px !important; }
}

/* =============================================================
   VS PRODUCT GRID
   ============================================================= */
.vs-pgrid {
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
}
.vs-pgrid__heading {
    font-size: 32px;
    font-weight: 700;
    color: #191c1d;
    margin-bottom: 40px;
}
.vs-pgrid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.vs-pgrid__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.vs-pgrid__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.vs-pgrid__img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    background: #f1f5f9;
}
.vs-pgrid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vs-pgrid__card:hover .vs-pgrid__img { transform: scale(1.08); }
.vs-pgrid__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 4px 8px;
}
.vs-pgrid__name {
    font-size: 18px;
    font-weight: 500;
    color: #191c1d;
    line-height: 1.3;
}
.vs-pgrid__price {
    font-size: 20px;
    font-weight: 700;
    color: #3525cd;
}

@media (max-width: 1200px) { .vs-pgrid__grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px)  { .vs-pgrid__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .vs-pgrid__grid { grid-template-columns: 1fr; } }

/* =============================================================
   VS BLOG GRID
   ============================================================= */
.vs-blog {
    background: #020617;
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
}
.vs-blog__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 32px;
}
.vs-blog__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 56px;
}
.vs-blog__accent {
    width: 48px;
    height: 2px;
    background: #3525cd;
    flex-shrink: 0;
}
.vs-blog__heading {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}
.vs-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.vs-blog__card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    text-decoration: none;
    transition: transform 0.3s;
}
.vs-blog__card:hover { transform: translateY(-6px); }
.vs-blog__img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    background: #1e293b;
    margin-bottom: 24px;
}
.vs-blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.vs-blog__card:hover .vs-blog__img { transform: scale(1.08); }
.vs-blog__card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 4px;
}
.vs-blog__card-tag {
    font-size: 10px;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.vs-blog__card-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
}
.vs-blog__card:hover .vs-blog__card-title { color: #818cf8; }
.vs-blog__card-excerpt {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) { .vs-blog__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  {
    .vs-blog__grid  { grid-template-columns: 1fr; gap: 40px; }
    .vs-blog__inner { padding: 56px 20px; }
}

/* =============================================================
   VS FOOTER
   ============================================================= */
.vs-footer {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
}
.vs-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 32px 0;
}
.vs-footer__columns {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.vs-footer__logo {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.vs-footer__tagline {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    max-width: 280px;
}
.vs-footer__col-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f172a;
    margin-bottom: 24px;
}
.vs-footer__link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vs-footer__link {
    font-size: 14px;
    color: #64748b;
    transition: color 0.2s;
}
.vs-footer__link:hover { color: #3525cd; }
/* Bottom bar */
.vs-footer__bottom {
    border-top: 1px solid #e2e8f0;
    padding: 32px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.vs-footer__copyright { font-size: 14px; color: #94a3b8; }
.vs-footer__social {
    display: flex;
    align-items: center;
    gap: 24px;
}
.vs-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: color 0.2s;
    line-height: 1;
}
.vs-footer__social-link:hover { color: #3525cd; }
.vs-footer__social-link i   { font-size: 18px; }
.vs-footer__social-link svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 1024px) {
    .vs-footer__columns { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .vs-footer__columns  { grid-template-columns: 1fr; }
    .vs-footer__inner    { padding: 56px 20px 0; }
    .vs-footer__bottom   { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   VS HEADER
   ============================================================= */
.vs-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #f1f5f9;
    font-family: 'Space Grotesk', sans-serif;
}
.vs-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.vs-header__logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #0f172a;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hierarchical Nav Styling - Defensive Reset */
.vs-header__nav {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    flex-wrap: nowrap !important;
    flex: 1 !important;
    justify-content: center !important;
}
.vs-header__nav-item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.vs-header__nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #64748b !important; 
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: color 0.2s !important;
    background: none !important;
}
.vs-header__nav-link:hover {
    color: #3525cd !important;
}
.vs-nav-arrow {
    font-size: 16px !important;
    opacity: 0.5 !important;
    margin-left: 2px !important;
}

/* Submenu Dropdown - Forced Hidden */
.vs-header__submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-top: 10px !important;
    z-index: 9999 !important;
    display: none !important; /* Force hidden */
    width: auto !important;
}
.vs-header__nav-item:hover > .vs-header__submenu {
    display: block !important; /* Show on hover */
}
.vs-header__submenu-inner {
    background: #ffffff !important;
    min-width: 180px !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
    border: 1px solid #e2e8f0 !important;
    padding: 8px 0 !important;
}
.vs-header__submenu-link {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    text-align: left !important;
    white-space: nowrap !important;
    background: none !important;
}
.vs-header__submenu-link:hover {
    color: #3525cd !important;
    background: #f8fafc !important;
    padding-left: 24px !important;
}

.vs-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.vs-header__icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
}
.vs-header__icon-btn:hover { color: #3525cd; }
.vs-header__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 99px;
    background: #3525cd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.vs-header__cta:hover { opacity: 0.88; }
/* Burger */
.vs-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.vs-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
}
/* Mobile */
@media (max-width: 1024px) {
    .vs-header__nav     { display: none; }
    .vs-header__burger  { display: flex; }
    .vs-header__nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px 32px;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 20px;
        z-index: 999;
    }
}
@media (max-width: 600px) {
    .vs-header__inner   { padding: 0 20px; }
    .vs-header__actions .vs-header__cta { display: none; }
}

/* Search Overlay */
.vs-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999; /* Increased to stay on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vs-search-overlay--open {
    opacity: 1;
    visibility: visible;
}
.vs-search-overlay__inner {
    width: 100%;
    max-width: 900px;
    padding: 60px 40px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vs-search-overlay--open .vs-search-overlay__inner {
    transform: translateY(0);
}
.vs-search-overlay__close {
    position: absolute;
    top: -40px;
    right: 40px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.vs-search-overlay__close:hover { 
    opacity: 1; 
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}
.vs-search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    padding: 24px 0;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: all 0.4s;
    text-align: center;
}
.vs-search-input::placeholder {
    color: rgba(255,255,255,0.2);
}
.vs-search-input:focus { 
    border-color: #3525cd;
    padding-bottom: 32px;
}
.vs-search-hint {
    margin-top: 32px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.vs-search-hint::before,
.vs-search-hint::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* AJAX Search Results */
.vs-search-results {
    margin-top: 60px;
    width: 100%;
}
.vs-search-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.vs-search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}
.vs-search-result-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: #3525cd;
    transform: translateY(-4px);
}
.vs-search-result-item__img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #1e293b;
    flex-shrink: 0;
}
.vs-search-result-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vs-search-result-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vs-search-result-item__title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}
.vs-search-result-item__price {
    font-size: 14px;
    font-weight: 700;
    color: #818cf8;
}
.vs-search-loading,
.vs-search-no-results {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .vs-search-results__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .vs-search-results__grid { grid-template-columns: 1fr; }
    .vs-search-input { font-size: 32px; }
}

/* Cart Badge */
.vs-header__cart {
    position: relative;
}
.vs-header__cart-inner {
    position: relative;
    display: flex;
    align-items: center;
}
.vs-header__cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #3525cd;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.vs-header__cart-count:empty,
.vs-header__cart-count[data-count="0"],
.vs-header__cart-count:contains("0") {
    display: none;
}
/* Fallback hide via JS or just hide if 0 */
.vs-header__cart-count {
    opacity: 1;
    transition: opacity 0.2s;
}
.vs-header__cart-count:is(:empty, :contains("0")) { display: none; }

/* =============================================================
   VS BRAND SLIDER (Redesigned)
   ============================================================= */
.vs-brands {
    width: 100%;
    background: #0f172a;
    padding: 60px 0;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}
.vs-brands__top-line,
.vs-brands__bottom-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.vs-brands__top-line { top: 0; }
.vs-brands__bottom-line { bottom: 0; }

.vs-brands__label-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.vs-brands__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.vs-brands__viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.vs-brands__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: vs-brands-scroll 30s linear infinite;
}
.vs-brands__track--pauseable:hover {
    animation-play-state: paused;
}
@keyframes vs-brands-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.vs-brands__item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    flex-shrink: 0;
}
.vs-brands__logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}
.vs-brands__item:hover .vs-brands__logo-img {
    opacity: 1;
    filter: grayscale(0%);
}
.vs-brands__name {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    transition: color 0.4s;
}
.vs-brands__item:hover .vs-brands__name {
    color: #ffffff;
}

.vs-brands__dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin-left: 80px;
}
.vs-brands__item:last-child .vs-brands__dot {
    display: none;
}

/* =============================================================
   VS TRUSTPILOT (Redesigned)
   ============================================================= */
.vs-tp {
    background: #020617;
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    padding: 100px 0;
}
.vs-tp__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.vs-tp__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.vs-tp__heading {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.vs-tp__header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}
.vs-tp__score-wrap {
    text-align: right;
}
.vs-tp__score {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-top: 8px;
}
.vs-tp__score-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vs-tp-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #00b67a;
    color: #fff;
    font-size: 12px;
    margin-right: 2px;
}

.vs-tp__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.vs-tp__card {
    background: #0f172a;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.vs-tp__card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.vs-tp__review-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
.vs-tp__review-body {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    flex: 1;
}
.vs-tp__card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.vs-tp__reviewer {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
}
.vs-tp__date {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.vs-tp__verified {
    font-size: 10px;
    font-weight: 700;
    color: #00b67a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .vs-tp__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .vs-tp__grid { grid-template-columns: 1fr; }
    .vs-tp__header { flex-direction: column; align-items: flex-start; gap: 32px; }
    .vs-tp__score-wrap { text-align: left; }
    .vs-tp__heading { font-size: 32px; }
}

/* =============================================================
   PRODUCT LOOP CARD (GLOBAL)
   ============================================================= */
.vs-loop-card { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: all 0.3s; border: 1px solid transparent; background: #fff; height: 100%; display: flex; flex-direction: column; }
.vs-loop-card:hover { border-color: rgba(53, 37, 205, 0.1); box-shadow: 0 12px 32px rgba(53, 37, 205, 0.08); }

.vs-group { position: relative; overflow: hidden; background: #f3f4f5; display: flex; align-items: center; justify-content: center; }
.vs-loop-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vs-loop-card:hover .vs-loop-img { transform: scale(1.1); }

.vs-wishlist-wrapper .yith-wcwl-add-to-wishlist { margin-top: 0; }
.vs-wishlist-wrapper .yith-wcwl-add-button > a,
.vs-wishlist-wrapper .yith-wcwl-wishlistaddedbulk > a,
.vs-wishlist-wrapper .yith-wcwl-wishlistexistsbulk > a {
    background: #fff !important;
    color: #777587 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
}
.vs-wishlist-wrapper .yith-wcwl-add-button > a::before {
    content: 'favorite';
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0;
}
.vs-wishlist-wrapper .yith-wcwl-wishlistexistsbulk > a::before,
.vs-wishlist-wrapper .yith-wcwl-wishlistaddedbulk > a::before {
    content: 'favorite';
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 1;
    color: #ef4444;
}
.vs-wishlist-wrapper a span { display: none !important; }

.vs-product-title { margin: 0 0 20px; font-weight: 600; transition: color 0.3s; line-height: 1.4; min-height: 6rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; white-space: normal; }
.vs-loop-card:hover .vs-product-title { color: #3525cd; }

.vs-add-to-cart { width: 44px; height: 44px; border-radius: 50%; background: #3525cd; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s; }
.vs-add-to-cart:hover { background: #191c1d; transform: translateY(-2px); }

.vs-product-price { font-weight: 600; color: #191c1d; }
.vs-product-price del { font-size: 0.7em; opacity: 0.6; margin-right: 8px; font-weight: 400; text-decoration: line-through; }
.vs-product-price ins { text-decoration: none; }

/* =============================================================
   VS TOP BADGE SLIDER
   ============================================================= */
.vs-top-badge-section {
    width: 100%;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}
.vs-top-badge__item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vs-top-badge__item-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.vs-top-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vs-top-badge__icon i,
.vs-top-badge__icon svg {
    width: 20px;
    height: 20px;
    font-size: 20px;
}
.vs-top-badge__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}
.vs-top-badge__custom {
    width: 100%;
}
.vs-top-badge__custom iframe {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
