/* ============================================================
   VANMAN THEME — main.css
   Font: Roboto Condensed | Base: 19px | Black/White
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.42;
    color: #000000;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

.container {
    max-width: 1513px;
    margin: 0 auto;
    padding: 0 64px;
}

@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px)  { .container { padding: 0 16px; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, .h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.35px;
    color: #000;
}
h2, .h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.35px;
    color: #000;
}
h3, .h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.77px;
    color: #000;
}
h4, .h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}
p { margin-bottom: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 3.8px;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 35px;
    border: 2px solid #000;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn:hover {
    background: #303236;
    border-color: #303236;
    text-decoration: none;
    color: #fff;
}
.btn--outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}
.btn--outline:hover {
    background: #000;
    color: #fff;
}
.btn--full { display: block; width: 100%; text-align: center; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    line-height: 1;
}
.badge--bestseller { background: #000; color: #fff; }
.badge--hot        { background: #e53935; color: #fff; }
.badge--new        { background: #1c6929; color: #fff; }

.badge-inline {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: #000;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* ============================================================
   STARS
   ============================================================ */
.stars { display: inline-flex; gap: 1px; }
.star { font-size: 14px; color: #e0e0e0; }
.star--full { color: #F5B800; }
.star--half { color: #F5B800; }

/* ============================================================
   ANNOUNCEMENT BAR — black bg, white text, static centered
   ============================================================ */
.announcement-bar {
    background: #000000;
    padding: 9px 0;
    text-align: center;
}
.announcement-bar__text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

/* ============================================================
   SITE HEADER — 2-row: logo+icons top, primary nav below
   ============================================================ */
.site-header {
    background: #ffffff;
    position: relative;
    z-index: 100;
}
.site-header__top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 18px 0 12px;
}
.site-header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-logo {
    height: 58px;
    width: auto;
    max-width: 200px;
}
.site-logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #000;
}

/* Icons positioned absolute-right inside .site-header__top */
.site-header__icons {
    display: flex;
    align-items: center;
    gap: 18px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Primary nav — second row, centered, no border */
.site-header__nav {
    padding: 10px 0 14px;
    text-align: center;
}
.site-header__nav-list {
    display: inline-flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header__nav-list a {
    font-size: 24px;
    font-weight: 400;
    color: #303236;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.15s;
}
.site-header__nav-list a:hover { color: #000; text-decoration: underline; }
.header-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.15s;
}
.header-icon:hover { opacity: 0.7; text-decoration: none; }
.cart-toggle { position: relative; }
.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 4px;
    margin-left: 2px;
}

/* Mobile-only header controls — hidden on desktop */
.site-header__burger { display: none; }
.site-header__mobile-search { display: none; }
.site-header__burger {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 26px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.site-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
}

/* ============================================================
   STICKY SECONDARY NAV — hidden until user scrolls past header
   ============================================================ */
.sticky-nav {
    background: #ffffff;
    border-bottom: 1px solid #e9eaec;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.25s ease, box-shadow 0.2s;
}
.sticky-nav.is-visible {
    transform: translateY(0);
}
.sticky-nav.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.sticky-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}
.sticky-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}
.sticky-nav__item { position: relative; }
.sticky-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15.67px;
    font-weight: 340;
    color: #303236;
    letter-spacing: 0.2px;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
    line-height: 1;
}
.sticky-nav__link:hover { color: #000; text-decoration: none; }
.sticky-nav__link svg { transition: transform 0.2s; flex-shrink: 0; }
.sticky-nav__item--has-mega:hover .sticky-nav__link svg,
.sticky-nav__item--has-mega .sticky-nav__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Icons in sticky nav */
.sticky-nav__icons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sticky-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    position: relative;
    text-decoration: none;
    transition: opacity 0.15s;
}
.sticky-nav__icon:hover { opacity: 0.7; }
.sticky-nav__icon .cart-count { position: absolute; top: 0; right: 0; }

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 1px;
    transition: all 0.3s;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e9eaec;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    z-index: 300;
    min-width: 900px;
    animation: fadeIn 0.18s ease;
}
.mega-menu.is-open { display: block; }
.mega-menu__inner {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr 220px;
    gap: 0;
    padding: 32px 24px;
}
.mega-menu__col { padding: 0 20px; }
.mega-menu__col + .mega-menu__col { border-left: 1px solid #e9eaec; }
.mega-menu__col--links { padding-left: 0; }

.mega-menu__col ul { display: flex; flex-direction: column; gap: 10px; }
.mega-menu__col li a {
    font-size: 15px;
    color: #303236;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}
.mega-menu__col li a:hover { color: #000; text-decoration: underline; }

.mega-menu__cat-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.mega-menu__cat-title a { color: #000; text-decoration: none; }
.mega-menu__cat-title a:hover { text-decoration: underline; }

.mega-menu__see-all a {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000 !important;
}

/* Featured deal card in mega menu */
.mega-menu__deal {
    display: block;
    text-decoration: none;
    text-align: center;
    position: relative;
}
.mega-menu__deal-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.mega-menu__deal img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}
.mega-menu__deal h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}
.mega-menu__deal p {
    font-size: 13px;
    color: #54595f;
    margin-bottom: 10px;
}
.mega-menu__deal-price {
    margin-bottom: 12px;
}
.mega-menu__deal-price s { color: #999; margin-right: 6px; font-size: 14px; }
.mega-menu__deal-price strong { font-size: 18px; font-weight: 700; color: #000; }
.mega-menu__deal .btn { font-size: 13px; padding: 8px 16px; letter-spacing: 2px; }
.mega-menu__deal:hover { text-decoration: none; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.search-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.search-overlay__inner {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
    position: relative;
}
.search-overlay__close {
    position: absolute;
    top: -60px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #000;
    line-height: 1;
}
.search-overlay__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    gap: 12px;
}
.search-overlay__form input {
    flex: 1;
    font-size: 28px;
    font-family: 'Roboto Condensed', sans-serif;
    border: none;
    outline: none;
    background: transparent;
    color: #000;
}
.search-overlay__form input::placeholder { color: #aaa; }
.search-overlay__form button {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.search-overlay__popular {
    margin-top: 28px;
}
.search-overlay__popular p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}
.search-overlay__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.search-overlay__tags a {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 15px;
    text-decoration: none;
    color: #000;
    transition: background 0.15s, color 0.15s;
}
.search-overlay__tags a:hover { background: #000; color: #fff; text-decoration: none; }

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 600;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__inner { padding: 24px; }
.mobile-menu__close {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 24px;
    line-height: 1;
}
.mobile-menu__list { display: flex; flex-direction: column; }
.mobile-menu__list > li {
    border-bottom: 1px solid #e9eaec;
}
.mobile-menu__list > li > a,
.mobile-menu__sub-toggle {
    display: block;
    padding: 14px 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    letter-spacing: -0.3px;
}
.mobile-menu__sub {
    display: none;
    padding: 0 0 12px 12px;
}
.mobile-menu__sub.is-open { display: block; }
.mobile-menu__sub li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #303236;
    text-decoration: none;
}
.mobile-menu__sub li a:hover { color: #000; }

/* Secondary mobile menu list (Bestsellers / Bundles / Log in) */
.mobile-menu__list--secondary { margin-top: 18px; }
.mobile-menu__list--secondary > li > a {
    font-size: 17px;
    font-weight: 400;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 590;
}
.mobile-menu-overlay.is-active { display: block; }

/* ============================================================
   SLIDE CART
   ============================================================ */
.slide-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 700;
}
.slide-cart-overlay.is-active { display: block; }

.slide-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 800;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Condensed', sans-serif;
}
.slide-cart.is-open { transform: translateX(0); }

#slide-cart-inner { display: flex; flex-direction: column; height: 100%; min-height: 0; }

/* Header */
.sc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.sc-head__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000;
}
.slide-cart__close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #000;
}

.sc-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 24px;
    text-align: center;
}
.sc-empty p { font-size: 18px; color: #666; }

/* Scrollable body */
.sc-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 26px;
    min-height: 0;
}

/* Items */
.sc-items { display: flex; flex-direction: column; gap: 14px; }
.sc-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 14px;
}
.sc-item__img img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; display: block; }
.sc-item__top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.sc-item__name { font-size: 16px; font-weight: 400; color: #000; line-height: 1.25; }
.sc-item__price { font-size: 15px; color: #000; white-space: nowrap; }
.sc-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sc-item__gift { font-size: 14px; color: #1c6929; font-weight: 700; }
.sc-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
}
.sc-qty span { min-width: 34px; text-align: center; font-size: 15px; }
.qty-btn {
    width: 34px;
    height: 34px;
    background: #fff;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: #f4f4f4; }
.slide-cart__remove {
    background: #f4f4f4;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-cart__remove:hover { color: #000; background: #ececec; }

/* You may also like */
.sc-upsell { margin-top: 28px; }
.sc-upsell__title { font-size: 17px; color: #000; margin-bottom: 12px; }
.sc-upsell__track { display: flex; flex-direction: column; gap: 10px; }
.sc-upsell__item {
    display: grid;
    grid-template-columns: 48px 1fr 40px;
    gap: 12px;
    align-items: center;
    background: #eef6fb;
    border: 1px solid #d7e9f5;
    border-radius: 8px;
    padding: 10px 12px;
}
.sc-upsell__item img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.sc-upsell__name { font-size: 15px; color: #1a4f7a; line-height: 1.2; }
.sc-upsell__price { font-size: 14px; color: #1a4f7a; }
.sc-add {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #2b2b2b;
    color: #fff;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.sc-add:hover { background: #000; }

/* Discount */
.sc-discount {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}
.sc-discount__input {
    flex: 1;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 12px 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    outline: none;
}
.sc-discount__input:focus { border-color: #000; }
.sc-discount__apply {
    background: #8a8a8a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    cursor: pointer;
}
.sc-discount__apply:hover { background: #6f6f6f; }

/* Dark footer */
.sc-foot {
    background: #1c1c1c;
    color: #fff;
    padding: 24px 26px 26px;
    flex-shrink: 0;
}
.sc-foot__row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 10px;
    color: #d6d6d6;
}
.sc-foot__subtotal {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.sc-checkout {
    display: block;
    width: 100%;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 40px;
    padding: 18px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s;
}
.sc-checkout:hover { opacity: 0.85; }

@media (max-width: 520px) {
    .slide-cart { width: 100vw; }
}

/* ============================================================
   CHECKOUT / CART — minimal Shopify-style header (logo + cart only)
   ============================================================ */
.woocommerce-checkout .site-header__nav,
.woocommerce-checkout .sticky-nav,
.woocommerce-checkout .site-header__burger,
.woocommerce-checkout .mobile-menu-toggle,
.woocommerce-checkout .site-header__mobile-search,
.woocommerce-checkout .site-header__account,
.woocommerce-cart .site-header__nav,
.woocommerce-cart .sticky-nav,
.woocommerce-cart .site-header__burger,
.woocommerce-cart .mobile-menu-toggle,
.woocommerce-cart .site-header__mobile-search,
.woocommerce-cart .site-header__account {
    display: none !important;
}
/* hide the black announcement bar — the trust badges replace it */
.woocommerce-checkout .announcement-bar,
.woocommerce-cart .announcement-bar { display: none !important; }

.woocommerce-checkout .site-header,
.woocommerce-cart .site-header {
    border-bottom: 1px solid #e6e6e6;
}
.woocommerce-checkout .site-header__top,
.woocommerce-cart .site-header__top {
    padding-top: 22px;
    padding-bottom: 22px;
    align-items: center;
}
/* Logo on top, trust badges stacked directly below it */
.woocommerce-checkout .site-header__logo,
.woocommerce-cart .site-header__logo {
    flex-direction: column;
}

/* Trust badges under the centered logo */
.checkout-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    margin-top: 10px;
}
.checkout-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    text-align: left;
}
.checkout-trust__item svg { flex-shrink: 0; }
@media (max-width: 600px) {
    .checkout-trust { gap: 18px; margin-top: 8px; }
    .checkout-trust__item { font-size: 12px; gap: 6px; }
    .checkout-trust__item svg { width: 18px; height: 18px; }
}

/* ============================================================
   WOOCOMMERCE CHECKOUT — Shopify-style split panel
   LEFT = form (white) · RIGHT = order summary (gray, edge-to-edge)
   ============================================================ */
.woocommerce-checkout .site-main { padding: 0; }
.woocommerce-checkout .page-title { display: none; }
.vm-checkout-page,
.vm-checkout-page > .woocommerce { width: 100%; max-width: none; }
.woocommerce-checkout .woocommerce-notices-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.vm-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 72vh;
    font-family: 'Roboto Condensed', sans-serif;
}

/* LEFT — form, content hugs the centre divider */
.vm-checkout-form {
    background: #fff;
    display: flex;
    justify-content: flex-end;
    padding: 48px 56px 90px;
}
.vm-checkout-form__inner { width: 100%; max-width: 560px; }

/* RIGHT — gray summary panel reaching the right edge */
.vm-checkout-summary {
    background: #fafafa;
    border-left: 1px solid #e6e6e6;
    padding: 48px 56px 90px;
}
.vm-checkout-summary__inner {
    width: 100%;
    max-width: 460px;
    position: sticky;
    top: 24px;
}
.vm-checkout-summary #order_review {
    background: transparent;
    border: none;
    padding: 0;
}

/* Section headings (Billing/Contact, Delivery, Payment) */
.vm-checkout-form h3,
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout #ship-to-different-address,
.vm-section-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #000;
}
.vm-section-heading { margin-top: 32px; }
.vm-payment-note { font-size: 13px; color: #777; margin: -8px 0 16px; }

/* "You may also like" upsell (top of left column) */
.vm-upsell { margin: 0 0 30px; }
.vm-upsell__title { font-size: 18px; font-weight: 400; color: #333; margin: 0 0 18px; }
.vm-upsell__list { display: flex; flex-direction: column; gap: 24px; }
.vm-upsell__row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.vm-upsell__thumb img {
    width: 64px; height: 64px; object-fit: cover;
    border: 1px solid #eee; border-radius: 8px; display: block;
}
.vm-upsell__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vm-upsell__name  { font-size: 15px; color: #000; line-height: 1.25; }
.vm-upsell__sub   { font-size: 13px; color: #8a8a8a; }
.vm-upsell__price { font-size: 15px; color: #000; margin-top: 2px; }
.vm-upsell__price del { color: #aaa; margin-right: 4px; }
.vm-upsell__price ins { text-decoration: none; }
.vm-upsell__actions { display: flex; gap: 12px; align-items: stretch; }
.vm-upsell__variation {
    flex: 1 1 50%; min-width: 0;
    border: 1px solid #cfcfcf; border-radius: 8px;
    padding: 11px 12px; font-size: 14px; background: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}
.vm-upsell__add {
    flex: 1 1 50%;
    background: #111; color: #fff; border: none; border-radius: 8px;
    padding: 12px; font-size: 15px; font-weight: 700; cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
}
.vm-upsell__add:hover { background: #000; }
.vm-upsell__add[disabled] { opacity: .7; cursor: default; }

/* Inputs */
.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 14px;
}
.woocommerce form .form-row label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout select,
.select2-container .select2-selection,
.woocommerce #order_comments {
    width: 100%;
    border: 1px solid #cfcfcf !important;
    border-radius: 6px;
    padding: 14px 14px;
    min-height: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    background: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 22px;
    padding: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 12px; }
.woocommerce form .form-row input.input-text:focus { border-color: #000; }
.woocommerce form .form-row-first { float: none; width: 100%; }
.woocommerce form .form-row-last  { float: none; width: 100%; }

/* Two-up rows (first/last name) on wider screens */
@media (min-width: 600px) {
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 14px;
    }
    .woocommerce-billing-fields__field-wrapper .form-row-wide,
    .woocommerce-shipping-fields__field-wrapper .form-row-wide { grid-column: 1 / -1; }
}

/* Order summary item rows with thumbnail + qty badge */
.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; }
.woocommerce-checkout-review-order-table tbody td { padding: 12px 0; border: none; vertical-align: top; }
.woocommerce-checkout-review-order-table tbody td.product-total { text-align: right; white-space: nowrap; font-size: 15px; }
.co-item { display: flex; align-items: center; gap: 14px; }
.co-item__thumb { position: relative; flex-shrink: 0; }
.co-item__thumb img {
    width: 56px; height: 56px; object-fit: cover;
    border: 1px solid #e3e3e3; border-radius: 8px; display: block;
}
.co-item__qty-badge {
    position: absolute; top: -8px; right: -8px;
    min-width: 22px; height: 22px; padding: 0 6px;
    background: #111; color: #fff; border-radius: 11px;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.co-item__name { font-size: 15px; color: #000; line-height: 1.3; }

/* Totals */
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    padding: 10px 0; font-size: 15px; text-align: left;
    border-top: 1px solid #e6e6e6;
}
.woocommerce-checkout-review-order-table tfoot td { text-align: right; }
.woocommerce-checkout-review-order-table tfoot tr:first-child th,
.woocommerce-checkout-review-order-table tfoot tr:first-child td { border-top: 1px solid #ddd; }
.woocommerce-checkout-review-order-table .order-total th { font-size: 19px; font-weight: 700; }
.woocommerce-checkout-review-order-table .order-total td { font-size: 22px; font-weight: 700; }

/* Payment box */
#payment { background: transparent; }
#payment ul.payment_methods {
    border: 1px solid #e6e6e6; border-radius: 8px; padding: 6px 16px; list-style: none; margin: 0 0 16px;
}
#payment ul.payment_methods li { padding: 12px 0; }
#payment div.payment_box {
    background: #f3f3f3; border-radius: 6px; font-size: 14px;
}
#payment div.payment_box::before { display: none; }

/* Place order button */
#payment #place_order,
.woocommerce #place_order {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
    float: none;
}
#payment #place_order:hover { background: #222; }

/* Coupon box inside the order summary */
.vm-summary-coupon { margin-top: 18px; }
.vm-summary-coupon .woocommerce-form-coupon-toggle { margin: 0; }
.vm-summary-coupon .woocommerce-form-coupon-toggle .woocommerce-info {
    background: transparent; border: none; padding: 0; margin: 0;
    font-size: 14px; color: #333;
}
.vm-summary-coupon .woocommerce-form-coupon-toggle .woocommerce-info::before { display: none; }
.vm-summary-coupon form.checkout_coupon {
    border: 1px solid #e0e0e0; border-radius: 8px; background: #fff;
    padding: 16px; margin: 12px 0 0;
}
.vm-summary-coupon form.checkout_coupon .form-row { margin-bottom: 10px; }

@media (max-width: 900px) {
    .vm-checkout-grid { grid-template-columns: 1fr; min-height: 0; }
    .vm-checkout-form,
    .vm-checkout-summary { justify-content: stretch; padding: 28px 18px 50px; }
    .vm-checkout-form__inner,
    .vm-checkout-summary__inner { max-width: 100%; position: static; }
    .vm-checkout-summary { border-left: none; border-top: 1px solid #e6e6e6; }
}

/* ============================================================
   WOOCOMMERCE CART page
   ============================================================ */
.woocommerce-cart .site-main { padding: 40px 0 70px; }
.woocommerce-cart table.cart img { width: 64px; border-radius: 6px; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: #000 !important; color: #fff !important;
    border-radius: 40px !important; padding: 16px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    text-align: center;
}

/* ============================================================
   FREE GIFT BAR
   ============================================================ */
.free-gift-bar {
    background: #000;
    color: #fff;
    padding: 8px 0;
    text-align: center;
}
.free-gift-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.free-gift-bar__tag {
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}
.free-gift-bar__text {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #fff;
}

/* ============================================================
   POPUP (Mystery Discount)
   ============================================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.popup-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.popup {
    background: #fff;
    max-width: 780px;
    width: 90%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    animation: popupIn 0.3s ease;
}
@keyframes popupIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.popup__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    color: #000;
}
.popup__body { display: grid; grid-template-columns: 1fr 1fr; }
.popup__left {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup__logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.7px;
    margin-bottom: 24px;
}
.popup__logo {
    height: 50px;
    width: auto;
    margin-bottom: 24px;
    object-fit: contain;
}
.popup__subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 4px;
}
.popup__title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 24px;
}
.popup__question {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.popup__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popup__option {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 35px;
    padding: 10px 20px;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}
.popup__option:hover { background: #333; }

.popup__right { background: #f5f5f5; }
.popup__images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
.popup__images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-slider   { position: relative; width: 100%; }
.hero-slide    { display: none; position: relative; }
.hero-slide.is-active { display: block; }
.hero-slide a  { display: block; }
.hero-slide img {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 900px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder hero */
.hero-slide--placeholder .hero-placeholder {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-placeholder__content {
    text-align: center;
    padding: 40px;
}
.hero-placeholder__content h1 {
    font-size: 64px;
    margin-bottom: 16px;
}
.hero-placeholder__content p {
    font-size: 24px;
    margin-bottom: 32px;
    color: #555;
}

.hero-slider__prev,
.hero-slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.hero-slider__prev { left: 20px; }
.hero-slider__next { right: 20px; }
.hero-slider__prev:hover,
.hero-slider__next:hover { background: rgba(255,255,255,1); }

.hero-slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-slider__dot.is-active { background: #fff; }

/* ============================================================
   HOMEPAGE — hero banner + section headings
   ============================================================ */
/* Hero banner — full-bleed, edge to edge, whole image shown */
.home-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}
.home-hero__link {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 0;
}
.home-hero__img {
    display: block;
    width: 100%;
    height: auto;          /* natural aspect ratio — nothing cropped */
    margin: 0;
    padding: 0;
    border: 0;
}

/* Section heading used across homepage (italic, like Shopify H1) */
.home-section__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    color: #000;
    margin-bottom: 36px;
}

.home-products__cta {
    text-align: center;
    margin-top: 44px;
}
.no-products { text-align: center; font-size: 18px; padding: 40px 0; }

/* All Products page */
.all-products-page { padding: 50px 0 80px; }
.all-products-page__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

/* ============================================================
   HOMEPAGE — Customer Reviews carousel
   ============================================================ */
.home-testimonials { padding: 80px 0; border-top: 1px solid #eee; }
.testi-carousel { position: relative; }
.testi-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
    flex: 0 0 33.3333%;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 0 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testi-card__quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 80px;
    line-height: 0.9;
    height: 46px;
    color: #e2e2e2;
}
.testi-card__text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1.45;
    color: #000;
    margin-bottom: 18px;
}
.testi-card__stars {
    color: #F5B800;
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 12px;
}
.testi-card__author {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    color: #303236;
}
.testi-card__author em { font-weight: 400; }
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 40px;
}
.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfcfcf;
    padding: 0;
    cursor: pointer;
}
.testi-dot.is-active { background: #333; }

@media (max-width: 900px) {
    .testi-card { flex-basis: 100%; padding: 0 16px; }
}

/* ============================================================
   HOMEPAGE — Instagram grid
   ============================================================ */
.home-instagram { padding: 70px 0 90px; text-align: center; }
.home-instagram__handle {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    color: #000;
    text-decoration: none;
    margin: -18px 0 34px;
}
.home-instagram__handle:hover { opacity: 0.7; }
.home-instagram__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.home-ig-card { display: block; text-decoration: none; color: #000; }
.home-ig-card__img {
    aspect-ratio: 1;
    background: #f3f3f3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-ig-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.home-ig-card:hover .home-ig-card__img img { transform: scale(1.05); }
.home-ig-card__placeholder { color: #bbb; }
.home-ig-card__likes {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 4px 0;
    font-size: 15px;
    color: #303236;
}
.home-ig-card__likes svg { flex-shrink: 0; }

@media (max-width: 768px) {
    /* Instagram becomes a horizontal sliding strip on phones */
    .home-instagram__grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .home-instagram__grid .home-ig-card {
        flex: 0 0 72%;
        scroll-snap-align: center;
    }
    .home-testimonials { padding: 56px 0; }
}

/* ============================================================
   PRODUCT GRID (Home + Shop)
   ============================================================ */
.home-products { padding: 60px 0; }
.home-products__inner {}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}
.product-grid--home {}

@media (max-width: 768px) {
    .home-section__title { font-size: 32px; margin-bottom: 24px; }
}

@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; } }
@media (max-width: 400px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; } }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.product-card__image-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
    text-decoration: none;
}
.product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.product-card__image-wrap:hover img { transform: scale(1.03); }

.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}
.product-card__badge.badge--bestseller { background: #000; color: #fff; }
.product-card__badge.badge--hot        { background: #e53935; color: #fff; }
.product-card__badge.badge--new        { background: #1c6929; color: #fff; }

/* Centered card content: stars → title → bought → price */
.product-card__info {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
}
.product-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.product-card__review-count {
    font-size: 16px;
    color: #54595f;
}
.product-card__name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 21px;
    font-weight: 400;          /* not bold */
    color: #000;
    text-decoration: none;
    line-height: 1.2;
    display: block;
}
.product-card__name:hover { text-decoration: underline; }
.product-card__bought {
    font-size: 16px;
    color: #54595f;
}
.product-card__price {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin-top: 2px;
}
.product-card__price del { color: #aaa; margin-right: 4px; }
.product-card__price ins { text-decoration: none; color: #000; font-weight: 700; }

/* Keep cards (and their content) inside the column on mobile */
.product-card { min-width: 0; }
.product-card__info { min-width: 0; width: 100%; }
.product-card__name,
.product-card__bought,
.product-card__review-count,
.product-card__price { max-width: 100%; overflow-wrap: anywhere; }

@media (max-width: 600px) {
    .product-card__info { padding-top: 10px; gap: 4px; }
    .product-card__name { font-size: 16px; }
    .product-card__bought,
    .product-card__review-count { font-size: 13px; }
    .product-card__price { font-size: 15px; }
    .product-card__rating { gap: 5px; }
    /* shrink the star SVGs so the rating row never exceeds the half-column */
    .product-card__rating .vm-stars svg { width: 16px; height: 16px; }
}

/* ============================================================
   FREE GIFT CARD (in product grid)
   ============================================================ */
.free-gift-card {
    padding: 40px 0;
    grid-column: 1 / -1;
}
.free-gift-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 48px 32px;
    text-decoration: none;
    color: #000;
    transition: background 0.2s;
    gap: 10px;
}
.free-gift-card__inner:hover { background: #f0f0f0; text-decoration: none; }
.free-gift-card__tag {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 5px 14px;
    border-radius: 3px;
    text-transform: uppercase;
}
.free-gift-card__inner h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.9px;
    margin-top: 6px;
}
.free-gift-card__inner p { font-size: 17px; color: #555; }
.free-gift-card__desc { font-size: 15px !important; }
.free-gift-card__inner .btn { margin-top: 8px; }

/* ============================================================
   CUSTOMER REVIEWS SECTION
   ============================================================ */
.reviews-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e9eaec;
}
.reviews-section__inner {}
.reviews-section__title {
    text-align: center;
    margin-bottom: 48px;
}
.reviews-slider {
    position: relative;
    overflow: hidden;
}
.review-slide {
    display: none;
    padding: 48px 80px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}
.review-slide.is-active { display: block; }
.review-slide__stars {
    font-size: 28px;
    color: #F5B800;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.review-slide__text {
    font-size: 22px;
    line-height: 1.5;
    color: #000;
    max-width: 700px;
    margin: 0 auto 20px;
    font-style: italic;
}
.review-slide__author {
    font-size: 16px;
    font-weight: 700;
    color: #303236;
}
.reviews-slider__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.reviews-slider__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.reviews-slider__btn:hover { background: #333; }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
    padding: 80px 0;
    border-top: 1px solid #e9eaec;
}
.instagram-section__header {
    text-align: center;
    margin-bottom: 40px;
}
.instagram-section__header h2 { margin-bottom: 8px; }
.instagram-section__handle {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
}
.instagram-section__handle:hover { opacity: 0.7; text-decoration: none; }

.instagram-section__feed {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.instagram-section__link { display: block; aspect-ratio: 1; overflow: hidden; }
.instagram-section__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.instagram-section__link:hover img { transform: scale(1.05); }

.instagram-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #aaa;
    text-decoration: none;
}
.instagram-placeholder span { font-size: 13px; }

@media (max-width: 1024px) { .instagram-section__feed { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .instagram-section__feed { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FOOTER (new — matches Shopify layout)
   ============================================================ */
.site-footer { width: 100%; }

/* Black newsletter band */
.ft-news {
    background: #000;
    color: #fff;
    padding: 64px 0;
    text-align: center;
}
.ft-news__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}
.ft-news__form {
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
}
.ft-news__form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    padding: 10px 4px;
}
.ft-news__form input[type="email"]::placeholder { color: #cfcfcf; }
.ft-news__submit {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    display: flex;
}

/* White bottom section */
.ft-bottom {
    background: #fff;
    padding: 48px 0 40px;
    text-align: center;
}
.ft-bottom__currency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 34px;
}
.ft-bottom__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
    margin-bottom: 30px;
}
.ft-bottom__links a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
.ft-bottom__links a:hover { text-decoration: underline; }
.ft-bottom__payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}
.ft-bottom__payment .payment-icon {
    width: 38px;
    height: 24px;
    display: block;
}
.ft-bottom__copy {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    color: #555;
}

@media (max-width: 600px) {
    .ft-news__title { font-size: 26px; }
    .ft-bottom__links { gap: 10px 18px; }
    .ft-bottom__links a { font-size: 15px; }
}

/* ============================================================
   FOOTER MAIN (legacy — no longer output, kept for safety)
   ============================================================ */
.footer-main {
    background: #fff;
    border-top: 1px solid #e9eaec;
    padding-top: 60px;
}
.footer-main__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-main__tagline {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-newsletter {}
.footer-newsletter__row {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    border: 1px solid #000;
    border-radius: 35px;
    overflow: hidden;
}
.footer-newsletter__row input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    background: transparent;
}
.footer-newsletter__row .btn {
    border-radius: 0 35px 35px 0;
    font-size: 15px;
    padding: 12px 22px;
    letter-spacing: 2px;
    flex-shrink: 0;
}
.footer-newsletter__note {
    font-size: 13px;
    color: #54595f;
}
.footer-main__heading {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #000;
}
.footer-main__links { display: flex; flex-direction: column; gap: 10px; }
.footer-main__links a {
    font-size: 15px;
    color: #303236;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-main__links a:hover { color: #000; text-decoration: underline; }

.footer-main__bottom {
    border-top: 1px solid #e9eaec;
    padding: 20px 0;
    background: #fff;
}
.footer-main__bottom p {
    font-size: 13px;
    color: #54595f;
    text-align: center;
}
.footer-main__bottom a {
    color: #54595f;
    text-decoration: none;
}
.footer-main__bottom a:hover { color: #000; }

@media (max-width: 1024px) {
    .footer-main__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-main__col--newsletter { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-main__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */
.footer-bottom {
    background: #fff;
    border-top: 2px solid #000;
    padding: 40px 0;
}
.footer-bottom__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-reviews-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}
.footer-reviews-badge:hover { text-decoration: underline; }
.footer-reviews-badge__stars { font-size: 20px; color: #F5B800; letter-spacing: 2px; }
.footer-reviews-badge span { font-size: 15px; color: #303236; }

.footer-bottom__newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 460px;
}
.footer-bottom__newsletter p { font-size: 17px; font-weight: 700; }
.footer-newsletter-inline {
    display: flex;
    width: 100%;
    border: 1px solid #000;
    border-radius: 35px;
    overflow: hidden;
}
.footer-newsletter-inline input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    background: transparent;
}
.footer-newsletter-inline .btn {
    border-radius: 0 35px 35px 0;
    font-size: 15px;
    padding: 12px 22px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.footer-bottom__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}
.footer-bottom__links a {
    font-size: 14px;
    color: #303236;
    text-decoration: none;
}
.footer-bottom__links a:hover { text-decoration: underline; color: #000; }

.footer-bottom__payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    align-items: center;
}
.payment-icon {
    height: 24px;
    width: auto;
    border-radius: 4px;
    opacity: 0.85;
}

.footer-bottom__copy {
    font-size: 13px;
    color: #54595f;
}

/* ============================================================
   SHOP / ARCHIVE PAGE
   ============================================================ */
.shop-page { padding: 40px 0 80px; }
.shop-page__header {
    padding: 40px 0 32px;
    border-bottom: 1px solid #e9eaec;
    margin-bottom: 40px;
}
.shop-page__title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.2px;
}
.shop-page__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}
.shop-page__count { font-size: 15px; color: #54595f; }
.shop-page__sort select {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    outline: none;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.single-product-page { padding: 48px 0 80px; }

/* 3-column layout: thumbs | gallery | info
   Shopify uses images 60% / info 40% (medium-up--two-fifths).
   thumbs 76px + main ≈ 60%, info ≈ 40% → main:info ratio ~1.35:1 */
.single-product-layout {
    display: grid;
    grid-template-columns: 76px minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 20px 28px;
    align-items: start;
}

/* LEFT: Sticky thumbnail column */
.single-product-thumbs-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: sticky;
    top: 80px;
    align-self: start;
}
.single-product-thumb {
    width: 76px;
    height: 76px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f5f5f5;
    flex-shrink: 0;
    transition: border-color 0.15s;
}
.single-product-thumb.is-active { border-color: #000; }
.single-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CENTER: Stacked scrollable gallery */
.single-product-main-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.spd-gallery-img {
    position: relative;
    width: 100%;
    background: #f5f5f5;
}
.spd-gallery-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.spd-gallery-img .product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

/* RIGHT: Product info
   All sizes/weights/spacing match Shopify Streamline source:
   --typeHeaderSize:54px  --typeHeaderStyle:italic  --typeHeaderWeight:700
   --typeHeaderSpacing:-0.025em  --typeHeaderLineHeight:1
   --typeBaseSize:19px  --typeBaseWeight:400  --typeBaseLineHeight:1.6
   --buttonRadius:35px  star-color:#F5B800
   ---------------------------------------------------------------- */
.single-product-info {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;
    align-self: start;
    padding-left: 20px;
}

/* Title — exact Shopify H1 values */
.spd-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1;
    margin: 0 0 16px;
    color: #000;
    word-break: break-word;
}

/* ============================================================
   ROUNDED STAR RATING (two-layer fractional fill, #F5B800)
   Used on product page (double size) and product cards.
   ============================================================ */
.vm-stars {
    position: relative;
    display: inline-flex;
    line-height: 0;
    vertical-align: middle;
}
.vm-stars__bg,
.vm-stars__fg {
    display: inline-flex;
}
.vm-stars__bg { color: #e3e3e3; }
.vm-stars__fg {
    color: #F5B800;
    position: absolute;
    top: 0;
    left: 0;
    width: var(--vm-star-pct, 100%);
    overflow: hidden;
    white-space: nowrap;
}
.vm-star { display: block; flex: 0 0 auto; }

/* Stars row on product page */
.spd-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.spd-review-count {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.spd-review-count:hover { color: #555; }

/* Bought last month — 1.5× base */
.spd-bought {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 21px;
    font-weight: 400;
    font-style: normal;
    color: #595959;
    margin: 0 0 12px;
    letter-spacing: 0;
}

/* Price — 1.5× base (19px → 28px) */
.spd-price {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 8px 0 6px;
    color: #000;
}
.spd-price del {
    color: #aaa;
    margin-right: 8px;
    font-size: 24px;
    text-decoration: line-through;
}
.spd-price ins { text-decoration: none; }

/* Shipping note — Shopify .product__policies at base size with underlined link */
.spd-shipping-note {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.6;
    color: #000;
    margin: 0 0 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}
.spd-shipping-note a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #000;
}

/* Field block — label (heading) ABOVE its control (quantity, variants) */
.spd-field {
    margin-bottom: 18px;
}
.spd-field__label {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 8px;
}
.spd-qty-input {
    display: block;
    width: 90px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    outline: none;
    background: #fff;
    -moz-appearance: textfield;
}
.spd-qty-input:focus { border-color: #000; }
.spd-qty-input::-webkit-outer-spin-button,
.spd-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Subscribe options — Shopify recharge widget style */
.spd-subscribe-opts {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
}
.spd-subscribe-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    background: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    color: #000;
    border-bottom: 1px solid #d9d9d9;
}
.spd-subscribe-opt:last-of-type { border-bottom: none; }
.spd-subscribe-opt--selected { background: #f0f0f0; }
.spd-subscribe-opt input[type="radio"] { accent-color: #000; flex-shrink: 0; width: 16px; height: 16px; }
.spd-subscribe-opt__text { flex: 1; line-height: 1.4; }
.spd-subscription-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #595959;
    padding: 8px 18px 12px;
    text-decoration: none;
}
.spd-subscription-details:hover { color: #000; }
.spd-subscription-details svg { flex-shrink: 0; }

/* Buttons — Shopify .btn .btn--full .btn--tertiary
   border-radius: var(--buttonRadius) = 35px
   font: base 19px, uppercase, letter-spacing 3.8px  */
.spd-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.spd-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 35px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3.8px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border: 2px solid #000;
    text-decoration: none;
    box-sizing: border-box;
}
.spd-btn--outline {
    background: transparent;
    color: #000;          /* hollow with black border + black text */
}
.spd-btn--outline:hover { background: #000; color: #fff; }
.spd-btn--black {
    background: #000;
    color: #fff;
    border-color: #000;
}
.spd-btn--black:hover { background: #222; }

/* "Buy with shop" — Shop Pay purple button (#5a31f4) */
.spd-btn--shop {
    background: #5a31f4;
    border-color: #5a31f4;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.2px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.spd-btn--shop:hover { background: #4a27d4; border-color: #4a27d4; }
.spd-shop-word {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.5px;
}
.spd-btn--shop svg { display: block; }

/* More payment options — text link centered */
.spd-more-payment {
    display: block;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    margin-top: 4px;
}
.spd-more-payment:hover { opacity: 0.7; }
.spd-out-of-stock {
    font-size: 19px;
    color: #e53935;
    font-weight: 700;
    margin: 16px 0;
}

/* Disclaimer — Shopify #shopify-buyer-consent small text */
.spd-disclaimer {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    color: #595959;
    line-height: 1.5;
    margin: 14px 0 14px;
    border-top: 1px solid #e5e5e5;
    padding-top: 14px;
}

/* Description with Read More
   Shopify uses base 19px, normal, line-height 1.6 for .rte content */
.spd-description-wrap {
    border-top: 1px solid #e5e5e5;
    padding-top: 18px;
    margin-top: 4px;
    margin-bottom: 6px;
}
.spd-description {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.6;
    color: #000;
}
.spd-description p { margin-bottom: 10px; }
.spd-description p:last-child { margin-bottom: 0; }
.spd-description--collapsed {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}
.spd-description--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
}
.spd-read-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
}
.spd-read-more:hover { text-decoration: underline; }

/* WooCommerce variable form overrides — stack label ABOVE each option */
.spd-variable-form .variations,
.spd-variable-form .variations tbody,
.spd-variable-form .variations tr,
.spd-variable-form .variations td {
    display: block !important;
    width: 100% !important;
    border: none !important;
    padding: 0 !important;
}
.spd-variable-form .variations tr { margin-bottom: 18px; }
.spd-variable-form .variations td.label {
    margin-bottom: 8px !important;
}
.spd-variable-form .variations td.label label {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #000 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
}
.spd-variable-form .variations select {
    display: block !important;
    width: 100% !important;
    max-width: 280px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px !important;
    padding: 10px 12px !important;
    font-size: 17px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    background: #fff !important;
    outline: none !important;
    cursor: pointer !important;
}
.spd-variable-form .reset_variations { font-size: 14px; color: #595959; }
.spd-variable-form .quantity { margin-bottom: 16px; }
.spd-variable-form .quantity input {
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px !important;
    width: 90px !important;
    font-size: 19px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    padding: 10px 12px !important;
}
.spd-variable-form .single_add_to_cart_button {
    border-radius: 35px !important; width: 100% !important; margin-top: 10px !important;
    font-size: 19px !important; padding: 14px 24px !important; letter-spacing: 3.8px !important;
    text-transform: uppercase !important;
    background: transparent !important; color: #000 !important; border: 2px solid #000 !important;
}
.spd-variable-form .single_add_to_cart_button:hover { background: #000 !important; color: #fff !important; }

/* ============================================================
   PRODUCT PAGE ACCORDIONS
   ============================================================ */
.spd-accordions {
    border-top: 1px solid #d9d9d9;
    margin-top: 24px;
}
.spd-accordion {
    border-bottom: 1px solid #d9d9d9;
}
.spd-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.3px;
    transition: color 0.15s;
}
.spd-accordion__trigger:hover { color: #555; }
.spd-accordion__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #000;
}
.spd-accordion__trigger[aria-expanded="true"] .spd-accordion__icon {
    transform: rotate(45deg);
}
.spd-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.spd-accordion__body.is-open {
    max-height: 800px;
}
.spd-accordion__content {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #303236;
}
.spd-accordion__content p { margin-bottom: 8px; }
.spd-accordion__content p:last-child { margin-bottom: 0; }

/* ============================================================
   SINGLE PRODUCT — SECTION HEADINGS (You may also like / Reviews)
   ============================================================ */
.spd-section {
    margin-top: 70px;
    padding-top: 10px;
}
.spd-section__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 38px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    color: #000;
    margin-bottom: 34px;
}

/* You may also like — product grid + cards (no ATC button) */
.spd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}
.spd-related-card {
    display: block;
    text-decoration: none;
    color: #000;
}
.spd-related-card__img {
    background: #f5f5f5;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 14px;
}
.spd-related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.spd-related-card:hover .spd-related-card__img img { transform: scale(1.04); }
.spd-related-card__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;        /* 1.5× the previous ~16px card title */
    font-weight: 700;
    line-height: 1.15;
    color: #000;
    margin: 0 0 8px;
}
.spd-related-card__rating { margin-bottom: 8px; }
.spd-related-card__price {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
}
.spd-related-card__price del { color: #aaa; margin-right: 6px; }
.spd-related-card__price ins { text-decoration: none; }

/* ============================================================
   CUSTOM REVIEWS — Judge.me style (.jdg)
   ============================================================ */
.jdg {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 30px 36px;
}
.jdg__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    color: #000;
    text-align: left;
    margin: 0 0 22px;
}

/* Header: summary | histogram | write button */
.jdg__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 30px;
}
.jdg__summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
}
.jdg__based {
    font-size: 16px;
    color: #000;
}
.jdg__histogram {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 280px;
}
.jdg__hrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}
.jdg__hbar {
    flex: 1;
    height: 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}
.jdg__hbar i {
    display: block;
    height: 100%;
    background: #F5B800;
}
.jdg__hpct { width: 34px; text-align: right; }
.jdg__hcount { width: 28px; color: #2b6cb0; }
.jdg__write-wrap { display: flex; align-items: flex-start; }
.jdg__write {
    display: inline-block;
    border: 1px solid #333;
    background: #fff;
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    padding: 11px 18px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
}
.jdg__write:hover { background: #000; color: #fff; }

/* Sort bar */
.jdg__sortbar { margin-top: 20px; }
.jdg__sort {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    padding: 7px 28px 7px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
}

/* Review list */
.jdg__list { margin-top: 6px; }
.jdg__review {
    display: flex;
    gap: 18px;
    padding: 26px 0;
    border-top: 1px solid #eee;
}
.jdg__avatar {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jdg__avatar-initial {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #555;
}
.jdg__avatar-check {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jdg__main { flex: 1; min-width: 0; }
.jdg__rev-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}
.jdg__rev-date { font-size: 14px; color: #777; white-space: nowrap; }
.jdg__rev-author {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.jdg__rev-author strong { font-weight: 700; }
.jdg__verified-by {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 700;
    color: #1a9c63;
}
.jdg__rev-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}
.jdg__rev-body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #303236;
}
.jdg__rev-votes {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-top: 12px;
}
.jdg__vote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #777;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}
.jdg__vote:hover { color: #000; }
.jdg__vote.is-voted { color: #000; }

@media (max-width: 768px) {
    .jdg { padding: 22px 18px; }
    .jdg__head { grid-template-columns: 1fr; gap: 20px; }
    .jdg__histogram { max-width: none; }
    .spd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .spd-related-card__title { font-size: 21px; }
}

/* Product meta */
.spd-meta {
    font-size: 14px;
    color: #54595f;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.spd-meta strong { color: #303236; }

/* Free gift reminder */
.spd-gift-reminder {
    margin-top: 16px;
    padding: 14px 16px;
    background: #f9f9f9;
    border: 1px solid #e9eaec;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

/* Product Reviews */
.product-reviews {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e9eaec;
}
.product-reviews h2 { margin-bottom: 32px; }

/* WooCommerce comment form on product page */
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    width: 48px;
    border-radius: 50%;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border: 1px solid #e9eaec;
    border-radius: 4px;
    padding: 16px;
}
.woocommerce #reviews #respond input#submit {
    border-radius: 35px !important;
}

/* Dot nav for mobile gallery — hidden on desktop */
.spd-gallery-dots { display: none; }

/* ============================================================
   RESPONSIVE — Single product
   ============================================================ */
@media (max-width: 1100px) {
    .single-product-layout {
        grid-template-columns: 80px 1.3fr 1fr;
    }
    .single-product-thumb { width: 80px; height: 80px; }
}

/* ---- PHONES + TABLETS: hamburger header + full-width swipe gallery ---- */
@media (max-width: 1024px) {

    /* ---------- Header: burger | logo | search + cart ---------- */
    .site-header__top {
        justify-content: space-between;
        padding: 12px 0;
    }
    .site-header__burger { display: flex; }
    .site-header__mobile-search { display: flex; }
    .site-header__account { display: none; }       /* target shows only search + cart */
    .site-header__logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .site-header__icons {
        position: static;
        transform: none;
        gap: 18px;
    }
    .site-logo { height: 44px; }
    .site-header__nav { display: none; }            /* hide desktop primary nav row */
    .sticky-nav { display: none; }                  /* hide desktop secondary nav */

    /* ---------- Product: single column ---------- */
    .single-product-page { padding: 22px 0 60px; }
    .single-product-layout {
        display: block;
    }
    .single-product-thumbs-col { display: none; }   /* no thumbnails on mobile */

    /* main column becomes a horizontal swipe carousel */
    .single-product-main-col {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -16px;                            /* full-bleed edge to edge */
    }
    .single-product-main-col::-webkit-scrollbar { display: none; }
    .spd-gallery-img {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    .spd-gallery-img img { aspect-ratio: 1; }

    /* dots */
    .spd-gallery-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 14px 0 4px;
    }
    .spd-gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: #cfcfcf;
        padding: 0;
        cursor: pointer;
    }
    .spd-gallery-dot.is-active { background: #333; }

    /* info full width, no sticky */
    .single-product-info {
        position: static;
        padding-left: 0;
        margin-top: 22px;
        text-align: center;                         /* center meta like Shopify mobile */
    }
    .spd-title { font-size: 34px; }
    .spd-rating { justify-content: center; }
    .spd-price { font-size: 26px; }
    .spd-shipping-note { border-bottom: none; padding-bottom: 12px; margin-bottom: 16px; }

    /* left-align the interactive / text blocks again */
    .spd-field,
    .spd-subscribe-opts,
    .spd-description-wrap,
    .spd-accordions { text-align: left; }
    .spd-disclaimer { text-align: center; }

    .spd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .spd-title { font-size: 30px; }
    .spd-price { font-size: 24px; }
    .spd-section__title { font-size: 28px; }
    .site-logo { height: 38px; }
}

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-page { padding: 60px 0; }
.blog-page__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    margin-bottom: 50px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 36px;
    margin-bottom: 60px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Card: image → italic title → date, centered (matches reference) */
.blog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.blog-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 20px;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
.blog-card__title { margin-bottom: 14px; }
.blog-card__title a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.015em;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
}
.blog-card__title a:hover { text-decoration: underline; }
.blog-card__date {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    color: #777;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 0;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    color: #000;
    transition: all 0.15s;
}
.pagination .current { background: #000; color: #fff; border-color: #000; }
.pagination a:hover { background: #f5f5f5; text-decoration: none; }

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */
.single-post-page { padding: 60px 0; max-width: 780px; margin: 0 auto; }
.single-post-date { font-size: 14px; color: #888; margin-bottom: 16px; }
.single-post-title { font-size: 48px; letter-spacing: -1.2px; margin-bottom: 32px; }
.single-post-featured { margin-bottom: 36px; }
.single-post-featured img { width: 100%; height: auto; border-radius: 4px; }
.single-post-content {
    font-size: 18px;
    line-height: 1.7;
    color: #303236;
}
.single-post-content h2 { font-size: 30px; margin: 32px 0 16px; }
.single-post-content h3 { font-size: 24px; margin: 24px 0 12px; }
.single-post-content p { margin-bottom: 20px; }
.single-post-content ul, .single-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content a { text-decoration: underline; color: #000; }
.single-post-content img { width: 100%; height: auto; border-radius: 4px; margin: 24px 0; }
.single-post-content blockquote {
    border-left: 4px solid #000;
    padding: 16px 24px;
    background: #f5f5f5;
    margin: 24px 0;
    font-style: italic;
}

/* ============================================================
   PAGE (generic)
   ============================================================ */
.page-content { padding: 60px 0; max-width: 900px; margin: 0 auto; }
.page-title { font-size: 48px; letter-spacing: -1.2px; margin-bottom: 40px; }
.page-body {
    font-size: 18px;
    line-height: 1.7;
    color: #303236;
}
.page-body h2 { font-size: 30px; margin: 32px 0 16px; }
.page-body h3 { font-size: 24px; margin: 24px 0 12px; }
.page-body p  { margin-bottom: 20px; }

/* Contact form */
.contact-form { margin-top: 40px; max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    outline: none;
    transition: border-color 0.15s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #000; }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
/* Cart & Checkout */
.woocommerce-cart-form,
.woocommerce .cart,
.woocommerce-checkout { padding: 40px 0; }

.woocommerce table.shop_table {
    border: 1px solid #e9eaec;
    border-radius: 4px;
    width: 100%;
    border-collapse: collapse;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e9eaec;
    font-size: 15px;
}
.woocommerce table.shop_table th { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

.woocommerce .button,
.woocommerce button.button,
.woocommerce input[type="submit"],
.woocommerce a.button {
    background: #000 !important;
    color: #fff !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 12px 24px !important;
    border-radius: 35px !important;
    border: 2px solid #000 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce a.button:hover {
    background: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
    border-left: 4px solid #000;
    background: #f9f9f9;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
    font-size: 15px;
}
.woocommerce .woocommerce-error { border-color: #e53935; background: #fff5f5; }
.woocommerce .woocommerce-message { border-color: #1c6929; background: #f0fff4; }

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    outline: none !important;
    width: 100% !important;
    transition: border-color 0.15s !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}
.woocommerce form .form-row label {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

/* Order summary */
.woocommerce-checkout #order_review .shop_table { margin-bottom: 24px; }
.woocommerce #payment { background: #f9f9f9; border-radius: 8px; padding: 24px; }
.woocommerce #payment .payment_methods { margin-bottom: 20px; }

/* ============================================================
   NOTICES (subscribe success/error)
   ============================================================ */
.vanman-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #000;
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 15px;
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    max-width: 320px;
}
.vanman-notice.is-visible { transform: translateY(0); opacity: 1; }
.vanman-notice--error { background: #e53935; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 24px;
}
.page-404 h1 { font-size: 120px; line-height: 1; opacity: 0.1; }
.page-404 h2 { font-size: 36px; }
.page-404 p  { font-size: 18px; color: #54595f; }

/* ============================================================
   UTILITIES
   ============================================================ */
.no-scroll { overflow: hidden; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 900px) {
    .site-header__nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .sticky-nav__list { display: none; }
    .mega-menu { display: none !important; }

    h1, .h1 { font-size: 36px; letter-spacing: -0.9px; }
    h2, .h2 { font-size: 36px; letter-spacing: -0.9px; }

    .announcement-bar__text { font-size: 15px; }

    .review-slide { padding: 32px 24px; }
    .review-slide__text { font-size: 18px; }

    .slide-cart { width: 100%; }

    .single-post-title { font-size: 32px; }
    .blog-page__title  { font-size: 36px; }
    .page-title        { font-size: 36px; }
    .shop-page__title  { font-size: 36px; }
}

@media (max-width: 600px) {
    .hero-slide img { height: 50vh; min-height: 300px; }
    .hero-placeholder__content h1 { font-size: 36px; }
    .home-products { padding: 40px 0; }
    .reviews-section { padding: 48px 0; }
    .instagram-section { padding: 48px 0; }
    .footer-main__inner { grid-template-columns: 1fr; }
    .footer-bottom__links { gap: 6px 12px; }
    .free-gift-card__inner h3 { font-size: 26px; }
    .popup__body { grid-template-columns: 1fr; }
    .popup__right { display: none; }
}
