/* =========================================================
   vcard45 — Premium Monochrome E-commerce
   Aesthetic: Apple / COS / Fear of God / Zara minimalism
   Pure white, deep ink, sharp Inter, edge-to-edge, sharp corners
   ========================================================= */
:root {
    /* Monochrome luxury palette */
    --v45-bg:        #FFFFFF;
    --v45-surface:   #FAFAFA;
    --v45-surface-2: #F4F4F4;
    --v45-ink:       #0A0A0A;
    --v45-ink-2:     #1A1A1A;
    --v45-text:      #1F1F1F;
    --v45-muted:     #6B6B6B;
    --v45-line:      #E8E8E8;
    --v45-line-2:    #D1D1D1;

    /* Accent — pure black CTA. Red used sparingly for sale */
    --v45-accent:       #0A0A0A;
    --v45-accent-hover: #2C2C2C;
    --v45-sale:         #B91C1C;
    --v45-success:      #047857;

    /* Typography */
    --v45-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --v45-serif: 'Cormorant Garamond', Georgia, serif;

    /* Spacing scale */
    --v45-r-0: 0;
    --v45-r-2: 2px;
    --v45-r-4: 4px;

    /* Motion */
    --v45-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --v45-t-fast: 180ms var(--v45-ease);
    --v45-t-med:  280ms var(--v45-ease);
    --v45-t-slow: 600ms var(--v45-ease);

    /* Container */
    --v45-pad-x: clamp(1rem, 3vw, 2.5rem);
    --v45-header-h: 60px;
}

/* ---------- Reset & base (scoped) ---------- */
body.vcard45-theme,
body.vcard45-theme *,
body.vcard45-theme *::before,
body.vcard45-theme *::after {
    box-sizing: border-box;
}

body.vcard45-theme {
    margin: 0;
    padding: 0;
    background: var(--v45-bg);
    color: var(--v45-text);
    font-family: var(--v45-font);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    padding-bottom: 90px; /* room for mobile cart bar */
}

@media (min-width: 768px) {
    body.vcard45-theme { padding-bottom: 0; }
}

body.vcard45-theme h1,
body.vcard45-theme h2,
body.vcard45-theme h3,
body.vcard45-theme h4,
body.vcard45-theme h5,
body.vcard45-theme h6 {
    font-family: var(--v45-font);
    color: var(--v45-ink);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

body.vcard45-theme p { margin: 0; }
body.vcard45-theme a { color: inherit; text-decoration: none; transition: var(--v45-t-fast); }
body.vcard45-theme img { display: block; max-width: 100%; }
body.vcard45-theme button { font-family: inherit; }

body.vcard45-theme .v45-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v45-muted);
    margin: 0 0 8px;
}

body.vcard45-theme .v45-eyebrow--light { color: rgba(255,255,255,0.85); }

body.vcard45-theme .v45-h2 {
    font-size: clamp(1.65rem, 2.4vw + 0.6rem, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--v45-ink);
}

body.vcard45-theme .v45-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--v45-ink);
    border-bottom: 1px solid var(--v45-ink);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-link:hover { gap: 12px; }
body.vcard45-theme .v45-link i { font-size: 11px; }

/* ---------- Hide all legacy elements that may bleed in ---------- */
body.vcard45-theme .sticky-actions,
body.vcard45-theme .hero-section,
body.vcard45-theme .hero-orb,
body.vcard45-theme .hero-fade,
body.vcard45-theme .section-shell::before,
body.vcard45-theme .section-shell::after { display: none !important; }

/* ---------- Announcement bar ---------- */
body.vcard45-theme .v45-announce {
    background: var(--v45-ink);
    color: #FFFFFF;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 9px 16px;
    text-align: center;
    position: relative;
    z-index: 50;
}

body.vcard45-theme .v45-announce__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

body.vcard45-theme .v45-announce strong { font-weight: 600; }

body.vcard45-theme .v45-announce__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

@media (max-width: 540px) {
    body.vcard45-theme .v45-announce { font-size: 11px; padding: 7px 12px; }
    body.vcard45-theme .v45-announce__dot { display: none; }
}

/* ---------- Header ---------- */
body.vcard45-theme .v45-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--v45-line);
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

body.vcard45-theme .v45-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--v45-pad-x);
    height: var(--v45-header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-header__inner {
        grid-template-columns: 1fr auto 1fr;
    }
}

body.vcard45-theme .v45-header__menu {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 32px;
}

body.vcard45-theme .v45-header__menu span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--v45-ink);
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--v45-ink);
    text-decoration: none;
    justify-self: center;
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-header__brand { justify-self: center; }
}

body.vcard45-theme .v45-header__brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

body.vcard45-theme .v45-header__brand-name {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.06em;
    color: var(--v45-ink);
}

body.vcard45-theme .v45-header__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    align-items: center;
    pointer-events: none; /* let brand sit on top */
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-header__nav {
        position: static;
        transform: none;
        pointer-events: auto;
        justify-self: start;
        grid-column: 1;
        grid-row: 1;
    }
    body.vcard45-theme .v45-header__brand {
        grid-column: 2;
        grid-row: 1;
    }
    body.vcard45-theme .v45-header__actions {
        grid-column: 3;
        grid-row: 1;
    }
}

body.vcard45-theme .v45-header__nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--v45-ink);
    letter-spacing: 0.01em;
    position: relative;
    padding: 6px 0;
}

body.vcard45-theme .v45-header__nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--v45-ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--v45-t-med);
}

body.vcard45-theme .v45-header__nav a:hover::after { transform: scaleX(1); }

body.vcard45-theme .v45-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-self: end;
}

body.vcard45-theme .v45-icon-btn {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--v45-ink);
    font-size: 16px;
    text-decoration: none;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-icon-btn:hover { color: var(--v45-muted); }

body.vcard45-theme .v45-icon-btn__badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--v45-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---------- Search overlay ---------- */
body.vcard45-theme .v45-search {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--v45-t-med), visibility var(--v45-t-med);
}

body.vcard45-theme .v45-search.active { opacity: 1; visibility: visible; }

body.vcard45-theme .v45-search__panel {
    max-width: 760px;
    margin: 8vh auto 0;
    padding: 0 var(--v45-pad-x);
}

body.vcard45-theme .v45-search__head {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--v45-ink);
    padding: 8px 0;
}

body.vcard45-theme .v45-search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: var(--v45-ink);
    letter-spacing: -0.015em;
    padding: 12px 0;
}

body.vcard45-theme .v45-search__input::placeholder { color: var(--v45-muted); }

body.vcard45-theme .v45-search__close {
    background: none;
    border: none;
    color: var(--v45-ink);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

body.vcard45-theme .v45-search__results {
    margin-top: 32px;
    max-height: 60vh;
    overflow-y: auto;
}

body.vcard45-theme .v45-search__hint {
    color: var(--v45-muted);
    font-size: 13px;
    letter-spacing: 0.04em;
}

body.vcard45-theme .v45-search__results .list-group { border: none; }

body.vcard45-theme .v45-search__results .list-group-item-action {
    border: none !important;
    border-bottom: 1px solid var(--v45-line) !important;
    padding: 16px 0;
    background: transparent;
    border-radius: 0 !important;
}

body.vcard45-theme .v45-search__results .list-group-item-action:hover {
    background: var(--v45-surface);
    transform: none;
}

/* ---------- Mobile drawer ---------- */
body.vcard45-theme .v45-drawer {
    position: fixed;
    inset: 0;
    z-index: 220;
    visibility: hidden;
    pointer-events: none;
}

body.vcard45-theme .v45-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--v45-t-med);
}

body.vcard45-theme .v45-drawer.active { visibility: visible; pointer-events: auto; }
body.vcard45-theme .v45-drawer.active::before { opacity: 1; }

body.vcard45-theme .v45-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(84vw, 380px);
    background: #fff;
    padding: 24px 24px calc(24px + env(safe-area-inset-bottom, 0));
    transform: translateX(-100%);
    transition: transform var(--v45-t-med);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

body.vcard45-theme .v45-drawer.active .v45-drawer__panel { transform: translateX(0); }

body.vcard45-theme .v45-drawer__close {
    align-self: flex-end;
    background: none;
    border: none;
    padding: 8px;
    font-size: 20px;
    color: var(--v45-ink);
    cursor: pointer;
}

body.vcard45-theme .v45-drawer__brand {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.08em;
    margin: 8px 0 28px;
    color: var(--v45-ink);
}

body.vcard45-theme .v45-drawer__nav {
    display: flex;
    flex-direction: column;
}

body.vcard45-theme .v45-drawer__nav a {
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--v45-ink);
    border-bottom: 1px solid var(--v45-line);
    letter-spacing: -0.005em;
}

body.vcard45-theme .v45-drawer__footer {
    margin-top: auto;
    padding-top: 24px;
}

body.vcard45-theme .v45-drawer__legal {
    font-size: 11px;
    color: var(--v45-muted);
    letter-spacing: 0.06em;
}

/* ---------- Products section ---------- */
body.vcard45-theme .v45-products {
    padding: clamp(40px, 6vw, 72px) var(--v45-pad-x) clamp(56px, 8vw, 96px);
    max-width: 1440px;
    margin: 0 auto;
}

body.vcard45-theme .v45-products--alt { padding-top: 8px; }

body.vcard45-theme .v45-products__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

@media (max-width: 540px) {
    body.vcard45-theme .v45-products__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    body.vcard45-theme .v45-products__head .v45-link { font-size: 12px; }
}

/* ---------- Product grid ---------- */
body.vcard45-theme .v45-grid {
    display: grid;
    gap: clamp(16px, 2vw, 32px) clamp(12px, 1.4vw, 24px);
}

body.vcard45-theme .v45-grid--products {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) { body.vcard45-theme .v45-grid--products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { body.vcard45-theme .v45-grid--products { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Product card ---------- */
body.vcard45-theme .v45-pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
}

body.vcard45-theme .v45-pcard__media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--v45-surface);
    overflow: hidden;
}

body.vcard45-theme .v45-pcard__imglink {
    position: absolute;
    inset: 0;
    display: block;
}

body.vcard45-theme .v45-pcard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--v45-t-slow), transform 1.2s var(--v45-ease);
}

body.vcard45-theme .v45-pcard__img--hover {
    opacity: 0;
}

body.vcard45-theme .v45-pcard:hover .v45-pcard__img--primary { opacity: 0; }
body.vcard45-theme .v45-pcard:hover .v45-pcard__img--hover  { opacity: 1; }
body.vcard45-theme .v45-pcard:hover .v45-pcard__img { transform: scale(1.04); }

/* Badges */
body.vcard45-theme .v45-pcard__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

body.vcard45-theme .v45-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 9px;
    background: #fff;
    color: var(--v45-ink);
    line-height: 1;
}

body.vcard45-theme .v45-badge--sale   { background: var(--v45-sale); color: #fff; }
body.vcard45-theme .v45-badge--new    { background: var(--v45-ink);  color: #fff; }
body.vcard45-theme .v45-badge--soldout{ background: #fff;             color: var(--v45-muted); border: 1px solid var(--v45-line-2); }

/* Wishlist heart */
body.vcard45-theme .v45-pcard__wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    color: var(--v45-ink);
    font-size: 13px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity var(--v45-t-med), transform var(--v45-t-med), color var(--v45-t-fast);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

body.vcard45-theme .v45-pcard__wish:hover { color: var(--v45-sale); }
body.vcard45-theme .v45-pcard__wish.is-active {
    color: var(--v45-sale);
    opacity: 1;
    transform: translateY(0);
}
body.vcard45-theme .v45-pcard__wish.is-active i {
    font-weight: 900;
}
body.vcard45-theme .v45-pcard:hover .v45-pcard__wish {
    opacity: 1;
    transform: translateY(0);
}

/* Quick add */
body.vcard45-theme .v45-pcard__quickadd {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 40px;
    background: var(--v45-ink);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--v45-t-med), transform var(--v45-t-med), background var(--v45-t-fast);
}

body.vcard45-theme .v45-pcard__quickadd:hover { background: var(--v45-accent-hover); }
body.vcard45-theme .v45-pcard__quickadd:disabled { background: var(--v45-line-2); cursor: not-allowed; }
body.vcard45-theme .v45-pcard:hover .v45-pcard__quickadd { opacity: 1; transform: translateY(0); }

/* Always-visible on touch */
@media (hover: none) {
    body.vcard45-theme .v45-pcard__wish { opacity: 1; transform: none; }
    body.vcard45-theme .v45-pcard__quickadd { opacity: 1; transform: none; }
    body.vcard45-theme .v45-pcard__img--hover { display: none; }
}

/* Card body */
body.vcard45-theme .v45-pcard__body {
    padding: 14px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.vcard45-theme .v45-pcard__cat {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v45-muted);
    margin: 0;
}

body.vcard45-theme .v45-pcard__title {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--v45-ink);
    letter-spacing: -0.005em;
    margin: 0;
    /* clamp 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.vcard45-theme .v45-pcard__title a { color: inherit; }
body.vcard45-theme .v45-pcard__title a:hover { color: var(--v45-muted); }

body.vcard45-theme .v45-pcard__pricerow {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 2px;
}

body.vcard45-theme .v45-pcard__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--v45-ink);
    letter-spacing: -0.005em;
}

body.vcard45-theme .v45-pcard__compare {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--v45-muted);
    text-decoration: line-through;
}

/* Mobile edge tightening */
@media (max-width: 540px) {
    body.vcard45-theme .v45-products { padding-left: 12px; padding-right: 12px; }
    body.vcard45-theme .v45-grid--products { gap: 20px 10px; }
    body.vcard45-theme .v45-pcard__body { padding: 10px 0 2px; }
    body.vcard45-theme .v45-pcard__title { font-size: 13px; }
    body.vcard45-theme .v45-pcard__price { font-size: 13px; }
}

/* ---------- Category strip ---------- */
body.vcard45-theme .v45-catstrip {
    padding: clamp(24px, 4vw, 48px) var(--v45-pad-x) clamp(40px, 5vw, 56px);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-catstrip__head {
    margin-bottom: 24px;
}

body.vcard45-theme .v45-catstrip__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin: 0 calc(-1 * var(--v45-pad-x));
    padding-left: var(--v45-pad-x);
    padding-right: var(--v45-pad-x);
}

body.vcard45-theme .v45-catstrip__scroll::-webkit-scrollbar { display: none; }

body.vcard45-theme .v45-cat {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 110px;
    scroll-snap-align: start;
    text-align: center;
}

body.vcard45-theme .v45-cat__media {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--v45-surface);
    transition: transform var(--v45-t-med);
}

body.vcard45-theme .v45-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v45-t-slow);
}

body.vcard45-theme .v45-cat:hover .v45-cat__media { transform: scale(1.04); }
body.vcard45-theme .v45-cat:hover .v45-cat__media img { transform: scale(1.08); }

body.vcard45-theme .v45-cat__name {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--v45-ink);
}

@media (max-width: 540px) {
    body.vcard45-theme .v45-cat { width: 86px; }
    body.vcard45-theme .v45-cat__media { width: 80px; height: 80px; }
}

/* ---------- Trust bar (compact, replaces "features") ---------- */
body.vcard45-theme .v45-trust {
    border-top: 1px solid var(--v45-line);
    border-bottom: 1px solid var(--v45-line);
    background: var(--v45-bg);
    padding: clamp(20px, 3vw, 28px) var(--v45-pad-x);
}

body.vcard45-theme .v45-trust__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-trust__inner { grid-template-columns: repeat(4, 1fr); }
}

body.vcard45-theme .v45-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.vcard45-theme .v45-trust__item i {
    font-size: 18px;
    color: var(--v45-ink);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

body.vcard45-theme .v45-trust__item strong {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--v45-ink);
    letter-spacing: -0.005em;
    margin-bottom: 2px;
}

body.vcard45-theme .v45-trust__item span {
    display: block;
    font-size: 11.5px;
    color: var(--v45-muted);
}

/* ---------- Editorial / lookbook ---------- */
body.vcard45-theme .v45-editorial {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 64px) var(--v45-pad-x);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-editorial { grid-template-columns: 2fr 1fr; gap: 20px; }
}

body.vcard45-theme .v45-editorial__tile {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--v45-surface);
    aspect-ratio: 4 / 3;
}

body.vcard45-theme .v45-editorial__tile--large { aspect-ratio: 4 / 3; }

@media (min-width: 768px) {
    body.vcard45-theme .v45-editorial__tile--large { aspect-ratio: 16 / 11; }
    body.vcard45-theme .v45-editorial__tile { aspect-ratio: 4 / 5; }
}

body.vcard45-theme .v45-editorial__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--v45-ease);
}

body.vcard45-theme .v45-editorial__tile:hover img { transform: scale(1.05); }

body.vcard45-theme .v45-editorial__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(20px, 3vw, 32px);
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
}

body.vcard45-theme .v45-editorial__caption h3 {
    color: #fff;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 6px 0 12px;
}

body.vcard45-theme .v45-editorial__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

/* ---------- Newsletter ---------- */
body.vcard45-theme .v45-newsletter {
    background: var(--v45-surface);
    padding: clamp(48px, 7vw, 96px) var(--v45-pad-x);
}

body.vcard45-theme .v45-newsletter__inner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

body.vcard45-theme .v45-newsletter__sub {
    color: var(--v45-muted);
    font-size: 14px;
    margin: 12px 0 28px;
}

body.vcard45-theme .v45-newsletter__form {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--v45-ink);
    max-width: 460px;
    margin: 0 auto;
}

body.vcard45-theme .v45-newsletter__form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 4px;
    font-family: inherit;
    font-size: 15px;
    color: var(--v45-ink);
    outline: none;
}

body.vcard45-theme .v45-newsletter__form input::placeholder { color: var(--v45-muted); }

body.vcard45-theme .v45-newsletter__form button {
    background: transparent;
    border: none;
    padding: 14px 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v45-ink);
    cursor: pointer;
}

body.vcard45-theme .v45-newsletter__form button:disabled { color: var(--v45-muted); cursor: default; }

/* ---------- Footer ---------- */
body.vcard45-theme .v45-footer {
    background: var(--v45-bg);
    border-top: 1px solid var(--v45-line);
    padding: clamp(40px, 6vw, 72px) var(--v45-pad-x) 24px;
}

body.vcard45-theme .v45-footer__top {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--v45-line);
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-footer__top { grid-template-columns: 1.4fr 2fr; gap: 80px; }
}

body.vcard45-theme .v45-footer__brand h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--v45-ink);
    margin-bottom: 14px;
}

body.vcard45-theme .v45-footer__brand p {
    color: var(--v45-muted);
    font-size: 14px;
    max-width: 360px;
}

body.vcard45-theme .v45-footer__social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

body.vcard45-theme .v45-footer__social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--v45-line-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v45-ink);
    border-radius: 50%;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-footer__social a:hover {
    background: var(--v45-ink);
    color: #fff;
    border-color: var(--v45-ink);
}

body.vcard45-theme .v45-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

body.vcard45-theme .v45-footer__col h6 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v45-ink);
    margin-bottom: 14px;
}

body.vcard45-theme .v45-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

body.vcard45-theme .v45-footer__col a {
    color: var(--v45-muted);
    font-size: 13.5px;
}

body.vcard45-theme .v45-footer__col a:hover { color: var(--v45-ink); }

body.vcard45-theme .v45-footer__bottom {
    max-width: 1440px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--v45-muted);
    font-size: 12px;
}

body.vcard45-theme .v45-footer__bottom a {
    color: var(--v45-ink);
    font-weight: 500;
}

/* ---------- Sticky mobile cart bar ---------- */
body.vcard45-theme .mobile-cart-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0));
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--v45-ink);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: var(--v45-t-fast);
}

body.vcard45-theme .mobile-cart-bar:active {
    transform: translateY(1px);
}

body.vcard45-theme .mobile-cart-bar__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

body.vcard45-theme .mobile-cart-bar__count {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    background: #fff;
    color: var(--v45-ink);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

body.vcard45-theme .mobile-cart-bar__label {
    flex: 1;
    text-align: center;
}

body.vcard45-theme .mobile-cart-bar__arrow { font-size: 14px; }

/* ---------- Legacy section reskin (services, offers, gallery, blogs, etc) ---------- */
body.vcard45-theme .services-section,
body.vcard45-theme .offers-section,
body.vcard45-theme .blogs-section,
body.vcard45-theme .testimonials-section,
body.vcard45-theme .company-details-section,
body.vcard45-theme .bottom-info-section,
body.vcard45-theme .gallery-section {
    padding: clamp(48px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    background: var(--v45-bg);
}

body.vcard45-theme .section-shell { background: var(--v45-bg); }
body.vcard45-theme .section-shell--soft { background: var(--v45-surface); }

body.vcard45-theme .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

body.vcard45-theme .section-header::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--v45-ink);
    margin: 14px auto 0;
}

body.vcard45-theme .section-header h2 {
    font-size: clamp(1.6rem, 2.4vw + 0.5rem, 2.4rem);
    font-weight: 600;
    color: var(--v45-ink);
    letter-spacing: -0.025em;
}

body.vcard45-theme .section-header h2 .text-primary,
body.vcard45-theme .section-header h2 span[style*="primary-color"] {
    color: var(--v45-ink) !important;
    background: none !important;
    -webkit-text-fill-color: var(--v45-ink) !important;
    font-style: italic;
    font-family: var(--v45-serif);
    font-weight: 400;
}

body.vcard45-theme .section-header p {
    color: var(--v45-muted);
    font-size: 14px;
    margin-top: 8px;
}

/* Cards in legacy sections — flatten the look */
body.vcard45-theme .card-main {
    background: var(--v45-bg);
    border: 1px solid var(--v45-line);
    border-radius: 0;
    box-shadow: none;
    padding: 24px;
}

body.vcard45-theme .card-main:hover {
    border-color: var(--v45-ink);
    transform: none;
    box-shadow: none;
}

body.vcard45-theme .service-card,
body.vcard45-theme .product-card {
    background: var(--v45-bg) !important;
    border: 1px solid var(--v45-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.vcard45-theme .service-card::before,
body.vcard45-theme .product-card::before { display: none; }

body.vcard45-theme .service-card:hover,
body.vcard45-theme .product-card:hover {
    border-color: var(--v45-ink) !important;
    transform: none !important;
    box-shadow: none !important;
}

body.vcard45-theme .product-card .product-badge {
    background: var(--v45-sale) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 4px 8px;
}

body.vcard45-theme .product-image { border-radius: 0; }
body.vcard45-theme .product-image img { border-radius: 0; height: 320px; }

/* Generic buttons in legacy partials */
body.vcard45-theme .btn-primary,
body.vcard45-theme button.btn-primary,
body.vcard45-theme a.btn-primary {
    background: var(--v45-ink) !important;
    color: #fff !important;
    border: 1px solid var(--v45-ink) !important;
    border-radius: 0 !important;
    padding: 14px 28px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
    transition: var(--v45-t-fast);
    min-width: auto !important;
}

body.vcard45-theme .btn-primary::after { display: none !important; }
body.vcard45-theme .btn-primary:hover { background: var(--v45-accent-hover) !important; transform: none !important; }

body.vcard45-theme .btn-outline-dark,
body.vcard45-theme .btn-outline-primary {
    background: transparent !important;
    color: var(--v45-ink) !important;
    border: 1px solid var(--v45-ink) !important;
    border-radius: 0 !important;
    padding: 14px 28px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}

body.vcard45-theme .btn-outline-dark:hover,
body.vcard45-theme .btn-outline-primary:hover {
    background: var(--v45-ink) !important;
    color: #fff !important;
    transform: none !important;
}

body.vcard45-theme .rounded-pill { border-radius: 0 !important; }

/* Color overrides for legacy classes */
body.vcard45-theme .text-primary { color: var(--v45-ink) !important; }
body.vcard45-theme .text-navy    { color: var(--v45-ink) !important; }
body.vcard45-theme .text-muted   { color: var(--v45-muted) !important; }
body.vcard45-theme .bg-glass {
    background: var(--v45-surface);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px solid var(--v45-line);
}

/* Icons */
body.vcard45-theme .icon-circle {
    background: var(--v45-surface) !important;
    color: var(--v45-ink) !important;
    border: 1px solid var(--v45-line);
}

/* Modal / overlays — positioning + flatten */
body.vcard45-theme .purchase-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--v45-t-med);
    overflow-y: auto;
}

body.vcard45-theme .purchase-overlay.active {
    display: flex;
    opacity: 1;
}

body.vcard45-theme .modal-container {
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--v45-bg);
    border-radius: 0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    transform: translateY(-12px);
    opacity: 0;
    transition: transform var(--v45-t-med), opacity var(--v45-t-med);
}

body.vcard45-theme .purchase-overlay.active .modal-container {
    transform: translateY(0);
    opacity: 1;
}

body.vcard45-theme .modal-header-custom {
    background: var(--v45-bg);
    border-bottom: 1px solid var(--v45-line);
}

body.vcard45-theme .product-summary-box {
    background: var(--v45-surface);
    border: 1px solid var(--v45-line);
    border-radius: 0;
}

body.vcard45-theme .product-summary-box img { border-radius: 0; }

body.vcard45-theme .form-control {
    border-radius: 0 !important;
    border: 1px solid var(--v45-line);
    padding: 12px 14px;
    background: var(--v45-bg);
    font-size: 14px;
}

body.vcard45-theme .form-control:focus {
    border-color: var(--v45-ink);
    box-shadow: none;
    outline: none;
}

body.vcard45-theme .form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v45-ink);
    margin-bottom: 6px;
}

body.vcard45-theme .quantity-control .qty-btn {
    border-radius: 0;
    border: 1px solid var(--v45-line);
    background: var(--v45-bg);
    color: var(--v45-ink);
    width: 40px;
    height: 40px;
}

body.vcard45-theme .coupon-code {
    border: 1px dashed var(--v45-ink);
    background: var(--v45-surface);
    color: var(--v45-ink);
    border-radius: 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
}

body.vcard45-theme .ribbon {
    background: var(--v45-ink);
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Business hours sheet — positioning + flatten */
body.vcard45-theme .business-hours-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 2100;
    display: none;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--v45-t-med);
}

body.vcard45-theme .business-hours-overlay.active {
    display: flex;
    opacity: 1;
}

body.vcard45-theme .business-hours-content {
    width: 100%;
    max-width: 720px;
    background: var(--v45-bg);
    border-radius: 0;
    border-top: 1px solid var(--v45-line);
    padding: 28px 24px calc(28px + env(safe-area-inset-bottom, 0));
    transform: translateY(100%);
    transition: transform var(--v45-t-med);
    max-height: 80vh;
    overflow-y: auto;
}

body.vcard45-theme .business-hours-overlay.active .business-hours-content {
    transform: translateY(0);
}

@media (min-width: 768px) {
    body.vcard45-theme .business-hours-overlay { align-items: center; }
    body.vcard45-theme .business-hours-content {
        transform: scale(0.98);
        opacity: 0;
        max-height: 80vh;
    }
    body.vcard45-theme .business-hours-overlay.active .business-hours-content {
        transform: scale(1);
        opacity: 1;
    }
}

body.vcard45-theme .business-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--v45-line);
}

body.vcard45-theme .business-hour-item:last-child { border-bottom: none; }

body.vcard45-theme .business-hour-item .badge {
    background: var(--v45-ink) !important;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 0;
}

/* Buy-now modal inner bits — flatten quantity, pills, badges */
body.vcard45-theme .quantity-control {
    border-radius: 0 !important;
    border: 1px solid var(--v45-line) !important;
    overflow: visible !important;
}

body.vcard45-theme .quantity-control .qty-btn {
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--v45-ink);
    width: 44px;
    height: 44px;
}

body.vcard45-theme .quantity-control .qty-btn:hover { background: var(--v45-surface); }

body.vcard45-theme .modal-body-custom .rounded-3,
body.vcard45-theme .modal-body-custom .rounded-pill,
body.vcard45-theme .modal-body-custom .rounded-start-3 {
    border-radius: 0 !important;
}

body.vcard45-theme .modal-body-custom .form-control {
    border-radius: 0 !important;
    border: 1px solid var(--v45-line);
    padding: 12px 14px;
    font-size: 14px;
}

body.vcard45-theme .modal-body-custom .form-control:focus {
    border-color: var(--v45-ink);
    box-shadow: none;
}

body.vcard45-theme .modal-body-custom .form-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: var(--v45-ink) !important;
    margin-bottom: 10px;
}

body.vcard45-theme .modal-body-custom .input-group .btn {
    border-radius: 0;
    border: 1px solid var(--v45-ink);
    background: transparent;
    color: var(--v45-ink);
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.vcard45-theme .modal-body-custom .input-group .btn:hover {
    background: var(--v45-ink);
    color: #fff;
}

/* Swiper pagination */
body.vcard45-theme .swiper-pagination-bullet {
    background: var(--v45-line-2);
    opacity: 1;
}
body.vcard45-theme .swiper-pagination-bullet-active {
    background: var(--v45-ink);
    border-radius: 0;
    width: 20px;
}

/* Scrollbar */
body.vcard45-theme ::-webkit-scrollbar { width: 6px; height: 6px; }
body.vcard45-theme ::-webkit-scrollbar-track { background: transparent; }
body.vcard45-theme ::-webkit-scrollbar-thumb { background: var(--v45-line-2); border-radius: 999px; }
body.vcard45-theme ::-webkit-scrollbar-thumb:hover { background: var(--v45-muted); }

/* Main spacing */
body.vcard45-theme .main-content {
    padding-top: 0;
}

body.vcard45-theme .main-content.internal-main {
    padding-top: clamp(20px, 4vw, 48px);
    min-height: 60vh;
}

body.vcard45-theme .index-main { padding-top: 0; }

/* Fade-in on scroll (replaces AOS aggressive animations) */
body.vcard45-theme .v45-pcard,
body.vcard45-theme .v45-editorial__tile,
body.vcard45-theme .v45-cat {
    opacity: 1;
    transform: translateY(0);
}

@keyframes v45FadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

body.vcard45-theme .v45-products .v45-pcard {
    animation: v45FadeUp 0.5s var(--v45-ease) backwards;
}

body.vcard45-theme .v45-products .v45-pcard:nth-child(2) { animation-delay: 0.04s; }
body.vcard45-theme .v45-products .v45-pcard:nth-child(3) { animation-delay: 0.08s; }
body.vcard45-theme .v45-products .v45-pcard:nth-child(4) { animation-delay: 0.12s; }
body.vcard45-theme .v45-products .v45-pcard:nth-child(5) { animation-delay: 0.16s; }
body.vcard45-theme .v45-products .v45-pcard:nth-child(6) { animation-delay: 0.2s; }
body.vcard45-theme .v45-products .v45-pcard:nth-child(7) { animation-delay: 0.24s; }
body.vcard45-theme .v45-products .v45-pcard:nth-child(8) { animation-delay: 0.28s; }

/* Loading skeletons */
body.vcard45-theme .v45-skeleton {
    background: linear-gradient(90deg, var(--v45-surface) 0%, var(--v45-surface-2) 50%, var(--v45-surface) 100%);
    background-size: 200% 100%;
    animation: v45Shimmer 1.4s ease-in-out infinite;
}

@keyframes v45Shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- Products listing page (alias/products) ---------- */
body.vcard45-theme .v45-listing {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px) var(--v45-pad-x);
}

body.vcard45-theme .v45-listing__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

body.vcard45-theme .v45-listing__title h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.025em;
}

body.vcard45-theme .v45-listing__count {
    color: var(--v45-muted);
    font-size: 13px;
    margin-top: 4px;
}

body.vcard45-theme .v45-listing__tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.vcard45-theme .v45-listing__sort {
    background: transparent;
    border: 1px solid var(--v45-line);
    padding: 10px 14px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--v45-ink);
    cursor: pointer;
    border-radius: 0;
    min-width: 160px;
}

body.vcard45-theme .v45-listing__filterbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--v45-ink);
    padding: 10px 16px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v45-ink);
    cursor: pointer;
}

body.vcard45-theme .v45-listing__filterbtn:hover {
    background: var(--v45-ink);
    color: #fff;
}

/* ---------- Internal pages (product, blog, services etc) reskin ---------- */
body.vcard45-theme .main-content {
    background: var(--v45-bg);
}

/* No-product / no-data state */
body.vcard45-theme .v45-empty {
    text-align: center;
    padding: 96px 24px;
    color: var(--v45-muted);
}

body.vcard45-theme .v45-empty h3 {
    color: var(--v45-ink);
    font-size: 20px;
    margin-bottom: 8px;
}

/* ---------- Helper utilities ---------- */
body.vcard45-theme .limit-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Override Bootstrap container max widths gently */
body.vcard45-theme .container { max-width: 1280px; padding: 0 var(--v45-pad-x); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    body.vcard45-theme * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   POLISH PASS — placeholder, italic-serif accents, new sections
   ========================================================= */

/* Italic serif accent inside section titles: <h2>The <em>Edit</em></h2> */
body.vcard45-theme .v45-h2 em,
body.vcard45-theme .v45-intro__title em {
    font-family: var(--v45-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--v45-ink);
    font-size: 1.08em;
}

/* ---------- Product card image placeholder ---------- */
body.vcard45-theme .v45-pcard__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 24px;
    text-align: center;
    color: var(--v45-ink-2);
    background:
        radial-gradient(circle at 20% 20%, rgba(10,10,10,0.04), transparent 55%),
        radial-gradient(circle at 80% 85%, rgba(10,10,10,0.05), transparent 55%),
        linear-gradient(180deg, var(--v45-surface) 0%, var(--v45-surface-2) 100%);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

body.vcard45-theme .v45-pcard__placeholder::before,
body.vcard45-theme .v45-pcard__placeholder::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 1px;
    background: var(--v45-ink);
    opacity: 0.18;
}

body.vcard45-theme .v45-pcard__placeholder::before { top: 18px; left: 18px; }
body.vcard45-theme .v45-pcard__placeholder::after  { bottom: 18px; right: 18px; }

body.vcard45-theme .v45-pcard__placeholder-mark {
    width: 8px;
    height: 8px;
    border: 1px solid var(--v45-ink);
    border-radius: 50%;
    background: transparent;
    opacity: 0.4;
}

body.vcard45-theme .v45-pcard__placeholder-text {
    font-family: var(--v45-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(13px, 1.4vw, 17px);
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: var(--v45-ink);
    opacity: 0.7;
    max-width: 80%;
}

/* Image stacking — placeholder z=0, primary z=1, hover z=2 */
body.vcard45-theme .v45-pcard__img--primary { z-index: 1; }
body.vcard45-theme .v45-pcard__img--hover   { z-index: 2; }

/* ---------- Intro strip (refined, NOT a hero) ---------- */
body.vcard45-theme .v45-intro {
    padding: clamp(40px, 6vw, 80px) var(--v45-pad-x) clamp(24px, 4vw, 48px);
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

body.vcard45-theme .v45-intro__title {
    font-size: clamp(1.8rem, 3.6vw + 0.4rem, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--v45-ink);
    margin: 10px 0 18px;
}

body.vcard45-theme .v45-intro__sub {
    font-size: clamp(14px, 1.1vw + 0.4rem, 16px);
    color: var(--v45-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Editorial — compact + always-readable captions ---------- */
body.vcard45-theme .v45-editorial__tile {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--v45-surface);
    aspect-ratio: 4 / 5;
    isolation: isolate;
}

@media (min-width: 768px) {
    body.vcard45-theme .v45-editorial__tile--large { aspect-ratio: 5 / 4; }
    body.vcard45-theme .v45-editorial__tile { aspect-ratio: 5 / 6; }
}

body.vcard45-theme .v45-editorial__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.05), transparent 50%),
        linear-gradient(135deg, #1F1F1F 0%, #0A0A0A 100%);
    z-index: 0;
}

body.vcard45-theme .v45-editorial__tile img {
    position: relative;
    z-index: 1;
}

body.vcard45-theme .v45-editorial__caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(22px, 3vw, 36px);
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 35%, rgba(0,0,0,0.7) 100%);
}

body.vcard45-theme .v45-editorial__caption h3 {
    color: #fff;
    font-size: clamp(20px, 2.2vw + 0.4rem, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 6px 0 8px;
    max-width: 24ch;
}

body.vcard45-theme .v45-editorial__price {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.82);
    margin: 0 0 18px;
}

body.vcard45-theme .v45-editorial__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    align-self: flex-start;
    color: #fff;
    transition: gap var(--v45-t-fast);
}

body.vcard45-theme .v45-editorial__tile:hover .v45-editorial__cta { gap: 14px; }

/* ---------- Services (refined) ---------- */
body.vcard45-theme .v45-services {
    padding: clamp(56px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 20px;
}

@media (min-width: 700px) { body.vcard45-theme .v45-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { body.vcard45-theme .v45-services__grid { grid-template-columns: repeat(3, 1fr); } }

body.vcard45-theme .v45-scard {
    display: flex;
    flex-direction: column;
    color: var(--v45-ink);
    text-decoration: none;
    background: transparent;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-scard__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--v45-surface);
    overflow: hidden;
}

body.vcard45-theme .v45-scard__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v45-t-slow);
    z-index: 1;
}

body.vcard45-theme .v45-scard:hover .v45-scard__media img { transform: scale(1.04); }

body.vcard45-theme .v45-scard__body {
    padding: 18px 2px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.vcard45-theme .v45-scard__title {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--v45-ink);
    margin: 0;
}

body.vcard45-theme .v45-scard__desc {
    font-size: 13.5px;
    color: var(--v45-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

body.vcard45-theme .v45-scard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-scard__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--v45-ink);
}

body.vcard45-theme .v45-scard__cta {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v45-ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--v45-t-fast);
}

body.vcard45-theme .v45-scard:hover .v45-scard__cta { gap: 10px; }

/* ---------- Journal / Blogs ---------- */
body.vcard45-theme .v45-journal {
    padding: clamp(56px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-journal__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px 24px;
}

@media (min-width: 700px)  { body.vcard45-theme .v45-journal__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { body.vcard45-theme .v45-journal__grid { grid-template-columns: repeat(3, 1fr); } }

body.vcard45-theme .v45-jcard {
    display: flex;
    flex-direction: column;
    color: var(--v45-ink);
    text-decoration: none;
}

body.vcard45-theme .v45-jcard__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--v45-surface);
    overflow: hidden;
}

body.vcard45-theme .v45-jcard__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v45-t-slow);
    z-index: 1;
}

body.vcard45-theme .v45-jcard:hover .v45-jcard__media img { transform: scale(1.04); }

body.vcard45-theme .v45-jcard__body { padding: 18px 2px 0; }

body.vcard45-theme .v45-jcard__date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v45-muted);
    margin: 0 0 10px;
}

body.vcard45-theme .v45-jcard__title {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--v45-ink);
    margin: 0 0 10px;
    line-height: 1.25;
}

body.vcard45-theme .v45-jcard__excerpt {
    font-size: 14px;
    color: var(--v45-muted);
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.vcard45-theme .v45-jcard__cta {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v45-ink);
    border-bottom: 1px solid var(--v45-ink);
    padding-bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--v45-t-fast);
}

body.vcard45-theme .v45-jcard:hover .v45-jcard__cta { gap: 10px; }

/* ---------- Offers ---------- */
body.vcard45-theme .v45-offers {
    padding: clamp(56px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-offers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 700px)  { body.vcard45-theme .v45-offers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { body.vcard45-theme .v45-offers__grid { grid-template-columns: repeat(3, 1fr); } }

body.vcard45-theme .v45-ocard {
    background: var(--v45-surface);
    padding: clamp(20px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--v45-line);
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-ocard:hover {
    border-color: var(--v45-ink);
    background: #fff;
}

body.vcard45-theme .v45-ocard__title {
    font-size: 19px;
    font-weight: 600;
    color: var(--v45-ink);
    letter-spacing: -0.01em;
    margin: 4px 0;
}

body.vcard45-theme .v45-ocard__desc {
    font-size: 13.5px;
    color: var(--v45-muted);
    line-height: 1.55;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.vcard45-theme .v45-ocard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--v45-line-2);
}

body.vcard45-theme .v45-ocard__code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--v45-ink);
    background: #fff;
    border: 1px dashed var(--v45-ink);
    padding: 8px 14px;
    text-transform: uppercase;
}

body.vcard45-theme .v45-ocard__cta {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v45-ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap var(--v45-t-fast);
}

body.vcard45-theme .v45-ocard__cta:hover { gap: 10px; }

/* ---------- Gallery (bento) ---------- */
body.vcard45-theme .v45-gallery {
    padding: clamp(56px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 700px) {
    body.vcard45-theme .v45-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
    body.vcard45-theme .v45-gtile--0 { grid-column: span 2; grid-row: span 2; }
    body.vcard45-theme .v45-gtile--3 { grid-column: span 2; }
}

@media (min-width: 1024px) {
    body.vcard45-theme .v45-gallery__grid { grid-auto-rows: 260px; }
}

body.vcard45-theme .v45-gtile {
    position: relative;
    background: var(--v45-surface);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

@media (min-width: 700px) { body.vcard45-theme .v45-gtile { aspect-ratio: auto; } }

body.vcard45-theme .v45-gtile img,
body.vcard45-theme .v45-gtile video,
body.vcard45-theme .v45-gtile iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    z-index: 1;
    transition: transform 1s var(--v45-ease);
}

body.vcard45-theme .v45-gtile:hover img { transform: scale(1.06); }

body.vcard45-theme .v45-gtile__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background: rgba(0,0,0,0.25);
    pointer-events: none;
}

/* ---------- Profile + Schedule ---------- */
body.vcard45-theme .v45-profile {
    padding: clamp(56px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-profile__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 900px) { body.vcard45-theme .v45-profile__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

body.vcard45-theme .v45-profile__card {
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid var(--v45-line);
    background: #fff;
    display: flex;
    flex-direction: column;
}

body.vcard45-theme .v45-profile__card--accent {
    background: var(--v45-ink);
    color: #fff;
    border-color: var(--v45-ink);
}

body.vcard45-theme .v45-profile__name {
    margin: 6px 0 2px;
}

body.vcard45-theme .v45-profile__card--accent .v45-h2,
body.vcard45-theme .v45-profile__card--accent .v45-h2 em {
    color: #fff;
}

body.vcard45-theme .v45-profile__role {
    color: var(--v45-muted);
    font-size: 14px;
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}

body.vcard45-theme .v45-profile__contacts {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

body.vcard45-theme .v45-profile__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--v45-line);
    color: var(--v45-ink);
    text-decoration: none;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-profile__row:hover { color: var(--v45-muted); }

body.vcard45-theme .v45-profile__rowlabel {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v45-muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.vcard45-theme .v45-profile__rowval {
    font-size: 14px;
    font-weight: 500;
    color: var(--v45-ink);
    word-break: break-word;
    text-align: right;
}

body.vcard45-theme .v45-profile__social {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

body.vcard45-theme .v45-profile__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--v45-line-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v45-ink);
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-profile__social a:hover {
    background: var(--v45-ink);
    color: #fff;
    border-color: var(--v45-ink);
}

body.vcard45-theme .v45-profile__schedule {
    margin: 6px 0 14px;
}

body.vcard45-theme .v45-profile__schedsub {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0 0 28px;
}

body.vcard45-theme .v45-profile__today {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.vcard45-theme .v45-profile__today span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

body.vcard45-theme .v45-profile__today strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Reusable v45 buttons */
body.vcard45-theme .v45-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    background: transparent;
    color: var(--v45-ink);
    cursor: pointer;
    text-decoration: none;
    transition: var(--v45-t-fast);
    border-radius: 0;
}

body.vcard45-theme .v45-btn--solid {
    background: var(--v45-ink);
    color: #fff;
    border-color: var(--v45-ink);
}

body.vcard45-theme .v45-btn--solid:hover { background: var(--v45-accent-hover); }

body.vcard45-theme .v45-btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
    align-self: flex-start;
}

body.vcard45-theme .v45-btn--ghost-light:hover {
    background: #fff;
    color: var(--v45-ink);
}

/* ---------- Contact (bottom info) ---------- */
body.vcard45-theme .v45-contact {
    padding: clamp(56px, 7vw, 96px) var(--v45-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 900px) {
    body.vcard45-theme .v45-contact__grid { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}

body.vcard45-theme .v45-contact__story {
    color: var(--v45-text);
    font-size: 15px;
    line-height: 1.7;
    margin: 16px 0 32px;
}

body.vcard45-theme .v45-contact__story p { margin-bottom: 14px; }

body.vcard45-theme .v45-contact__location {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--v45-surface);
    border-left: 2px solid var(--v45-ink);
    margin-bottom: 24px;
}

body.vcard45-theme .v45-contact__location i {
    font-size: 20px;
    color: var(--v45-ink);
}

body.vcard45-theme .v45-contact__location .v45-eyebrow { margin: 0 0 6px; }

body.vcard45-theme .v45-contact__address {
    font-size: 14px;
    color: var(--v45-text);
    line-height: 1.55;
    margin: 0 0 10px;
}

body.vcard45-theme .v45-contact__map {
    height: 280px;
    overflow: hidden;
    border: 1px solid var(--v45-line);
}

body.vcard45-theme .v45-contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.6) contrast(1.05);
    transition: filter var(--v45-t-med);
}

body.vcard45-theme .v45-contact__map:hover iframe { filter: grayscale(0) contrast(1); }

body.vcard45-theme .v45-contact__sub {
    color: var(--v45-muted);
    font-size: 14px;
    margin: 12px 0 28px;
    line-height: 1.6;
}

body.vcard45-theme .v45-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.vcard45-theme .v45-form__row input,
body.vcard45-theme .v45-form__row textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--v45-line-2);
    background: transparent;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15px;
    color: var(--v45-ink);
    outline: none;
    border-radius: 0;
    resize: vertical;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-form__row input::placeholder,
body.vcard45-theme .v45-form__row textarea::placeholder {
    color: var(--v45-muted);
}

body.vcard45-theme .v45-form__row input:focus,
body.vcard45-theme .v45-form__row textarea:focus {
    border-bottom-color: var(--v45-ink);
}

body.vcard45-theme .v45-form button[type="submit"] {
    margin-top: 14px;
    align-self: flex-start;
    padding: 16px 32px;
    background: var(--v45-ink);
    color: #fff;
    border: 1px solid var(--v45-ink);
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-form button[type="submit"]:hover { background: var(--v45-accent-hover); }

/* ---------- Stronger legacy nuker — kill stray vcard44 background gradients etc ---------- */
body.vcard45-theme .company-details-section,
body.vcard45-theme .bottom-info-section,
body.vcard45-theme .blog-section,
body.vcard45-theme .services-section,
body.vcard45-theme .offers-section,
body.vcard45-theme .gallery-section,
body.vcard45-theme .testimonials-section,
body.vcard45-theme .listing-hero {
    background: var(--v45-bg) !important;
}

body.vcard45-theme .promo-card,
body.vcard45-theme .enquiry-card,
body.vcard45-theme .shop-intro-card,
body.vcard45-theme .offer-card {
    background: var(--v45-bg) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid var(--v45-line) !important;
}

body.vcard45-theme .promo-icon { color: var(--v45-ink) !important; }
body.vcard45-theme .promo-icon .text-primary { color: var(--v45-ink) !important; }
body.vcard45-theme .offer-seal { display: none !important; }

body.vcard45-theme [style*="background: linear-gradient"],
body.vcard45-theme [style*="background:linear-gradient"] {
    background: var(--v45-bg) !important;
}

body.vcard45-theme [style*="border-left: 5px solid"] {
    border-left: 2px solid var(--v45-ink) !important;
    background: var(--v45-surface) !important;
}

/* Spacing tightening between sections that have their own top border */
body.vcard45-theme .v45-services + .v45-journal,
body.vcard45-theme .v45-offers + .v45-gallery,
body.vcard45-theme .v45-gallery + .v45-newsletter { border-top: none; }

/* Make sure trust bar separates cleanly */
body.vcard45-theme .v45-trust + .v45-editorial { padding-top: clamp(48px, 6vw, 80px); }

/* Header brand: smaller mark on mobile */
@media (max-width: 540px) {
    body.vcard45-theme .v45-header__brand-name { font-size: 14px; letter-spacing: 0.08em; }
    body.vcard45-theme .v45-header__brand-mark { width: 22px; height: 22px; }
    body.vcard45-theme .v45-icon-btn { width: 34px; height: 34px; font-size: 14px; padding: 6px; }
    body.vcard45-theme .v45-products__head { margin-bottom: 16px; }
}

/* Soft top border on the first product section for separation from intro */
body.vcard45-theme .v45-intro + .v45-products { border-top: 1px solid var(--v45-line); padding-top: clamp(40px, 6vw, 72px); }

/* ---------- Section heading slight tweaks ---------- */
body.vcard45-theme .v45-h2 {
    line-height: 1.05;
    margin: 4px 0 0;
}

/* Eyebrow visual rhythm */
body.vcard45-theme .v45-products__head .v45-eyebrow { margin-bottom: 6px; }

/* Newsletter band lighter on white */
body.vcard45-theme .v45-newsletter { border-top: 1px solid var(--v45-line); }

/* Profile/contact section borders consistency */
body.vcard45-theme .v45-profile + .v45-contact { border-top: none; }

/* ---------- Cart modal (AJAX-loaded into .modal-body-custom) ---------- */
body.vcard45-theme .v45-cart-modal { padding: 4px 0 0; }

body.vcard45-theme .v45-cart-modal__product {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--v45-surface);
    border: 1px solid var(--v45-line);
    padding: 14px;
    margin-bottom: 24px;
}

body.vcard45-theme .v45-cart-modal__image {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
    background: var(--v45-bg);
}

body.vcard45-theme .v45-cart-modal__info { min-width: 0; flex: 1; }

body.vcard45-theme .v45-cart-modal__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--v45-ink);
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    line-height: 1.3;
}

body.vcard45-theme .v45-cart-modal__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

body.vcard45-theme .v45-cart-modal__price-now {
    font-size: 16px;
    font-weight: 600;
    color: var(--v45-ink);
    letter-spacing: -0.01em;
}

body.vcard45-theme .v45-cart-modal__price-was {
    font-size: 13px;
    color: var(--v45-muted);
    text-decoration: line-through;
}

body.vcard45-theme .v45-cart-modal__group { margin-bottom: 22px; }

body.vcard45-theme .v45-cart-modal__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v45-ink);
    margin-bottom: 10px;
}

body.vcard45-theme .v45-cart-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.vcard45-theme .v45-cart-modal__chip {
    position: relative;
    cursor: pointer;
    margin: 0;
}

body.vcard45-theme .v45-cart-modal__chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.vcard45-theme .v45-cart-modal__chip-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 10px 14px;
    border: 1px solid var(--v45-line-2);
    background: var(--v45-bg);
    color: var(--v45-ink);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--v45-t-fast);
}

body.vcard45-theme .v45-cart-modal__chip:hover .v45-cart-modal__chip-text {
    border-color: var(--v45-ink);
}

body.vcard45-theme .v45-cart-modal__chip.is-active .v45-cart-modal__chip-text,
body.vcard45-theme .v45-cart-modal__chip input[type="radio"]:checked + .v45-cart-modal__chip-text {
    background: var(--v45-ink);
    border-color: var(--v45-ink);
    color: #fff;
}

body.vcard45-theme .v45-cart-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

body.vcard45-theme .v45-cart-modal__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid var(--v45-ink);
    cursor: pointer;
    transition: var(--v45-t-fast);
    text-decoration: none;
}

body.vcard45-theme .v45-cart-modal__btn--solid {
    background: var(--v45-ink);
    color: #fff;
}

body.vcard45-theme .v45-cart-modal__btn--solid:hover {
    background: var(--v45-accent-hover);
    border-color: var(--v45-accent-hover);
}

body.vcard45-theme .v45-cart-modal__btn--ghost {
    background: transparent;
    color: var(--v45-ink);
}

body.vcard45-theme .v45-cart-modal__btn--ghost:hover {
    background: var(--v45-ink);
    color: #fff;
}

body.vcard45-theme .v45-cart-modal__btn i { font-size: 14px; }

body.vcard45-theme .v45-cart-modal__oos {
    flex: 1;
    padding: 14px 18px;
    background: var(--v45-surface);
    border: 1px solid var(--v45-line-2);
    color: var(--v45-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
}

