/* =========================================================
   vcard43 — Luxury Bakery / Patisserie E-commerce Theme
   Aesthetic: Warm cream + deep cocoa + antique gold
   Inspiration: Shopify premium + Zomato + Starbucks Reserve
   Typography: Playfair Display headlines + Inter body
   ========================================================= */

:root {
    /* Warm cream/cocoa/gold palette */
    --v43-bg:        #FBF7F2;   /* cream */
    --v43-bg-2:      #F5EFE6;   /* warm ivory */
    --v43-surface:   #FFFFFF;   /* card */
    --v43-surface-2: #EFE6D8;   /* warm sand */
    --v43-ink:       #3A2618;   /* deep cocoa */
    --v43-ink-2:     #2A1A11;   /* espresso */
    --v43-text:      #4A3526;   /* warm brown */
    --v43-muted:     #8B7355;   /* taupe */
    --v43-line:      #E8DCC8;   /* warm tan */
    --v43-line-2:    #D4C5A8;   /* darker tan */

    /* Accent — antique gold */
    --v43-accent:       #B8860B;
    --v43-accent-hover: #9C7100;
    --v43-accent-soft:  #E8D49C;
    --v43-accent-soft2: #F4E8C3;
    --v43-sale:         #B91C1C;
    --v43-success:      #047857;

    /* Gradients */
    --v43-gold-grad: linear-gradient(135deg, #D4A437 0%, #B8860B 50%, #8B6914 100%);
    --v43-cream-grad: linear-gradient(180deg, #FBF7F2 0%, #F5EFE6 100%);
    --v43-cocoa-grad: linear-gradient(135deg, #3A2618 0%, #2A1A11 100%);

    /* Typography */
    --v43-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --v43-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    /* Radius */
    --v43-r-sm: 6px;
    --v43-r-md: 14px;
    --v43-r-lg: 22px;
    --v43-r-pill: 999px;

    /* Shadow */
    --v43-shadow-sm: 0 2px 8px rgba(58, 38, 24, 0.06);
    --v43-shadow-md: 0 8px 28px rgba(58, 38, 24, 0.10);
    --v43-shadow-lg: 0 20px 60px rgba(58, 38, 24, 0.16);
    --v43-shadow-gold: 0 10px 36px rgba(184, 134, 11, 0.22);

    /* Motion */
    --v43-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --v43-t-fast: 220ms var(--v43-ease);
    --v43-t-med:  420ms var(--v43-ease);
    --v43-t-slow: 800ms var(--v43-ease);

    /* Container */
    --v43-pad-x: clamp(1.1rem, 3vw, 2.6rem);
    --v43-header-h: 76px;
}

/* ---------- Reset & base ---------- */
body.vcard43-theme,
body.vcard43-theme *,
body.vcard43-theme *::before,
body.vcard43-theme *::after { box-sizing: border-box; }

body.vcard43-theme {
    margin: 0;
    padding: 0;
    background: var(--v43-bg);
    color: var(--v43-text);
    font-family: var(--v43-sans);
    font-size: 15.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    padding-bottom: 90px;
}

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

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

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

/* ---------- Reusable utility classes ---------- */
body.vcard43-theme .v43-eyebrow {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--v43-accent);
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
body.vcard43-theme .v43-eyebrow::before,
body.vcard43-theme .v43-eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--v43-accent);
    opacity: 0.6;
}
body.vcard43-theme .v43-eyebrow.v43-eyebrow--solo::after { display: none; }
body.vcard43-theme .v43-eyebrow.v43-eyebrow--solo::before { display: none; }
body.vcard43-theme .v43-eyebrow--light { color: var(--v43-accent-soft); }
body.vcard43-theme .v43-eyebrow--light::before,
body.vcard43-theme .v43-eyebrow--light::after { background: var(--v43-accent-soft); }

body.vcard43-theme .v43-h2 {
    font-family: var(--v43-serif);
    font-size: clamp(2rem, 3.4vw + 0.6rem, 3.2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--v43-ink);
    line-height: 1.1;
}
body.vcard43-theme .v43-h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--v43-accent);
}

body.vcard43-theme .v43-section-head {
    text-align: center;
    margin: 0 auto 3.2rem;
    max-width: 720px;
}
body.vcard43-theme .v43-section-head .v43-eyebrow { justify-content: center; }
body.vcard43-theme .v43-section-head p {
    color: var(--v43-muted);
    margin-top: 12px;
    font-size: 16px;
}

body.vcard43-theme .v43-link {
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v43-ink);
    border-bottom: 1px solid var(--v43-accent);
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-link:hover { gap: 14px; color: var(--v43-accent); }
body.vcard43-theme .v43-link i { font-size: 10px; }

/* ---------- Buttons ---------- */
body.vcard43-theme .v43-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--v43-r-pill);
    cursor: pointer;
    transition: var(--v43-t-fast);
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
body.vcard43-theme .v43-btn--solid {
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
    border-color: var(--v43-ink);
}
body.vcard43-theme .v43-btn--solid:hover {
    background: var(--v43-gold-grad);
    color: #FFF;
    border-color: var(--v43-accent);
    transform: translateY(-2px);
    box-shadow: var(--v43-shadow-gold);
}
body.vcard43-theme .v43-btn--gold {
    background: var(--v43-gold-grad);
    color: #FFF;
    border-color: var(--v43-accent);
    box-shadow: var(--v43-shadow-gold);
}
body.vcard43-theme .v43-btn--gold:hover {
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
    border-color: var(--v43-ink);
    transform: translateY(-2px);
}
body.vcard43-theme .v43-btn--ghost {
    background: transparent;
    color: var(--v43-ink);
    border-color: var(--v43-ink);
}
body.vcard43-theme .v43-btn--ghost:hover {
    background: var(--v43-ink);
    color: #FBF7F2;
}
body.vcard43-theme .v43-btn--ghost-light {
    background: transparent;
    color: #FBF7F2;
    border-color: rgba(251, 247, 242, 0.6);
}
body.vcard43-theme .v43-btn--ghost-light:hover {
    background: #FBF7F2;
    color: var(--v43-ink);
    border-color: #FBF7F2;
}

/* ---------- Container ---------- */
body.vcard43-theme .v43-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--v43-pad-x);
}

/* ---------- Announcement bar ---------- */
body.vcard43-theme .v43-announce {
    background: var(--v43-cocoa-grad);
    color: #F5EFE6;
    font-family: var(--v43-sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    text-align: center;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}
body.vcard43-theme .v43-announce__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
body.vcard43-theme .v43-announce strong { color: var(--v43-accent-soft); font-weight: 600; }
body.vcard43-theme .v43-announce__dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--v43-accent);
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.6);
}
@media (max-width: 540px) {
    body.vcard43-theme .v43-announce { font-size: 11px; padding: 8px 12px; }
    body.vcard43-theme .v43-announce__dot { display: none; }
}

/* ---------- Header ---------- */
body.vcard43-theme .v43-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 242, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--v43-line);
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-header.scrolled {
    background: rgba(251, 247, 242, 0.98);
    box-shadow: 0 4px 24px rgba(58, 38, 24, 0.06);
}
body.vcard43-theme .v43-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--v43-pad-x);
    height: var(--v43-header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
@media (min-width: 992px) {
    body.vcard43-theme .v43-header__inner {
        grid-template-columns: 1fr auto 1fr;
    }
    body.vcard43-theme .v43-header__nav { grid-column: 1; grid-row: 1; justify-self: start; }
    body.vcard43-theme .v43-header__brand { grid-column: 2; grid-row: 1; }
    body.vcard43-theme .v43-header__actions { grid-column: 3; grid-row: 1; justify-self: end; }
}
body.vcard43-theme .v43-header__menu {
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 36px;
}
body.vcard43-theme .v43-header__menu span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--v43-ink);
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--v43-ink);
    justify-self: center;
}
body.vcard43-theme .v43-header__brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--v43-accent);
    padding: 2px;
    background: #fff;
}
body.vcard43-theme .v43-header__brand-name {
    font-family: var(--v43-serif);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--v43-ink);
}
@media (max-width: 480px) {
    body.vcard43-theme .v43-header__brand-name { font-size: 17px; }
    body.vcard43-theme .v43-header__brand-mark { width: 36px; height: 36px; }
}
body.vcard43-theme .v43-header__nav {
    display: inline-flex;
    align-items: center;
    gap: 30px;
}
body.vcard43-theme .v43-header__nav a {
    font-family: var(--v43-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v43-ink);
    position: relative;
    padding: 6px 0;
}
body.vcard43-theme .v43-header__nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--v43-accent);
    transition: var(--v43-t-fast);
    transform: translateX(-50%);
}
body.vcard43-theme .v43-header__nav a:hover { color: var(--v43-accent); }
body.vcard43-theme .v43-header__nav a:hover::after { width: 100%; }

body.vcard43-theme .v43-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
body.vcard43-theme .v43-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    color: var(--v43-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-icon-btn:hover {
    background: var(--v43-bg-2);
    color: var(--v43-accent);
    border-color: var(--v43-accent);
}
body.vcard43-theme .v43-icon-btn__badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--v43-gold-grad);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1.5px solid var(--v43-bg);
}
body.vcard43-theme .v43-header__social {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
body.vcard43-theme .v43-header__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v43-muted);
    font-size: 13px;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-header__social a:hover { color: var(--v43-accent); }

@media (max-width: 991px) {
    body.vcard43-theme .v43-header__social { display: none; }
}

/* Search overlay */
body.vcard43-theme .v43-search {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(58, 38, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--v43-t-med);
}
body.vcard43-theme .v43-search.active {
    opacity: 1;
    visibility: visible;
}
body.vcard43-theme .v43-search__panel {
    max-width: 720px;
    margin: 8vh auto 0;
    background: var(--v43-bg);
    border-radius: var(--v43-r-lg);
    box-shadow: var(--v43-shadow-lg);
    overflow: hidden;
    transform: translateY(-30px);
    transition: var(--v43-t-med);
}
body.vcard43-theme .v43-search.active .v43-search__panel { transform: translateY(0); }
body.vcard43-theme .v43-search__head {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    gap: 14px;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-search__input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 18px;
    font-family: var(--v43-serif);
    color: var(--v43-ink);
    padding: 8px 4px;
}
body.vcard43-theme .v43-search__input::placeholder { color: var(--v43-muted); font-style: italic; }
body.vcard43-theme .v43-search__close {
    background: transparent;
    border: 1px solid var(--v43-line-2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: var(--v43-ink);
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-search__close:hover {
    background: var(--v43-ink);
    color: #fff;
}
body.vcard43-theme .v43-search__results { padding: 18px 22px 22px; max-height: 60vh; overflow-y: auto; }
body.vcard43-theme .v43-search__hint {
    text-align: center;
    color: var(--v43-muted);
    font-style: italic;
    padding: 24px 0;
    font-size: 14px;
}

/* Mobile drawer */
body.vcard43-theme .v43-drawer {
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(58, 38, 24, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--v43-t-med);
}
body.vcard43-theme .v43-drawer.active {
    opacity: 1;
    visibility: visible;
}
body.vcard43-theme .v43-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(86vw, 360px);
    height: 100%;
    background: var(--v43-bg);
    padding: 28px 24px;
    transform: translateX(-105%);
    transition: var(--v43-t-med);
    display: flex;
    flex-direction: column;
    box-shadow: var(--v43-shadow-lg);
}
body.vcard43-theme .v43-drawer.active .v43-drawer__panel { transform: translateX(0); }
body.vcard43-theme .v43-drawer__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--v43-line-2);
    background: transparent;
    cursor: pointer;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-drawer__brand {
    font-family: var(--v43-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--v43-ink);
    margin: 8px 0 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
body.vcard43-theme .v43-drawer__nav a {
    padding: 14px 0;
    font-family: var(--v43-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--v43-ink);
    border-bottom: 1px solid var(--v43-line);
    transition: var(--v43-t-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.vcard43-theme .v43-drawer__nav a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--v43-muted);
}
body.vcard43-theme .v43-drawer__nav a:hover { color: var(--v43-accent); padding-left: 6px; }
body.vcard43-theme .v43-drawer__footer { margin-top: auto; padding-top: 24px; text-align: center; }
body.vcard43-theme .v43-drawer__legal { font-size: 12px; color: var(--v43-muted); }

/* ---------- HERO SLIDER ---------- */
body.vcard43-theme .v43-hero {
    position: relative;
    overflow: hidden;
    background: var(--v43-bg-2);
}
body.vcard43-theme .v43-hero__swiper {
    width: 100%;
    height: clamp(420px, 72vh, 720px);
}
body.vcard43-theme .v43-hero__slide {
    position: relative;
    overflow: hidden;
    background: var(--v43-ink);
}
body.vcard43-theme .v43-hero__slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s var(--v43-ease);
    z-index: 1;
}
body.vcard43-theme .v43-hero__slide.swiper-slide-active .v43-hero__slide-img {
    transform: scale(1.1);
}
body.vcard43-theme .v43-hero__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 38, 24, 0.55) 0%, rgba(58, 38, 24, 0.25) 50%, rgba(58, 38, 24, 0.65) 100%);
    z-index: 2;
}
body.vcard43-theme .v43-hero__caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 clamp(2rem, 8vw, 6.5rem);
    z-index: 3;
    color: #FBF7F2;
    max-width: 900px;
}
body.vcard43-theme .v43-hero__caption .v43-eyebrow {
    color: var(--v43-accent-soft);
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s var(--v43-ease) 0.3s;
}
body.vcard43-theme .v43-hero__caption .v43-eyebrow::before,
body.vcard43-theme .v43-hero__caption .v43-eyebrow::after { background: var(--v43-accent-soft); }
body.vcard43-theme .v43-hero__title {
    font-family: var(--v43-serif);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: #FBF7F2;
    margin: 14px 0 22px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--v43-ease) 0.5s;
}
body.vcard43-theme .v43-hero__title em {
    font-style: italic;
    color: var(--v43-accent-soft);
    font-weight: 400;
}
body.vcard43-theme .v43-hero__sub {
    font-family: var(--v43-sans);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    color: rgba(251, 247, 242, 0.88);
    max-width: 560px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--v43-ease) 0.7s;
}
body.vcard43-theme .v43-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--v43-ease) 0.9s;
}
body.vcard43-theme .v43-hero__slide.swiper-slide-active .v43-eyebrow,
body.vcard43-theme .v43-hero__slide.swiper-slide-active .v43-hero__title,
body.vcard43-theme .v43-hero__slide.swiper-slide-active .v43-hero__sub,
body.vcard43-theme .v43-hero__slide.swiper-slide-active .v43-hero__cta {
    opacity: 1;
    transform: translateY(0);
}

body.vcard43-theme .v43-hero .swiper-button-next,
body.vcard43-theme .v43-hero .swiper-button-prev {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(251, 247, 242, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 247, 242, 0.3);
    color: #FBF7F2;
    margin-top: -28px;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-hero .swiper-button-next:hover,
body.vcard43-theme .v43-hero .swiper-button-prev:hover {
    background: var(--v43-accent);
    border-color: var(--v43-accent);
    transform: scale(1.06);
}
body.vcard43-theme .v43-hero .swiper-button-next::after,
body.vcard43-theme .v43-hero .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
}
body.vcard43-theme .v43-hero .swiper-pagination {
    bottom: 32px !important;
}
body.vcard43-theme .v43-hero .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(251, 247, 242, 0.4);
    opacity: 1;
    transition: var(--v43-t-fast);
    margin: 0 4px !important;
}
body.vcard43-theme .v43-hero .swiper-pagination-bullet-active {
    background: var(--v43-accent);
    width: 50px;
}

@media (max-width: 768px) {
    body.vcard43-theme .v43-hero__swiper { height: 80vh; min-height: 460px; }
    body.vcard43-theme .v43-hero__caption { padding: 0 1.5rem; align-items: center; text-align: center; }
    body.vcard43-theme .v43-hero__caption .v43-eyebrow { justify-content: center; }
    body.vcard43-theme .v43-hero__cta { justify-content: center; }
    body.vcard43-theme .v43-hero .swiper-button-next,
    body.vcard43-theme .v43-hero .swiper-button-prev { display: none; }
}

/* ---------- Section spacing ---------- */
body.vcard43-theme .v43-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}
body.vcard43-theme .v43-section--alt { background: var(--v43-bg-2); }
body.vcard43-theme .v43-section--dark {
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
}
body.vcard43-theme .v43-section--dark .v43-h2,
body.vcard43-theme .v43-section--dark h3 { color: #FBF7F2; }
body.vcard43-theme .v43-section--dark .v43-h2 em { color: var(--v43-accent-soft); }
body.vcard43-theme .v43-section--dark p { color: rgba(251, 247, 242, 0.78); }

/* ---------- Categories ---------- */
body.vcard43-theme .v43-catstrip { padding: clamp(3rem, 6vw, 5rem) 0; }
body.vcard43-theme .v43-catstrip__grid {
    display: grid;
    /* Cap each card so a few categories don't stretch edge-to-edge; centre the row. */
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    justify-content: center;
    gap: 22px;
    margin-top: 2.5rem;
}
body.vcard43-theme .v43-cat {
    display: block;
    text-decoration: none;
    color: var(--v43-ink);
    text-align: center;
    background: var(--v43-surface);
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-r-md);
    padding: 28px 16px 22px;
    transition: var(--v43-t-med);
    position: relative;
    overflow: hidden;
}
body.vcard43-theme .v43-cat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--v43-gold-grad);
    opacity: 0;
    transition: var(--v43-t-med);
    z-index: 0;
}
body.vcard43-theme .v43-cat:hover {
    transform: translateY(-6px);
    box-shadow: var(--v43-shadow-md);
    border-color: var(--v43-accent);
}
body.vcard43-theme .v43-cat:hover::before { opacity: 0.08; }
body.vcard43-theme .v43-cat__media {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    background: var(--v43-bg-2);
    position: relative;
    z-index: 1;
    border: 2px solid var(--v43-line);
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-cat:hover .v43-cat__media {
    border-color: var(--v43-accent);
    transform: scale(1.06);
}
body.vcard43-theme .v43-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.vcard43-theme .v43-cat__name {
    font-family: var(--v43-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--v43-ink);
    position: relative;
    z-index: 1;
    display: block;
}
body.vcard43-theme .v43-cat__count {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v43-muted);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

/* ---------- Products grid ---------- */
body.vcard43-theme .v43-products { padding: clamp(3rem, 6vw, 5rem) 0; }
body.vcard43-theme .v43-products__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 16px;
}
body.vcard43-theme .v43-grid {
    display: grid;
    gap: 28px 22px;
}
body.vcard43-theme .v43-grid--products { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
body.vcard43-theme .v43-grid--products-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* Product card */
body.vcard43-theme .v43-pcard {
    background: var(--v43-surface);
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-r-md);
    overflow: hidden;
    transition: var(--v43-t-med);
    position: relative;
    display: flex;
    flex-direction: column;
}
body.vcard43-theme .v43-pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--v43-shadow-md);
    border-color: var(--v43-accent-soft);
}
body.vcard43-theme .v43-pcard__media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--v43-bg-2);
}
body.vcard43-theme .v43-pcard__imglink {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
body.vcard43-theme .v43-pcard__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--v43-muted);
    background: var(--v43-bg-2);
    text-align: center;
    padding: 12px;
}
body.vcard43-theme .v43-pcard__placeholder-mark {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--v43-line-2);
    margin-bottom: 12px;
    position: relative;
}
body.vcard43-theme .v43-pcard__placeholder-mark::after {
    content: '\f06b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--v43-muted);
}
body.vcard43-theme .v43-pcard__placeholder-text {
    font-family: var(--v43-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
body.vcard43-theme .v43-pcard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--v43-t-slow);
}
body.vcard43-theme .v43-pcard__img--hover {
    opacity: 0;
    transform: scale(1.06);
}
body.vcard43-theme .v43-pcard:hover .v43-pcard__img--primary { opacity: 0; transform: scale(1.04); }
body.vcard43-theme .v43-pcard:hover .v43-pcard__img--hover { opacity: 1; transform: scale(1); }
body.vcard43-theme .v43-pcard:hover .v43-pcard__media .v43-pcard__placeholder { opacity: 0.6; }

body.vcard43-theme .v43-pcard__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 4;
}
body.vcard43-theme .v43-badge {
    font-family: var(--v43-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: var(--v43-r-pill);
    color: #fff;
}
body.vcard43-theme .v43-badge--new { background: var(--v43-success); }
body.vcard43-theme .v43-badge--sale { background: var(--v43-sale); }
body.vcard43-theme .v43-badge--soldout { background: var(--v43-muted); }
body.vcard43-theme .v43-badge--hot { background: var(--v43-gold-grad); }

body.vcard43-theme .v43-pcard__wish {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(251, 247, 242, 0.92);
    backdrop-filter: blur(8px);
    color: var(--v43-ink);
    cursor: pointer;
    z-index: 4;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-pcard__wish:hover { background: #fff; color: var(--v43-accent); transform: scale(1.08); }
body.vcard43-theme .v43-pcard__wish.is-active { color: var(--v43-sale); }
body.vcard43-theme .v43-pcard__wish.is-active i { font-weight: 900; }

body.vcard43-theme .v43-pcard__quickadd {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
    border: 0;
    border-radius: var(--v43-r-pill);
    cursor: pointer;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--v43-t-med);
    z-index: 4;
}
body.vcard43-theme .v43-pcard:hover .v43-pcard__quickadd { opacity: 1; transform: translateY(0); }
body.vcard43-theme .v43-pcard__quickadd:hover { background: var(--v43-gold-grad); }
body.vcard43-theme .v43-pcard__quickadd:disabled { opacity: 0.5 !important; cursor: not-allowed; }

body.vcard43-theme .v43-pcard__body {
    padding: 16px 18px 20px;
    text-align: center;
}
body.vcard43-theme .v43-pcard__cat {
    font-family: var(--v43-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v43-accent);
    margin-bottom: 8px;
}
body.vcard43-theme .v43-pcard__title {
    font-family: var(--v43-serif);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
    min-height: 44px;
}
body.vcard43-theme .v43-pcard__title a { color: var(--v43-ink); text-decoration: none; }
body.vcard43-theme .v43-pcard__title a:hover { color: var(--v43-accent); }
body.vcard43-theme .v43-pcard__pricerow {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    justify-content: center;
}
body.vcard43-theme .v43-pcard__price {
    font-family: var(--v43-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--v43-accent);
}
body.vcard43-theme .v43-pcard__compare {
    font-size: 14px;
    color: var(--v43-muted);
    text-decoration: line-through;
}

/* ---------- Trust bar ---------- */
body.vcard43-theme .v43-trust {
    background: var(--v43-bg-2);
    padding: 2.4rem 0;
    border-top: 1px solid var(--v43-line);
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-trust__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--v43-pad-x);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
body.vcard43-theme .v43-trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 4px;
}
body.vcard43-theme .v43-trust__item i {
    font-size: 26px;
    color: var(--v43-accent);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--v43-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-trust__item strong {
    display: block;
    font-family: var(--v43-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--v43-ink);
    margin-bottom: 2px;
}
body.vcard43-theme .v43-trust__item span {
    font-size: 13px;
    color: var(--v43-muted);
}

/* ---------- Services ---------- */
body.vcard43-theme .v43-services { padding: clamp(3rem, 6vw, 5rem) 0; }
body.vcard43-theme .v43-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
body.vcard43-theme .v43-scard {
    background: var(--v43-surface);
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-r-md);
    overflow: hidden;
    transition: var(--v43-t-med);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
body.vcard43-theme .v43-scard:hover {
    transform: translateY(-6px);
    box-shadow: var(--v43-shadow-md);
    border-color: var(--v43-accent);
}
body.vcard43-theme .v43-scard__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--v43-bg-2);
}
body.vcard43-theme .v43-scard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--v43-t-slow);
}
body.vcard43-theme .v43-scard:hover .v43-scard__media img { transform: scale(1.08); }
body.vcard43-theme .v43-scard__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
body.vcard43-theme .v43-scard__title {
    font-family: var(--v43-serif);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-scard__desc {
    font-size: 14px;
    color: var(--v43-muted);
    line-height: 1.65;
    margin: 0 0 20px;
    flex: 1;
}
body.vcard43-theme .v43-scard__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-scard__price {
    font-family: var(--v43-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--v43-accent);
}
body.vcard43-theme .v43-scard__cta {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v43-ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-scard:hover .v43-scard__cta { color: var(--v43-accent); gap: 12px; }

/* ---------- Gallery ---------- */
body.vcard43-theme .v43-gallery { padding: clamp(3rem, 6vw, 5rem) 0; }
body.vcard43-theme .v43-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
    margin-top: 2.5rem;
}
body.vcard43-theme .v43-gtile {
    position: relative;
    border-radius: var(--v43-r-md);
    overflow: hidden;
    background: var(--v43-bg-2);
    cursor: pointer;
}
body.vcard43-theme .v43-gtile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--v43-t-slow);
}
body.vcard43-theme .v43-gtile:hover img { transform: scale(1.06); }
body.vcard43-theme .v43-gtile::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 38, 24, 0.5);
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-gtile:hover::after { opacity: 1; }
body.vcard43-theme .v43-gtile--0 { grid-column: span 6; grid-row: span 2; }
body.vcard43-theme .v43-gtile--1 { grid-column: span 3; grid-row: span 1; }
body.vcard43-theme .v43-gtile--2 { grid-column: span 3; grid-row: span 1; }
body.vcard43-theme .v43-gtile--3 { grid-column: span 3; grid-row: span 1; }
body.vcard43-theme .v43-gtile--4 { grid-column: span 3; grid-row: span 1; }
body.vcard43-theme .v43-gtile--5 { grid-column: span 6; grid-row: span 2; }
@media (max-width: 768px) {
    body.vcard43-theme .v43-gallery__grid { grid-auto-rows: 140px; gap: 10px; }
    body.vcard43-theme .v43-gtile--0,
    body.vcard43-theme .v43-gtile--5 { grid-column: span 12; }
    body.vcard43-theme .v43-gtile--1,
    body.vcard43-theme .v43-gtile--2,
    body.vcard43-theme .v43-gtile--3,
    body.vcard43-theme .v43-gtile--4 { grid-column: span 6; }
}

/* ---------- Blogs/Journal ---------- */
body.vcard43-theme .v43-journal { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--v43-bg-2); }
body.vcard43-theme .v43-journal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
}
body.vcard43-theme .v43-jcard {
    background: var(--v43-surface);
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-r-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--v43-t-med);
    display: flex;
    flex-direction: column;
}
body.vcard43-theme .v43-jcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--v43-shadow-md);
    border-color: var(--v43-accent);
}
body.vcard43-theme .v43-jcard__media {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--v43-bg-2);
}
body.vcard43-theme .v43-jcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--v43-t-slow);
}
body.vcard43-theme .v43-jcard:hover .v43-jcard__media img { transform: scale(1.08); }
body.vcard43-theme .v43-jcard__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
body.vcard43-theme .v43-jcard__date {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v43-accent);
    margin: 0 0 8px;
}
body.vcard43-theme .v43-jcard__title {
    font-family: var(--v43-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-jcard__excerpt {
    font-size: 14px;
    color: var(--v43-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}
body.vcard43-theme .v43-jcard__cta {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v43-ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--v43-t-fast);
    align-self: flex-start;
    border-bottom: 1px solid var(--v43-accent);
    padding-bottom: 4px;
}
body.vcard43-theme .v43-jcard:hover .v43-jcard__cta { color: var(--v43-accent); gap: 12px; }

/* ---------- Offers ---------- */
body.vcard43-theme .v43-offers { padding: clamp(3rem, 6vw, 5rem) 0; }
body.vcard43-theme .v43-offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}
body.vcard43-theme .v43-ocard {
    background: var(--v43-surface);
    border: 1px dashed var(--v43-accent);
    border-radius: var(--v43-r-md);
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--v43-t-med);
}
body.vcard43-theme .v43-ocard::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--v43-gold-grad);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    opacity: 0.08;
    transition: var(--v43-t-med);
}
body.vcard43-theme .v43-ocard:hover {
    border-style: solid;
    box-shadow: var(--v43-shadow-md);
    transform: translateY(-4px);
}
body.vcard43-theme .v43-ocard:hover::before { transform: scale(1.4); opacity: 0.16; }
body.vcard43-theme .v43-ocard__title {
    font-family: var(--v43-serif);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--v43-ink);
    position: relative;
}
body.vcard43-theme .v43-ocard__desc {
    font-size: 14px;
    color: var(--v43-muted);
    line-height: 1.65;
    margin-bottom: 22px;
    position: relative;
}
body.vcard43-theme .v43-ocard__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--v43-line);
    position: relative;
    gap: 12px;
}
body.vcard43-theme .v43-ocard__code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 8px 14px;
    border: 1.5px dashed var(--v43-accent);
    border-radius: 6px;
    color: var(--v43-ink);
    background: var(--v43-accent-soft2);
}
body.vcard43-theme .v43-ocard__cta {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v43-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-ocard__cta:hover { gap: 10px; }

/* ---------- Shop Intro Section ---------- */
body.vcard43-theme .v43-shopintro {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
    position: relative;
    overflow: hidden;
}
body.vcard43-theme .v43-shopintro::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}
body.vcard43-theme .v43-shopintro__inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--v43-pad-x);
    text-align: center;
}
body.vcard43-theme .v43-shopintro__title {
    font-family: var(--v43-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: #FBF7F2;
    margin-bottom: 16px;
    line-height: 1.15;
}
body.vcard43-theme .v43-shopintro__title em { color: var(--v43-accent-soft); font-style: italic; }
body.vcard43-theme .v43-shopintro__sub {
    font-size: 16px;
    color: rgba(251, 247, 242, 0.78);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
body.vcard43-theme .v43-shopintro__quickbar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
body.vcard43-theme .v43-shopintro__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(251, 247, 242, 0.08);
    border: 1px solid rgba(251, 247, 242, 0.18);
    border-radius: var(--v43-r-pill);
    color: #FBF7F2;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-shopintro__chip i { color: var(--v43-accent-soft); }
body.vcard43-theme .v43-shopintro__chip:hover {
    background: var(--v43-accent);
    border-color: var(--v43-accent);
    color: #FFF;
    transform: translateY(-2px);
}
body.vcard43-theme .v43-shopintro__chip:hover i { color: #FFF; }

/* ---------- Shop Intro Modal (combined address+map+appointment+hours) ---------- */
body.vcard43-theme .v43-shopmodal {
    position: fixed;
    inset: 0;
    background: rgba(58, 38, 24, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 280ms var(--v43-ease);
}
body.vcard43-theme .v43-shopmodal.active { display: flex; opacity: 1; }
body.vcard43-theme .v43-shopmodal__panel {
    width: 100%;
    max-width: 880px;
    max-height: 92vh;
    background: var(--v43-bg);
    border-radius: var(--v43-r-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--v43-shadow-lg);
    transform: scale(0.96);
    transition: transform 280ms var(--v43-ease);
}
body.vcard43-theme .v43-shopmodal.active .v43-shopmodal__panel { transform: scale(1); }
@media (min-width: 768px) {
    body.vcard43-theme .v43-shopmodal__panel { grid-template-columns: 1fr 1fr; }
}
body.vcard43-theme .v43-shopmodal__media {
    background: var(--v43-bg-2);
    min-height: 220px;
    position: relative;
}
body.vcard43-theme .v43-shopmodal__media iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
body.vcard43-theme .v43-shopmodal__body {
    padding: 28px 28px 22px;
    overflow-y: auto;
    max-height: 92vh;
}
body.vcard43-theme .v43-shopmodal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-shopmodal__title {
    font-family: var(--v43-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-shopmodal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--v43-line-2);
    background: transparent;
    color: var(--v43-ink);
    cursor: pointer;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-shopmodal__close:hover {
    background: var(--v43-ink);
    color: #fff;
}
body.vcard43-theme .v43-shopmodal__tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--v43-line);
    padding-bottom: 0;
}
body.vcard43-theme .v43-shopmodal__tab {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 10px 8px;
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v43-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-shopmodal__tab.active {
    color: var(--v43-accent);
    border-bottom-color: var(--v43-accent);
}
body.vcard43-theme .v43-shopmodal__pane { display: none; }
body.vcard43-theme .v43-shopmodal__pane.active { display: block; animation: v43FadeUp 380ms var(--v43-ease); }
body.vcard43-theme .v43-shopmodal__row {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-shopmodal__row:last-child { border-bottom: 0; }
body.vcard43-theme .v43-shopmodal__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--v43-bg-2);
    color: var(--v43-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
body.vcard43-theme .v43-shopmodal__rowlabel {
    font-family: var(--v43-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v43-muted);
    margin-bottom: 2px;
}
body.vcard43-theme .v43-shopmodal__rowval {
    font-family: var(--v43-serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-shopmodal__rowval a { color: var(--v43-ink); }
body.vcard43-theme .v43-shopmodal__rowval a:hover { color: var(--v43-accent); }

/* Hours grid inside modal */
body.vcard43-theme .v43-hours-grid {
    display: flex;
    flex-direction: column;
}
body.vcard43-theme .v43-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--v43-line);
    font-size: 14px;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-hours-row:last-child { border-bottom: 0; }
body.vcard43-theme .v43-hours-row.today {
    background: var(--v43-accent-soft2);
    border-left: 3px solid var(--v43-accent);
    border-bottom: 1px solid var(--v43-accent-soft);
    margin: 0 -8px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 6px;
}
body.vcard43-theme .v43-hours-row__day { font-weight: 500; color: var(--v43-ink); }
body.vcard43-theme .v43-hours-row.today .v43-hours-row__day {
    font-weight: 700;
    color: var(--v43-accent);
}
body.vcard43-theme .v43-hours-row__time { color: var(--v43-muted); }
body.vcard43-theme .v43-hours-row.today .v43-hours-row__time { color: var(--v43-ink); font-weight: 600; }
body.vcard43-theme .v43-hours-badge {
    display: inline-block;
    background: var(--v43-accent);
    color: #fff;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: var(--v43-r-pill);
    margin-left: 6px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Appointment form */
body.vcard43-theme .v43-form { display: flex; flex-direction: column; gap: 14px; }
body.vcard43-theme .v43-form__row { position: relative; }
body.vcard43-theme .v43-form__row label {
    position: absolute;
    top: -8px;
    left: 14px;
    background: var(--v43-bg);
    padding: 0 8px;
    font-family: var(--v43-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v43-muted);
    z-index: 1;
}
body.vcard43-theme .v43-form input,
body.vcard43-theme .v43-form select,
body.vcard43-theme .v43-form textarea {
    width: 100%;
    border: 1.5px solid var(--v43-line-2);
    background: var(--v43-bg);
    padding: 14px 16px;
    font-family: var(--v43-sans);
    font-size: 14px;
    color: var(--v43-ink);
    border-radius: var(--v43-r-sm);
    outline: 0;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-form input:focus,
body.vcard43-theme .v43-form select:focus,
body.vcard43-theme .v43-form textarea:focus {
    border-color: var(--v43-accent);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12);
    background: var(--v43-surface);
}
body.vcard43-theme .v43-form input::placeholder,
body.vcard43-theme .v43-form textarea::placeholder { color: var(--v43-muted); font-style: italic; }
body.vcard43-theme .v43-form .v43-btn { width: 100%; margin-top: 4px; }

/* ---------- Footer ---------- */
body.vcard43-theme .v43-footer {
    background: var(--v43-cocoa-grad);
    color: #F5EFE6;
    padding: 4.5rem 0 0;
    position: relative;
}
body.vcard43-theme .v43-footer__top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--v43-pad-x) 3rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
}
@media (max-width: 991px) {
    body.vcard43-theme .v43-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 575px) {
    body.vcard43-theme .v43-footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 2rem; }
}
body.vcard43-theme .v43-footer__brand h3 {
    font-family: var(--v43-serif);
    font-size: 28px;
    font-weight: 600;
    color: #FBF7F2;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
body.vcard43-theme .v43-footer__brand p {
    color: rgba(245, 239, 230, 0.72);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}
body.vcard43-theme .v43-footer__social {
    display: inline-flex;
    gap: 10px;
}
body.vcard43-theme .v43-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(251, 247, 242, 0.08);
    border: 1px solid rgba(251, 247, 242, 0.16);
    color: #FBF7F2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--v43-t-fast);
    text-decoration: none;
}
body.vcard43-theme .v43-footer__social a:hover {
    background: var(--v43-accent);
    border-color: var(--v43-accent);
    transform: translateY(-3px);
}
body.vcard43-theme .v43-footer__col h6 {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--v43-accent-soft);
    margin: 0 0 22px;
}
body.vcard43-theme .v43-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.vcard43-theme .v43-footer__col li { margin-bottom: 12px; }
body.vcard43-theme .v43-footer__col a {
    color: rgba(245, 239, 230, 0.72);
    font-size: 14px;
    text-decoration: none;
    transition: var(--v43-t-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
body.vcard43-theme .v43-footer__col a:hover { color: var(--v43-accent-soft); padding-left: 4px; }
body.vcard43-theme .v43-footer__bottom {
    border-top: 1px solid rgba(251, 247, 242, 0.1);
    padding: 22px var(--v43-pad-x);
    text-align: center;
    font-size: 12.5px;
    color: rgba(245, 239, 230, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1320px;
    margin: 0 auto;
}
body.vcard43-theme .v43-footer__bottom a { color: var(--v43-accent-soft); }
body.vcard43-theme .v43-footer__bottom a:hover { color: #FBF7F2; }

/* ---------- Mobile cart bar ---------- */
body.vcard43-theme .mobile-cart-bar {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 14px 22px;
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
    border-radius: var(--v43-r-pill);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-decoration: none;
    box-shadow: var(--v43-shadow-lg);
    border: 1px solid var(--v43-accent);
}
body.vcard43-theme .mobile-cart-bar:hover { background: var(--v43-gold-grad); }
body.vcard43-theme .mobile-cart-bar__icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(251, 247, 242, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FBF7F2;
}
body.vcard43-theme .mobile-cart-bar__count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--v43-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--v43-ink);
}
body.vcard43-theme .mobile-cart-bar__label {
    flex: 1;
    font-family: var(--v43-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
body.vcard43-theme .mobile-cart-bar__arrow { font-size: 14px; }

/* ---------- Listing page ---------- */
body.vcard43-theme .v43-listing { padding: clamp(2.5rem, 5vw, 4rem) 0; }
body.vcard43-theme .v43-listing__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-listing__title h1 {
    font-family: var(--v43-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--v43-ink);
    margin: 4px 0;
}
body.vcard43-theme .v43-listing__count {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v43-muted);
    margin: 0;
}
body.vcard43-theme .v43-listing__tools {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
body.vcard43-theme .v43-listing__search {
    position: relative;
    min-width: 220px;
}
body.vcard43-theme .v43-listing__search input {
    width: 100%;
    border: 1px solid var(--v43-line-2);
    background: var(--v43-surface);
    padding: 11px 16px 11px 42px;
    font-family: var(--v43-sans);
    font-size: 13px;
    color: var(--v43-ink);
    border-radius: var(--v43-r-pill);
    outline: 0;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-listing__search input:focus {
    border-color: var(--v43-accent);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12);
}
body.vcard43-theme .v43-listing__search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v43-muted);
    font-size: 13px;
}
body.vcard43-theme .v43-listing__sort,
body.vcard43-theme .v43-listing__filter {
    border: 1px solid var(--v43-line-2);
    background: var(--v43-surface);
    padding: 11px 38px 11px 16px;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--v43-ink);
    border-radius: var(--v43-r-pill);
    cursor: pointer;
    outline: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%238B7355' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
body.vcard43-theme .v43-listing__sort:focus,
body.vcard43-theme .v43-listing__filter:focus {
    border-color: var(--v43-accent);
}
body.vcard43-theme .v43-empty {
    text-align: center;
    padding: 5rem 1.5rem;
    color: var(--v43-muted);
}
body.vcard43-theme .v43-empty i { font-size: 3.2rem; color: var(--v43-line-2); margin-bottom: 1.2rem; display: block; }
body.vcard43-theme .v43-empty h3 { font-family: var(--v43-serif); font-size: 26px; color: var(--v43-ink); margin-bottom: 8px; }

/* ---------- Single product page ---------- */
body.vcard43-theme .v43-single { padding: clamp(2.5rem, 5vw, 4rem) 0; }
body.vcard43-theme .v43-single__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 992px) {
    body.vcard43-theme .v43-single__inner { grid-template-columns: 1.05fr 1fr; }
}
body.vcard43-theme .v43-single__media {
    background: var(--v43-bg-2);
    border-radius: var(--v43-r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}
body.vcard43-theme .v43-single__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.vcard43-theme .v43-single__crumb {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v43-muted);
    margin-bottom: 18px;
}
body.vcard43-theme .v43-single__crumb a { color: var(--v43-muted); }
body.vcard43-theme .v43-single__crumb a:hover { color: var(--v43-accent); }
body.vcard43-theme .v43-single__crumb span { margin: 0 8px; }
body.vcard43-theme .v43-single__name {
    font-family: var(--v43-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--v43-ink);
    margin-bottom: 16px;
}
body.vcard43-theme .v43-single__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
}
body.vcard43-theme .v43-single__price-now {
    font-family: var(--v43-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--v43-accent);
}
body.vcard43-theme .v43-single__price-was {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--v43-muted);
}
body.vcard43-theme .v43-single__desc {
    color: var(--v43-text);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-single__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
body.vcard43-theme .v43-single__cta .v43-btn { flex: 1; min-width: 200px; padding: 16px 24px; }
body.vcard43-theme .v43-single__perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
body.vcard43-theme .v43-single__perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--v43-surface);
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-r-md);
}
body.vcard43-theme .v43-single__perk i {
    color: var(--v43-accent);
    font-size: 18px;
}
body.vcard43-theme .v43-single__perk strong {
    font-family: var(--v43-serif);
    font-size: 14px;
    color: var(--v43-ink);
    display: block;
}
body.vcard43-theme .v43-single__perk span {
    font-size: 11px;
    color: var(--v43-muted);
    letter-spacing: 0.06em;
}

body.vcard43-theme .v43-single__extra {
    margin-top: 4rem;
    background: var(--v43-surface);
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-r-lg);
    padding: 32px;
}
body.vcard43-theme .v43-single__extra h3 {
    font-family: var(--v43-serif);
    font-size: 22px;
    color: var(--v43-ink);
    margin-bottom: 14px;
}
body.vcard43-theme .v43-single__extra + .v43-single__extra { margin-top: 1.5rem; }

/* ---------- Ecommerce layout ---------- */
body.vcard43-theme .ec-topbar {
    background: var(--v43-bg);
    border-bottom: 1px solid var(--v43-line);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}
body.vcard43-theme .ec-topbar .brand {
    font-family: var(--v43-serif);
    font-weight: 600;
    color: var(--v43-ink);
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
body.vcard43-theme .ec-topbar .brand img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1.5px solid var(--v43-accent);
    padding: 2px;
    background: #fff;
}
body.vcard43-theme .ec-topbar .back-link {
    color: var(--v43-muted);
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}
body.vcard43-theme .ec-topbar .back-link:hover { color: var(--v43-accent); }
body.vcard43-theme .ec-shell { background: var(--v43-bg); min-height: 70vh; padding: 2rem 0 4rem; }
body.vcard43-theme .ec-stepper {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 2.5rem;
    flex-wrap: wrap;
}
body.vcard43-theme .ec-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--v43-muted);
    font-family: var(--v43-sans);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
body.vcard43-theme .ec-step .dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--v43-surface-2);
    color: var(--v43-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 1px solid var(--v43-line-2);
}
body.vcard43-theme .ec-step.active { color: var(--v43-accent); }
body.vcard43-theme .ec-step.active .dot {
    background: var(--v43-gold-grad);
    color: #fff;
    border-color: var(--v43-accent);
    box-shadow: var(--v43-shadow-gold);
}
body.vcard43-theme .ec-step.done .dot {
    background: var(--v43-success);
    color: #fff;
    border-color: var(--v43-success);
}
body.vcard43-theme .ec-step .sep { width: 32px; height: 1px; background: var(--v43-line-2); }
body.vcard43-theme .ec-card {
    background: var(--v43-surface);
    border-radius: var(--v43-r-md);
    border: 1px solid var(--v43-line);
    box-shadow: var(--v43-shadow-sm);
}
body.vcard43-theme .ec-card .ec-card-body { padding: 1.5rem; }
body.vcard43-theme .ec-card .ec-card-title {
    font-family: var(--v43-serif);
    font-weight: 600;
    color: var(--v43-ink);
    font-size: 19px;
    margin-bottom: 1rem;
}
body.vcard43-theme .ec-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--v43-muted);
}
body.vcard43-theme .ec-empty i {
    font-size: 3.25rem;
    color: var(--v43-line-2);
    margin-bottom: 1rem;
    display: block;
}

body.vcard43-theme .btn-ec-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--v43-cocoa-grad);
    color: #FBF7F2 !important;
    border: 1px solid var(--v43-ink);
    border-radius: var(--v43-r-pill);
    padding: 14px 26px;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--v43-t-fast);
    cursor: pointer;
}
body.vcard43-theme .btn-ec-primary:hover {
    background: var(--v43-gold-grad);
    color: #fff !important;
    border-color: var(--v43-accent);
    transform: translateY(-2px);
    box-shadow: var(--v43-shadow-gold);
}
body.vcard43-theme .btn-ec-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--v43-ink) !important;
    border: 1px solid var(--v43-ink);
    border-radius: var(--v43-r-pill);
    padding: 13px 26px;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}
body.vcard43-theme .btn-ec-outline:hover {
    background: var(--v43-ink);
    color: #FBF7F2 !important;
}

@media (max-width: 576px) {
    body.vcard43-theme .ec-stepper { gap: 4px; }
    body.vcard43-theme .ec-step .sep { width: 18px; }
    body.vcard43-theme .ec-step span:not(.dot) { display: none; }
}

/* ---------- Newsletter ---------- */
body.vcard43-theme .v43-newsletter {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: var(--v43-bg-2);
}
body.vcard43-theme .v43-newsletter__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--v43-pad-x);
}
body.vcard43-theme .v43-newsletter__sub {
    font-size: 15px;
    color: var(--v43-muted);
    margin: 18px 0 28px;
}
body.vcard43-theme .v43-newsletter__form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    background: var(--v43-surface);
    border: 1px solid var(--v43-line-2);
    border-radius: var(--v43-r-pill);
    padding: 6px;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-newsletter__form:focus-within {
    border-color: var(--v43-accent);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12);
}
body.vcard43-theme .v43-newsletter__form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 18px;
    font-family: var(--v43-sans);
    font-size: 14px;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-newsletter__form button {
    background: var(--v43-cocoa-grad);
    color: #FBF7F2;
    border: 0;
    border-radius: var(--v43-r-pill);
    padding: 12px 28px;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-newsletter__form button:hover { background: var(--v43-gold-grad); }

/* ---------- Animations ---------- */
@keyframes v43FadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes v43Pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
body.vcard43-theme .v43-anim-up { animation: v43FadeUp 700ms var(--v43-ease) both; }

/* ---------- Legacy reskin (catch-all for inherited partials) ---------- */
body.vcard43-theme .text-primary { color: var(--v43-accent) !important; }
body.vcard43-theme .text-navy { color: var(--v43-ink) !important; }
body.vcard43-theme .text-muted { color: var(--v43-muted) !important; }
body.vcard43-theme .bg-glass { background: var(--v43-surface) !important; }
body.vcard43-theme .bg-light { background: var(--v43-bg-2) !important; }
body.vcard43-theme .border-primary { border-color: var(--v43-accent) !important; }
body.vcard43-theme .btn-primary,
body.vcard43-theme .btn.btn-primary {
    background: var(--v43-cocoa-grad) !important;
    border-color: var(--v43-ink) !important;
    color: #FBF7F2 !important;
    border-radius: var(--v43-r-pill) !important;
    padding: 12px 24px;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
body.vcard43-theme .btn-primary:hover { background: var(--v43-gold-grad) !important; border-color: var(--v43-accent) !important; }
body.vcard43-theme .btn-outline-primary {
    color: var(--v43-accent) !important;
    border-color: var(--v43-accent) !important;
    border-radius: var(--v43-r-pill);
}
body.vcard43-theme .btn-outline-primary:hover { background: var(--v43-accent); color: #fff !important; }
body.vcard43-theme .badge.bg-primary-subtle { background: var(--v43-accent-soft2) !important; color: var(--v43-accent) !important; }
body.vcard43-theme .card-main {
    background: var(--v43-surface) !important;
    border: 1px solid var(--v43-line) !important;
    border-radius: var(--v43-r-md) !important;
    box-shadow: var(--v43-shadow-sm) !important;
}
body.vcard43-theme .rounded-pill, body.vcard43-theme .rounded-4 { border-radius: var(--v43-r-pill) !important; }
body.vcard43-theme .form-control {
    border: 1.5px solid var(--v43-line-2) !important;
    border-radius: var(--v43-r-sm) !important;
    padding: 12px 16px !important;
    background: var(--v43-bg) !important;
    color: var(--v43-ink) !important;
    font-family: var(--v43-sans);
    transition: var(--v43-t-fast);
}
body.vcard43-theme .form-control:focus {
    border-color: var(--v43-accent) !important;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12) !important;
    background: var(--v43-surface) !important;
}
body.vcard43-theme .form-select {
    border: 1.5px solid var(--v43-line-2) !important;
    border-radius: var(--v43-r-sm) !important;
    padding: 11px 38px 11px 14px !important;
    background-color: var(--v43-bg) !important;
    color: var(--v43-ink) !important;
}
body.vcard43-theme .form-select:focus { border-color: var(--v43-accent) !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12) !important; }
body.vcard43-theme .form-label { font-family: var(--v43-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--v43-muted); }
body.vcard43-theme .input-group-text { background: var(--v43-surface-2) !important; border: 1.5px solid var(--v43-line-2) !important; color: var(--v43-ink) !important; }
body.vcard43-theme .alert { border-radius: var(--v43-r-md); border: 1px solid var(--v43-line); background: var(--v43-surface); }
body.vcard43-theme .alert-success { background: rgba(4, 120, 87, 0.08); border-color: rgba(4, 120, 87, 0.3); color: var(--v43-success); }
body.vcard43-theme .alert-danger { background: rgba(185, 28, 28, 0.06); border-color: rgba(185, 28, 28, 0.3); color: var(--v43-sale); }
body.vcard43-theme .alert-warning { background: rgba(184, 134, 11, 0.08); border-color: rgba(184, 134, 11, 0.3); color: var(--v43-accent-hover); }
body.vcard43-theme .modal-content { background: var(--v43-bg); border-radius: var(--v43-r-lg); border: 1px solid var(--v43-line); }
body.vcard43-theme .modal-title { font-family: var(--v43-serif); color: var(--v43-ink); }
body.vcard43-theme .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
body.vcard43-theme .breadcrumb a { color: var(--v43-muted); }
body.vcard43-theme .breadcrumb a:hover { color: var(--v43-accent); }
body.vcard43-theme .breadcrumb-item.active { color: var(--v43-ink); }

/* Cart modal styling (used by template/vcard43_cart_modal.blade.php) */
body.vcard43-theme .v43-cart-modal { padding: 8px 0; }
body.vcard43-theme .v43-cart-modal__product {
    display: flex;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--v43-line);
    margin-bottom: 22px;
}
body.vcard43-theme .v43-cart-modal__image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: var(--v43-r-md);
    border: 1px solid var(--v43-line);
}
body.vcard43-theme .v43-cart-modal__title {
    font-family: var(--v43-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--v43-ink);
    margin-bottom: 8px;
}
body.vcard43-theme .v43-cart-modal__price { display: inline-flex; align-items: baseline; gap: 10px; }
body.vcard43-theme .v43-cart-modal__price-now {
    font-family: var(--v43-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--v43-accent);
}
body.vcard43-theme .v43-cart-modal__price-was {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--v43-muted);
}
body.vcard43-theme .v43-cart-modal__group { margin-bottom: 18px; }
body.vcard43-theme .v43-cart-modal__label {
    font-family: var(--v43-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v43-muted);
    margin-bottom: 10px;
    display: block;
}
body.vcard43-theme .v43-cart-modal__chips { display: flex; gap: 8px; flex-wrap: wrap; }
body.vcard43-theme .v43-cart-modal__chip {
    position: relative;
    padding: 9px 16px;
    border: 1.5px solid var(--v43-line-2);
    border-radius: var(--v43-r-pill);
    cursor: pointer;
    background: var(--v43-bg);
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-cart-modal__chip input { position: absolute; opacity: 0; pointer-events: none; }
body.vcard43-theme .v43-cart-modal__chip-text {
    font-family: var(--v43-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--v43-ink);
}
body.vcard43-theme .v43-cart-modal__chip:hover { border-color: var(--v43-accent); }
body.vcard43-theme .v43-cart-modal__chip.is-active {
    background: var(--v43-cocoa-grad);
    border-color: var(--v43-ink);
}
body.vcard43-theme .v43-cart-modal__chip.is-active .v43-cart-modal__chip-text { color: #FBF7F2; }
body.vcard43-theme .v43-cart-modal__actions { margin-top: 24px; }
body.vcard43-theme .v43-cart-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    border-radius: var(--v43-r-pill);
    border: 1px solid transparent;
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: var(--v43-t-fast);
}
body.vcard43-theme .v43-cart-modal__btn--solid {
    background: var(--v43-gold-grad);
    color: #fff;
    border-color: var(--v43-accent);
}
body.vcard43-theme .v43-cart-modal__btn--solid:hover {
    background: var(--v43-cocoa-grad);
    border-color: var(--v43-ink);
    transform: translateY(-2px);
}
body.vcard43-theme .v43-cart-modal__btn--ghost {
    background: transparent;
    color: var(--v43-ink);
    border-color: var(--v43-ink);
}
body.vcard43-theme .v43-cart-modal__btn--ghost:hover { background: var(--v43-ink); color: #fff; }
body.vcard43-theme .v43-cart-modal__oos {
    padding: 16px;
    background: var(--v43-bg-2);
    border-radius: var(--v43-r-md);
    text-align: center;
    color: var(--v43-sale);
    font-family: var(--v43-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Custom buy now modal styling (purchase modal) */
body.vcard43-theme .purchase-overlay {
    position: fixed;
    inset: 0;
    background: rgba(58, 38, 24, 0.65);
    backdrop-filter: blur(8px);
    z-index: 1070;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
body.vcard43-theme .purchase-overlay.active { display: flex; }
body.vcard43-theme .purchase-overlay .modal-container {
    width: 100%;
    max-width: 540px;
    background: var(--v43-bg);
    border-radius: var(--v43-r-lg);
    box-shadow: var(--v43-shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}
body.vcard43-theme .modal-header-custom {
    padding: 20px 24px;
    border-bottom: 1px solid var(--v43-line);
}
body.vcard43-theme .modal-title-custom {
    font-family: var(--v43-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--v43-ink);
}
body.vcard43-theme .modal-body-custom { padding: 22px 24px; }

/* Misc — pagination, accordion etc */
body.vcard43-theme .pagination {
    --bs-pagination-color: var(--v43-ink);
    --bs-pagination-bg: var(--v43-surface);
    --bs-pagination-border-color: var(--v43-line);
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--v43-accent);
    --bs-pagination-hover-border-color: var(--v43-accent);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--v43-accent);
    --bs-pagination-active-border-color: var(--v43-accent);
    --bs-pagination-border-radius: 999px;
    gap: 4px;
}
body.vcard43-theme .pagination .page-link {
    font-family: var(--v43-sans);
    font-size: 13px;
    font-weight: 600;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
}
