/* ============================================================
   OilViva Design Tokens — Z Shop Style
   Orange header / Green hero / Red sale / White bg / Dark footer
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================================ */
:root {
    --z-color-primary: #f97316;
    --z-color-primary-hover: #ea580c;
    --z-color-hero: #059669;
    --z-color-hero-dark: #047857;
    --z-color-sale: #ef4444;
    --z-color-bg: #FFFFFF;
    --z-color-bg-alt: #f8f9fa;
    --z-color-bg-warm: #faf6f2;
    --z-color-text: #1a1a1a;
    --z-color-text-2: #333333;
    --z-color-text-3: #6b7280;
    --z-color-text-muted: #9ca3af;
    --z-color-footer: #1a1a1a;
    --z-color-border: rgba(0, 0, 0, 0.1);
    --z-color-border-light: rgba(0, 0, 0, 0.06);
    --z-radius-pill: 100px;
    --z-radius-card: 8px;
    --z-radius-small: 6px;
    --z-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --z-font-body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    --z-max-w: 1280px;
    --z-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --z-shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.1);
    --z-transition: 0.3s cubic-bezier(0.7, 0, 0.3, 1);

    /* Backward-compatible aliases */
    --color-bg: var(--z-color-bg);
    --color-bg-alt: var(--z-color-bg-alt);
    --color-bg-warm: var(--z-color-bg-warm);
    --color-text: var(--z-color-text);
    --color-text-2: var(--z-color-text-2);
    --color-text-3: var(--z-color-text-3);
    --color-accent: var(--z-color-primary);
    --color-accent-dark: var(--z-color-primary-hover);
    --color-sale: var(--z-color-sale);
    --color-border: var(--z-color-border);
    --color-border-light: var(--z-color-border-light);
    --radius-pill: var(--z-radius-pill);
    --radius-card: var(--z-radius-card);
    --radius-small: var(--z-radius-small);
    --font-display: var(--z-font-display);
    --font-body: var(--z-font-body);
    --font-elegant: var(--z-font-display);
    --font-ui: var(--z-font-body);
    --ov-max-w: var(--z-max-w);
    --shadow-card: var(--z-shadow-card);
    --shadow-hover: var(--z-shadow-hover);
    --transition: var(--z-transition);
}

/* ============================================================
   Global typography & color reset
   ============================================================ */
html body:not(.wp-admin) {
    background: var(--z-color-bg) !important;
    color: var(--z-color-text) !important;
    font-family: var(--z-font-body) !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure Astra #page flex container takes full width.
   Astra's HFB adds display:flex to #page which can collapse
   when custom header is used instead of Astra's header.
   We force block layout and full width to prevent flex collapse. */
html body:not(.wp-admin) #page {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
html body:not(.wp-admin) #content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body:not(.wp-admin) #primary,
html body:not(.wp-admin) .ast-container,
html body:not(.wp-admin) .content-area,
html body:not(.wp-admin) .site-content,
html body:not(.wp-admin) main,
html body:not(.wp-admin) .entry-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}
html body:not(.wp-admin) h1,
html body:not(.wp-admin) h2,
html body:not(.wp-admin) h3,
html body:not(.wp-admin) h4,
html body:not(.wp-admin) h5,
html body:not(.wp-admin) h6 {
    font-family: var(--z-font-display) !important;
    color: var(--z-color-text) !important;
    font-weight: 600 !important;
}

/* ============================================================
   WooCommerce buttons — Z Shop pill style (orange bg, white text)
   ============================================================ */
html body:not(.wp-admin) .woocommerce a.button,
html body:not(.wp-admin) .woocommerce button.button,
html body:not(.wp-admin) .woocommerce input.button,
html body:not(.wp-admin) .woocommerce #respond input#submit,
html body:not(.wp-admin) .woocommerce button.button.alt,
html body:not(.wp-admin) .woocommerce a.button.alt,
html body:not(.wp-admin) .woocommerce #place_order,
html body:not(.wp-admin) .woocommerce .checkout-button,
html body:not(.wp-admin) .woocommerce .return-to-shop .button,
html body:not(.wp-admin) .woocommerce .track_order .button,
html body:not(.wp-admin) .wc-block-components-button,
html body:not(.wp-admin) .wp-block-button__link {
    background: var(--z-color-primary) !important;
    background-color: var(--z-color-primary) !important;
    color: #fff !important;
    border: 1px solid var(--z-color-primary) !important;
    border-radius: var(--z-radius-pill) !important;
    font-family: var(--z-font-body) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 0.75rem 2rem !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease !important;
}
html body:not(.wp-admin) .woocommerce a.button:hover,
html body:not(.wp-admin) .woocommerce button.button:hover,
html body:not(.wp-admin) .woocommerce input.button:hover,
html body:not(.wp-admin) .woocommerce #respond input#submit:hover,
html body:not(.wp-admin) .woocommerce button.button.alt:hover,
html body:not(.wp-admin) .woocommerce a.button.alt:hover,
html body:not(.wp-admin) .woocommerce #place_order:hover,
html body:not(.wp-admin) .woocommerce .checkout-button:hover,
html body:not(.wp-admin) .woocommerce .return-to-shop .button:hover,
html body:not(.wp-admin) .woocommerce .track_order .button:hover,
html body:not(.wp-admin) .wc-block-components-button:hover,
html body:not(.wp-admin) .wp-block-button__link:hover {
    background: var(--z-color-primary-hover) !important;
    background-color: var(--z-color-primary-hover) !important;
    color: #fff !important;
    border: 1px solid var(--z-color-primary-hover) !important;
    transform: translateY(-1px) !important;
}

/* Single product Add to cart button */
html body:not(.wp-admin) .woocommerce.single-product .single_add_to_cart_button,
html body:not(.wp-admin) .woocommerce div.product .single_add_to_cart_button,
html body:not(.wp-admin) .ov-variation-filter .single_add_to_cart_button {
    background: var(--z-color-primary) !important;
    background-color: var(--z-color-primary) !important;
    color: #fff !important;
    border: 1px solid var(--z-color-primary) !important;
    border-radius: var(--z-radius-pill) !important;
    font-family: var(--z-font-body) !important;
    font-weight: 600 !important;
    padding: 0.9rem 3rem !important;
    min-height: 48px !important;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease !important;
}
html body:not(.wp-admin) .woocommerce.single-product .single_add_to_cart_button:hover,
html body:not(.wp-admin) .woocommerce div.product .single_add_to_cart_button:hover,
html body:not(.wp-admin) .ov-variation-filter .single_add_to_cart_button:hover {
    background: var(--z-color-primary-hover) !important;
    background-color: var(--z-color-primary-hover) !important;
    color: #fff !important;
    border: 1px solid var(--z-color-primary-hover) !important;
    transform: translateY(-1px) !important;
}

/* WooCommerce quantity input */
html body:not(.wp-admin) .woocommerce .quantity .qty,
html body:not(.wp-admin) .woocommerce #quantity .qty {
    border-radius: var(--z-radius-pill) !important;
    border: 1px solid var(--z-color-border) !important;
    font-family: var(--z-font-body) !important;
}

/* Price filter button + search button */
html body:not(.wp-admin) .woocommerce .price_slider_amount .button,
html body:not(.wp-admin) .woocommerce-widget-layered-nav-dropdown__submit,
html body:not(.wp-admin) .woocommerce-product-search button {
    background: var(--z-color-primary) !important;
    color: #fff !important;
    border-radius: var(--z-radius-pill) !important;
    border: 1px solid var(--z-color-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}
html body:not(.wp-admin) .woocommerce .price_slider_amount .button:hover,
html body:not(.wp-admin) .woocommerce-widget-layered-nav-dropdown__submit:hover,
html body:not(.wp-admin) .woocommerce-product-search button:hover {
    background: var(--z-color-primary-hover) !important;
    color: #fff !important;
    border: 1px solid var(--z-color-primary-hover) !important;
}

/* ============================================================
   WooCommerce cart / checkout input fields
   ============================================================ */
html body:not(.wp-admin).woocommerce-cart .input-text,
html body:not(.wp-admin).woocommerce-checkout .input-text,
html body:not(.wp-admin).woocommerce-cart .select2-selection,
html body:not(.wp-admin).woocommerce-checkout .select2-selection,
html body:not(.wp-admin).woocommerce-cart textarea,
html body:not(.wp-admin).woocommerce-checkout textarea,
html body:not(.wp-admin).woocommerce-cart select,
html body:not(.wp-admin).woocommerce-checkout select {
    border: 1px solid var(--z-color-border) !important;
    border-radius: var(--z-radius-pill) !important;
    background: var(--z-color-bg) !important;
    font-family: var(--z-font-body) !important;
    font-size: 0.9rem !important;
    padding: 0.7rem 1.2rem !important;
    box-shadow: none !important;
}
html body:not(.wp-admin).woocommerce-cart textarea,
html body:not(.wp-admin).woocommerce-checkout textarea {
    border-radius: var(--z-radius-card) !important;
}
html body:not(.wp-admin).woocommerce-cart .input-text:focus,
html body:not(.wp-admin).woocommerce-checkout .input-text:focus,
html body:not(.wp-admin).woocommerce-cart textarea:focus,
html body:not(.wp-admin).woocommerce-checkout textarea:focus,
html body:not(.wp-admin).woocommerce-cart select:focus,
html body:not(.wp-admin).woocommerce-checkout select:focus {
    border-color: var(--z-color-primary) !important;
    outline: none !important;
}

/* ============================================================
   OilViva Header — Z Shop Orange Header
   ============================================================ */

/* ---- HEADER BAR — Orange background ---- */
html body:not(.wp-admin):not(.page-id-5982) .ast-primary-header-bar,
html body:not(.wp-admin):not(.page-id-5982) .main-header-bar,
html body:not(.wp-admin):not(.page-id-5982) .site-header {
    background: var(--z-color-primary) !important;
    background-color: var(--z-color-primary) !important;
    border-bottom: none !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2) !important;
}

/* ---- LOGO — White text on orange ---- */
html body:not(.wp-admin) .ast-site-identity .site-title a {
    color: #fff !important;
    font-family: var(--z-font-display) !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
html body:not(.wp-admin) .ast-site-identity .site-title a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}
html body:not(.wp-admin) .ast-site-identity .site-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.65rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Logo image */
html body:not(.wp-admin) .custom-logo-link img,
html body:not(.wp-admin) .custom-logo,
html body:not(.wp-admin) .site-logo-img img {
    max-height: 60px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
}

/* ---- DESKTOP NAV — White text on orange, orange underline hover ---- */
html body:not(.wp-admin) .main-navigation .menu-item > a,
html body:not(.wp-admin) .main-header-menu > .menu-item > .menu-link,
html body:not(.wp-admin) .main-header-menu .menu-item > a {
    color: #fff !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)) !important;
    background-position: 0 100% !important;
    background-repeat: no-repeat !important;
    background-size: 0 2px !important;
    transition: background-size 0.25s var(--z-transition), color 0.25s var(--z-transition) !important;
}
html body:not(.wp-admin) .main-navigation .menu-item > a:hover,
html body:not(.wp-admin) .main-header-menu > .menu-item:hover > .menu-link,
html body:not(.wp-admin) .main-header-menu .menu-item > a:hover,
html body:not(.wp-admin) .main-header-menu .current-menu-item > a,
html body:not(.wp-admin) .main-navigation .current-menu-item > a {
    color: #fff !important;
    background-image: linear-gradient(#fff, #fff) !important;
    background-size: 100% 2px !important;
    background-repeat: no-repeat !important;
    background-position: 0 100% !important;
}

/* ---- DROPDOWN — White bg, orange hover ---- */
html body:not(.wp-admin) .main-header-menu .sub-menu,
html body:not(.wp-admin) .main-navigation .sub-menu {
    background: #fff !important;
    background-color: #fff !important;
    border: 1px solid var(--z-color-border-light) !important;
    border-radius: var(--z-radius-small) !important;
    box-shadow: var(--z-shadow-card) !important;
}
html body:not(.wp-admin) .main-header-menu .sub-menu .menu-item > a,
html body:not(.wp-admin) .main-navigation .sub-menu .menu-item > a {
    color: var(--z-color-text) !important;
    font-size: 0.82rem !important;
    border-bottom: 1px solid var(--z-color-border-light) !important;
    background-image: none !important;
}
html body:not(.wp-admin) .main-header-menu .sub-menu .menu-item > a:hover {
    color: var(--z-color-primary) !important;
    background: var(--z-color-bg-alt) !important;
}

/* ---- ICONS — White on orange ---- */
html body:not(.wp-admin) .ast-header-cart .cart-count {
    background: var(--z-color-sale) !important;
    color: #fff !important;
}
html body:not(.wp-admin) .astra-search-icon,
html body:not(.wp-admin) .ast-header-search,
html body:not(.wp-admin) .ast-header-cta-button,
html body:not(.wp-admin) .ast-site-header-cart-li > * {
    color: #fff !important;
}
html body:not(.wp-admin) .ast-site-header-cart .ast-cart-menu-wrap .count {
    color: #fff !important;
}

/* ---- MOBILE MENU ---- */
@media (max-width: 921px) {
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-header-wrap,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-wrap,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-content,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-header-content,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-popup-content {
        background: var(--z-color-primary) !important;
        color: #fff !important;
    }
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-wrap .main-header-menu,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-content .main-header-menu {
        background: var(--z-color-primary) !important;
    }
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-wrap .main-header-menu .menu-item > a,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-content .main-header-menu .menu-item > a {
        color: #fff !important;
        font-size: 1rem !important;
        text-transform: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-wrap .main-header-menu .menu-item > a:hover {
        color: #fff !important;
        background: var(--z-color-primary-hover) !important;
    }
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-wrap .main-header-menu .sub-menu,
    html body:not(.wp-admin):not(.page-id-5982) .ast-mobile-menu-content .main-header-menu .sub-menu {
        background: var(--z-color-primary-hover) !important;
        border-left: 3px solid #fff !important;
    }
    html body:not(.wp-admin):not(.page-id-5982) .ast-header-break-point .ast-mobile-menu-trigger-minimal {
        color: #fff !important;
    }
}

/* ============================================================
   Z Shop Search Bar — Apple-style (in header)
   ============================================================ */
.z-search-wrap {
    position: relative;
    flex: 1;
    max-width: 360px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, box-shadow 0.2s;
}
.z-search-wrap:focus-within {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.z-search-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    color: #86868b;
    pointer-events: none;
}
.z-search-input {
    position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    padding: 0 1rem 0 2.6rem;
    font-size: 0.85rem;
    font-family: var(--z-font-body);
    color: var(--z-color-text);
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
}
.z-search-input::placeholder {
    color: #86868b;
}
.z-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--z-radius-card);
    box-shadow: var(--z-shadow-hover);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}
.z-search-dropdown.is-visible { display: block; }
.z-search-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--z-color-text);
    border-bottom: 1px solid var(--z-color-border-light);
    transition: background 0.15s;
}
.z-search-result:hover,
.z-search-result.is-active {
    background: var(--z-color-bg-alt);
}
.z-search-result img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--z-radius-small);
    flex-shrink: 0;
}
.z-search-result-info { flex: 1; min-width: 0; }
.z-search-result-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--z-color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.z-search-result-price {
    font-size: 0.8rem;
    color: var(--z-color-primary);
    font-weight: 600;
}
.z-search-trending {
    padding: 1rem;
}
.z-search-trending-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--z-color-text-3);
    margin-bottom: 0.5rem;
}
.z-search-trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.z-search-trending-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--z-color-bg-alt);
    border-radius: var(--z-radius-pill);
    font-size: 0.78rem;
    color: var(--z-color-text-2);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.z-search-trending-tag:hover {
    background: var(--z-color-primary);
    color: #fff;
}

/* Hide search bar on mobile (header is too narrow) */
@media (max-width: 921px) {
    .ov-header--desktop .z-search-wrap { display: none; }
}

/* ============================================================
   Z Shop Trust Badges Bar
   ============================================================ */
.z-trust-bar {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #fff;
    border-bottom: 1px solid var(--z-color-border-light);
    padding: 0.75rem 0;
}
.z-trust-bar-inner {
    max-width: var(--z-max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.z-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-align: center;
}
.z-trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--z-color-primary);
    flex-shrink: 0;
    margin-bottom: 0.2rem;
}
.z-trust-item-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--z-color-text-2);
    line-height: 1.3;
}
.z-trust-item-sub {
    font-size: 0.7rem;
    color: var(--z-color-text-muted);
    line-height: 1.3;
}
@media (max-width: 768px) {
    .z-trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}
@media (max-width: 480px) {
    .z-trust-bar-inner {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .z-trust-bar-inner::-webkit-scrollbar { display: none; }
    .z-trust-item { flex-shrink: 0; }
}

/* ============================================================
   Z Shop Unified Product Card
   ============================================================ */
.z-product-card {
    background: #fff;
    border: 1px solid var(--z-color-border-light);
    border-radius: var(--z-radius-card);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}
.z-product-card:hover {
    box-shadow: var(--z-shadow-hover);
    transform: translateY(-4px);
}
.z-product-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--z-color-bg-alt);
}
.z-product-card-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}
.z-product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s var(--z-transition);
}
.z-product-card:hover img {
    transform: scale(1.05);
}
.z-product-card-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 2;
    background: var(--z-color-sale);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: var(--z-radius-pill);
}
.z-product-card-actions {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.z-product-card:hover .z-product-card-actions {
    opacity: 1;
    transform: translateX(0);
}
.z-product-card-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--z-color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, color 0.2s;
}
.z-product-card-action-btn:hover {
    background: var(--z-color-primary);
    color: #fff;
}
.z-product-card-action-btn svg {
    width: 18px;
    height: 18px;
}
.z-product-card-info {
    padding: 0.9rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}
.z-product-card-title {
    font-family: var(--z-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--z-color-text);
    margin: 0;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.z-product-card-title:hover { color: var(--z-color-primary); }
.z-product-card-category {
    font-size: 0.72rem;
    color: var(--z-color-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.z-product-card-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: var(--z-color-text-3);
}
.z-product-card-stars {
    color: #fbbf24;
    letter-spacing: 1px;
}
.z-product-card-price {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
}
.z-product-card-price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--z-color-primary);
}
.z-product-card-price-original {
    font-size: 0.8rem;
    color: var(--z-color-text-3);
    text-decoration: line-through;
}
.z-product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--z-color-primary);
    color: #fff;
    border: none;
    border-radius: var(--z-radius-pill);
    padding: 0.55rem 1.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
    margin-top: 0.5rem;
    width: 100%;
    font-family: var(--z-font-body);
}
.z-product-card-btn:hover {
    background: var(--z-color-primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================================
   Z Shop Quick View Modal
   ============================================================ */
.zqv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.zqv-overlay.is-visible { display: flex; }
.zqv-modal {
    background: #fff;
    border-radius: var(--z-radius-card);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.zqv-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--z-color-text);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.zqv-close:hover { background: rgba(0, 0, 0, 0.1); }
.zqv-image {
    background: var(--z-color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.zqv-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--z-radius-small);
}
.zqv-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.zqv-title {
    font-family: var(--z-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--z-color-text);
    margin: 0;
}
.zqv-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--z-color-primary);
}
.zqv-price del {
    font-size: 0.9rem;
    color: var(--z-color-text-3);
    font-weight: 400;
    margin-right: 0.5rem;
}
.zqv-desc {
    font-size: 0.88rem;
    color: var(--z-color-text-2);
    line-height: 1.7;
    margin: 0;
}
.zqv-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.zqv-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--z-color-border);
    border-radius: 50%;
    background: #fff;
    color: var(--z-color-text);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zqv-qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--z-color-border);
    border-radius: var(--z-radius-small);
    height: 32px;
    font-family: var(--z-font-body);
}
.zqv-add-cart {
    background: var(--z-color-primary);
    color: #fff;
    border: none;
    border-radius: var(--z-radius-pill);
    padding: 0.7rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--z-font-body);
}
.zqv-add-cart:hover { background: var(--z-color-primary-hover); }
.zqv-view-details {
    font-size: 0.78rem;
    color: var(--z-color-text-3);
    text-decoration: none;
    margin-top: 0.5rem;
}
.zqv-view-details:hover { color: var(--z-color-primary); }

/* Quick View variation selector */
.zqv-attrs { display: flex; flex-direction: column; gap: 0.75rem; margin: 0.5rem 0; }
.zqv-attr { display: flex; flex-direction: column; gap: 0.3rem; }
.zqv-attr-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--z-color-text-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.zqv-attr-select {
    height: 40px;
    border: 1px solid var(--z-color-border);
    border-radius: var(--z-radius-pill);
    padding: 0 1rem;
    font-family: var(--z-font-body);
    font-size: 0.85rem;
    color: var(--z-color-text);
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.zqv-attr-select:focus { border-color: var(--z-color-primary); }
.zqv-add-cart:disabled {
    background: var(--z-color-text-muted) !important;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .zqv-modal { grid-template-columns: 1fr; }
    .zqv-image { padding: 1.5rem; }
    .zqv-info { padding: 1.5rem; }
}

/* ============================================================
   Z Shop Back to Top Button
   ============================================================ */
.z-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--z-color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s;
}
.z-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.z-back-to-top:hover {
    background: var(--z-color-primary-hover);
}
.z-back-to-top svg {
    width: 22px;
    height: 22px;
}
@media (max-width: 767px) {
    .z-back-to-top { bottom: 5rem; right: 1rem; width: 42px; height: 42px; }
}

/* ============================================================
   Footer — Z Shop Dark Footer
   ============================================================ */
html body:not(.wp-admin) .site-footer,
html body:not(.wp-admin) #colophon,
html body:not(.wp-admin) footer[role="contentinfo"],
html body:not(.wp-admin) .ov-footer {
    background: var(--z-color-footer) !important;
    background-color: var(--z-color-footer) !important;
    color: #fff !important;
}
html body:not(.wp-admin) .site-footer p,
html body:not(.wp-admin) .site-footer a,
html body:not(.wp-admin) .site-footer span:not([class*="icon"]):not([class*="svg"]),
html body:not(.wp-admin) .site-footer li,
html body:not(.wp-admin) #colophon p,
html body:not(.wp-admin) #colophon a,
html body:not(.wp-admin) #colophon span:not([class*="icon"]):not([class*="svg"]),
html body:not(.wp-admin) #colophon li,
html body:not(.wp-admin) .ov-footer p,
html body:not(.wp-admin) .ov-footer a,
html body:not(.wp-admin) .ov-footer span:not([class*="icon"]):not([class*="svg"]),
html body:not(.wp-admin) .ov-footer li {
    font-family: var(--z-font-body) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}
html body:not(.wp-admin) .site-footer a:hover,
html body:not(.wp-admin) #colophon a:hover,
html body:not(.wp-admin) .ov-footer a:hover {
    color: var(--z-color-primary) !important;
}
html body:not(.wp-admin) .site-footer h1,
html body:not(.wp-admin) .site-footer h2,
html body:not(.wp-admin) .site-footer h3,
html body:not(.wp-admin) .site-footer h4,
html body:not(.wp-admin) .site-footer h5,
html body:not(.wp-admin) .site-footer h6,
html body:not(.wp-admin) #colophon h1,
html body:not(.wp-admin) #colophon h2,
html body:not(.wp-admin) #colophon h3,
html body:not(.wp-admin) #colophon h4,
html body:not(.wp-admin) #colophon h5,
html body:not(.wp-admin) #colophon h6,
html body:not(.wp-admin) .ov-footer h1,
html body:not(.wp-admin) .ov-footer h2,
html body:not(.wp-admin) .ov-footer h3,
html body:not(.wp-admin) .ov-footer h4,
html body:not(.wp-admin) .ov-footer h5,
html body:not(.wp-admin) .ov-footer h6,
html body:not(.wp-admin) .site-footer .ov-footer__title,
html body:not(.wp-admin) .ov-footer .ov-footer__title {
    font-family: var(--z-font-display) !important;
    color: #fff !important;
}

/* Footer logo */
html body:not(.wp-admin) .site-footer .ov-footer__logo img,
html body:not(.wp-admin) .site-footer .ov-footer__logo-link img,
html body:not(.wp-admin) .ov-footer .ov-footer__logo img,
html body:not(.wp-admin) .ov-footer .ov-footer__logo-link img {
    max-height: 60px !important;
    width: auto !important;
    filter: brightness(0) invert(1);
}

/* ---- Footer widgets — multi-column layout ---- */
html body:not(.wp-admin) .site-footer .footer-adv,
html body:not(.wp-admin) #colophon .footer-adv,
html body:not(.wp-admin) .site-footer .footer-widgets,
html body:not(.wp-admin) #colophon .footer-widgets {
    padding: 3.5rem 0 2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
html body:not(.wp-admin) .site-footer .footer-adv-overlay,
html body:not(.wp-admin) #colophon .footer-adv-overlay {
    background: transparent !important;
}
html body:not(.wp-admin) .site-footer .footer-adv .ast-container,
html body:not(.wp-admin) #colophon .footer-adv .ast-container {
    max-width: var(--z-max-w) !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Widget titles */
html body:not(.wp-admin) .site-footer .widget-title,
html body:not(.wp-admin) #colophon .widget-title,
html body:not(.wp-admin) .site-footer .wp-block-heading,
html body:not(.wp-admin) #colophon .wp-block-heading {
    font-family: var(--z-font-display) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: 0.5px !important;
}

/* Footer link lists */
html body:not(.wp-admin) .site-footer ul,
html body:not(.wp-admin) #colophon ul,
html body:not(.wp-admin) .site-footer ol,
html body:not(.wp-admin) #colophon ol {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
html body:not(.wp-admin) .site-footer ul li,
html body:not(.wp-admin) #colophon ul li {
    margin-bottom: 0.6rem !important;
    padding: 0 !important;
    border: none !important;
}
html body:not(.wp-admin) .site-footer ul li a,
html body:not(.wp-admin) #colophon ul li a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
    padding: 0 !important;
    border: none !important;
}
html body:not(.wp-admin) .site-footer ul li a:hover,
html body:not(.wp-admin) #colophon ul li a:hover {
    color: var(--z-color-primary) !important;
    text-decoration: none !important;
}

/* Footer paragraphs / descriptions */
html body:not(.wp-admin) .site-footer p,
html body:not(.wp-admin) #colophon p {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 1rem !important;
}

/* ---- Newsletter / email subscription form ---- */
html body:not(.wp-admin) .site-footer form,
html body:not(.wp-admin) #colophon form,
html body:not(.wp-admin) .site-footer .wp-block-group form,
html body:not(.wp-admin) #colophon .wp-block-group form {
    display: flex !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
    margin-top: 0.75rem !important;
}
html body:not(.wp-admin) .site-footer input[type="email"],
html body:not(.wp-admin) #colophon input[type="email"],
html body:not(.wp-admin) .site-footer input[type="text"],
html body:not(.wp-admin) #colophon input[type="text"] {
    flex: 1 1 180px !important;
    height: 44px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--z-radius-pill) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    padding: 0 1.2rem !important;
    font-size: 0.85rem !important;
    font-family: var(--z-font-body) !important;
    outline: none !important;
    min-width: 0 !important;
}
html body:not(.wp-admin) .site-footer input[type="email"]::placeholder,
html body:not(.wp-admin) #colophon input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}
html body:not(.wp-admin) .site-footer input[type="email"]:focus,
html body:not(.wp-admin) #colophon input[type="email"]:focus {
    border-color: var(--z-color-primary) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}
html body:not(.wp-admin) .site-footer button[type="submit"],
html body:not(.wp-admin) #colophon button[type="submit"],
html body:not(.wp-admin) .site-footer input[type="submit"],
html body:not(.wp-admin) #colophon input[type="submit"] {
    height: 44px !important;
    padding: 0 1.5rem !important;
    background: var(--z-color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--z-radius-pill) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    font-family: var(--z-font-body) !important;
    transition: background 0.2s ease !important;
    white-space: nowrap !important;
}
html body:not(.wp-admin) .site-footer button[type="submit"]:hover,
html body:not(.wp-admin) #colophon button[type="submit"]:hover {
    background: var(--z-color-primary-hover) !important;
}

/* ---- Copyright bar ---- */
html body:not(.wp-admin) .site-footer .ast-small-footer,
html body:not(.wp-admin) #colophon .ast-small-footer,
html body:not(.wp-admin) .site-footer .ast-small-footer-wrap,
html body:not(.wp-admin) #colophon .ast-small-footer-wrap {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1.25rem 0 !important;
}
html body:not(.wp-admin) .site-footer .ast-small-footer .ast-container,
html body:not(.wp-admin) #colophon .ast-small-footer .ast-container {
    max-width: var(--z-max-w) !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}
html body:not(.wp-admin) .site-footer .ast-small-footer p,
html body:not(.wp-admin) #colophon .ast-small-footer p,
html body:not(.wp-admin) .site-footer .ast-small-footer span,
html body:not(.wp-admin) #colophon .ast-small-footer span {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 !important;
}
html body:not(.wp-admin) .site-footer .ast-small-footer a,
html body:not(.wp-admin) #colophon .ast-small-footer a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.78rem !important;
    text-decoration: none !important;
}
html body:not(.wp-admin) .site-footer .ast-small-footer a:hover,
html body:not(.wp-admin) #colophon .ast-small-footer a:hover {
    color: var(--z-color-primary) !important;
}

/* ---- Social icons in footer ---- */
html body:not(.wp-admin) .site-footer .ast-social-icons,
html body:not(.wp-admin) #colophon .ast-social-icons,
html body:not(.wp-admin) .site-footer .wp-block-social-links,
html body:not(.wp-admin) #colophon .wp-block-social-links {
    gap: 0.5rem !important;
}
html body:not(.wp-admin) .site-footer .ast-social-icons a,
html body:not(.wp-admin) #colophon .ast-social-icons a,
html body:not(.wp-admin) .site-footer .wp-block-social-links a,
html body:not(.wp-admin) #colophon .wp-block-social-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
}
html body:not(.wp-admin) .site-footer .ast-social-icons a:hover,
html body:not(.wp-admin) #colophon .ast-social-icons a:hover {
    color: var(--z-color-primary) !important;
    transform: translateY(-2px) !important;
}

/* ============================================================
   Archive page: collapse variation swatches by default
   ============================================================ */
.woocommerce.archive .cfvsw_variations_form { display: none !important; }
.woocommerce.archive .cfvsw_variations_form.ov-expanded { display: block !important; }

.ov-archive-toggle {
    display: none;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--z-color-border);
    border-radius: var(--z-radius-pill);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-family: inherit;
    color: var(--z-color-text-2);
    cursor: pointer;
    margin: 0 0 6px;
    transition: border-color .2s, color .2s;
}
.woocommerce.archive .ov-archive-toggle { display: inline-flex; }
.ov-archive-toggle:hover,
.ov-archive-toggle.is-active {
    border-color: var(--z-color-primary);
    color: var(--z-color-primary);
}
.ov-archive-toggle__caret { transition: transform .2s; }
.ov-archive-toggle.is-active .ov-archive-toggle__caret { transform: rotate(180deg); }

/* ============================================================
   Mobile sticky bottom dock — Z Shop orange theme
   ============================================================ */
.ov-mobile-dock {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    background: #fff;
    border-top: 1px solid var(--z-color-border-light);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    justify-content: space-around;
    align-items: stretch;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ov-mobile-dock.is-visible { transform: translateY(0); }

.ov-dock-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    color: var(--z-color-text-3);
    text-decoration: none;
    font-size: 0.62rem;
    font-family: var(--z-font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    min-height: 56px;
    transition: color 0.2s ease;
}
.ov-dock-item svg { width: 22px; height: 22px; stroke: currentColor; }
.ov-dock-item span { line-height: 1; }
.ov-dock-item:hover { color: var(--z-color-primary); }
.ov-dock-item.is-active { color: var(--z-color-primary); }
.ov-dock-item.is-active svg { stroke-width: 2; }

/* Cart count badge */
.ov-dock-count {
    position: absolute;
    top: 4px;
    right: 50%;
    margin-right: -22px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--z-color-primary);
    color: #fff;
    border-radius: 9px;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    z-index: 2;
}

@media (max-width: 767px) {
    .ov-mobile-dock { display: flex; }
    body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
    .woocommerce-store-notice { bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important; }
    .ast-sticky-primary-header .site-header { z-index: 9999; }
}

/* ============================================================
   Fix: ov-mobile-menu phantom scrollbar on desktop
   ============================================================ */
body.ast-desktop .ov-mobile-menu,
body.ast-desktop .ov-mobile-overlay {
    display: none !important;
}
.ov-mobile-menu:not(.is-open) {
    overflow: hidden !important;
}

/* ============================================================
   Z Shop Notification Bar
   ============================================================ */
.z-notify-bar {
    background: #1a1a1a;
    height: 36px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-family: var(--z-font-body);
    position: relative;
    z-index: 999;
}
.z-notify-bar-inner {
    max-width: var(--z-max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
}
.z-notify-left,
.z-notify-center,
.z-notify-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}
.z-notify-center strong {
    color: var(--z-color-primary);
    font-weight: 700;
}
.z-notify-close {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    line-height: 1;
}
.z-notify-close:hover { color: #fff; }

@media (max-width: 768px) {
    .z-notify-bar { height: auto; padding: 0.4rem 0; }
    .z-notify-bar-inner {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0 1rem;
        text-align: center;
    }
    .z-notify-left,
    .z-notify-right { display: none; }
    .z-notify-center { font-size: 0.75rem; }
}

/* ============================================================
   Z Shop Hero Carousel
   ============================================================ */
.z-hero-carousel {
    display: block !important;
    width: 100% !important;
    max-width: var(--z-max-w);
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 420px;
}
.z-hero-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.z-hero-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
    box-sizing: border-box;
}
.z-hero-slide--green {
    background: linear-gradient(135deg, var(--z-color-hero) 0%, var(--z-color-hero-dark) 100%);
    color: #fff;
}
.z-hero-slide--orange {
    background: linear-gradient(135deg, var(--z-color-primary) 0%, var(--z-color-primary-hover) 100%);
    color: #fff;
}
.z-hero-slide--cream {
    background: var(--z-color-bg-warm);
    color: var(--z-color-text);
}
.z-hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
}
.z-hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 0.8rem;
    border-radius: var(--z-radius-pill);
}
.z-hero-label--dark {
    color: var(--z-color-text-3);
    background: rgba(0,0,0,0.06);
}
.z-hero-title {
    font-family: var(--z-font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 1rem;
}
.z-hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 1.5rem;
    max-width: 400px;
}
.z-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--z-color-text);
    padding: 0.75rem 1.8rem;
    border-radius: var(--z-radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}
.z-hero-cta:hover {
    background: var(--z-color-bg-alt);
    transform: translateY(-1px);
}
.z-hero-cta--dark {
    background: var(--z-color-text);
    color: #fff;
}
.z-hero-cta--dark:hover {
    background: var(--z-color-text-2);
}
.z-hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
}
.z-hero-image img {
    max-height: 320px;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--z-radius-card);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Carousel arrows */
.z-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--z-color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.z-hero-arrow:hover {
    background: #fff;
    color: var(--z-color-primary);
}
.z-hero-arrow svg {
    width: 20px;
    height: 20px;
}
.z-hero-arrow--prev { left: 1rem; }
.z-hero-arrow--next { right: 1rem; }

/* Carousel dots */
.z-hero-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}
.z-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
}
.z-hero-dot.is-active {
    background: #fff;
    border-color: #fff;
}
.z-hero-slide--cream .z-hero-dot {
    border-color: rgba(0,0,0,0.3);
}
.z-hero-slide--cream .z-hero-dot.is-active {
    background: var(--z-color-text);
    border-color: var(--z-color-text);
}

@media (max-width: 768px) {
    .z-hero-carousel {
        height: auto;
        min-height: 380px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 0;
    }
    .z-hero-slide {
        flex-direction: column-reverse;
        padding: 1.5rem;
        text-align: center;
    }
    .z-hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    .z-hero-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .z-hero-image img {
        max-height: 180px;
    }
    .z-hero-title {
        font-size: 1.6rem;
    }
    .z-hero-desc {
        font-size: 0.9rem;
        margin: 0 auto 1.25rem;
    }
    .z-hero-arrow { display: none; }
    .z-hero-dots { bottom: 0.75rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html body:not(.wp-admin) *,
  html body:not(.wp-admin) *::before,
  html body:not(.wp-admin) *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
