/* =========================================================
   vcard46 — Ice Cream Parlour E-commerce
   Aesthetic: Pink candy palette, playful cursive headlines,
   rounded soft cards, gentle shadows, pastel banners
   ========================================================= */
:root {
    /* Pink ice cream palette */
    --v46-bg:        #FFFFFF;
    --v46-surface:   #FFF5F7;
    --v46-surface-2: #FCE7EE;
    --v46-cream:     #FFF1F4;
    --v46-blush:     #FFE0EA;
    --v46-ink:       #2B1A23;
    --v46-ink-2:     #4A2C39;
    --v46-text:      #5A3E4A;
    --v46-muted:     #8A6B76;
    --v46-line:      #FBDCE5;
    --v46-line-2:    #F4C2D2;

    /* Brand accents — hot pink primary, deep rose, mint, lemon */
    --v46-pink:         #FF4D8D;
    --v46-pink-2:       #FF6FA3;
    --v46-pink-soft:    #FFB3CC;
    --v46-pink-light:   #FFE3EE;
    --v46-rose:         #E91E63;
    --v46-mint:         #6BD5C5;
    --v46-lemon:        #FFD66B;

    --v46-accent:       #FF4D8D;
    --v46-accent-hover: #E91E63;
    --v46-sale:         #E91E63;
    --v46-success:      #2BAE82;

    /* Gradients */
    --v46-grad-pink:   linear-gradient(135deg, #FF4D8D 0%, #FF7AAE 100%);
    --v46-grad-blush:  linear-gradient(135deg, #FFE3EE 0%, #FFC7DC 100%);
    --v46-grad-hero:   linear-gradient(135deg, #FFD9E5 0%, #FFE9F1 50%, #FFF1F4 100%);

    /* Typography */
    --v46-font:     'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --v46-display:  'Pacifico', 'Dancing Script', 'Pacifico', cursive;
    --v46-serif:    'Playfair Display', 'Cormorant Garamond', Georgia, serif;

    /* Rounded corners — soft + playful */
    --v46-r-0:  0;
    --v46-r-sm: 8px;
    --v46-r-md: 14px;
    --v46-r-lg: 22px;
    --v46-r-xl: 32px;
    --v46-r-pill: 999px;

    /* Shadows — gentle pink-tinted */
    --v46-sh-sm: 0 4px 14px rgba(255, 77, 141, 0.08);
    --v46-sh-md: 0 10px 30px rgba(255, 77, 141, 0.12);
    --v46-sh-lg: 0 24px 60px rgba(255, 77, 141, 0.18);

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

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

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

body.vcard46-theme {
    margin: 0;
    padding: 0;
    background: var(--v46-bg);
    color: var(--v46-text);
    font-family: var(--v46-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.vcard46-theme { padding-bottom: 0; }
}

body.vcard46-theme h1,
body.vcard46-theme h2,
body.vcard46-theme h3,
body.vcard46-theme h4,
body.vcard46-theme h5,
body.vcard46-theme h6 {
    font-family: var(--v46-serif);
    color: var(--v46-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
}

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

body.vcard46-theme .v46-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v46-pink);
    margin: 0 0 6px;
    font-family: var(--v46-font);
}

body.vcard46-theme .v46-eyebrow--light { color: rgba(255,255,255,0.92); }

body.vcard46-theme .v46-h2 {
    font-size: clamp(1.8rem, 2.6vw + 0.6rem, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--v46-ink);
    font-family: var(--v46-serif);
}

body.vcard46-theme .v46-h2 em,
body.vcard46-theme .v46-h2 .accent {
    font-style: normal;
    color: var(--v46-pink);
    font-family: var(--v46-display);
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: var(--v46-pink);
}

body.vcard46-theme .v46-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--v46-pink);
    border-bottom: 1.5px solid var(--v46-pink);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--v46-t-fast);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--v46-font);
}

body.vcard46-theme .v46-link:hover { gap: 12px; color: var(--v46-rose); border-color: var(--v46-rose); }
body.vcard46-theme .v46-link i { font-size: 11px; }

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

/* ---------- Announcement bar ---------- */
body.vcard46-theme .v46-announce {
    background: var(--v46-grad-pink);
    color: #FFFFFF;
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 10px 16px;
    text-align: center;
    position: relative;
    z-index: 50;
    font-weight: 500;
}

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

body.vcard46-theme .v46-announce strong {
    font-weight: 700;
    background: rgba(255,255,255,0.22);
    padding: 2px 10px;
    border-radius: var(--v46-r-pill);
    margin-left: 4px;
}

body.vcard46-theme .v46-announce__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
}

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

/* ---------- Header ---------- */
body.vcard46-theme .v46-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(--v46-line);
    transition: var(--v46-t-fast);
}

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

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

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

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

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

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

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

body.vcard46-theme .v46-header__brand {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

body.vcard46-theme .v46-header__brand-mark {
    display: none;
}

body.vcard46-theme .v46-header__brand-name {
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0;
    color: var(--v46-pink);
    font-family: var(--v46-display);
    line-height: 1;
    text-transform: none;
}

body.vcard46-theme .v46-header__brand::after {
    content: "Delight in Every Scoop";
    font-family: var(--v46-font);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--v46-muted);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 500;
}

body.vcard46-theme .v46-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.vcard46-theme .v46-header__nav {
        position: static;
        transform: none;
        pointer-events: auto;
        justify-self: start;
        grid-column: 1;
        grid-row: 1;
    }
    body.vcard46-theme .v46-header__brand {
        grid-column: 2;
        grid-row: 1;
    }
    body.vcard46-theme .v46-header__actions {
        grid-column: 3;
        grid-row: 1;
    }
}

body.vcard46-theme .v46-header__nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--v46-ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: var(--v46-t-fast);
}

body.vcard46-theme .v46-header__nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--v46-pink);
    border-radius: var(--v46-r-pill);
    transform: translateX(-50%);
    transition: width var(--v46-t-med);
}

body.vcard46-theme .v46-header__nav a:hover { color: var(--v46-pink); }
body.vcard46-theme .v46-header__nav a:hover::after { width: 26px; }
body.vcard46-theme .v46-header__nav a.active { color: var(--v46-pink); }
body.vcard46-theme .v46-header__nav a.active::after { width: 26px; }

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

body.vcard46-theme .v46-icon-btn {
    position: relative;
    background: var(--v46-pink-light);
    border: none;
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--v46-pink);
    font-size: 15px;
    text-decoration: none;
    transition: var(--v46-t-fast);
}

body.vcard46-theme .v46-icon-btn:hover {
    color: #fff;
    background: var(--v46-pink);
    transform: translateY(-2px);
    box-shadow: var(--v46-sh-sm);
}

body.vcard46-theme .v46-icon-btn__badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--v46-pink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
}

/* ---------- Search overlay ---------- */
body.vcard46-theme .v46-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(--v46-t-med), visibility var(--v46-t-med);
}

body.vcard46-theme .v46-search.active { opacity: 1; visibility: visible; }

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

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

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

body.vcard46-theme .v46-search__input::placeholder { color: var(--v46-muted); }

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

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

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

body.vcard46-theme .v46-search__results .list-group { border: none; }

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

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

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

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

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

body.vcard46-theme .v46-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(--v46-t-med);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

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

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

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

body.vcard46-theme .v46-drawer__nav {
    display: flex;
    flex-direction: column;
}

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

body.vcard46-theme .v46-drawer__footer {
    margin-top: auto;
    padding-top: 24px;
}

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

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

body.vcard46-theme .v46-products--alt { padding-top: 8px; }

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

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

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

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

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

/* ---------- Product card ---------- */
body.vcard46-theme .v46-pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--v46-r-lg);
    overflow: hidden;
    border: 1px solid var(--v46-line);
    transition: var(--v46-t-med);
}

body.vcard46-theme .v46-pcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--v46-sh-md);
    border-color: var(--v46-pink-soft);
}

body.vcard46-theme .v46-pcard__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--v46-pink-light);
    overflow: hidden;
    border-radius: var(--v46-r-lg) var(--v46-r-lg) 0 0;
}

body.vcard46-theme .v46-pcard__imglink {
    position: absolute;
    inset: 0;
    display: block;
}

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

body.vcard46-theme .v46-pcard__img--hover {
    opacity: 0;
}

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

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

body.vcard46-theme .v46-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 11px;
    background: #fff;
    color: var(--v46-ink);
    line-height: 1;
    border-radius: var(--v46-r-pill);
    box-shadow: var(--v46-sh-sm);
}

body.vcard46-theme .v46-badge--sale   { background: var(--v46-pink); color: #fff; }
body.vcard46-theme .v46-badge--new    { background: var(--v46-mint); color: #fff; }
body.vcard46-theme .v46-badge--soldout{ background: #fff; color: var(--v46-muted); border: 1px solid var(--v46-line-2); }

/* Wishlist heart */
body.vcard46-theme .v46-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(--v46-ink);
    font-size: 13px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity var(--v46-t-med), transform var(--v46-t-med), color var(--v46-t-fast);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

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

/* Quick add */
body.vcard46-theme .v46-pcard__quickadd {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 40px;
    background: var(--v46-pink-light);
    color: var(--v46-pink);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--v46-r-pill);
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--v46-t-med), transform var(--v46-t-med), background var(--v46-t-fast);
}

body.vcard46-theme .v46-pcard__quickadd:hover { background: var(--v46-pink); color: #fff; }
body.vcard46-theme .v46-pcard__quickadd:disabled { background: var(--v46-line-2); color: var(--v46-muted); cursor: not-allowed; }
body.vcard46-theme .v46-pcard:hover .v46-pcard__quickadd { opacity: 1; transform: translateY(0); }

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

/* Card body */
body.vcard46-theme .v46-pcard__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

body.vcard46-theme .v46-pcard__cat {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v46-muted);
    margin: 0;
}

body.vcard46-theme .v46-pcard__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--v46-ink);
    letter-spacing: 0;
    margin: 0;
    font-family: var(--v46-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.vcard46-theme .v46-pcard__title a { color: inherit; }
body.vcard46-theme .v46-pcard__title a:hover { color: var(--v46-pink); }

body.vcard46-theme .v46-pcard__pricerow {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 6px;
}

body.vcard46-theme .v46-pcard__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--v46-pink);
    letter-spacing: 0;
    font-family: var(--v46-font);
}

body.vcard46-theme .v46-pcard__compare {
    font-size: 13px;
    font-weight: 400;
    color: var(--v46-muted);
    text-decoration: line-through;
}

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

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

body.vcard46-theme .v46-catstrip__head {
    margin-bottom: 24px;
}

body.vcard46-theme .v46-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(--v46-pad-x));
    padding-left: var(--v46-pad-x);
    padding-right: var(--v46-pad-x);
}

body.vcard46-theme .v46-catstrip__scroll::-webkit-scrollbar { display: none; }

body.vcard46-theme .v46-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.vcard46-theme .v46-cat__media {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--v46-pink-light);
    transition: transform var(--v46-t-med);
    padding: 6px;
    border: 2px solid var(--v46-pink-light);
}

body.vcard46-theme .v46-cat__media img {
    border-radius: 50%;
}

body.vcard46-theme .v46-cat:hover .v46-cat__media {
    background: #fff;
    border-color: var(--v46-pink);
    box-shadow: var(--v46-sh-sm);
}

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

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

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

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

/* ---------- Trust bar (pink ribbon with icon chips) ---------- */
body.vcard46-theme .v46-trust {
    background: var(--v46-pink-light);
    padding: clamp(18px, 2.5vw, 22px) var(--v46-pad-x);
    margin: 0 var(--v46-pad-x);
    border-radius: var(--v46-r-xl);
    max-width: calc(1440px - 2 * var(--v46-pad-x));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(28px, 4vw, 40px);
    margin-bottom: clamp(28px, 4vw, 40px);
}

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

@media (min-width: 600px) {
    body.vcard46-theme .v46-trust__inner { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    body.vcard46-theme .v46-trust__inner { grid-template-columns: repeat(6, 1fr); }
}

body.vcard46-theme .v46-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: left;
}

body.vcard46-theme .v46-trust__item i {
    font-size: 18px;
    color: var(--v46-pink);
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--v46-sh-sm);
}

body.vcard46-theme .v46-trust__item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--v46-ink);
    letter-spacing: 0;
    margin-bottom: 1px;
    font-family: var(--v46-font);
}

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

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

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

body.vcard46-theme .v46-editorial__tile {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--v46-pink-light);
    aspect-ratio: 4 / 3;
    border-radius: var(--v46-r-xl);
}

body.vcard46-theme .v46-editorial__tile--large { aspect-ratio: 4 / 3; }

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

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

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

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

body.vcard46-theme .v46-editorial__caption h3 {
    color: #fff;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 6px 0 12px;
    font-family: var(--v46-serif);
}

body.vcard46-theme .v46-editorial__price {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    font-family: var(--v46-font);
}

body.vcard46-theme .v46-editorial__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #fff;
    color: var(--v46-pink);
    padding: 10px 20px;
    border-radius: var(--v46-r-pill);
    box-shadow: var(--v46-sh-sm);
}

body.vcard46-theme .v46-editorial__tile:hover .v46-editorial__cta {
    background: var(--v46-pink);
    color: #fff;
}

/* ---------- Newsletter ---------- */
body.vcard46-theme .v46-newsletter {
    background: var(--v46-grad-blush);
    padding: clamp(48px, 7vw, 80px) var(--v46-pad-x);
    position: relative;
    overflow: hidden;
}

body.vcard46-theme .v46-newsletter::before,
body.vcard46-theme .v46-newsletter::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    pointer-events: none;
}

body.vcard46-theme .v46-newsletter::before { top: -60px; left: -60px; }
body.vcard46-theme .v46-newsletter::after { bottom: -60px; right: -60px; width: 240px; height: 240px; }

body.vcard46-theme .v46-newsletter__inner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

body.vcard46-theme .v46-newsletter__inner .v46-h2 {
    font-family: var(--v46-display);
    color: var(--v46-ink);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
}

body.vcard46-theme .v46-newsletter__sub {
    color: var(--v46-ink-2);
    font-size: 14.5px;
    margin: 12px 0 28px;
}

body.vcard46-theme .v46-newsletter__form {
    display: flex;
    gap: 8px;
    background: #fff;
    max-width: 480px;
    margin: 0 auto;
    padding: 6px;
    border-radius: var(--v46-r-pill);
    box-shadow: var(--v46-sh-sm);
}

body.vcard46-theme .v46-newsletter__form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 14px;
    color: var(--v46-ink);
    outline: none;
}

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

body.vcard46-theme .v46-newsletter__form button {
    background: var(--v46-grad-pink);
    border: none;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    border-radius: var(--v46-r-pill);
    transition: var(--v46-t-fast);
}

body.vcard46-theme .v46-newsletter__form button:hover { transform: translateY(-1px); box-shadow: var(--v46-sh-md); }
body.vcard46-theme .v46-newsletter__form button:disabled { background: var(--v46-line-2); color: var(--v46-muted); cursor: default; transform: none; box-shadow: none; }

/* ---------- Footer ---------- */
body.vcard46-theme .v46-footer {
    background: linear-gradient(180deg, #3A1F2A 0%, #2B1A23 100%);
    color: #FFE3EE;
    padding: clamp(48px, 7vw, 84px) var(--v46-pad-x) 24px;
}

body.vcard46-theme .v46-footer * { color: inherit; }

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

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

body.vcard46-theme .v46-footer__brand h3 {
    font-family: var(--v46-display);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--v46-pink-2);
    margin-bottom: 14px;
    text-transform: none;
}

body.vcard46-theme .v46-footer__brand p {
    color: rgba(255, 227, 238, 0.72);
    font-size: 14px;
    max-width: 360px;
    line-height: 1.65;
}

body.vcard46-theme .v46-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

body.vcard46-theme .v46-footer__social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    transition: var(--v46-t-fast);
}

body.vcard46-theme .v46-footer__social a:hover {
    background: var(--v46-pink);
    color: #fff;
    transform: translateY(-2px);
}

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

body.vcard46-theme .v46-footer__top {
    border-bottom-color: rgba(255, 227, 238, 0.12);
}

body.vcard46-theme .v46-footer__col h6 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    font-family: var(--v46-font);
}

body.vcard46-theme .v46-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.vcard46-theme .v46-footer__col a {
    color: rgba(255, 227, 238, 0.7);
    font-size: 13.5px;
    transition: var(--v46-t-fast);
}

body.vcard46-theme .v46-footer__col a:hover { color: var(--v46-pink-2); padding-left: 4px; }

body.vcard46-theme .v46-footer__bottom {
    max-width: 1440px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 227, 238, 0.5);
    font-size: 12px;
}

body.vcard46-theme .v46-footer__bottom a {
    color: var(--v46-pink-2);
    font-weight: 500;
}

/* ---------- Sticky mobile cart bar ---------- */
body.vcard46-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(--v46-grad-pink);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--v46-r-pill);
    box-shadow: 0 12px 30px rgba(255, 77, 141, 0.35);
    transition: var(--v46-t-fast);
}

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

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

body.vcard46-theme .mobile-cart-bar__count {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    background: #fff;
    color: var(--v46-pink);
    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.vcard46-theme .mobile-cart-bar__label {
    flex: 1;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Generic buttons in legacy partials */
body.vcard46-theme .btn-primary,
body.vcard46-theme button.btn-primary,
body.vcard46-theme a.btn-primary {
    background: var(--v46-ink) !important;
    color: #fff !important;
    border: 1px solid var(--v46-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(--v46-t-fast);
    min-width: auto !important;
}

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

body.vcard46-theme .btn-outline-dark,
body.vcard46-theme .btn-outline-primary {
    background: transparent !important;
    color: var(--v46-ink) !important;
    border: 1px solid var(--v46-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.vcard46-theme .btn-outline-dark:hover,
body.vcard46-theme .btn-outline-primary:hover {
    background: var(--v46-ink) !important;
    color: #fff !important;
    transform: none !important;
}

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

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

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

/* Modal / overlays — positioning + flatten */
body.vcard46-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(--v46-t-med);
    overflow-y: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Business hours sheet — positioning + flatten */
body.vcard46-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(--v46-t-med);
}

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

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

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

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

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

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

body.vcard46-theme .business-hour-item .badge {
    background: var(--v46-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.vcard46-theme .quantity-control {
    border-radius: 0 !important;
    border: 1px solid var(--v46-line) !important;
    overflow: visible !important;
}

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

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

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

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

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

body.vcard46-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(--v46-ink) !important;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-products .v46-pcard {
    animation: v46FadeUp 0.5s var(--v46-ease) backwards;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    body.vcard46-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.vcard46-theme .v46-h2 em,
body.vcard46-theme .v46-intro__title em {
    font-family: var(--v46-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--v46-ink);
    font-size: 1.08em;
}

/* ---------- Product card image placeholder ---------- */
body.vcard46-theme .v46-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(--v46-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(--v46-surface) 0%, var(--v46-surface-2) 100%);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

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

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

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

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

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

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

body.vcard46-theme .v46-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(--v46-ink);
    margin: 10px 0 18px;
}

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

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

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

body.vcard46-theme .v46-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.vcard46-theme .v46-editorial__tile img {
    position: relative;
    z-index: 1;
}

body.vcard46-theme .v46-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.vcard46-theme .v46-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.vcard46-theme .v46-editorial__price {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.82);
    margin: 0 0 18px;
}

body.vcard46-theme .v46-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(--v46-t-fast);
}

body.vcard46-theme .v46-editorial__tile:hover .v46-editorial__cta { gap: 14px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-scard:hover .v46-scard__cta { gap: 10px; }

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

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

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

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

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

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

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

body.vcard46-theme .v46-jcard__body { padding: 18px 2px 0; }

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

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

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

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

body.vcard46-theme .v46-jcard:hover .v46-jcard__cta { gap: 10px; }

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

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

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-ocard__cta:hover { gap: 10px; }

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-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.vcard46-theme .v46-profile {
    padding: clamp(56px, 7vw, 96px) var(--v46-pad-x);
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid var(--v46-line);
}

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

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

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

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

body.vcard46-theme .v46-profile__name {
    margin: 6px 0 2px;
}

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

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

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

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

body.vcard46-theme .v46-profile__row:hover { color: var(--v46-muted); }

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

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

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

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

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

body.vcard46-theme .v46-profile__schedule {
    margin: 6px 0 14px;
}

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

body.vcard46-theme .v46-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.vcard46-theme .v46-profile__today span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

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

/* Reusable v46 buttons */
body.vcard46-theme .v46-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(--v46-ink);
    cursor: pointer;
    text-decoration: none;
    transition: var(--v46-t-fast);
    border-radius: 0;
}

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-contact__story p { margin-bottom: 14px; }

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

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

body.vcard46-theme .v46-contact__location .v46-eyebrow { margin: 0 0 6px; }

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

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-form button[type="submit"] {
    margin-top: 14px;
    align-self: flex-start;
    padding: 16px 32px;
    background: var(--v46-ink);
    color: #fff;
    border: 1px solid var(--v46-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(--v46-t-fast);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-cart-modal__info { min-width: 0; flex: 1; }

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

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

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

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

body.vcard46-theme .v46-cart-modal__group { margin-bottom: 22px; }

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

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

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

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

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

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

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

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

body.vcard46-theme .v46-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(--v46-ink);
    cursor: pointer;
    transition: var(--v46-t-fast);
    text-decoration: none;
}

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

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

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

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

body.vcard46-theme .v46-cart-modal__btn i { font-size: 14px; }

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

/* =========================================================
   vcard46 — Ice Cream theme overrides (final cascade)
   ========================================================= */

/* ----- Hero (ice cream landing) ----- */
body.vcard46-theme .v46-hero {
    background: var(--v46-grad-hero);
    padding: clamp(40px, 6vw, 80px) var(--v46-pad-x) clamp(48px, 7vw, 96px);
    position: relative;
    overflow: hidden;
}
body.vcard46-theme .v46-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}
body.vcard46-theme .v46-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    body.vcard46-theme .v46-hero__inner { grid-template-columns: 1.05fr 1fr; gap: 48px; }
}
body.vcard46-theme .v46-hero__copy h1 {
    font-family: var(--v46-serif);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    color: var(--v46-ink);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}
body.vcard46-theme .v46-hero__copy h1 .accent {
    display: block;
    font-family: var(--v46-display);
    color: var(--v46-pink);
    font-weight: 400;
    font-size: 1.05em;
    letter-spacing: 0;
    margin-top: 2px;
}
body.vcard46-theme .v46-hero__sub {
    color: var(--v46-ink-2);
    font-size: clamp(15px, 1.4vw, 17px);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.65;
}
body.vcard46-theme .v46-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
body.vcard46-theme .v46-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--v46-r-pill);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--v46-font);
    border: none;
    cursor: pointer;
    transition: var(--v46-t-fast);
    text-decoration: none;
}
body.vcard46-theme .v46-btn--primary {
    background: var(--v46-grad-pink);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 77, 141, 0.32);
}
body.vcard46-theme .v46-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 77, 141, 0.42);
    color: #fff;
}
body.vcard46-theme .v46-btn--ghost {
    background: #fff;
    color: var(--v46-pink);
    box-shadow: var(--v46-sh-sm);
}
body.vcard46-theme .v46-btn--ghost:hover {
    background: var(--v46-pink);
    color: #fff;
    transform: translateY(-2px);
}
body.vcard46-theme .v46-hero__pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 540px;
}
@media (min-width: 640px) {
    body.vcard46-theme .v46-hero__pills { grid-template-columns: repeat(4, 1fr); }
}
body.vcard46-theme .v46-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--v46-r-pill);
    box-shadow: var(--v46-sh-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--v46-ink);
}
body.vcard46-theme .v46-hero__pill i {
    color: var(--v46-pink);
    font-size: 16px;
    width: 26px; height: 26px;
    background: var(--v46-pink-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
body.vcard46-theme .v46-hero__pill small {
    display: block;
    font-weight: 500;
    color: var(--v46-muted);
    font-size: 10.5px;
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0;
}
body.vcard46-theme .v46-hero__visual {
    position: relative;
    aspect-ratio: 1.1 / 1;
    border-radius: var(--v46-r-xl);
    background: radial-gradient(circle at 30% 30%, #FFC6DA 0%, #FFE3EE 60%, #FFF1F4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--v46-sh-md);
}
body.vcard46-theme .v46-hero__visual::before,
body.vcard46-theme .v46-hero__visual::after {
    content: "";
    position: absolute;
    width: 90px; height: 90px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
    pointer-events: none;
}
body.vcard46-theme .v46-hero__visual::before { top: 10%; left: 8%; }
body.vcard46-theme .v46-hero__visual::after { bottom: 10%; right: 10%; width: 60px; height: 60px; }
body.vcard46-theme .v46-hero__visual img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    z-index: 1;
}
body.vcard46-theme .v46-hero__emoji {
    font-size: clamp(8rem, 22vw, 16rem);
    z-index: 1;
    line-height: 1;
    filter: drop-shadow(0 16px 30px rgba(255, 77, 141, 0.25));
}
body.vcard46-theme .v46-hero__seal {
    position: absolute;
    top: 14%;
    right: 6%;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--v46-mint);
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--v46-sh-md);
    transform: rotate(-12deg);
    z-index: 2;
}
body.vcard46-theme .v46-hero__seal strong {
    font-family: var(--v46-font);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
}
body.vcard46-theme .v46-hero__seal span {
    font-family: var(--v46-font);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 4px;
}
body.vcard46-theme .v46-hero__seal em {
    font-style: normal;
    font-size: 14px;
    margin-top: 2px;
    font-family: var(--v46-display);
}

/* ----- Offer banner (Beat the Heat) ----- */
body.vcard46-theme .v46-offer-banner {
    max-width: 1440px;
    margin: clamp(20px, 3vw, 32px) auto;
    padding: 0 var(--v46-pad-x);
}
body.vcard46-theme .v46-offer-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(90deg, #FFD9E5 0%, #C8E9F0 100%);
    border-radius: var(--v46-r-xl);
    padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px);
    position: relative;
    overflow: hidden;
}
body.vcard46-theme .v46-offer-banner__copy h3 {
    font-family: var(--v46-display);
    color: var(--v46-ink);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.1;
}
body.vcard46-theme .v46-offer-banner__copy p {
    color: var(--v46-ink-2);
    font-size: 14px;
    margin-top: 6px;
    max-width: 380px;
}
body.vcard46-theme .v46-offer-banner__cta {
    margin-top: 14px;
    display: inline-flex;
}
body.vcard46-theme .v46-offer-banner__big {
    font-family: var(--v46-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--v46-pink);
    line-height: 1;
    text-align: right;
}
body.vcard46-theme .v46-offer-banner__big small {
    display: block;
    font-family: var(--v46-font);
    font-size: 13px;
    color: var(--v46-ink);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ----- Section heading aesthetic (legacy partials inherit this) ----- */
body.vcard46-theme .section-header h2,
body.vcard46-theme .section-header h2 .text-primary {
    font-family: var(--v46-serif) !important;
    color: var(--v46-ink) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
}
body.vcard46-theme .section-header h2 .text-primary,
body.vcard46-theme .section-header h2 span[style*="primary"] {
    color: var(--v46-pink) !important;
    -webkit-text-fill-color: var(--v46-pink) !important;
    font-family: var(--v46-display) !important;
    font-weight: 400 !important;
    font-style: normal !important;
    background: none !important;
}
body.vcard46-theme .section-header::after {
    background: var(--v46-pink) !important;
    width: 60px;
    height: 3px;
    border-radius: var(--v46-r-pill);
}

/* ----- Pink CTA buttons everywhere ----- */
body.vcard46-theme .btn-primary,
body.vcard46-theme button.btn-primary,
body.vcard46-theme a.btn-primary,
body.vcard46-theme .v46-form button[type="submit"] {
    background: var(--v46-grad-pink) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--v46-r-pill) !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    box-shadow: 0 6px 18px rgba(255, 77, 141, 0.25) !important;
    transition: var(--v46-t-fast) !important;
}
body.vcard46-theme .btn-primary:hover,
body.vcard46-theme .v46-form button[type="submit"]:hover {
    background: var(--v46-grad-pink) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(255, 77, 141, 0.35) !important;
}
body.vcard46-theme .btn-outline-dark,
body.vcard46-theme .btn-outline-primary {
    background: #fff !important;
    color: var(--v46-pink) !important;
    border: 1.5px solid var(--v46-pink) !important;
    border-radius: var(--v46-r-pill) !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}
body.vcard46-theme .btn-outline-dark:hover,
body.vcard46-theme .btn-outline-primary:hover {
    background: var(--v46-pink) !important;
    color: #fff !important;
}
body.vcard46-theme .rounded-pill { border-radius: var(--v46-r-pill) !important; }

/* ----- Soft rounded cards ----- */
body.vcard46-theme .card-main,
body.vcard46-theme .service-card,
body.vcard46-theme .product-card,
body.vcard46-theme .promo-card,
body.vcard46-theme .enquiry-card,
body.vcard46-theme .shop-intro-card,
body.vcard46-theme .offer-card {
    border-radius: var(--v46-r-lg) !important;
    border: 1px solid var(--v46-line) !important;
    background: #fff !important;
    box-shadow: var(--v46-sh-sm) !important;
    transition: var(--v46-t-med) !important;
}
body.vcard46-theme .card-main:hover,
body.vcard46-theme .service-card:hover,
body.vcard46-theme .product-card:hover {
    border-color: var(--v46-pink-soft) !important;
    transform: translateY(-4px) !important;
    box-shadow: var(--v46-sh-md) !important;
}
body.vcard46-theme .product-image,
body.vcard46-theme .product-image img { border-radius: var(--v46-r-lg) !important; }
body.vcard46-theme .product-card .product-badge {
    background: var(--v46-pink) !important;
    border-radius: var(--v46-r-pill) !important;
    padding: 5px 12px !important;
}
body.vcard46-theme .icon-circle {
    background: var(--v46-pink-light) !important;
    color: var(--v46-pink) !important;
    border: none !important;
}
body.vcard46-theme .promo-icon { color: var(--v46-pink) !important; }
body.vcard46-theme .promo-icon .text-primary { color: var(--v46-pink) !important; }

/* ----- Colour overrides ----- */
body.vcard46-theme .text-primary { color: var(--v46-pink) !important; }
body.vcard46-theme .text-navy    { color: var(--v46-ink) !important; }
body.vcard46-theme .text-muted   { color: var(--v46-muted) !important; }
body.vcard46-theme .text-danger  { color: var(--v46-sale) !important; }
body.vcard46-theme .text-success { color: var(--v46-success) !important; }

/* ----- Pastel pill badges (used across customer pages) ----- */
body.vcard46-theme .badge[class*="bg-"][class*="-subtle"] {
    background: var(--v46-pink-light) !important;
    color: var(--v46-pink) !important;
    border: none;
    border-radius: var(--v46-r-pill);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
}
body.vcard46-theme .badge.bg-success-subtle { background: rgba(43, 174, 130, 0.14) !important; color: var(--v46-success) !important; }
body.vcard46-theme .badge.bg-danger-subtle  { background: rgba(233, 30, 99, 0.12)  !important; color: var(--v46-sale) !important; }
body.vcard46-theme .badge.bg-warning-subtle { background: rgba(255, 196, 0, 0.16)  !important; color: #B45309 !important; }
body.vcard46-theme .badge.bg-info-subtle    { background: rgba(107, 213, 197, 0.18) !important; color: #1A8A78 !important; }
body.vcard46-theme .badge.bg-secondary-subtle { background: var(--v46-surface-2) !important; color: var(--v46-muted) !important; }
body.vcard46-theme .badge.bg-primary-subtle { background: rgba(255, 77, 141, 0.14) !important; color: var(--v46-pink) !important; }

/* ----- Customer pages: ec-card, modal, item rows ----- */
body.vcard46-theme .ec-card { background: #fff; border-radius: var(--v46-r-lg); box-shadow: var(--v46-sh-sm); border: 1px solid var(--v46-line); overflow: hidden; }
body.vcard46-theme .modal-content { border-radius: var(--v46-r-lg) !important; border: none; box-shadow: var(--v46-sh-lg); }
body.vcard46-theme .modal-title { font-family: var(--v46-serif); color: var(--v46-ink) !important; font-weight: 700; }
body.vcard46-theme .item-row { transition: var(--v46-t-fast); }
body.vcard46-theme .item-row:hover { background: var(--v46-pink-light); }
body.vcard46-theme .item-row:last-child { border-bottom: 0 !important; }

/* ----- Input group (pink prefix) ----- */
body.vcard46-theme .input-group-text {
    background: var(--v46-pink-light);
    border: 1px solid var(--v46-pink-light);
    color: var(--v46-pink);
    font-weight: 600;
    border-radius: var(--v46-r-md) 0 0 var(--v46-r-md);
}
body.vcard46-theme .input-group .form-control {
    border-radius: 0 var(--v46-r-md) var(--v46-r-md) 0;
}

/* ----- Alerts rounded ----- */
body.vcard46-theme .alert { border-radius: var(--v46-r-md); border: none; padding: 14px 20px; font-weight: 500; }
body.vcard46-theme .alert-danger { background: rgba(233, 30, 99, 0.1); color: var(--v46-sale); }
body.vcard46-theme .alert-success { background: rgba(43, 174, 130, 0.12); color: var(--v46-success); }
body.vcard46-theme .alert-warning { background: rgba(255, 196, 0, 0.16); color: #B45309; }
body.vcard46-theme .alert-info { background: rgba(107, 213, 197, 0.18); color: #1A8A78; }

/* ----- Form labels in customer pages ----- */
body.vcard46-theme .form-label { color: var(--v46-ink); font-weight: 600; font-size: 13px; letter-spacing: 0.02em; margin-bottom: 6px; }

/* ----- Bootstrap pagination → pink pill ----- */
body.vcard46-theme .pagination {
    --bs-pagination-color: var(--v46-pink);
    --bs-pagination-bg: #fff;
    --bs-pagination-border-color: var(--v46-pink-light);
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--v46-pink);
    --bs-pagination-hover-border-color: var(--v46-pink);
    --bs-pagination-focus-color: var(--v46-pink);
    --bs-pagination-focus-bg: var(--v46-pink-light);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--v46-pink);
    --bs-pagination-active-border-color: var(--v46-pink);
    --bs-pagination-disabled-color: var(--v46-muted);
    --bs-pagination-disabled-bg: var(--v46-surface);
    --bs-pagination-disabled-border-color: var(--v46-line);
    --bs-pagination-border-radius: 50%;
    gap: 6px;
}

/* ----- Legacy var aliases — vcard44/vcard45 inline styles fall back to pink palette ----- */
body.vcard46-theme {
    --primary-color: var(--v46-pink);
    --navy-color:    var(--v46-ink);
    --bg-light:      var(--v46-surface);
    --white:         #ffffff;
    --text-muted:    var(--v46-muted);
    --shadow-sm:     var(--v46-sh-sm);
    --transition:    var(--v46-t-fast);
}

/* ----- Address card (used in checkout + edit-profile) ----- */
body.vcard46-theme .addr-card {
    transition: var(--v46-t-fast);
    border-radius: var(--v46-r-lg) !important;
    border: 1.5px solid var(--v46-line) !important;
}
body.vcard46-theme .addr-card.border-primary,
body.vcard46-theme .addr-card.active {
    border-color: var(--v46-pink) !important;
    background: var(--v46-pink-light);
}
body.vcard46-theme .addr-card:hover {
    background: var(--v46-pink-light);
    border-color: var(--v46-pink-soft) !important;
}

/* ----- Form controls rounded ----- */
body.vcard46-theme .form-control {
    border-radius: var(--v46-r-md) !important;
    border: 1px solid var(--v46-line);
    padding: 12px 16px;
    background: #fff;
    font-size: 14px;
    transition: var(--v46-t-fast);
}
body.vcard46-theme .form-control:focus {
    border-color: var(--v46-pink);
    box-shadow: 0 0 0 3px rgba(255, 77, 141, 0.14);
    outline: none;
}
body.vcard46-theme .form-label {
    color: var(--v46-ink);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 13px;
}

/* ----- Quantity, ribbon, coupon ----- */
body.vcard46-theme .quantity-control .qty-btn {
    border-radius: 50%;
    border: 1.5px solid var(--v46-pink-light);
    background: #fff;
    color: var(--v46-pink);
    width: 34px; height: 34px;
    transition: var(--v46-t-fast);
}
body.vcard46-theme .quantity-control .qty-btn:hover {
    background: var(--v46-pink);
    color: #fff;
    border-color: var(--v46-pink);
}
body.vcard46-theme .coupon-code {
    border: 2px dashed var(--v46-pink);
    background: var(--v46-pink-light);
    color: var(--v46-pink);
    border-radius: var(--v46-r-md);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
    font-weight: 700;
}
body.vcard46-theme .ribbon {
    background: var(--v46-grad-pink) !important;
    border-radius: var(--v46-r-pill);
    font-weight: 700;
}

/* ----- Modal rounded ----- */
body.vcard46-theme .modal-container,
body.vcard46-theme .business-hours-content,
body.vcard46-theme .product-summary-box {
    border-radius: var(--v46-r-lg) !important;
}
body.vcard46-theme .product-summary-box img { border-radius: var(--v46-r-md) !important; }
body.vcard46-theme .modal-header-custom {
    background: var(--v46-pink-light) !important;
    border-bottom: none;
    border-radius: var(--v46-r-lg) var(--v46-r-lg) 0 0;
}
body.vcard46-theme .business-hour-item .badge {
    background: var(--v46-pink) !important;
    border-radius: var(--v46-r-pill);
}

/* ----- Cart modal pieces ----- */
body.vcard46-theme .v46-cart-modal__chip-text {
    border-radius: var(--v46-r-pill) !important;
    border-color: var(--v46-line-2);
    padding: 10px 18px;
}
body.vcard46-theme .v46-cart-modal__chip:hover .v46-cart-modal__chip-text {
    border-color: var(--v46-pink);
    color: var(--v46-pink);
}
body.vcard46-theme .v46-cart-modal__chip.is-active .v46-cart-modal__chip-text,
body.vcard46-theme .v46-cart-modal__chip input[type="radio"]:checked + .v46-cart-modal__chip-text {
    background: var(--v46-pink) !important;
    border-color: var(--v46-pink) !important;
    color: #fff !important;
}
body.vcard46-theme .v46-cart-modal__btn {
    border-radius: var(--v46-r-pill) !important;
    border: none;
    padding: 14px 24px;
}
body.vcard46-theme .v46-cart-modal__btn--solid {
    background: var(--v46-grad-pink) !important;
    box-shadow: 0 8px 22px rgba(255, 77, 141, 0.28);
}
body.vcard46-theme .v46-cart-modal__btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 77, 141, 0.38);
}
body.vcard46-theme .v46-cart-modal__btn--ghost {
    background: var(--v46-pink-light);
    color: var(--v46-pink);
    border: none !important;
}
body.vcard46-theme .v46-cart-modal__btn--ghost:hover {
    background: var(--v46-pink);
    color: #fff;
}
body.vcard46-theme .v46-cart-modal__oos {
    border-radius: var(--v46-r-pill);
    border-color: var(--v46-line-2);
}
body.vcard46-theme .v46-cart-modal__price-now {
    color: var(--v46-pink) !important;
    font-weight: 700;
    font-size: 18px;
}
body.vcard46-theme .v46-cart-modal__price-was {
    color: var(--v46-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

/* ----- Search overlay ----- */
body.vcard46-theme .v46-search__head { border-bottom: 2px solid var(--v46-pink); }
body.vcard46-theme .v46-search__close { color: var(--v46-pink); }

/* ----- Drawer ----- */
body.vcard46-theme .v46-drawer__brand {
    font-family: var(--v46-display);
    font-size: 28px;
    font-weight: 400;
    text-transform: none;
    color: var(--v46-pink);
    letter-spacing: 0;
}
body.vcard46-theme .v46-drawer__nav a {
    font-family: var(--v46-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--v46-ink);
}
body.vcard46-theme .v46-drawer__nav a:hover { color: var(--v46-pink); }

/* ----- Wipe vcard44 inline gradient leaks ----- */
body.vcard46-theme [style*="background: linear-gradient"],
body.vcard46-theme [style*="background:linear-gradient"] {
    background: #fff !important;
}

/* ----- ec buttons (used by ecommerce blades) ----- */
body.vcard46-theme .btn-ec-primary,
body.vcard46-theme .btn-ec {
    background: var(--v46-grad-pink) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--v46-r-pill) !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 8px 22px rgba(255, 77, 141, 0.28);
}
body.vcard46-theme .btn-ec-primary:hover,
body.vcard46-theme .btn-ec:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 77, 141, 0.38);
}

/* ----- Strip vcard44 borders ----- */
body.vcard46-theme .v46-products,
body.vcard46-theme .v46-catstrip,
body.vcard46-theme .v46-editorial { border-top: none; }
body.vcard46-theme .v46-newsletter { border-top: none; }
body.vcard46-theme .v46-intro + .v46-products { border-top: none; }

/* ----- Cursive accent on h*.accent / em ----- */
body.vcard46-theme h1 .accent,
body.vcard46-theme h2 .accent,
body.vcard46-theme h3 .accent,
body.vcard46-theme h1 em,
body.vcard46-theme h2 em,
body.vcard46-theme h3 em {
    font-style: normal;
    font-family: var(--v46-display);
    color: var(--v46-pink);
    font-weight: 400;
}

/* ----- Mobile ----- */
@media (max-width: 540px) {
    body.vcard46-theme .v46-header__brand-name { font-size: 24px; letter-spacing: 0; }
    body.vcard46-theme .v46-icon-btn { width: 38px; height: 38px; font-size: 14px; }
    body.vcard46-theme .v46-hero__visual { aspect-ratio: 1.05 / 1; }
    body.vcard46-theme .v46-hero__seal { width: 78px; height: 78px; right: 4%; top: 6%; }
    body.vcard46-theme .v46-hero__seal strong { font-size: 18px; }
    body.vcard46-theme .v46-offer-banner__inner { padding: 22px; }
    body.vcard46-theme .v46-offer-banner__big { font-size: 2.4rem; text-align: left; }
}

/* ----- Header backdrop ----- */
body.vcard46-theme .v46-header { background: rgba(255, 245, 247, 0.94); }
body.vcard46-theme .v46-header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--v46-sh-sm); }


