/*
Theme Name: Astra VetiSimLab
Description: VetiSimLab child theme for Astrahh
Author: DiaMedical USA
Template: astra
Version: 1.1.2
*/

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

/* ===================================================
   BRAND TOKENSh
   =================================================== */
:root {
    --vsm-green:       #355E3B;h
    --vsm-green-light: #a8c69f;
    --vsm-teal:        #a8c69f;
    --vsm-cream:       #F7F2E8;
    --vsm-blue:        #3e87cb;
    --vsm-orange:      #E8702A;
    --vsm-dark:        #1a2a1b;
    --vsm-white:       #ffffff;
    --vsm-text:        #2c2c2c;
    --vsm-radius:      12px;
    --vsm-font:        'Figtree', sans-serif;
    --vsm-gutter:      12px;
    --vsm-max:         1320px;
    --vsm-header-h:    68px;
}

/* ===================================================
   BASE
   =================================================== */
body { font-family: var(--vsm-font); color: var(--vsm-text); margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===================================================
   ASTRA CONTAINER FIX
   .home body class is added by WordPress on the front page.
   Override Astra's flex-row container so homepage sections stack.
   =================================================== */
.home .ast-container,
.home .site-content > .ast-container,
.home .entry-content > .ast-container {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Kill the Astra page title area on home */
.home .ast-article-single,
.home .entry-header,
.home .page-header {
    display: none !important;
}

/* Ensure homepage sections are full-width block elements */
.vsm-announcement-bar,
.vsm-products-section,
.vsm-trust-bar {
    display: block;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Trust bar not in XD — hidden */
.vsm-trust-bar { display: none !important; }

/* ===================================================
   CUSTOM HEADER
   =================================================== */
.vsm-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    height: var(--vsm-header-h);
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vsm-header-inner {
    max-width: var(--vsm-max);
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.vsm-header-logo { flex-shrink: 0; }
.vsm-header-logo a { display: flex; align-items: center; gap: 10px; }
.vsm-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--vsm-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}
.vsm-logo-veti { color: var(--vsm-blue); }
.vsm-logo-simlab { color: var(--vsm-orange); }

/* Nav */
.vsm-header-nav { flex: 1; display: flex; justify-content: center; }

.vsm-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vsm-nav-list li a {
    color: var(--vsm-text);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.vsm-nav-list li a:hover,
.vsm-nav-list li.current-menu-item > a {
    background: #f0f0f0;
    color: var(--vsm-green);
}

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

.vsm-cart-btn {
    position: relative;
    color: var(--vsm-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.vsm-cart-btn:hover { background: #f0f0f0; color: var(--vsm-green); }

.vsm-cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--vsm-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.vsm-header-cta {
    background: var(--vsm-orange);
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    transition: background 0.15s, transform 0.12s;
    white-space: nowrap;
}
.vsm-header-cta:hover { background: #d4601f; transform: translateY(-1px); }

/* Mobile toggle */
.vsm-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 38px;
    height: 38px;
}
.vsm-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vsm-dark);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ===================================================
   CUSTOM FOOTER
   =================================================== */
.vsm-footer {
    background: var(--vsm-dark);
    color: rgba(255,255,255,.8);
    margin-top: 0;
}
.vsm-footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--vsm-max);
    margin: 0 auto;
    padding: 48px 40px;
}

/* Col 1: Brand */
.vsm-footer-brand .vsm-logo-text {
    font-size: 1.4rem; font-weight: 700; color: #fff;
    display: inline-block; margin-bottom: 16px;
}

.vsm-footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}
.vsm-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    transition: background 0.2s, color 0.2s;
}
.vsm-footer-social a:hover {
    background: var(--vsm-teal);
    color: #fff;
}
.vsm-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.vsm-footer-brand .vsm-logo-veti { color: #7fb3e0; }
.vsm-footer-brand .vsm-logo-simlab { color: var(--vsm-teal); }
.vsm-logo-paw { width: 0.8em; height: 0.8em; display: inline-block; vertical-align: -0.05em; fill: currentColor; margin: 0 -0.05em; }
.vsm-header-logo a { flex-direction: column; align-items: flex-start; }
.vsm-logo-tagline { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.03em; color: var(--vsm-dark); line-height: 1; margin-top: 3px; white-space: nowrap; }
.vsm-footer-brand .vsm-logo-tagline { color: rgba(255,255,255,.65); margin-top: 4px; margin-bottom: 16px; }
.vsm-logo-img { display: block; width: auto; }
.vsm-logo-img--header { height: 42px !important; width: auto !important; max-width: none !important; }
.vsm-logo-img--footer { height: 56px !important; width: auto !important; max-width: none !important; margin-bottom: 16px; }

/* Contact list in brand col */
.vsm-footer-contact-list {
    list-style: none; padding: 0; margin: 0 0 20px; line-height: 2.1;
}
.vsm-footer-contact-list li { color: rgba(255,255,255,.75); font-size: .875rem; }
.vsm-footer-contact-list strong { color: rgba(255,255,255,.9); }
.vsm-footer-contact-list a { color: rgba(255,255,255,.75); text-decoration: none; }
.vsm-footer-contact-list a:hover { color: #fff; }

.vsm-footer-social {
    display: flex; gap: 12px; margin-top: 4px;
}
.vsm-footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s;
}
.vsm-footer-social a:hover { background: var(--vsm-teal); color: #fff; border-color: var(--vsm-teal); }
.vsm-footer-social svg { width: 16px; height: 16px; }

/* Nav columns */
.vsm-footer-col-heading {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #fff;
    margin: 0 0 16px; padding: 0; border: none;
}
.vsm-footer-toggle {
    background: none; border: none; color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; cursor: pointer; padding: 0;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
}
.vsm-footer-toggle-icon { font-size: 1.2rem; line-height: 1; }
/* Hide toggle icon + disable pointer on desktop */
@media (min-width: 769px) {
    .vsm-footer-toggle-icon { display: none; }
    .vsm-footer-toggle { pointer-events: none; cursor: default; }
    .vsm-footer-links { max-height: none !important; opacity: 1 !important; }
}

/* Footer nav links */
.vsm-footer-links {
    list-style: none; padding: 0; margin: 0;
}
.vsm-footer-links li { margin-bottom: 10px; }
.vsm-footer-links a {
    color: rgba(255,255,255,.7); text-decoration: none;
    font-size: .875rem; transition: color .2s;
}
.vsm-footer-links a:hover { color: #fff; }

/* Footer bottom bar */
.vsm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}
.vsm-footer-bottom-inner {
    max-width: var(--vsm-max); margin: 0 auto;
    padding: 14px 40px; display: flex; justify-content: flex-end;
}
.vsm-footer-legal { display: flex; gap: 24px; }
.vsm-footer-legal a {
    color: rgba(255,255,255,.5); font-size: .8rem; text-decoration: none;
}
.vsm-footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ===================================================
   ANNOUNCEMENT BAR
   =================================================== */
.vsm-announcement-bar {
    background: var(--vsm-green);
    color: #fff;
    padding: 9px 40px;
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.vsm-announcement-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vsm-announcement-phone {
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none !important;
}
.vsm-announcement-center { flex: 1; text-align: center; }

/* ===================================================
   BUTTONS
   =================================================== */
.vsm-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--vsm-font);
    cursor: pointer;
    transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
    white-space: nowrap;
}
.vsm-btn:hover { transform: translateY(-1px); }

.vsm-btn--green { background: var(--vsm-green); color: #fff !important; }
.vsm-btn--green:hover { background: var(--vsm-green-light); }

.vsm-btn--orange { background: #fff; color: var(--vsm-green) !important; border-radius: 50px; align-self: flex-start; font-weight: 700; padding: 10px 28px; }
.vsm-btn--orange:hover { background: #f0f0f0; }

.vsm-btn--dark { background: #fff; color: var(--vsm-green) !important; border-radius: 50px; font-weight: 700; padding: 10px 28px; }
.vsm-btn--dark:hover { background: #f0f0f0; }
/* Blog button override: solid dark green */
.vsm-blog-content .vsm-btn--dark { background: var(--vsm-green) !important; color: #fff !important; border-radius: 8px !important; padding: 14px 36px !important; }
.vsm-blog-content .vsm-btn--dark:hover { background: #2a4f30 !important; }

.vsm-btn--outline {
    border: 2px solid var(--vsm-green);
    color: var(--vsm-green) !important;
    background: transparent;
}
.vsm-btn--outline:hover { background: var(--vsm-green); color: #fff !important; }

.vsm-btn--outline-light {
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff !important;
    background: transparent;
}
.vsm-btn--outline-light:hover { background: rgba(255,255,255,0.15); }

/* ===================================================
   HERO SECTION — 3-column tile grid
   =================================================== */
.vsm-hero-section {
    padding: 20px 12px;
    max-width: 1320px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ── Hero grid (desktop: 3-col named-area grid) ── */
.vsm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: var(--vsm-gutter);
    min-height: 540px;
    grid-template-areas:
        "ta  hero  tc"
        "ta  hero  tc"
        "tb  hero  td"
        "tb  iv    te";
}
.vsm-htile-hero { grid-area: hero; }
.vsm-htile-a    { grid-area: ta; }
.vsm-htile-b    { grid-area: tb; }
.vsm-htile-c    { grid-area: tc; }
.vsm-htile-d    { grid-area: td; display: flex; gap: var(--vsm-gutter); }
.vsm-htile-d .vsm-tile { flex: 1; }
.vsm-htile-e    { grid-area: te; }
.vsm-htile-iv   { grid-area: iv; }

/* ===================================================
   HERO PHOTO TILES (left / right columns)
   =================================================== */
.vsm-tile--photo {
    background-size: cover;
    background-position: center;
    min-height: 140px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    border-radius: var(--vsm-radius);
    overflow: hidden;
}

.vsm-tile--photo .vsm-tile__label {
    position: relative; z-index: 1; color: #fff;
    font-weight: 800; font-size: 1.15rem;
    padding: 12px 16px; line-height: 1.25;
    display: block;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.vsm-tile--photo .vsm-tile__label small {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    font-size: .9rem;
    margin-top: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}


/* ===================================================
   TILES — base
   =================================================== */
.vsm-tile {
    border-radius: var(--vsm-radius);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.vsm-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }

.vsm-tile__content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.vsm-tile__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.75;
    color: inherit;
}
.vsm-tile__eyebrow--light { opacity: 0.9; color: #fff; }

.vsm-tile__heading {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: inherit;
}
.vsm-tile__heading--sm {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: inherit;
}
.vsm-tile__heading--light,
.vsm-tile__heading--sm.vsm-tile__heading--light { color: #fff; }
.vsm-tile__heading-accent { color: #E8D3A3; }

.vsm-tile__body    { font-size: 14px; line-height: 1.6; margin: 0; color: inherit; }
.vsm-tile__body--sm{ font-size: 13px; line-height: 1.55; margin: 0; color: inherit; opacity: 0.88; }

/* ===================================================
   TILE COLOR VARIANTS
   =================================================== */
.vsm-tile--green  { background: var(--vsm-green); color: #fff; }
.vsm-tile--green .vsm-tile__eyebrow { color: var(--vsm-cream); }
.vsm-tile--cream  { background: var(--vsm-cream); color: var(--vsm-text); }
.vsm-tile--cream .vsm-tile__eyebrow { color: var(--vsm-green); }
.vsm-tile--blue   { background: var(--vsm-blue); color: var(--vsm-text); }
.vsm-tile--blue .vsm-tile__eyebrow { color: var(--vsm-green); }
.vsm-tile--orange { background: var(--vsm-orange); color: #fff; }
.vsm-tile--dark   { background: var(--vsm-dark); color: #fff; }

/* ===================================================
   CENTER HERO TILE (photo)
   =================================================== */
.vsm-tile--hero-photo {
    background-image: url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=800&q=80');
    background-size: cover;
    background-position: center top;
    min-height: 520px;
    flex: 1;
}
.vsm-tile--hero-photo .vsm-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(26,42,27,0.88) 0%, rgba(26,42,27,0.55) 45%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 36px 32px;
    gap: 10px;
}
/* ===================================================
   CATEGORY TILE GRID
   =================================================== */
.vsm-category-section { background: #fff; padding: 48px 0; }
.vsm-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}
.vsm-cat-tile {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; background: var(--vsm-blue);
    border-radius: 12px; overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.vsm-cat-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.vsm-cat-tile__img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.vsm-cat-tile__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.vsm-cat-tile:hover .vsm-cat-tile__img-wrap img { transform: scale(1.04); }
.vsm-cat-tile__label { padding: 10px 12px 2px; font-weight: 600; font-size: .88rem; color: var(--vsm-dark); text-align: center; }
.vsm-cat-tile__link { padding: 2px 12px 12px; font-size: .8rem; color: var(--vsm-green); font-weight: 600; }

/* ===================================================
   EQUIPMENT SECTION
   =================================================== */
.vsm-equipment-section { background: #fff; padding: 48px 0; }
.vsm-equipment-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 320px 1fr;
    gap: 20px; align-items: start;
}
.vsm-equip-promo {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: var(--vsm-green);
    text-decoration: none;
    color: #fff;
    min-height: 480px;
    height: 100%;
}
.vsm-equip-promo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    z-index: 1;
}
.vsm-equip-promo__text {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 34px 30px;
    z-index: 2;
}
.vsm-equip-promo__text h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 22px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.vsm-equip-promo__text h3 strong {
    font-size: 2.15rem;
    font-weight: 800;
    display: block;
}
.vsm-equip-promo .vsm-btn { background: #fff !important; color: var(--vsm-green) !important; font-weight: 700; border: none; }
.vsm-equip-promo .vsm-btn:hover { background: #f0f0f0 !important; }
.vsm-equip-tiles {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 10px);
    overflow-x: auto;
    gap: 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.vsm-equip-tiles::-webkit-scrollbar { display: none; }
.vsm-equip-tile {
    background: transparent;
    padding: 0;
    text-align: left;
    display: block;
    text-decoration: none;
}
.vsm-equip-tile:hover { transform: translateY(-2px); }
.vsm-equip-tile img {
    width: 100%; aspect-ratio: 1;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}
.vsm-equip-tile span { padding: 8px 8px 10px; line-height: 1.3; }

/* ===================================================
   PRODUCTS SECTION (with section header)
   =================================================== */
.vsm-section-header {
    display: flex; align-items: center; justify-content: center;
    max-width: 1320px; margin: 0 auto 24px; padding: 0 24px;
    text-align: center;
}
.vsm-section-header h2 { font-size: 1.7rem; font-weight: 700; color: var(--vsm-dark); margin: 0; }
.vsm-section-header__link { display: none; }
.vsm-section-header__link:hover { text-decoration: underline; }
/* ---------- Carousel wrapper ---------- */
.vsm-product-carousel,
.vsm-equip-carousel {
    position: relative;
}
.vsm-carousel-btn {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--vsm-teal);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    color: #fff;
    transition: background .2s;
}
.vsm-carousel-btn:hover { background: var(--vsm-green); }

.vsm-products-section { padding: 48px 0; background: #eef4f1; }
.vsm-products-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.vsm-product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}
.vsm-product-grid::-webkit-scrollbar { display: none; }
.vsm-product-card {
    display: flex; flex-direction: column;
    border-radius: 16px; overflow: hidden;
    border: none;
    transition: box-shadow .2s;
    background: #f5ede0;
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    scroll-snap-align: start;
    box-shadow: 0 0 0 3px #fff, 0 2px 8px rgba(0,0,0,.06);
}
.vsm-product-card:hover { box-shadow: 0 0 0 3px #fff, 0 8px 24px rgba(0,0,0,.12); }
.vsm-product-card__img-link { display: block; }
.vsm-product-card__img,
.vsm-product-card__img-placeholder {
    width: 100%; aspect-ratio: 1; object-fit: contain; display: block;
    background: #f5ede0;
    padding: 8px;
}
.vsm-product-card__body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.vsm-product-card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--vsm-green); text-transform: uppercase; margin: 0; }
.vsm-product-card__title { font-size: .95rem; font-weight: 600; color: var(--vsm-dark); margin: 0; line-height: 1.35; }
.vsm-product-card__title a { color: inherit; text-decoration: none; }
.vsm-product-card__title a:hover { color: var(--vsm-green); }
.vsm-product-card__price { font-size: 15px; font-weight: 700; color: var(--vsm-green); margin: 0; }

/* ===================================================
   TRUST BAR
   =================================================== */
.vsm-trust-bar { background: var(--vsm-green); padding: 22px 24px; }
.vsm-trust-bar__inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 16px 32px;
    align-items: center; justify-content: space-between;
}
.vsm-trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .92rem; font-weight: 600; }
.vsm-trust-icon { font-size: 1.3rem; }

/* ===================================================
   EMAIL SIGNUP SECTION
   =================================================== */
/* ===================================================
   BLOG / INSIGHTS SECTION
   =================================================== */
.vsm-blog-section { background: #fff; padding: 64px 12px; }
.vsm-blog-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 520px 1fr;
    gap: 60px; align-items: center;
}
.vsm-blog-image-wrap { position: relative; z-index: 0; }
.vsm-blog-image-wrap img {
    width: 100%; aspect-ratio: 1;
    object-fit: cover; display: block;
    position: relative; z-index: 2;
    border-radius: 72% 28% 65% 35% / 45% 63% 37% 55% !important;
}
.vsm-blog-eyebrow {
    color: #A07830; font-size: .92rem; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase; margin: 0 0 10px;
}
.vsm-blog-content h2 {
    color: #4C917C;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 18px;
}
.vsm-blog-content p { color: #555; line-height: 1.65; font-size: .97rem; margin: 0 0 28px; }

/* ===================================================
   HEADER SEARCH + LOGIN
   =================================================== */
.vsm-header-search {
    display: flex; align-items: center;
    border: 1.5px solid #d0d0d0; border-radius: 8px;
    overflow: hidden; background: #fff;
    flex: 1; max-width: 340px;
}
.vsm-header-search input[type="search"] {
    border: none; outline: none; padding: 8px 12px;
    font-size: .88rem; flex: 1; color: var(--vsm-text);
    background: transparent; min-width: 0;
    font-family: var(--vsm-font);
}
.vsm-header-search input[type="search"]::placeholder { color: #aaa; }
.vsm-header-search button {
    background: var(--vsm-green); border: none; cursor: pointer;
    padding: 8px 12px; display: flex; align-items: center; color: #fff;
    flex-shrink: 0;
}
.vsm-header-search button:hover { background: var(--vsm-teal); }
.vsm-login-btn {
    font-size: .85rem; font-weight: 600; color: var(--vsm-dark);
    border: 1.5px solid #d0d0d0; border-radius: 8px;
    padding: 7px 14px; white-space: nowrap;
    transition: border-color .2s, color .2s;
}
.vsm-login-btn:hover { border-color: var(--vsm-green); color: var(--vsm-green); }

/* ===================================================
   EMAIL SIGNUP SECTION
   =================================================== */
.vsm-email-section {
    background: var(--vsm-cream); padding: 56px 12px; text-align: center;
    position: relative; overflow: hidden;
}
/* Paw print watermarks */
.vsm-email-section::before,
.vsm-email-section::after {
    content: '🐾';
    position: absolute; font-size: 120px; opacity: .07;
    pointer-events: none; user-select: none;
}
.vsm-email-section::before { top: -20px; left: 40px; transform: rotate(-20deg); }
.vsm-email-section::after  { bottom: -20px; right: 40px; transform: rotate(15deg); }
.vsm-email-section h2 { font-size: 2rem; font-weight: 700; color: var(--vsm-green); margin: 0 0 8px; }
.vsm-email-section p { color: #666; margin: 0 0 24px; font-size: 1rem; }
.vsm-email-form { display: flex; gap: 10px; }
.vsm-email-form input[type="email"] {
    flex: 1; padding: 12px 16px; border-radius: 8px;
    border: 1.5px solid #ccc; font-size: .95rem;
    outline: none; font-family: var(--vsm-font);
}
.vsm-email-form input[type="email"]:focus { border-color: var(--vsm-green); box-shadow: 0 0 0 3px rgba(53,94,59,.15); }

/* ===================================================
   WOOCOMMERCE OVERRIDES
   =================================================== */
.woocommerce-breadcrumb,
.woocommerce-notices-wrapper { display: none; }

/* ===================================================
   HIDE ASTRA DEFAULTS
   =================================================== */
.ast-above-header-bar,
.ast-below-header-bar,
.site-footer.ast-site-footer { display: none !important; }

/* Mobile nav — hidden by default on all screen sizes; JS + CSS open it on mobile */
.vsm-mobile-nav { display: none; }
.vsm-mobile-toggle { display: none; }

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* ─── Wide tablet: 1100px ─── */
@media (max-width: 1100px) {
    .vsm-hero-section { padding: 16px 12px; }
    .vsm-hero-grid { grid-template-columns: 1fr 1.8fr 1.2fr; }
    .vsm-category-grid { grid-template-columns: repeat(4, 1fr); }
    .vsm-equipment-inner { grid-template-columns: 260px 1fr; }
    .vsm-product-grid { grid-template-columns: repeat(2, 1fr); }
    .vsm-blog-inner { grid-template-columns: 320px 1fr; gap: 40px; }
    .vsm-header-search { max-width: 240px; }
}

/* ─── Tablet: 900px ─── */
@media (max-width: 900px) {
    .vsm-hero-grid {
        grid-template-columns: 1fr 1.5fr;
        grid-template-areas:
            "ta  hero"
            "ta  hero"
            "tb  hero"
            "tb  hero";
        min-height: 440px;
    }
    .vsm-htile-c, .vsm-htile-d, .vsm-htile-e, .vsm-htile-iv { display: none; }
    .vsm-equipment-inner { grid-template-columns: 1fr; }
    /* equip-tiles is now flex carousel */
    .vsm-product-grid { grid-template-columns: repeat(2, 1fr); }
    .vsm-blog-inner { grid-template-columns: 1fr; }
    .vsm-blog-image-wrap { max-width: 280px; margin: 0 auto; }
    .vsm-blog-content { text-align: center; }
}

/* ─── MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {

    /* ── ANNOUNCEMENT BAR ── */
    .vsm-announcement-bar {
        justify-content: center;
        padding: 7px 16px;
    }
    .vsm-announcement-center { display: none; }
    .vsm-announcement-phone { font-size: .85rem; }

    /* ── HEADER ── */
    .vsm-header { height: auto; }
    .vsm-header-inner {
        padding: 8px 16px 0;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }
    .vsm-mobile-toggle {
        display: flex;
        order: 1;
        flex-shrink: 0;
    }
    .vsm-header-logo  { order: 2; flex: 1; }
    .vsm-header-nav   { display: none; }
    .vsm-header-actions { order: 4; flex-shrink: 0; gap: 8px; }

    /* Search bar — full-width second row */
    .vsm-header-search {
        order: 10;
        flex: 0 0 calc(100% + 32px);
        max-width: calc(100% + 32px);
        width: calc(100% + 32px);
        margin: 4px -16px 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid #eee;
        display: flex;
    }
    .vsm-header-search input[type="search"] { padding: 10px 14px; font-size: .9rem; }

    /* Login: green filled on mobile (matches XD) */
    .vsm-login-btn {
        background: var(--vsm-green);
        color: #fff;
        border-color: var(--vsm-green);
        font-size: .78rem;
        padding: 7px 10px;
    }
    .vsm-login-btn:hover { background: var(--vsm-teal); border-color: var(--vsm-teal); color: #fff; }

    /* ── MOBILE NAV DRAWER ── */
    .vsm-mobile-nav {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
    }
    .vsm-mobile-nav.is-open { pointer-events: all; }
    .vsm-mobile-nav__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.5);
        opacity: 0;
        transition: opacity 0.25s;
    }
    .vsm-mobile-nav.is-open .vsm-mobile-nav__backdrop { opacity: 1; }
    .vsm-mobile-nav__drawer {
        position: absolute;
        top: 0; left: 0; bottom: 0;
        width: 280px;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
    .vsm-mobile-nav.is-open .vsm-mobile-nav__drawer { transform: translateX(0); }
    .vsm-mobile-nav__close {
        align-self: flex-end;
        background: none; border: none;
        font-size: 1.4rem; cursor: pointer;
        color: var(--vsm-dark); padding: 4px 8px;
        margin-bottom: 16px; line-height: 1;
    }
    .vsm-mobile-nav__list {
        list-style: none; margin: 0; padding: 0;
        display: flex; flex-direction: column;
    }
    .vsm-mobile-nav__list a {
        display: block;
        color: var(--vsm-dark); font-size: 1rem; font-weight: 600;
        padding: 15px 4px;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
    }
    .vsm-mobile-nav__list a:hover { color: var(--vsm-green); }

    /* ── HERO SECTION ── */
    .vsm-hero-section { padding: 8px 8px; }
    .vsm-hero-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-height: auto;
    }
    /* Reset grid-area for all hero tiles */
    .vsm-htile-hero, .vsm-htile-a, .vsm-htile-b,
    .vsm-htile-c, .vsm-htile-d, .vsm-htile-e,
    .vsm-htile-iv { grid-area: unset; }
    /* Mobile order matching XD mockup:
       1. Hero (full)  2. Patient Pos | Venipuncture  3. Ultrasound (full)
       4. Anatomical | CPR+Wound (stacked)                                 */
    .vsm-htile-hero { order: 1; width: 100%; flex: 0 0 100%;            min-height: 260px; }
    .vsm-htile-a    { order: 2; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); min-height: 150px; }
    .vsm-htile-c    { order: 3; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); min-height: 150px; }
    .vsm-htile-b    { order: 4; width: 100%; flex: 0 0 100%;            min-height: 150px; }
    .vsm-htile-e    { order: 5; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); min-height: 150px; }
    .vsm-htile-d    { order: 6; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); min-height: 150px;
                      display: flex; flex-direction: column; gap: 8px; }
    .vsm-htile-d .vsm-tile { flex: 1; min-height: 70px; }
    .vsm-htile-iv   { order: 7; width: 100%; flex: 0 0 100%; min-height: 180px; }
    /* Ensure visible on mobile (overrides 900px rule) */
    .vsm-htile-c, .vsm-htile-d, .vsm-htile-e, .vsm-htile-iv { display: flex; }
    .vsm-tile--hero-photo { min-height: 260px; }
    .vsm-tile--hero-photo .vsm-tile__overlay { padding: 24px 20px; }
    .vsm-tile__heading { font-size: 22px; }

    /* ── CATEGORY GRID ── */
    .vsm-category-section { padding: 28px 0; }
    .vsm-category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 12px; }

    /* ── EQUIPMENT SECTION ── */
    .vsm-equipment-section { padding: 28px 0; }
    .vsm-equipment-inner { grid-template-columns: 1fr; gap: 16px; padding: 0 12px; }
    .vsm-equip-tiles { grid-template-columns: repeat(3, 1fr); gap: 10px; }

    /* ── PRODUCTS SECTION ── */
    .vsm-products-section { padding: 28px 0; }
    .vsm-section-header { padding: 0 12px; margin-bottom: 16px; }
    .vsm-section-header h2 { font-size: 1.3rem; }
    .vsm-products-inner { padding: 0 12px; }
    .vsm-product-card { min-width: 160px; }

    /* ── TRUST BAR ── */
    .vsm-trust-bar { padding: 16px 16px; }
    .vsm-trust-bar__inner { flex-direction: column; gap: 12px; align-items: flex-start; }

    /* ── BLOG SECTION ── */
    .vsm-blog-section { padding: 40px 12px; }
    .vsm-blog-inner { grid-template-columns: 1fr; gap: 28px; }
    .vsm-blog-image-wrap { max-width: 240px; margin: 0 auto; }
    .vsm-blog-content { text-align: center; }
    .vsm-blog-content h2 { font-size: 1.6rem; }
    .vsm-blog-eyebrow { text-align: center; }

    /* ── EMAIL SECTION ── */
    .vsm-email-section { padding: 40px 16px; }
    .vsm-email-section h2 { font-size: 1.5rem; }
    .vsm-email-form { flex-direction: column; max-width: 340px; margin: 0 auto; }
    .vsm-email-form input[type="email"],
    .vsm-email-form .vsm-btn { width: 100%; }

    /* ── FOOTER ── */
    .vsm-footer-main {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 24px 20px 8px;
    }
    .vsm-footer-brand { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 12px; }
    .vsm-footer-accordion {
        border: 1px solid rgba(255,255,255,.2);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 8px;
    }
    .vsm-footer-col-heading { margin: 0; }
    .vsm-footer-toggle { padding: 14px 16px; }
    .vsm-footer-links {
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height .3s ease, opacity .2s ease;
        padding: 0 16px;
    }
    .vsm-footer-links[style*="max-height"] { padding: 0 16px 14px; }
    .vsm-footer-bottom-inner { justify-content: center; padding: 14px 20px; }

}

/* ─── Small mobile: 480px ─── */
@media (max-width: 480px) {
    .vsm-hero-section { padding: 6px 6px; }
    .vsm-tile--hero-photo { min-height: 220px; }
    .vsm-htile-a, .vsm-htile-c,
    .vsm-htile-e  { min-height: 120px; }
    .vsm-htile-d .vsm-tile { min-height: 55px; }
    
    .vsm-product-card { min-width: calc(100% - 0px); max-width: 100%; }
    /* Single-column product cards: cap image height so card doesn't fill screen */
    .vsm-product-grid .vsm-product-card__img,
    .vsm-product-grid .vsm-product-card__img-placeholder {
        aspect-ratio: 4 / 3;
        max-height: 220px;
    }
    .vsm-logo-text { font-size: 18px; }
}

/* =========================================================
   PRODUCT PAGE — matches XD mockup
   ========================================================= */

/* ---------- Page wrapper ---------- */
.vsm-product-page {
    background: #fff;
}

/* ---------- Breadcrumb ---------- */
.vsm-breadcrumb {
    background: #f8f8f8;
    border-bottom: 1px solid #e8e2d8;
    padding: 10px 0;
}
.vsm-breadcrumb__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
}
.vsm-breadcrumb__inner a {
    color: #666;
    text-decoration: none;
    transition: color .2s;
}
.vsm-breadcrumb__inner a:hover { color: var(--vsm-teal); }
.vsm-breadcrumb__inner span[aria-current="page"] { color: #333; }

/* ---------- Product Main ---------- */
.vsm-product-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 56px;
}
.vsm-product-main__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ---------- Gallery Left ---------- */
.vsm-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vsm-product-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.vsm-product-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .15s ease;
}
.vsm-gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--vsm-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Thumbnail carousel */
.vsm-gallery-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vsm-gallery-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background .2s, border-color .2s;
}
.vsm-gallery-arrow:hover { background: var(--vsm-teal); color: #fff; border-color: var(--vsm-teal); }
.vsm-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow: hidden;
    flex: 1;
    scroll-behavior: smooth;
}
.vsm-gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    padding: 0;
    transition: border-color .2s;
}
.vsm-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vsm-gallery-thumb.is-active { border-color: var(--vsm-teal); }
.vsm-gallery-thumb:hover { border-color: var(--vsm-green); }

/* ---------- Product Details Right ---------- */
.vsm-product-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.vsm-product-details__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--vsm-dark);
    line-height: 1.25;
    margin: 0 0 8px;
}
.vsm-product-details__sku {
    font-size: 13px;
    color: #888;
    margin: 0 0 14px;
    font-family: monospace;
}

/* Call for Price — teal inline text, not a button */
.vsm-product-details__cfp {
    display: inline-block;
    color: var(--vsm-teal);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color .2s;
}
.vsm-product-details__cfp:hover { color: var(--vsm-green); text-decoration: underline; }

/* Regular price */
.vsm-product-details__price {
    margin-bottom: 16px;
}
.vsm-product-details__price .woocommerce-Price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--vsm-dark);
}

/* Dividers */
.vsm-product-details__divider {
    height: 1px;
    background: #e8e2d8;
    margin: 14px 0;
}

/* Short description */
.vsm-product-details__short-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
}
.vsm-product-details__short-desc p { margin: 0; }

/* Variable select */
.vsm-product-details__variation {
    margin: 12px 0;
}
.vsm-product-details__variation label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.vsm-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Qty stepper */
.vsm-product-details__qty-row {
    margin-top: 18px;
    margin-bottom: 14px;
}
.vsm-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    height: 44px;
}
.vsm-qty-btn {
    width: 40px;
    height: 44px;
    background: #f5f5f5;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #444;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vsm-qty-btn:hover { background: #e8e2d8; }
.vsm-qty-input {
    width: 52px;
    height: 44px;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    -moz-appearance: textfield;
    padding: 0;
}
.vsm-qty-input::-webkit-outer-spin-button,
.vsm-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* CTA buttons — SIDE BY SIDE */
.vsm-product-details__cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.vsm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, opacity .2s;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}
.vsm-btn--green {
    background: var(--vsm-green);
    color: #fff;
    border-color: var(--vsm-green);
}
.vsm-btn--green:hover { background: #2a4d2f; border-color: #2a4d2f; color: #fff; }
.vsm-btn--outline-green {
    background: #fff;
    color: var(--vsm-green);
    border-color: var(--vsm-green);
}
.vsm-btn--outline-green:hover { background: var(--vsm-green); color: #fff; }
.vsm-btn--cta { width: 100%; }

/* ---------- Related Products (ABOVE tabs) ---------- */
.vsm-related-products {
    background: #fafaf8;
    border-top: 1px solid #e8e2d8;
    padding: 52px 0 56px;
}
.vsm-related-products__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.vsm-related-products__heading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--vsm-dark);
    margin: 0 0 8px;
    padding-bottom: 14px;
    position: relative;
}
.vsm-related-products__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--vsm-green);
    border-radius: 2px;
}
/* Horizontal carousel */
.vsm-related-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 24px 4px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--vsm-green) #eee;
}
.vsm-related-carousel::-webkit-scrollbar { height: 5px; }
.vsm-related-carousel::-webkit-scrollbar-track { background: #eee; border-radius: 3px; }
.vsm-related-carousel::-webkit-scrollbar-thumb { background: var(--vsm-green); border-radius: 3px; }

/* Product card */
.vsm-product-card {
    flex: 0 0 220px;
    background: #fff;
    border: 1px solid #e8e2d8;
    border-radius: 6px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: box-shadow .2s, transform .2s;
}
.vsm-product-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.1); transform: translateY(-2px); }
.vsm-product-card__img-link { display: block; }
.vsm-product-card__img,
.vsm-product-card__img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.vsm-product-card__img-placeholder { background: #f0ede7; }
.vsm-product-card__body {
    padding: 14px 14px 16px;
}
.vsm-product-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--vsm-teal);
    margin: 0 0 6px;
}
.vsm-product-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vsm-dark);
    line-height: 1.35;
    margin: 0 0 8px;
}
.vsm-product-card__title a { color: inherit; text-decoration: none; }
.vsm-product-card__title a:hover { color: var(--vsm-teal); }
.vsm-product-card__price {
    font-size: 13px;
    font-weight: 700;
    color: var(--vsm-dark);
}
.vsm-cfp-small { color: var(--vsm-teal); font-size: 12px; }

/* ---------- Tabs (centered, 2 tabs, bordered content) ---------- */
.vsm-product-tabs {
    padding: 48px 0 56px;
}
.vsm-product-tabs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.vsm-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 0;
}
.vsm-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    margin-bottom: -2px;
    letter-spacing: .02em;
}
.vsm-tab-btn:hover { color: var(--vsm-green); }
.vsm-tab-btn.is-active {
    color: var(--vsm-green);
    border-bottom-color: var(--vsm-green);
}
.vsm-tab-panel {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 36px 40px;
    background: #fff;
}
.vsm-tab-empty { color: #888; font-size: 14px; margin: 0; }

/* Tab content */
.vsm-product-description { font-size: 15px; line-height: 1.7; color: #444; }
.vsm-product-description p:last-child { margin-bottom: 0; }
.vsm-specs-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 14px; }
.vsm-specs-table th,
.vsm-specs-table td { padding: 10px 16px; text-align: left; border-bottom: 1px solid #eee; }
.vsm-specs-table th { font-weight: 600; color: #333; background: #f7f5f0; width: 35%; }
.vsm-specs-table td { color: #555; }

/* Media tab */
.vsm-tab-video h3,
.vsm-tab-pdfs h3,
.vsm-media-gallery h3 { font-size: 16px; font-weight: 600; margin: 0 0 14px; }
.vsm-video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; }
.vsm-video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.vsm-video-player { width: 100%; border-radius: 4px; }
.vsm-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vsm-dark);
    text-decoration: none;
    transition: background .2s;
}
.vsm-pdf-link:hover { background: #f7f5f0; }
.vsm-pdf-link small { margin-left: auto; font-size: 11px; color: #888; font-weight: 400; }
.vsm-media-gallery { margin-top: 24px; }
.vsm-media-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vsm-media-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 3px; border: 1px solid #ddd; }

/* ---------- Email Section ---------- */
.vsm-email-section {
    background: var(--vsm-cream);
    padding: 64px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vsm-email-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='12' fill='%23355E3B' opacity='.05'/%3E%3Ccircle cx='80' cy='60' r='16' fill='%23355E3B' opacity='.05'/%3E%3Ccircle cx='50' cy='85' r='10' fill='%23355E3B' opacity='.04'/%3E%3C/svg%3E");
    background-size: 300px;
    pointer-events: none;
}
.vsm-email-inner { position: relative; max-width: 520px; margin: 0 auto; }
.vsm-email-inner h2 { font-size: 26px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 8px; }
.vsm-email-inner p { font-size: 15px; color: #666; margin: 0 0 24px; }
.vsm-email-form {
    display: flex;
    gap: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.vsm-email-form input[type="email"] {
    flex: 1;
    padding: 13px 18px;
    border: none;
    font-size: 14px;
    color: #333;
    background: transparent;
    outline: none;
}
.vsm-email-form .vsm-btn {
    border-radius: 0;
    padding: 13px 24px;
    font-size: 14px;
    border: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .vsm-product-main__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .vsm-product-gallery__main { max-width: 480px; margin: 0 auto; }
    .vsm-gallery-thumbs-wrap { max-width: 480px; margin: 0 auto; }
    .vsm-product-details__cta-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .vsm-product-main { padding: 24px 20px 36px; }
    .vsm-product-details__title { font-size: 22px; }
    .vsm-product-details__cta-row { grid-template-columns: 1fr; gap: 10px; }
    .vsm-related-carousel { gap: 14px; padding-top: 20px; }
    .vsm-product-card { flex: 0 0 180px; }
    .vsm-product-tabs__inner { padding: 0 20px; }
    .vsm-tab-panel { padding: 24px 20px; }
    .vsm-tab-btn { padding: 12px 20px; font-size: 14px; }
    .vsm-email-section { padding: 48px 20px; }
    .vsm-email-form { flex-direction: column; }
    .vsm-email-form .vsm-btn { border-radius: 0 0 4px 4px; }
    .vsm-breadcrumb__inner { padding: 0 20px; }
    .vsm-related-products__inner { padding: 0 20px; }
}

/* =========================================================
   POLICY PAGES (Shipping & Returns, T&C, Privacy, Cookie)
   ========================================================= */

.vsm-policy-page {
    background: #fff;
}

/* Hero banner — cream bg, centered title */
.vsm-policy-hero {
    background: var(--vsm-cream);
    padding: 56px 40px;
    border-radius: 0;
}
.vsm-policy-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.vsm-policy-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--vsm-green);
    margin: 0;
    line-height: 1.2;
}

/* Content area */
.vsm-policy-content {
    padding: 56px 40px 72px;
}
.vsm-policy-content__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Section headings */
.vsm-policy-content__inner h2,
.vsm-policy-content__inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--vsm-dark);
    margin: 2em 0 0.5em;
    padding-top: 0;
}
.vsm-policy-content__inner h2:first-child,
.vsm-policy-content__inner h3:first-child {
    margin-top: 0;
}

/* Dividers between sections */
.vsm-policy-content__inner h2 {
    border-top: 1px solid #e8e2d8;
    padding-top: 1.5em;
    margin-top: 1.5em;
}
.vsm-policy-content__inner h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* Body text */
.vsm-policy-content__inner p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 1em;
}
.vsm-policy-content__inner p:last-child {
    margin-bottom: 0;
}

/* Lists */
.vsm-policy-content__inner ul,
.vsm-policy-content__inner ol {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    padding-left: 1.5em;
    margin: 0.5em 0 1em;
}
.vsm-policy-content__inner li {
    margin-bottom: 0.4em;
}

/* Links */
.vsm-policy-content__inner a {
    color: var(--vsm-teal);
    text-decoration: underline;
}
.vsm-policy-content__inner a:hover {
    color: var(--vsm-green);
}

/* Strong / bold */
.vsm-policy-content__inner strong {
    color: var(--vsm-dark);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .vsm-policy-hero { padding: 36px 20px; }
    .vsm-policy-hero__title { font-size: 26px; }
    .vsm-policy-content { padding: 36px 20px 56px; }
    .vsm-policy-content__inner h2 { font-size: 16px; }
}


/* =================================================== SHOP / CATEGORY PAGE =================================================== */

.vsm-shop-page { width: 100%; }

.vsm-shop-banner {
    background: #f5f5f5;
    padding: 28px 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.vsm-shop-banner-inner { max-width: var(--vsm-max); margin: 0 auto; }
.vsm-shop-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--vsm-dark);
    margin: 0 0 6px;
}
.vsm-shop-banner-desc { color: #555; margin: 0; font-size: 15px; }

.vsm-shop-main {
    display: flex;
    align-items: flex-start;
    max-width: var(--vsm-max);
    margin: 0 auto;
    padding: 32px 24px 60px;
    gap: 28px;
}

.vsm-shop-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--vsm-header-h) + 16px);
}

.vsm-sidebar-block { margin-bottom: 28px; }
.vsm-sidebar-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--vsm-dark);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 10px;
}
.vsm-sidebar-divider { height: 1px; background: #e0e0e0; margin-bottom: 14px; }

.vsm-filter-group { margin-bottom: 8px; border: 1px solid #e4e4e4; border-radius: 8px; overflow: hidden; }
.vsm-filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 12px 14px;
    font-family: var(--vsm-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--vsm-dark);
    cursor: pointer;
    text-align: left;
}
.vsm-filter-toggle:hover { background: #f9f9f9; }
.vsm-filter-chevron { transition: transform .2s; flex-shrink: 0; }
.vsm-filter-toggle--collapsed .vsm-filter-chevron { transform: rotate(-90deg); }
.vsm-filter-plus { font-size: 18px; line-height: 1; flex-shrink: 0; color: var(--vsm-teal); }

.vsm-filter-body { padding: 0 14px 12px; }
.vsm-filter-body--hidden { display: none; }

.vsm-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.vsm-price-field {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 5px 8px;
    flex: 1;
    gap: 2px;
}
.vsm-price-dollar { color: #888; font-size: 13px; }
.vsm-price-field input[type=number] {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--vsm-font);
    font-size: 13px;
    color: var(--vsm-dark);
    background: transparent;
    -moz-appearance: textfield;
}
.vsm-price-field input[type=number]::-webkit-outer-spin-button,
.vsm-price-field input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }
.vsm-price-sep { color: #888; font-size: 13px; }

.vsm-price-track {
    position: relative;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 8px 0 4px;
}
.vsm-price-fill {
    position: absolute;
    height: 100%;
    background: var(--vsm-teal);
    border-radius: 2px;
    pointer-events: none;
}
.vsm-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
    pointer-events: none;
}
.vsm-range-min { pointer-events: auto; z-index: 3; }
.vsm-range-max { pointer-events: auto; z-index: 4; }

.vsm-filter-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--vsm-dark);
    cursor: pointer;
}
.vsm-filter-checkbox {
    width: 15px;
    height: 15px;
    accent-color: var(--vsm-teal);
    flex-shrink: 0;
    cursor: pointer;
}

.vsm-browse-all-btn {
    display: block;
    text-align: center;
    background: var(--vsm-dark);
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background .15s;
    margin-bottom: 14px;
}
.vsm-browse-all-btn--active,
.vsm-browse-all-btn:hover { background: var(--vsm-teal); color: #fff; }
.vsm-browse-subheading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #888; margin: 0 0 8px; }
.vsm-browse-cat-list { list-style: none; margin: 0; padding: 0; }
.vsm-browse-cat-list li { padding: 5px 0; border-bottom: 1px solid #f0f0f0; }
.vsm-browse-cat-list li:last-child { border-bottom: none; }
.vsm-browse-cat-list a { font-size: 13px; color: #444; transition: color .15s; }
.vsm-browse-cat-list a:hover,
.vsm-browse-cat--active a { color: var(--vsm-teal); font-weight: 600; }

.vsm-shop-products { flex: 1; min-width: 0; }

.vsm-sortbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e4e4;
}
.vsm-sortbar-count { font-size: 14px; color: #555; }
.vsm-sortbar-count strong { color: var(--vsm-dark); font-weight: 700; }
.vsm-sortbar-sort select,
.vsm-sortbar-sort .orderby {
    font-family: var(--vsm-font);
    font-size: 13px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 7px 28px 7px 10px;
    color: var(--vsm-dark);
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
}

ul.vsm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vsm-product-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.vsm-product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }

.vsm-product-card-img-wrap {
    position: relative;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.vsm-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .3s;
}
.vsm-product-card:hover .vsm-product-card-img { transform: scale(1.04); }
.vsm-product-card-img-placeholder { width: 100%; height: 100%; background: #f0f0f0; }

.vsm-best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--vsm-teal);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.vsm-quick-view-btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vsm-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-family: var(--vsm-font);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    z-index: 3;
    transition: bottom .2s, background .15s;
}
.vsm-product-card:hover .vsm-quick-view-btn { bottom: 10px; }
.vsm-quick-view-btn:hover { background: var(--vsm-teal); }

.vsm-product-card-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vsm-product-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--vsm-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}
.vsm-product-card-name a { color: inherit; }
.vsm-product-card-name a:hover { color: var(--vsm-teal); }
.vsm-product-card-cat { font-size: 11px; color: #888; margin: 0 0 10px; }
.vsm-product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.vsm-product-card-price { font-size: 14px; font-weight: 700; color: var(--vsm-dark); }

.vsm-add-to-cart-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--vsm-teal);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, transform .1s;
}
.vsm-add-to-cart-btn:hover { background: var(--vsm-dark); transform: scale(1.1); }

.vsm-shop-pagination { margin-top: 32px; text-align: center; }
.vsm-shop-pagination .woocommerce-pagination ul { list-style: none !important; margin: 0; padding: 0; display: flex !important; flex-wrap: wrap; width: auto !important; height: auto !important; max-width: none !important; gap: 6px; justify-content: center; }
.vsm-shop-pagination .woocommerce-pagination li a,
.vsm-shop-pagination .woocommerce-pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    color: var(--vsm-dark);
    transition: background .15s, color .15s;
}
.vsm-shop-pagination .woocommerce-pagination li a:hover { background: var(--vsm-teal); color: #fff; border-color: var(--vsm-teal); }
.vsm-shop-pagination .woocommerce-pagination li span.current { background: var(--vsm-dark); color: #fff; border-color: var(--vsm-dark); }

.vsm-no-products { font-size: 15px; color: #666; padding: 40px 0; text-align: center; }

.vsm-qv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}
.vsm-qv-overlay--open { opacity: 1; pointer-events: auto; }
body.vsm-no-scroll { overflow: hidden; }

.vsm-qv-modal {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(.95);
    transition: transform .25s;
    padding: 0;
}
.vsm-qv-overlay--open .vsm-qv-modal { transform: scale(1); }

.vsm-qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .15s;
}
.vsm-qv-close:hover { background: #e0e0e0; }

.vsm-qv-loader { display: flex; align-items: center; justify-content: center; padding: 60px; }
.vsm-qv-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #eee;
    border-top-color: var(--vsm-teal);
    border-radius: 50%;
    animation: vsm-spin .7s linear infinite;
}
@keyframes vsm-spin { to { transform: rotate(360deg); } }

.vsm-qv-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 380px;
}

.vsm-qv-left {
    position: relative;
    background: #f5f5f5;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.vsm-qv-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--vsm-teal);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 4px;
}
.vsm-qv-img { max-width: 100%; max-height: 300px; object-fit: contain; }

.vsm-qv-right {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
}
.vsm-qv-cat { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 6px; }
.vsm-qv-name { font-size: 20px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 6px; line-height: 1.25; }
.vsm-qv-sku { font-size: 12px; color: #aaa; margin: 0 0 12px; }
.vsm-qv-details { font-size: 13px; color: var(--vsm-teal); font-weight: 600; display: inline-block; margin-bottom: 20px; text-decoration: underline; }
.vsm-qv-details:hover { color: var(--vsm-dark); }

.vsm-qv-qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 120px;
}
.vsm-qv-qty-btn {
    width: 36px;
    height: 38px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}
.vsm-qv-qty-btn:hover { background: #e8e8e8; }
.vsm-qv-qty-input {
    flex: 1;
    border: none;
    text-align: center;
    font-family: var(--vsm-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--vsm-dark);
    outline: none;
    -moz-appearance: textfield;
}
.vsm-qv-qty-input::-webkit-outer-spin-button,
.vsm-qv-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.vsm-qv-delivery-label { font-size: 12px; font-weight: 600; color: #555; margin: 0 0 8px; }
.vsm-qv-delivery-options { display: flex; gap: 8px; margin-bottom: 24px; }
.vsm-qv-delivery-options > * { flex: 1; height: 40px; background: #f0f0f0; border-radius: 6px; }

.vsm-qv-actions { display: flex; gap: 10px; margin-top: auto; }
.vsm-qv-btn-cart,
.vsm-qv-btn-quote {
    flex: 1;
    padding: 12px 10px;
    border-radius: 8px;
    border: none;
    font-family: var(--vsm-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s;
}
.vsm-qv-btn-cart { background: var(--vsm-dark); color: #fff; }
.vsm-qv-btn-cart:hover { background: var(--vsm-teal); }
.vsm-qv-btn-quote { background: #e8f4fb; color: var(--vsm-teal); border: 1px solid var(--vsm-teal); }
.vsm-qv-btn-quote:hover { background: var(--vsm-teal); color: #fff; }

@media (max-width: 1100px) {
    ul.vsm-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .vsm-shop-main { flex-direction: column; padding: 20px 16px 40px; }
    .vsm-shop-sidebar { width: 100%; position: static; }
    ul.vsm-product-grid { grid-template-columns: repeat(2, 1fr); }
    .vsm-qv-body { grid-template-columns: 1fr; }
    .vsm-qv-left { border-radius: 12px 12px 0 0; }
}
@media (max-width: 480px) {
    ul.vsm-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .vsm-shop-banner { padding: 20px 16px; }
    .vsm-shop-banner-title { font-size: 22px; }
}

/* =============================================
   XD Fix #1: Login | Register header button
   ============================================= */
.vsm-login-btn {
    background-color: #355E3B !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    text-decoration: none !important;
}
.vsm-login-btn:hover,
.vsm-login-btn:focus {
    background-color: #2a4c2f !important;
    color: #ffffff !important;
    text-decoration: none !important;
}


/* =============================================
   XD Fix #2: Category page promo banner
   ============================================= */
.vsm-shop-banner {
    min-height: 220px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #f0f0ee !important;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 32px;
}
/* Overlay for legibility when image is set */
.vsm-shop-banner[style*="background-image"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.vsm-shop-banner-inner {
    position: relative;
    z-index: 2;
    padding: 32px 48px;
    width: 100%;
}
.vsm-shop-banner-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #1a2a1b;
}
.vsm-shop-banner[style*="background-image"] .vsm-shop-banner-title {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.vsm-shop-banner-desc {
    font-size: 1rem;
    color: #3a3a3a;
}
.vsm-shop-banner[style*="background-image"] .vsm-shop-banner-desc {
    color: rgba(255,255,255,0.9);
}
@media (max-width: 768px) {
    .vsm-shop-banner { min-height: 150px; }
    .vsm-shop-banner-inner { padding: 24px; }
    .vsm-shop-banner-title { font-size: 1.5rem; }
}


/* =============================================
   XD Fix #4: Best Seller badge on product cards
   ============================================= */
.vsm-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background-color: #355E3B;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
}
.vsm-product-card-img-wrap {
    position: relative;
}


/* XD Fix #5 — Category tile labels: top-left position, underlined Shop Now */
.vsm-tile--photo {
    justify-content: flex-start !important;
}
.vsm-tile--photo .vsm-tile__label {
    padding: 14px 16px 14px;
    border-radius: 0 0 4px 0;
}
.vsm-tile--photo .vsm-tile__label small {
    display: block;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.78rem;
    margin-top: 5px;
    opacity: 0.92;
}


/* =============================================================================
   ABOUT US PAGE
   ============================================================================= */

.vsm-btn { display: inline-block; padding: 13px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; font-family: var(--vsm-font); cursor: pointer; text-decoration: none; border: 2px solid transparent; transition: all .2s; }
.vsm-btn--green { background: var(--vsm-green); color: #fff; border-color: var(--vsm-green); }
.vsm-btn--green:hover { background: #2e5a40; border-color: #2e5a40; color: #fff; }
.vsm-btn--outline { background: transparent; color: var(--vsm-green); border-color: var(--vsm-green); }
.vsm-btn--outline:hover { background: var(--vsm-green); color: #fff; }

.vsm-about-mission { padding: 72px 40px; background: #fff; }
.vsm-about-mission__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vsm-about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; height: 380px; }
.vsm-about-img-grid__item--tall { grid-row: span 2; }
.vsm-about-img-grid__item--tall img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; background: #ddd5c4; }
.vsm-about-img-grid__item--stack { display: flex; flex-direction: column; gap: 10px; }
.vsm-about-img-grid__top, .vsm-about-img-grid__bottom { flex: 1; overflow: hidden; border-radius: 10px; background: #c8bfb0; }
.vsm-about-img-grid__top img, .vsm-about-img-grid__bottom img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsm-about-mission__heading { font-size: 28px; font-weight: 700; color: var(--vsm-green); margin: 0 0 20px; line-height: 1.25; }
.vsm-about-mission__body { font-size: 15px; line-height: 1.7; color: var(--vsm-text); margin: 0 0 14px; }
.vsm-about-mission__cta { margin-top: 10px; }

.vsm-about-why { padding: 72px 40px; background: #fff; }
.vsm-about-why__inner { max-width: 1200px; margin: 0 auto; }
.vsm-about-why__heading { font-size: 30px; font-weight: 700; color: var(--vsm-dark); text-align: center; margin: 0 0 48px; }
.vsm-about-why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vsm-about-why__card { border-radius: 16px; padding: 36px 28px; text-align: center; }
.vsm-about-why__card--blue  { background: #E8F1F8; }
.vsm-about-why__card--cream { background: var(--vsm-cream); }
.vsm-about-why__card--green { background: #E5F0E8; }
.vsm-about-why__icon { margin: 0 auto 20px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.vsm-about-why__icon svg { width: 64px; height: 64px; }
.vsm-about-why__card-title { font-size: 18px; font-weight: 700; color: var(--vsm-green); margin: 0 0 10px; }
.vsm-about-why__card-body { font-size: 14px; color: var(--vsm-text); margin: 0; line-height: 1.55; }

.vsm-about-contact { display: grid; grid-template-columns: 1fr 1fr; }
.vsm-about-contact__panel { background: #2E5B42; color: #fff; padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.vsm-about-contact__heading { font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.vsm-about-contact__sub { font-size: 15px; color: rgba(255,255,255,.85); margin: 0 0 36px; }
.vsm-about-contact__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.vsm-about-contact__item { display: flex; gap: 16px; align-items: flex-start; }
.vsm-about-contact__icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vsm-about-contact__item strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vsm-about-contact__item a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; }
.vsm-about-contact__item a:hover { color: #fff; text-decoration: underline; }
.vsm-about-contact__item span { font-size: 13px; color: rgba(255,255,255,.7); }
.vsm-about-contact__image { overflow: hidden; background: #c8bfb0; min-height: 340px; }
.vsm-about-contact__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
    .vsm-about-mission__inner { grid-template-columns: 1fr; gap: 36px; }
    .vsm-about-img-grid { height: 300px; }
    .vsm-about-why__cards { grid-template-columns: 1fr 1fr; }
    .vsm-about-contact { grid-template-columns: 1fr; }
    .vsm-about-contact__image { min-height: 220px; }
}
@media (max-width: 600px) {
    .vsm-about-mission { padding: 40px 20px; }
    .vsm-about-why { padding: 40px 20px; }
    .vsm-about-why__cards { grid-template-columns: 1fr; }
    .vsm-about-contact__panel { padding: 40px 24px; }
}

/* =============================================================================
   BLOG HOME & ARCHIVE
   ============================================================================= */

.vsm-blog-hero { background: var(--vsm-cream); padding: 56px 40px; text-align: center; }
.vsm-blog-hero__inner { max-width: 760px; margin: 0 auto; }
.vsm-blog-hero__title { font-size: 36px; font-weight: 700; color: var(--vsm-green); margin: 0 0 14px; }
.vsm-blog-hero__sub { font-size: 15px; line-height: 1.65; color: var(--vsm-text); margin: 0; }
.vsm-blog-body { max-width: 1200px; margin: 0 auto; padding: 56px 40px; }

.vsm-blog-featured { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #e8e5de; border-radius: 14px; overflow: hidden; margin-bottom: 56px; }
.vsm-blog-featured__img-link { display: block; overflow: hidden; }
.vsm-blog-featured__img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; transition: transform .3s; }
.vsm-blog-featured__img-link:hover .vsm-blog-featured__img { transform: scale(1.03); }
.vsm-blog-featured__content { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.vsm-blog-featured__badge { display: inline-block; background: #D4EAF7; color: #2c6e9e; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 16px; width: fit-content; }
.vsm-blog-featured__title { font-size: 26px; font-weight: 700; color: var(--vsm-green); margin: 0 0 16px; line-height: 1.3; }
.vsm-blog-featured__title a { color: inherit; text-decoration: none; }
.vsm-blog-featured__title a:hover { text-decoration: underline; }
.vsm-blog-featured__excerpt { font-size: 14px; line-height: 1.7; color: var(--vsm-text); margin: 0 0 24px; }
.vsm-blog-featured__read-more { font-size: 13px; font-weight: 700; color: var(--vsm-green); text-decoration: none; }
.vsm-blog-featured__read-more:hover { text-decoration: underline; }

.vsm-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vsm-blog-card { border: 1px solid #e8e5de; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.vsm-blog-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.09); }
.vsm-blog-card__img-link { display: block; overflow: hidden; aspect-ratio: 4/3; background: #e0dbd0; }
.vsm-blog-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.vsm-blog-card__img-link:hover .vsm-blog-card__img { transform: scale(1.04); }
.vsm-blog-img-placeholder { width: 100%; min-height: 200px; background: #e0dbd0; }
.vsm-blog-card__body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.vsm-blog-card__date { font-size: 12px; color: #888; margin: 0 0 8px; }
.vsm-blog-card__title { font-size: 16px; font-weight: 700; color: var(--vsm-green); margin: 0 0 10px; line-height: 1.35; flex: 1; }
.vsm-blog-card__title a { color: inherit; text-decoration: none; }
.vsm-blog-card__title a:hover { text-decoration: underline; }
.vsm-blog-card__excerpt { font-size: 13px; line-height: 1.6; color: var(--vsm-text); margin: 0; }

.vsm-blog-pagination { margin-top: 48px; display: flex; justify-content: center; }
.vsm-blog-pagination .nav-links { display: flex; gap: 6px; }
.vsm-blog-pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; border: 1px solid #e0e0da; font-size: 13px; color: var(--vsm-dark); text-decoration: none; transition: all .15s; }
.vsm-blog-pagination .page-numbers:hover, .vsm-blog-pagination .page-numbers.current { background: var(--vsm-green); color: #fff; border-color: var(--vsm-green); }
.vsm-blog-no-posts { text-align: center; padding: 60px 0; color: #888; }

.vsm-blog-signup { background: var(--vsm-cream); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.vsm-blog-signup__inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.vsm-blog-signup__title { font-size: 28px; font-weight: 700; color: var(--vsm-green); margin: 0 0 24px; }
.vsm-blog-signup__form { display: flex; max-width: 480px; margin: 0 auto; border-radius: 8px; overflow: hidden; border: 1px solid #ccc; }
.vsm-blog-signup__input { flex: 1; padding: 14px 18px; font-size: 14px; border: none; outline: none; font-family: var(--vsm-font); background: #fff; }
.vsm-blog-signup__btn { background: var(--vsm-green); color: #fff; border: none; padding: 14px 24px; font-size: 14px; font-weight: 700; font-family: var(--vsm-font); cursor: pointer; transition: background .2s; }
.vsm-blog-signup__btn:hover { background: #2e5a40; }

@media (max-width: 900px) {
    .vsm-blog-featured { grid-template-columns: 1fr; }
    .vsm-blog-featured__img { min-height: 240px; }
    .vsm-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .vsm-blog-hero { padding: 36px 20px; }
    .vsm-blog-body { padding: 32px 20px; }
    .vsm-blog-grid { grid-template-columns: 1fr; }
    .vsm-blog-signup { padding: 40px 20px; }
}

/* =============================================================================
   SINGLE BLOG POST
   ============================================================================= */

.vsm-single-post { max-width: 820px; margin: 0 auto; padding: 60px 40px 80px; }
.vsm-single-post__header { text-align: center; margin-bottom: 40px; }
.vsm-single-post__title { font-size: 34px; font-weight: 700; color: var(--vsm-green); line-height: 1.25; margin: 0 0 12px; }
.vsm-single-post__date { font-size: 13px; color: #888; margin: 0 0 20px; }
.vsm-single-post__divider { border: none; border-top: 1px solid #e0dbd0; margin: 0 auto; max-width: 80px; }
.vsm-single-post__content { font-size: 15px; line-height: 1.8; color: var(--vsm-text); }
.vsm-single-post__content h2 { font-size: 22px; font-weight: 700; color: var(--vsm-green); margin: 36px 0 14px; }
.vsm-single-post__content h3 { font-size: 18px; font-weight: 700; color: var(--vsm-green); margin: 28px 0 12px; }
.vsm-single-post__content p { margin: 0 0 18px; }
.vsm-single-post__content img { max-width: 100%; border-radius: 10px; display: block; margin: 28px auto; }
.vsm-single-post__content a { color: var(--vsm-green); }
.vsm-single-post__nav { display: flex; justify-content: space-between; margin-top: 56px; padding-top: 28px; border-top: 1px solid #e0dbd0; font-size: 14px; }
.vsm-single-post__nav a { color: var(--vsm-green); text-decoration: none; font-weight: 600; }
.vsm-single-post__nav a:hover { text-decoration: underline; }
@media (max-width: 600px) {
    .vsm-single-post { padding: 36px 20px 56px; }
    .vsm-single-post__title { font-size: 24px; }
}

/* =============================================================================
   SHOPPING CART
   ============================================================================= */

.vsm-cart-page { max-width: 1280px; margin: 0 auto; padding: 48px 40px 80px; }
.vsm-cart-title { font-size: 34px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 32px; }
.vsm-cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.vsm-cart-table { width: 100%; border-collapse: collapse; }
.vsm-cart-table thead tr { background: var(--vsm-green); }
.vsm-cart-th { color: #fff; font-size: 14px; font-weight: 600; padding: 14px 16px; text-align: left; }
.vsm-cart-th:last-child { text-align: right; }
.vsm-cart-row { border-bottom: 1px solid #e8e5de; }
.vsm-cart-remove { width: 36px; text-align: center; padding: 18px 8px; }
.vsm-cart-remove-btn { font-size: 20px; color: #aaa; text-decoration: none; line-height: 1; transition: color .15s; }
.vsm-cart-remove-btn:hover { color: #c00; }
.vsm-cart-product { padding: 18px 16px; }
.vsm-cart-product-inner { display: flex; align-items: center; gap: 14px; }
.vsm-cart-product-inner img { width: 70px; height: 70px; object-fit: contain; border: 1px solid #e8e5de; border-radius: 6px; background: #f9f9f7; flex-shrink: 0; }
.vsm-cart-product-name { font-size: 14px; font-weight: 600; color: var(--vsm-dark); margin: 0 0 4px; }
.vsm-cart-product-name a { color: inherit; text-decoration: none; }
.vsm-cart-product-name a:hover { color: var(--vsm-green); }
.vsm-cart-product-sku { font-size: 12px; color: #888; margin: 0; }
.vsm-cart-price, .vsm-cart-subtotal { padding: 18px 16px; font-size: 14px; font-weight: 600; color: var(--vsm-dark); }
.vsm-cart-subtotal { text-align: right; }
.vsm-cart-qty { padding: 18px 16px; }
.vsm-cart-qty-wrap .quantity { display: flex; align-items: center; border: 1px solid #d0cfc8; border-radius: 6px; overflow: hidden; width: fit-content; }
.vsm-cart-qty-wrap input[type="number"] { width: 44px; text-align: center; border: none; font-size: 14px; padding: 8px 4px; -moz-appearance: textfield; }
.vsm-cart-qty-wrap input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.vsm-cart-update-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 12px; flex-wrap: wrap; }
.vsm-cart-coupon { display: flex; gap: 8px; }
.vsm-cart-coupon-input { padding: 10px 14px; border: 1px solid #d0cfc8; border-radius: 6px; font-size: 13px; font-family: var(--vsm-font); width: 200px; }
.vsm-cart-update-btn { margin-left: auto; }
.vsm-cart-summary { background: #f5f5f0; border-radius: 12px; padding: 28px 24px; }
.vsm-cart-summary__title { font-size: 18px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 20px; }
.vsm-cart-summary__rows { display: flex; flex-direction: column; gap: 12px; border-bottom: 1px solid #e0dbd0; padding-bottom: 16px; margin-bottom: 16px; }
.vsm-cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--vsm-text); }
.vsm-cart-summary__count { color: #888; font-weight: 400; }
.vsm-cart-summary__total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; color: var(--vsm-dark); margin-bottom: 20px; }
.vsm-cart-checkout-btn { display: block; width: 100%; text-align: center; padding: 16px; font-size: 15px; border-radius: 8px; margin-bottom: 14px; }
.vsm-cart-continue-link { display: block; text-align: center; font-size: 13px; color: var(--vsm-green); text-decoration: none; }
.vsm-cart-continue-link:hover { text-decoration: underline; }
@media (max-width: 900px) { .vsm-cart-layout { grid-template-columns: 1fr; } .vsm-cart-page { padding: 32px 20px 60px; } }
@media (max-width: 600px) {
    .vsm-cart-table thead { display: none; }
    .vsm-cart-row { display: block; padding: 16px 0; border-bottom: 1px solid #e8e5de; }
    .vsm-cart-remove, .vsm-cart-product, .vsm-cart-price, .vsm-cart-qty, .vsm-cart-subtotal { display: block; padding: 4px 0; }
    .vsm-cart-subtotal { text-align: left; }
}

/* =============================================================================
   SIGN IN / LOGIN PAGE
   ============================================================================= */

.vsm-login-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; max-width: 1280px; margin: 0 auto; padding: 60px 40px 80px; gap: 60px; align-items: center; }
.vsm-login-img-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; height: 460px; }
.vsm-login-img-grid__main { border-radius: 12px; overflow: hidden; background: #c8bfb0; }
.vsm-login-img-grid__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsm-login-img-grid__side { display: flex; flex-direction: column; gap: 10px; }
.vsm-login-img-grid__side-top, .vsm-login-img-grid__side-mid, .vsm-login-img-grid__side-bot { flex: 1; border-radius: 10px; overflow: hidden; background: #ddd5c4; }
.vsm-login-img-grid__side-top img, .vsm-login-img-grid__side-mid img, .vsm-login-img-grid__side-bot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsm-login-heading { font-size: 30px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 10px; }
.vsm-login-register-link { font-size: 14px; color: var(--vsm-text); margin: 0 0 32px; }
.vsm-login-register-link a { color: var(--vsm-green); font-weight: 600; text-decoration: none; }
.vsm-login-register-link a:hover { text-decoration: underline; }
.vsm-login-field { margin-bottom: 20px; }
.vsm-login-field label { display: block; font-size: 14px; font-weight: 600; color: var(--vsm-dark); margin-bottom: 6px; }
.vsm-login-input { width: 100%; padding: 13px 16px; border: 1.5px solid #d8d5ce; border-radius: 8px; font-size: 14px; font-family: var(--vsm-font); background: #f7f5f0; transition: border-color .2s; box-sizing: border-box; }
.vsm-login-input:focus { outline: none; border-color: var(--vsm-green); background: #fff; }
.vsm-login-submit { width: 100%; display: block; text-align: center; padding: 15px; font-size: 15px; border-radius: 8px; margin: 8px 0 16px; border: none; cursor: pointer; }
.vsm-login-forgot { text-align: center; font-size: 14px; margin: 0; }
.vsm-login-forgot a { color: var(--vsm-dark); text-decoration: underline; }
.vsm-login-forgot a:hover { color: var(--vsm-green); }
.woocommerce-account .entry-content { max-width: none !important; }
@media (max-width: 900px) {
    .vsm-login-page { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px 60px; }
    .vsm-login-images { display: none; }
}

/* =============================================================================
   MOBILE – PRODUCT PAGE & CATEGORY PAGE
   ============================================================================= */

/* Hidden on desktop, shown only inside the mobile media query below */
.vsm-filter-toggle-btn { display: none; }
.vsm-mobile-filter-close { display: none; }
@media (max-width: 768px) {
    .vsm-product-info { padding: 20px 16px 40px; }
    .vsm-product-info__title { font-size: 20px; }
    .vsm-add-to-cart-section { flex-direction: column; }
    .vsm-add-to-cart-section .single_add_to_cart_button,
    .vsm-add-to-quote-btn { width: 100%; box-sizing: border-box; }
    .related.products ul.products { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .vsm-shop-sidebar { display: none; }
    .vsm-shop-main { grid-template-columns: 1fr; padding: 16px; }
    .vsm-filter-toggle-btn { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--vsm-green); color: var(--vsm-green); border-radius: 20px; padding: 9px 20px; font-size: 13px; font-weight: 600; cursor: pointer; margin-bottom: 16px; }
    .vsm-mobile-filters-open .vsm-shop-sidebar { display: block; position: fixed; inset: 0; z-index: 999; background: #fff; overflow-y: auto; padding: 24px 20px; }
    ul.vsm-product-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .vsm-product-card-name { font-size: 13px; }
    .vsm-sortbar { flex-wrap: wrap; gap: 8px; }
    .vsm-shop-banner { padding: 20px 16px; }
    .vsm-shop-banner h1 { font-size: 22px; }
}
@media (max-width: 480px) {
    .vsm-cart-title { font-size: 24px; }
    .vsm-blog-hero__title { font-size: 26px; }
    .vsm-single-post__title { font-size: 22px; }
}

/* =============================================================================
   WOOCOMMERCE PAGE TITLE SUPPRESSION
   ============================================================================= */

/* Hide Astra's default page title on WooCommerce pages where our template provides its own */
.woocommerce-cart .entry-header,
.woocommerce-account .entry-header { display: none; }

/* =============================================================================
   BLOG PAGE STYLES
   ============================================================================= */

.vsm-blog-hero { background: var(--vsm-cream); padding: 56px 40px 52px; text-align: center; }
.vsm-blog-hero__title { font-size: 38px; font-weight: 700; color: var(--vsm-green); margin: 0 0 14px; }
.vsm-blog-hero__sub { font-size: 15px; color: var(--vsm-text); max-width: 720px; margin: 0 auto; line-height: 1.7; }

.vsm-blog-body { max-width: 1200px; margin: 0 auto; padding: 56px 40px; }

.vsm-blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; background: #f7f5f0; border-radius: 14px; overflow: hidden; }
.vsm-blog-featured__img-link { display: block; height: 100%; }
.vsm-blog-featured__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.vsm-blog-img-placeholder { background: #ddd5c4; width: 100%; min-height: 320px; }
.vsm-blog-featured__content { padding: 40px 40px 40px 0; }
.vsm-blog-featured__badge { display: inline-block; background: var(--vsm-green); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.vsm-blog-featured__title { font-size: 26px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 14px; line-height: 1.3; }
.vsm-blog-featured__title a { color: inherit; text-decoration: none; }
.vsm-blog-featured__title a:hover { color: var(--vsm-green); }
.vsm-blog-featured__excerpt { font-size: 15px; color: var(--vsm-text); line-height: 1.7; margin: 0 0 20px; }
.vsm-blog-featured__read-more { color: var(--vsm-green); font-weight: 600; font-size: 14px; text-decoration: none; }
.vsm-blog-featured__read-more:hover { text-decoration: underline; }

.vsm-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.vsm-blog-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #eee; transition: box-shadow .2s; }
.vsm-blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.vsm-blog-card__img-link { display: block; }
.vsm-blog-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.vsm-blog-card__img.vsm-blog-img-placeholder { height: 200px; }
.vsm-blog-card__body { padding: 20px; }
.vsm-blog-card__date { font-size: 12px; color: #999; display: block; margin-bottom: 8px; }
.vsm-blog-card__title { font-size: 16px; font-weight: 700; color: var(--vsm-dark); margin: 0 0 10px; line-height: 1.4; }
.vsm-blog-card__title a { color: inherit; text-decoration: none; }
.vsm-blog-card__title a:hover { color: var(--vsm-green); }
.vsm-blog-card__excerpt { font-size: 14px; color: var(--vsm-text); line-height: 1.6; margin: 0; }

.vsm-blog-pagination { text-align: center; margin-top: 20px; }
.vsm-blog-no-posts { text-align: center; color: var(--vsm-text); font-size: 16px; padding: 40px 0; }

.vsm-blog-signup { background: var(--vsm-cream); padding: 64px 40px; text-align: center; }
.vsm-blog-signup__inner { max-width: 560px; margin: 0 auto; }
.vsm-blog-signup__title { font-size: 26px; font-weight: 700; color: var(--vsm-green); margin: 0 0 24px; }
.vsm-blog-signup__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.vsm-blog-signup__input { flex: 1; min-width: 220px; padding: 13px 18px; border: 1.5px solid #d8d5ce; border-radius: 8px; font-size: 14px; font-family: var(--vsm-font); background: #fff; }
.vsm-blog-signup__input:focus { outline: none; border-color: var(--vsm-green); }
.vsm-blog-signup__btn { background: var(--vsm-green); color: #fff; border: none; padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.vsm-blog-signup__btn:hover { opacity: .9; }

/* =============================================================================
   SINGLE BLOG POST
   ============================================================================= */

.vsm-single-post { max-width: 800px; margin: 0 auto; padding: 60px 40px 80px; }
.vsm-single-post__header { text-align: center; margin-bottom: 36px; }
.vsm-single-post__title { font-size: 34px; font-weight: 700; color: var(--vsm-green); margin: 0 0 12px; }
.vsm-single-post__date { font-size: 13px; color: #999; margin: 0 0 24px; }
.vsm-single-post__divider { border: none; border-top: 2px solid #eee; margin: 0; }
.vsm-single-post__content { font-size: 16px; line-height: 1.8; color: var(--vsm-text); padding-top: 36px; }
.vsm-single-post__content p { margin-bottom: 20px; }
.vsm-single-post__content h2, .vsm-single-post__content h3 { color: var(--vsm-dark); margin-top: 32px; }
.vsm-single-post__nav { display: flex; justify-content: space-between; padding: 32px 0; border-top: 1px solid #eee; margin-top: 40px; font-size: 14px; }
.vsm-single-post__nav a { color: var(--vsm-green); text-decoration: none; font-weight: 600; }
.vsm-single-post__nav a:hover { text-decoration: underline; }

/* Blog responsive */
@media (max-width: 900px) {
    .vsm-blog-hero { padding: 40px 24px; }
    .vsm-blog-hero__title { font-size: 28px; }
    .vsm-blog-body { padding: 36px 24px; }
    .vsm-blog-featured { grid-template-columns: 1fr; }
    .vsm-blog-featured__content { padding: 24px; }
    .vsm-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .vsm-blog-grid { grid-template-columns: 1fr; }
    .vsm-single-post { padding: 40px 20px 60px; }
    .vsm-single-post__title { font-size: 24px; }
}


/* ============================================================
   SEARCH RESULTS PAGE — consistent with site design
   ============================================================ */

/* Full-width layout — hide empty sidebar */
.search-results #secondary.widget-area,
.search-results .ast-right-sidebar,
.search-results .ast-left-sidebar {
    display: none !important;
}
.search-results #primary.content-area,
.search-results .ast-article-post {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* Search page header */
.search-results .ast-archive-description {
    padding: 40px 0 20px;
}
.search-results .page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

/* Search result cards — clean grid */
.search-results #content .ast-article-post,
.search-results article {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.search-results article:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Thumbnail column */
.search-results article .ast-blog-featured-section,
.search-results article .post-thumb {
    width: 240px;
}
.search-results article .ast-blog-featured-section img,
.search-results article .post-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

/* Hide post meta (author, date) — not appropriate for product/page results */
.search-results .entry-meta,
.search-results .ast-blog-author-avatar,
.search-results .posted-on,
.search-results .byline {
    display: none !important;
}

/* Title styling */
.search-results .entry-title,
.search-results .ast-blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 10px;
    line-height: 1.3;
}
.search-results .entry-title a,
.search-results .ast-blog-title a {
    color: #1e1e1e;
    text-decoration: none;
}
.search-results .entry-title a:hover {
    color: #1d6b3a;
}

/* Excerpt */
.search-results .entry-summary,
.search-results .entry-content {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Read more link */
.search-results .more-link,
.search-results .ast-continue-reading {
    display: inline-block;
    background: #1d6b3a;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}
.search-results .more-link:hover {
    background: #155230;
}

/* No results message */
.search-results .page-content .widget_search {
    max-width: 480px;
}
.search-no-results .page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .search-results article {
        grid-template-columns: 1fr;
    }
    .search-results article .ast-blog-featured-section {
        width: 100%;
    }
}


/* =============================================
   STICKY FOOTER — prevents empty space below footer on short pages
   (lost-password, login, empty cart, my-account, etc.)
   ============================================= */
#vsm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-bar #vsm-page {
  min-height: calc(100vh - 32px); /* WP admin bar = 32px */
}
#vsm-content {
  flex: 1;
}


/* ==============================================
   BLOG HOME — matches XD blog-home mockup
   ============================================== */

/* Hero */
.vsm-blog-hero {
  background: #f5f0e8;
  text-align: center;
  padding: 52px 24px 48px;
}
.vsm-blog-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d6b3a;
  margin: 0 0 14px;
}
.vsm-blog-hero__sub {
  max-width: 640px;
  margin: 0 auto;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Outer wrap */
.vsm-blog-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* --- FEATURED POST --- */
.vsm-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 56px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.vsm-blog-featured__img {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.vsm-blog-featured__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.vsm-blog-featured__badge {
  display: inline-block;
  background: #c8e6f5;
  color: #2a7ab5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
}
.vsm-blog-featured__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d6b3a;
  margin: 0;
  line-height: 1.3;
}
.vsm-blog-featured__title a {
  color: inherit;
  text-decoration: none;
}
.vsm-blog-featured__title a:hover { text-decoration: underline; }
.vsm-blog-featured__excerpt {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.vsm-blog-featured__link {
  color: #1d6b3a;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.vsm-blog-featured__link:hover { text-decoration: underline; }

/* --- BLOG GRID --- */
.vsm-blog-latest__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 28px;
}
.vsm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vsm-blog-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.vsm-blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.vsm-blog-card__img-wrap { display: block; aspect-ratio: 16/10; overflow: hidden; }
.vsm-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.vsm-blog-card:hover .vsm-blog-card__img { transform: scale(1.03); }
.vsm-blog-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vsm-blog-card__date { font-size: 0.8rem; color: #888; }
.vsm-blog-card__title { font-size: 1rem; font-weight: 700; color: #1d6b3a; margin: 0; line-height: 1.4; }
.vsm-blog-card__title a { color: inherit; text-decoration: none; }
.vsm-blog-card__title a:hover { text-decoration: underline; }
.vsm-blog-card__excerpt { font-size: 0.88rem; color: #555; line-height: 1.6; margin: 0; }
.vsm-blog-empty { color: #888; text-align: center; padding: 40px 0; }

@media (max-width: 900px) {
  .vsm-blog-featured { grid-template-columns: 1fr; }
  .vsm-blog-featured__img { min-height: 220px; }
  .vsm-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .vsm-blog-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   SINGLE BLOG POST — matches XD blog-page mockup
   ============================================== */
.single-post #vsm-content { background: #fff; }
.single-post .vsm-site-content { background: #fff; }
.single-post #secondary { display: none !important; }
.single-post .content-area { width: 100% !important; max-width: 100% !important; float: none !important; }

.vsm-single-post {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
.vsm-single-post__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d6b3a;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 16px;
}
.vsm-single-post__date {
  text-align: center;
  font-size: 0.88rem;
  color: #888;
  margin: 0 0 24px;
}
.vsm-single-post__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 auto 36px;
  width: 80px;
}
.vsm-single-post__content { color: #333; font-size: 1rem; line-height: 1.75; }
.vsm-single-post__content h2 {
  color: #1d6b3a;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 14px;
}
.vsm-single-post__content h3 {
  color: #1d6b3a;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 10px;
}
.vsm-single-post__content p { margin: 0 0 18px; }
.vsm-single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 28px auto;
}
.vsm-single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d6b3a;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 36px;
}
.vsm-single-post__back:hover { text-decoration: underline; }

/* ==============================================
   NEWSLETTER / PAW SECTION — all pages
   ============================================== */
.vsm-newsletter {
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 12px;
}
.vsm-newsletter::before,
.vsm-newsletter::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
}
/* Paw print left */
.vsm-newsletter::before {
  width: 220px;
  height: 220px;
  left: -30px;
  bottom: -20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='30' cy='20' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='60' cy='15' rx='9' ry='12' fill='%231d6b3a'/%3E%3Cellipse cx='80' cy='30' rx='8' ry='11' fill='%231d6b3a'/%3E%3Cellipse cx='15' cy='40' rx='7' ry='10' fill='%231d6b3a'/%3E%3Cellipse cx='50' cy='65' rx='28' ry='28' fill='%231d6b3a'/%3E%3C/svg%3E");
}
/* Paw print right */
.vsm-newsletter::after {
  width: 180px;
  height: 180px;
  right: 20px;
  top: -10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='30' cy='20' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='60' cy='15' rx='9' ry='12' fill='%231d6b3a'/%3E%3Cellipse cx='80' cy='30' rx='8' ry='11' fill='%231d6b3a'/%3E%3Cellipse cx='15' cy='40' rx='7' ry='10' fill='%231d6b3a'/%3E%3Cellipse cx='50' cy='65' rx='28' ry='28' fill='%231d6b3a'/%3E%3C/svg%3E");
  transform: rotate(25deg);
}

/* Newsletter child classes + paw spans */
.vsm-newsletter__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d6b3a;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.vsm-newsletter__form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 520px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}
.vsm-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.95rem;
  outline: none;
}
.vsm-newsletter__input:focus { border-color: #1d6b3a; }
.vsm-newsletter__btn {
  background: #1d6b3a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.vsm-newsletter__btn:hover { background: #155230; }

/* Paw print spans (decorative) */
.vsm-newsletter__paw {
  position: absolute;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.13;
  pointer-events: none;
  /* SVG paw: 4 toe pads + 1 main pad */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='32' cy='22' rx='11' ry='14' fill='%231d6b3a'/%3E%3Cellipse cx='58' cy='14' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='84' cy='20' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='100' cy='42' rx='9' ry='12' fill='%231d6b3a'/%3E%3Crect x='20' y='48' width='76' height='60' rx='30' ry='30' fill='%231d6b3a'/%3E%3C/svg%3E");
}
.vsm-newsletter__paw--left {
  left: 30px;
  bottom: -10px;
  transform: rotate(-20deg);
}
.vsm-newsletter__paw--right {
  right: 40px;
  top: -15px;
  transform: rotate(30deg);
  width: 160px;
  height: 160px;
}

/* Add extra paw via newsletter::before for more richness */
.vsm-newsletter::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: 220px;
  bottom: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='32' cy='22' rx='11' ry='14' fill='%231d6b3a'/%3E%3Cellipse cx='58' cy='14' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='84' cy='20' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='100' cy='42' rx='9' ry='12' fill='%231d6b3a'/%3E%3Crect x='20' y='48' width='76' height='60' rx='30' ry='30' fill='%231d6b3a'/%3E%3C/svg%3E");
  transform: rotate(15deg);
}
.vsm-newsletter::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  left: 200px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='32' cy='22' rx='11' ry='14' fill='%231d6b3a'/%3E%3Cellipse cx='58' cy='14' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='84' cy='20' rx='10' ry='13' fill='%231d6b3a'/%3E%3Cellipse cx='100' cy='42' rx='9' ry='12' fill='%231d6b3a'/%3E%3Crect x='20' y='48' width='76' height='60' rx='30' ry='30' fill='%231d6b3a'/%3E%3C/svg%3E");
  transform: rotate(-10deg);
}

/* === Explore Top Products — hide CATEGORY + price === */
.vsm-products-section .vsm-product-card__cat { display: none; }
.vsm-products-section .vsm-product-card__price { display: none; }

/* Blog decorative circles */
.vsm-blog-image-wrap { position: relative; }
.vsm-blog-image-wrap::before {
    content: "";
    position: absolute;
    width: 60px; height: 42px;
    background: #b8dfe8;
    border-radius: 50%;
    top: -14px; right: -10px;
    z-index: 1;
}
.vsm-blog-image-wrap::after {
    content: "";
    position: absolute;
    width: 76px; height: 76px;
    background: #c8ddc5;
    border-radius: 50%;
    bottom: -14px; left: -16px;
    z-index: 1;
}

/* light-tile dark text */
.vsm-htile-b .vsm-tile__label,
.vsm-htile-c .vsm-tile__label,
.vsm-htile-wound .vsm-tile__label {
    color: #1a2a1b;
    text-shadow: none;
}
.vsm-htile-b .vsm-tile__label small,
.vsm-htile-c .vsm-tile__label small,
.vsm-htile-wound .vsm-tile__label small {
    color: #1a2a1b;
    text-shadow: none;
}

/* blog eyebrow brown override */
.vsm-blog-section .vsm-blog-eyebrow { color: #A07830 !important; }


/* equip box + label */
.vsm-eqbox {
    display: block;
    background: #dff0f8;
    border-radius: 16px;
    padding: 26px;
}
.vsm-equip-tile span {
    display: block;
    text-align: left;
    color: #1a2a1b;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
    padding: 14px 4px 0;
}

/* promo button size */
.vsm-equip-promo .vsm-btn {
    display: inline-block;
    background: #fff !important;
    color: var(--vsm-green) !important;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 15px 44px;
    border-radius: 8px;
    border: none;
}
.vsm-equip-promo__text { padding: 34px 30px 20px; }
