/* ============================================
   Prime Checkout Experience v2.0
   Dark Glassmorphism for CartFlows Modern Checkout
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --prime-bg: hsl(222, 47%, 6%);
    --prime-fg: hsl(210, 40%, 96%);
    --prime-card: hsl(222, 41%, 10%);
    --prime-card-60: hsla(222, 41%, 10%, 0.6);
    --prime-card-80: hsla(222, 41%, 10%, 0.8);
    --prime-card-30: hsla(222, 41%, 10%, 0.3);
    --prime-primary: hsl(199, 89%, 48%);
    --prime-primary-fg: hsl(222, 47%, 6%);
    --prime-primary-10: hsla(199, 89%, 48%, 0.1);
    --prime-primary-15: hsla(199, 89%, 48%, 0.15);
    --prime-primary-50: hsla(199, 89%, 48%, 0.5);
    --prime-primary-5: hsla(199, 89%, 48%, 0.05);
    --prime-primary-3: hsla(199, 89%, 48%, 0.03);
    --prime-secondary: hsl(222, 30%, 16%);
    --prime-secondary-50: hsla(222, 30%, 16%, 0.5);
    --prime-secondary-30: hsla(222, 30%, 16%, 0.3);
    --prime-muted-fg: hsl(215, 20%, 55%);
    --prime-border: hsl(222, 20%, 18%);
    --prime-glass-border: hsla(199, 60%, 30%, 0.2);
    --prime-glass-border-30: hsla(199, 60%, 30%, 0.3);
    --prime-glow-sm: 0 0 15px -3px hsla(199, 89%, 48%, 0.15);
    --prime-glow-md: 0 0 30px -5px hsla(199, 89%, 48%, 0.2);
    --prime-glow-ring: 0 0 0 1px hsla(199, 89%, 48%, 0.3), 0 0 20px -5px hsla(199, 89%, 48%, 0.15);
    --prime-input-glow: 0 0 0 2px hsla(199, 89%, 48%, 0.2), 0 0 15px -3px hsla(199, 89%, 48%, 0.1);
    --prime-gradient: linear-gradient(135deg, hsl(199, 89%, 48%), hsl(199, 89%, 60%));
    --prime-gradient-text: linear-gradient(135deg, hsl(199, 89%, 48%), hsl(199, 89%, 65%));
    --prime-radius: 0.75rem;
    --prime-radius-xl: 1rem;
    --prime-success: hsl(142, 71%, 45%);
}

/* ---- Animations ---- */
@keyframes prime-pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}
@keyframes prime-slide-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes prime-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   1. GLOBAL BODY & PAGE RESET
   ============================================= */
body[class*="cartflows_step-template"],
body[class*="cartflows_step-template"] *:not(svg):not(svg *) {
    box-sizing: border-box;
}

body[class*="cartflows_step-template"] {
    background-color: var(--prime-bg) !important;
    color: var(--prime-fg) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* ---- Background Glow Effects ---- */
.prime-bg-glows { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.prime-glow { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(48px); animation: prime-pulse-glow 3s ease-in-out infinite; }
.prime-glow-1 { top: -5%; left: 20%; background: var(--prime-primary-5); }
.prime-glow-2 { bottom: -5%; right: 20%; background: var(--prime-primary-3); animation-delay: 1.5s; }

/* =============================================
   2. HEADER
   ============================================= */
.prime-header {
    position: relative; z-index: 100;
    border-bottom: 1px solid hsla(222, 20%, 18%, 0.5);
    background: var(--prime-card-30);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.prime-header-inner {
    max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
    height: 5rem; display: flex; align-items: center; justify-content: center;
}
.prime-back-btn {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--prime-muted-fg) !important; text-decoration: none !important;
    font-size: 0.875rem; transition: color 0.2s;
}
.prime-back-btn:hover { color: var(--prime-fg) !important; }
.prime-brand {
    display: flex !important; align-items: center !important;
    text-decoration: none !important;
    margin: 0 !important; padding: 0 !important; line-height: 1 !important;
}
.prime-brand-logo {
    height: 3.5rem !important; width: auto !important;
    display: block !important;
}
.prime-header-right { display: flex; align-items: center; gap: 0.375rem; color: var(--prime-muted-fg); font-size: 0.75rem; }
.prime-header-right svg { color: var(--prime-primary); }

/* =============================================
   3. STEP INDICATOR
   ============================================= */
.prime-steps {
    display: flex; align-items: center; gap: 0.75rem;
    max-width: 80rem; margin: 1.5rem auto; padding: 0 1.5rem;
    position: relative; z-index: 10; animation: prime-slide-up 0.4s ease-out;
}
.prime-step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--prime-muted-fg); font-family: 'Inter', system-ui, sans-serif; }
.prime-step-active { color: var(--prime-fg); font-weight: 500; }
.prime-step-circle {
    width: 2rem; height: 2rem; border-radius: 50%; background: var(--prime-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 500; color: var(--prime-muted-fg);
}
.prime-step-circle-active { background: var(--prime-gradient) !important; color: var(--prime-primary-fg) !important; font-weight: 700; }
.prime-step-line { flex: 1; height: 1px; background: var(--prime-border); }

/* =============================================
   4. ELEMENTOR & CARTFLOWS CONTAINER RESET
   ============================================= */
body[class*="cartflows_step-template"] .elementor,
body[class*="cartflows_step-template"] .elementor-inner,
body[class*="cartflows_step-template"] .elementor-section-wrap,
body[class*="cartflows_step-template"] .elementor-section,
body[class*="cartflows_step-template"] .elementor-container,
body[class*="cartflows_step-template"] .elementor-column,
body[class*="cartflows_step-template"] .elementor-column-wrap,
body[class*="cartflows_step-template"] .elementor-widget-wrap,
body[class*="cartflows_step-template"] .elementor-element,
body[class*="cartflows_step-template"] .elementor-widget-container,
body[class*="cartflows_step-template"] .e-con,
body[class*="cartflows_step-template"] .e-con-inner,
body[class*="cartflows_step-template"] .wcf-el-checkout-form,
body[class*="cartflows_step-template"] .cartflows-elementor__checkout-form {
    background-color: transparent !important;
    background: transparent !important;
    width: 100% !important; max-width: 100% !important;
    margin-left: auto !important; margin-right: auto !important;
    padding-left: 0 !important; padding-right: 0 !important;
}

body[class*="cartflows_step-template"] .elementor-widget-image { display: none !important; }

/* Hide block theme (FSE) header & footer template parts on CartFlows pages */
body[class*="cartflows_step-template"] > .wp-site-blocks > header.wp-block-template-part,
body[class*="cartflows_step-template"] > .wp-site-blocks > footer.wp-block-template-part,
body[class*="cartflows_step-template"] .wp-site-blocks > header.wp-block-template-part,
body[class*="cartflows_step-template"] .wp-site-blocks > footer.wp-block-template-part {
    display: none !important;
}
body[class*="cartflows_step-template"] > .wp-site-blocks {
    padding: 0 !important;
}

/* Force Elementor sections full-width & centered */
body[class*="cartflows_step-template"] .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}
body[class*="cartflows_step-template"] .elementor-section {
    width: 100% !important;
}
body[class*="cartflows_step-template"] .e-con {
    --content-width: 100% !important;
    --width: 100% !important;
}

/* =============================================
   5. MAIN CHECKOUT FORM WRAPPER
   ============================================= */
/* Two-column page layout */
.prime-page-layout {
    position: relative; z-index: 10;
    max-width: 80rem !important; margin: 0 auto !important;
    padding: 1.5rem !important;
    display: grid !important;
    grid-template-columns: 1fr 340px !important;
    gap: 1.5rem !important;
    align-items: start !important;
    animation: prime-slide-up 0.4s ease-out;
}
@media (max-width: 900px) {
    .prime-page-layout {
        grid-template-columns: 1fr !important;
    }
}

body[class*="cartflows_step-template"] #wcf-embed-checkout-form {
    position: relative; z-index: 10;
    padding: 0 !important;
    min-width: 0 !important;
}

body[class*="cartflows_step-template"] .wcf-embed-checkout-form-modern-checkout,
body[class*="cartflows_step-template"] .wcf-modern-skin-one-column,
body[class*="cartflows_step-template"] .wcf-customer-info-main-wrapper,
body[class*="cartflows_step-template"] .wcf-customer-info {
    background: transparent !important; border: none !important; padding: 0 !important;
}

/* =============================================
   6. COLLAPSED ORDER REVIEW (MOBILE TOGGLE)
   ============================================= */
/* Hide collapsed order review everywhere */
body[class*="cartflows_step-template"] .wcf-collapsed-order-review-section {
    display: none !important;
}

/* =============================================
   7. CUSTOMER DETAILS COLUMNS (GLASS CARDS)
   ============================================= */
body[class*="cartflows_step-template"] .wcf-col2-set,
body[class*="cartflows_step-template"] #customer_details {
    background: transparent !important; padding: 0 !important; margin: 0 !important; border: none !important;
}

body[class*="cartflows_step-template"] .wcf-col-1,
body[class*="cartflows_step-template"] .wcf-col-2 {
    background: var(--prime-card-60) !important;
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid var(--prime-glass-border) !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.5rem !important; margin-bottom: 1.5rem !important;
    box-shadow: var(--prime-glow-sm);
    width: 100% !important; float: none !important;
}

/* =============================================
   8. SECTION HEADINGS
   ============================================= */
body[class*="cartflows_step-template"] h3,
body[class*="cartflows_step-template"] .wcf-customer-info-main-heading,
body[class*="cartflows_step-template"] #customer_information_heading,
body[class*="cartflows_step-template"] #billing_fields_heading,
body[class*="cartflows_step-template"] #order_review_heading,
body[class*="cartflows_step-template"] #payment_options_heading {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important; font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 1.25rem !important; padding: 0 !important;
}
body[class*="cartflows_step-template"] #your_products_heading {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important; font-weight: 600 !important;
    color: var(--prime-fg) !important;
    text-transform: none !important; letter-spacing: normal !important;
    margin: 0 0 0.75rem !important; padding: 0 !important;
    opacity: 1 !important;
}
body[class*="cartflows_step-template"] #order_review_heading {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important; font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.75rem !important; padding: 0 !important;
}

/* Collapsed order review (same clean style) */
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper .woocommerce-checkout-review-order-table thead {
    display: none !important;
}
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper .woocommerce-checkout-review-order-table .cart_item td {
    border-bottom: none !important; padding: 0.375rem 0 !important;
}
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper .woocommerce-checkout-review-order-table td img {
    display: none !important;
}

/* =============================================
   9. FORM FIELDS
   ============================================= */
body[class*="cartflows_step-template"] .form-row label,
body[class*="cartflows_step-template"] .woocommerce-checkout label:not(.radio):not(.wcf-item-product-label) {
    font-size: 0.875rem !important; font-weight: 500 !important;
    color: var(--prime-muted-fg) !important; margin-bottom: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    /* Override floating label — always above the field */
    position: static !important; transform: none !important;
    top: auto !important; left: auto !important;
    opacity: 1 !important; pointer-events: auto !important;
    display: block !important;
}
/* CartFlows modern checkout floating label overrides */
body[class*="cartflows_step-template"] .wcf-modern-skin-one-column .form-row {
    padding-top: 0 !important;
}
body[class*="cartflows_step-template"] .form-row .woocommerce-input-wrapper {
    position: relative !important;
}
body[class*="cartflows_step-template"] label .required { color: var(--prime-primary) !important; }

body[class*="cartflows_step-template"] input[type="text"],
body[class*="cartflows_step-template"] input[type="email"],
body[class*="cartflows_step-template"] input[type="tel"],
body[class*="cartflows_step-template"] input[type="number"]:not(.wcf-qty-selection),
body[class*="cartflows_step-template"] input[type="password"],
body[class*="cartflows_step-template"] input[type="url"],
body[class*="cartflows_step-template"] input[type="search"],
body[class*="cartflows_step-template"] textarea,
body[class*="cartflows_step-template"] select:not(.wcf-single-sel),
body[class*="cartflows_step-template"] .input-text:not(.wcf-qty-selection),
body[class*="cartflows_step-template"] .wcf-coupon-code-input {
    width: 100% !important; height: 3rem !important; padding: 0 1rem !important;
    border-radius: 0.75rem !important;
    background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important;
    color: var(--prime-fg) !important; font-size: 0.9375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    transition: all 0.2s !important; outline: none !important;
    box-shadow: inset 0 1px 2px hsla(222, 47%, 6%, 0.3) !important;
    -webkit-appearance: none !important; appearance: none !important;
}
body[class*="cartflows_step-template"] textarea {
    height: auto !important; padding: 0.75rem 1rem !important;
    resize: none !important; min-height: 80px !important;
}

/* Override CartFlows inline focus style */
body[class*="cartflows_step-template"] input:focus,
body[class*="cartflows_step-template"] textarea:focus,
body[class*="cartflows_step-template"] select:focus,
body[class*="cartflows_step-template"] .input-text:focus {
    border-color: var(--prime-primary-50) !important;
    box-shadow: var(--prime-input-glow) !important;
    outline: none !important;
    background: var(--prime-secondary-30) !important;
}
body[class*="cartflows_step-template"] input::placeholder,
body[class*="cartflows_step-template"] textarea::placeholder {
    color: hsla(215, 20%, 55%, 0.5) !important;
}

/* Select2 */
body[class*="cartflows_step-template"] .select2-container--default .select2-selection--single {
    height: 3rem !important; background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important; border-radius: 0.75rem !important;
    display: flex !important; align-items: center !important;
    box-shadow: inset 0 1px 2px hsla(222, 47%, 6%, 0.3) !important;
    transition: all 0.2s !important;
}
/* Override CartFlows modern-label padding on Select2 */
.wcf-embed-checkout-form.wcf-field-modern-label .woocommerce .form-row.wcf-anim-label .select2-container--default .select2-selection--single:not( :has( .select2-selection__placeholder ) ) {
    padding: 0 !important;
}
body[class*="cartflows_step-template"] .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--prime-primary-50) !important;
    box-shadow: var(--prime-input-glow) !important;
}
body[class*="cartflows_step-template"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--prime-fg) !important; line-height: 3rem !important;
    padding-left: 1rem !important; font-size: 0.9375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    padding-top: 0 !important; padding-bottom: 0 !important;
    margin: 0 !important; top: 0 !important;
}
body[class*="cartflows_step-template"] .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 3rem !important; right: 0.75rem !important;
}
body[class*="cartflows_step-template"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
    display: block !important;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ij48L3BvbHlsaW5lPjwvc3ZnPg==) no-repeat !important;
    background-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    margin: -8px 0 0 !important;
}
.select2-dropdown { background: var(--prime-card) !important; border: 1px solid var(--prime-border) !important; border-radius: 0.75rem !important; overflow: hidden !important; }
.select2-container--default .select2-results__option { color: var(--prime-fg) !important; font-size: 0.875rem !important; padding: 0.625rem 1rem !important; transition: background 0.15s !important; }
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--prime-primary-10) !important; color: var(--prime-fg) !important;
}
.select2-container--default .select2-search--dropdown {
    padding: 0.5rem !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    background: var(--prime-secondary-30) !important; border: 1px solid var(--prime-border) !important;
    color: var(--prime-fg) !important; border-radius: 0.5rem !important;
    height: 2.5rem !important; padding: 0 0.75rem !important;
    font-size: 0.875rem !important; font-family: 'Inter', system-ui, sans-serif !important;
    outline: none !important; box-shadow: none !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--prime-primary-50) !important;
    box-shadow: var(--prime-input-glow) !important;
}
.select2-results { background: var(--prime-card) !important; }

/* ── Safari Fixes — Country & Phone ── */

/* Safari: prevent auto-zoom on input focus (font-size must be >= 16px) */
@supports (-webkit-touch-callout: none) {
    body[class*="cartflows_step-template"] input[type="text"],
    body[class*="cartflows_step-template"] input[type="email"],
    body[class*="cartflows_step-template"] input[type="tel"],
    body[class*="cartflows_step-template"] input[type="number"],
    body[class*="cartflows_step-template"] input[type="password"],
    body[class*="cartflows_step-template"] textarea,
    body[class*="cartflows_step-template"] select {
        font-size: 16px !important;
    }
    .prime-phone-dropdown-search {
        font-size: 16px !important;
    }
}

/* Safari: force Select2 container width */
body[class*="cartflows_step-template"] .select2-container {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Safari: ensure phone wrapper is a containing block */
body[class*="cartflows_step-template"] #billing_phone_field .woocommerce-input-wrapper {
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

/* Safari: phone input explicit box-sizing */
body[class*="cartflows_step-template"] #billing_phone {
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
}

/* Safari: Select2 rendered text vertical alignment */
body[class*="cartflows_step-template"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    line-height: normal !important;
}

/* Safari: phone prefix flex alignment */
.prime-phone-prefix {
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-align-items: center !important;
    align-items: center !important;
}

/* Country flag in Select2 */
.prime-country-opt, .prime-country-sel {
    display: inline-flex !important; align-items: center !important; gap: 0.5rem !important;
    vertical-align: middle !important; line-height: 1 !important;
}
.prime-country-flag {
    font-size: 1.25em !important; line-height: 1 !important; flex-shrink: 0 !important;
    margin-right: 0.375rem !important;
}

/* Phone number prefix (flag + dial code) — clickable to change country */
.prime-phone-prefix {
    position: absolute !important; left: 0.75rem !important;
    top: 50% !important; transform: translateY(-50%) !important;
    display: flex !important; align-items: center !important; gap: 0.375rem !important;
    z-index: 2 !important; line-height: 1 !important;
    cursor: pointer !important;
    padding-right: 0.625rem !important;
    border-right: 1px solid var(--prime-border) !important;
    transition: opacity 0.2s !important;
}
.prime-phone-prefix:hover { opacity: 0.75 !important; }
.prime-phone-flag {
    font-size: 1.25em !important; line-height: 1 !important;
}
.prime-phone-dial {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.9375rem !important; color: var(--prime-fg) !important;
    font-weight: 500 !important; line-height: 1 !important;
}
.prime-phone-chevron {
    color: var(--prime-muted-fg) !important; flex-shrink: 0 !important;
}

/* Phone country dropdown (independent from billing country) */
.prime-phone-dropdown {
    position: absolute !important;
    left: 0 !important;
    top: 100% !important;
    margin-top: 0.25rem !important;
    width: 280px !important;
    max-height: 320px !important;
    background: var(--prime-card) !important;
    border: 1px solid var(--prime-border) !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}
.prime-phone-dropdown-search {
    width: 100% !important;
    padding: 0.625rem 0.875rem !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--prime-border) !important;
    color: var(--prime-fg) !important;
    font-size: 0.875rem !important;
    outline: none !important;
    box-sizing: border-box !important;
}
.prime-phone-dropdown-search::placeholder {
    color: var(--prime-muted-fg) !important;
}
.prime-phone-dropdown-list {
    overflow-y: auto !important;
    flex: 1 !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--prime-border) transparent !important;
}
.prime-phone-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.875rem !important;
    cursor: pointer !important;
    transition: background 0.15s !important;
    font-size: 0.875rem !important;
    color: var(--prime-fg) !important;
}
.prime-phone-dropdown-item:hover {
    background: hsla(0,0%,100%,0.06) !important;
}
.prime-phone-dropdown-item.prime-phone-dropdown-active {
    background: hsla(var(--prime-primary-h,230),70%,60%,0.15) !important;
}
.prime-phone-dropdown-name {
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.prime-phone-dropdown-dial {
    color: var(--prime-muted-fg) !important;
    font-size: 0.8125rem !important;
    flex-shrink: 0 !important;
}

/* Input validation states — icon is a background-image inside the input */
body[class*="cartflows_step-template"] input.prime-input-invalid {
    border-color: hsla(0, 80%, 55%, 0.5) !important;
    box-shadow: 0 0 0 1px hsla(0, 80%, 55%, 0.15) !important;
    padding-right: 2.5rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23e53e3e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 18px 18px !important;
}

/* Mobile order summary card — hidden on desktop */
#prime-mobile-order-summary { display: none !important; }
@media (max-width: 768px) {
    #prime-mobile-order-summary { display: block !important; }
}

/* Form row widths */
body[class*="cartflows_step-template"] .form-row-first { width: 48.5% !important; float: left !important; margin-right: 3% !important; }
body[class*="cartflows_step-template"] .form-row-last { width: 48.5% !important; float: right !important; margin-right: 0 !important; }
body[class*="cartflows_step-template"] .form-row-wide { width: 100% !important; float: none !important; clear: both !important; }
@media (max-width: 640px) {
    body[class*="cartflows_step-template"] .form-row-first,
    body[class*="cartflows_step-template"] .form-row-last { width: 100% !important; float: none !important; margin-right: 0 !important; }
}

/* =============================================
   10. CUSTOMER TYPE RADIO BUTTONS (New/Renewed)
   ============================================= */
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper {
    background: var(--prime-card-60) !important;
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid var(--prime-glass-border) !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    box-shadow: var(--prime-glow-sm) !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper > label.input-radio {
    font-size: 1.125rem !important; font-weight: 700 !important;
    color: var(--prime-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    letter-spacing: 0.02em !important;
    margin-top: 22px !important;
    margin-bottom: 1.125rem !important; display: block !important;
    text-align: center !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper .woocommerce-input-wrapper {
    display: flex !important; gap: 0.875rem !important; flex-wrap: wrap !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper input[type="radio"].input-radio {
    display: none !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio {
    flex: 1 !important; display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    gap: 0.625rem !important;
    padding: 1.25rem 1rem !important;
    border-radius: 0.875rem !important;
    border: 1.5px solid var(--prime-border) !important;
    background: hsla(222, 30%, 14%, 0.6) !important;
    color: var(--prime-muted-fg) !important;
    font-size: 0.875rem !important; font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-align: center !important; min-width: 0 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: inherit !important;
    background: radial-gradient(ellipse at 50% 0%, hsla(199, 89%, 48%, 0.06) 0%, transparent 70%) !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transition: opacity 0.25s !important;
}
.prime-ctype-icon {
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 44px !important; height: 44px !important;
    border-radius: 50% !important;
    background: hsla(199, 89%, 48%, 0.08) !important;
    border: 1px solid hsla(199, 89%, 48%, 0.15) !important;
    color: var(--prime-primary) !important;
    flex-shrink: 0 !important;
    transition: all 0.25s !important;
}
.prime-ctype-text {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; gap: 0.125rem !important;
}
.prime-ctype-label {
    font-size: 0.9375rem !important; font-weight: 600 !important;
    color: inherit !important; line-height: 1.2 !important;
}
.prime-ctype-sub {
    font-size: 0.75rem !important; font-weight: 400 !important;
    color: var(--prime-muted-fg) !important; opacity: 0.7 !important;
    line-height: 1.3 !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio:hover {
    border-color: hsla(199, 89%, 48%, 0.35) !important;
    background: hsla(222, 30%, 16%, 0.7) !important;
    transform: translateY(-1px) !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio:hover::before {
    opacity: 1 !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio:hover .prime-ctype-icon {
    background: hsla(199, 89%, 48%, 0.12) !important;
    border-color: hsla(199, 89%, 48%, 0.25) !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio .required { display: none !important; }
/* Active / selected state (applied via JS) */
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio.prime-ctype-active {
    border-color: hsla(199, 89%, 48%, 0.5) !important;
    background: hsla(199, 89%, 48%, 0.08) !important;
    color: var(--prime-fg) !important;
    box-shadow: 0 0 0 1px hsla(199, 89%, 48%, 0.25), 0 0 24px -6px hsla(199, 89%, 48%, 0.2) !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio.prime-ctype-active::before {
    opacity: 1 !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio.prime-ctype-active .prime-ctype-icon {
    background: hsla(199, 89%, 48%, 0.15) !important;
    border-color: hsla(199, 89%, 48%, 0.4) !important;
    color: hsl(199, 89%, 60%) !important;
    box-shadow: 0 0 12px -3px hsla(199, 89%, 48%, 0.3) !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio.prime-ctype-active .prime-ctype-label {
    color: var(--prime-fg) !important;
}
body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio.prime-ctype-active .prime-ctype-sub {
    opacity: 0.9 !important;
}

/* =============================================
   11. PRODUCT OPTIONS / VARIATIONS
   ============================================= */
body[class*="cartflows_step-template"] .wcf-product-option-wrap {
    background: var(--prime-card-60) !important;
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid var(--prime-glass-border) !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1rem 1rem 0.625rem !important; margin-bottom: 1.5rem !important;
    box-shadow: var(--prime-glow-sm);
}
body[class*="cartflows_step-template"] .wcf-qty-options {
    background: transparent !important; border: none !important; padding: 0 !important;
    display: flex !important; flex-direction: column !important; gap: 0.375rem !important;
}

/* Each Variation Row */
body[class*="cartflows_step-template"] .wcf-qty-row {
    background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 0.75rem !important;
    margin: 0 !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    display: flex !important; align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 0 !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row:hover {
    border-color: hsla(199, 89%, 48%, 0.3) !important;
    background: hsla(222, 30%, 16%, 0.5) !important;
    transform: translateX(2px) !important;
}

/* Active Variation Row */
body[class*="cartflows_step-template"] .wcf-qty-row.wcf-highlight,
body[class*="cartflows_step-template"] .wcf-qty-row.active,
body[class*="cartflows_step-template"] .wcf-qty-row.prime-active {
    border-color: var(--prime-primary-50) !important;
    background: var(--prime-primary-10) !important;
    box-shadow: var(--prime-glow-ring) !important;
}

/* Variation Row Inner Elements */
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item {
    display: flex !important; align-items: center !important;
    gap: 0.5rem !important; flex: 1 !important; position: relative !important; z-index: 1 !important;
    min-height: 0 !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector {
    flex-shrink: 0 !important;
}

/* Custom Radio Button */
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector input[type="radio"].wcf-single-sel {
    width: 1rem !important; height: 1rem !important;
    min-width: 1rem !important; min-height: 1rem !important;
    aspect-ratio: 1 / 1 !important;
    border: 2px solid var(--prime-border) !important;
    border-radius: 50% !important; background: var(--prime-secondary-30) !important;
    -webkit-appearance: none !important; appearance: none !important;
    cursor: pointer !important; position: relative !important;
    margin: 0 !important; padding: 0 !important; flex-shrink: 0 !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row:hover .wcf-item-selector input[type="radio"].wcf-single-sel {
    border-color: var(--prime-primary-50) !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector input[type="radio"].wcf-single-sel:checked {
    border-color: var(--prime-primary) !important;
    background: transparent !important;
    box-shadow: none !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector input[type="radio"].wcf-single-sel:checked::after {
    content: '' !important; position: absolute !important;
    top: 50% !important; left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 0.375rem !important; height: 0.375rem !important;
    border-radius: 50% !important; background: var(--prime-primary) !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-product-label { display: none !important; }

/* Variation Title */
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-all-text {
    position: relative !important; z-index: 1 !important;
    flex: 1 !important; min-width: 0 !important;
    display: flex !important; flex-direction: column !important;
    gap: 0.1875rem !important;
    overflow: hidden !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-title {
    color: var(--prime-fg) !important;
    font-size: 1rem !important; font-weight: 700 !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    display: flex !important; align-items: center !important; gap: 0.375rem !important;
    white-space: nowrap !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-title-quantity { display: none !important; }
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-attributes {
    color: var(--prime-muted-fg) !important;
    font-size: 14px !important; margin: 0 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    white-space: nowrap !important;
    display: inline !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-att-sep { display: none !important; }

/* Variation discount tag */
.prime-var-discount {
    display: inline-flex; align-items: center; justify-content: center;
    width: fit-content !important; max-width: fit-content !important;
    align-self: flex-start;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.9em; font-weight: 700;
    color: hsl(142, 71%, 50%);
    background: hsla(142, 71%, 45%, 0.1);
    border: 1px solid hsla(142, 71%, 45%, 0.2);
    padding: 0.0625rem 0.375rem; border-radius: 2rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* Variation badge (POPULAR / BEST VALUE) */
.prime-var-badge {
    position: absolute; top: 0; right: 0; z-index: 2;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(135deg, hsl(199, 89%, 48%), hsl(260, 60%, 55%));
    padding: 0.125rem 0.5rem 0.125rem 0.375rem;
    border-radius: 0 0.4375rem 0 0.375rem;
}

/* Variation Price with old price */
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-price {
    position: relative !important; z-index: 1 !important;
    margin-left: auto !important; flex-shrink: 0 !important;
    padding-left: 0.75rem !important;
    display: flex !important; align-items: baseline !important;
    gap: 0.5rem !important;
}
.prime-var-old-price {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.875rem; font-weight: 500;
    color: var(--prime-muted-fg); opacity: 0.55;
    text-decoration: line-through;
    line-height: 1;
    margin-right: 4px;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-price {
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    line-height: 1.2 !important;
}
body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-price .woocommerce-Price-amount {
    background-image: var(--prime-gradient-text) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
}

/* Hide quantity selectors */
body[class*="cartflows_step-template"] .wcf-qty.wcf-qty-hidden { display: none !important; }

/* =============================================
   12. COUPON SECTION
   ============================================= */
body[class*="cartflows_step-template"] .wcf-custom-coupon-field {
    background: transparent !important;
    backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
    border: none !important;
    border-top: 1px solid var(--prime-border) !important;
    border-bottom: none !important; border-left: none !important; border-right: none !important;
    border-radius: 0 !important;
    padding: 0.75rem 0 0 !important; margin: 0.75rem 0 1.25rem !important;
    box-shadow: none !important;
    display: flex !important; gap: 0.5rem !important; align-items: center !important;
}
body[class*="cartflows_step-template"] .wcf-coupon-col-1 { flex: 1 !important; }
body[class*="cartflows_step-template"] .wcf-coupon-col-1 span { display: block !important; }
body[class*="cartflows_step-template"] .wcf-coupon-code-input {
    height: 2.125rem !important; font-size: 0.75rem !important;
    padding: 0 0.625rem !important; border-radius: 0.375rem !important;
    background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important;
    color: var(--prime-fg) !important;
    width: 100% !important;
}
body[class*="cartflows_step-template"] .wcf-coupon-col-2 { flex-shrink: 0 !important; }
body[class*="cartflows_step-template"] .wcf-coupon-col-2 span { display: block !important; }
body[class*="cartflows_step-template"] .wcf-submit-coupon {
    padding: 0 0.75rem !important; height: 2.125rem !important;
    border-radius: 0.375rem !important; background: var(--prime-primary-10) !important;
    color: var(--prime-primary) !important; font-size: 0.6875rem !important;
    font-weight: 600 !important; border: 1px solid hsla(199, 89%, 48%, 0.2) !important;
    cursor: pointer !important; transition: all 0.2s !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    text-transform: uppercase !important; letter-spacing: 0.04em !important;
    white-space: nowrap !important;
}
body[class*="cartflows_step-template"] .wcf-submit-coupon:hover {
    background: hsla(199, 89%, 48%, 0.15) !important;
    border-color: hsla(199, 89%, 48%, 0.35) !important;
}

/* =============================================
   13. ORDER REVIEW TABLE
   ============================================= */
body[class*="cartflows_step-template"] .wcf-order-wrap {
    background: var(--prime-card-60) !important;
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid var(--prime-glass-border) !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1rem 1.25rem !important; margin-bottom: 1.5rem !important;
    box-shadow: var(--prime-glow-sm);
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order {
    background: transparent !important; border: none !important;
    padding: 0 !important; box-shadow: none !important;
}

/* Kill ALL table borders — nuclear specificity */
body[class*="cartflows_step-template"] .wcf-order-wrap table,
body[class*="cartflows_step-template"] .wcf-order-wrap table th,
body[class*="cartflows_step-template"] .wcf-order-wrap table td,
body[class*="cartflows_step-template"] .wcf-order-wrap table tr,
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table,
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table th,
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table td,
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table tr,
.woocommerce body[class*="cartflows_step-template"] table.shop_table,
.woocommerce body[class*="cartflows_step-template"] table.shop_table th,
.woocommerce body[class*="cartflows_step-template"] table.shop_table td,
.woocommerce body[class*="cartflows_step-template"] table.shop_table tr,
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper table,
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper table th,
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper table td {
    border: none !important; border-width: 0 !important;
    border-collapse: collapse !important; border-spacing: 0 !important;
    outline: none !important; box-shadow: none !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table {
    margin: 0 !important;
    background: transparent !important; width: 100% !important;
}

/* Hide table header */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table thead {
    display: none !important;
}

/* Hide subtotal row — only show total */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-subtotal {
    display: none !important;
}

/* Hide thumbnails in collapsed review (mobile) only */
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper .product-thumbnail,
body[class*="cartflows_step-template"] .wcf-cartflows-review-order-wrapper td img {
    display: none !important;
}

/* Product row — card style */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item td {
    padding: 0 !important;
    background: transparent !important;
    vertical-align: middle !important;
    border: none !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table tbody,
.woocommerce body[class*="cartflows_step-template"] table.shop_table tbody {
    display: block !important;
    background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important;
    border-radius: 0.75rem !important;
    padding: 0.875rem !important;
    margin-bottom: 0.75rem !important;
    box-shadow: none !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
}

/* Hide original WooCommerce thumbnail cell (we inject our own) */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item .wcf-product-thumbnail,
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item td.product-thumbnail {
    display: none !important;
}

/* Injected product image */
body[class*="cartflows_step-template"] .prime-review-img {
    flex-shrink: 0 !important;
    width: 4rem !important; height: 4rem !important;
    border-radius: 0.625rem !important;
    overflow: hidden !important;
    border: 1px solid hsla(199, 89%, 48%, 0.15) !important;
    box-shadow: 0 2px 10px -2px rgba(0,0,0,0.4) !important;
}
body[class*="cartflows_step-template"] .prime-review-img img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block !important;
    border: none !important; border-radius: 0 !important;
    box-shadow: none !important;
}

/* Product name area */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item .product-name {
    color: var(--prime-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    line-height: 1.4 !important;
    flex: 1 !important;
    display: flex !important; flex-direction: column !important; gap: 0.25rem !important;
    font-size: 0.8125rem !important; font-weight: 500 !important;
}
/* Hide raw quantity "x 1" */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item .product-name .product-quantity {
    display: none !important;
}
/* Clean product title */
body[class*="cartflows_step-template"] .prime-review-product-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.9375rem !important; font-weight: 700 !important;
    color: var(--prime-fg) !important;
    line-height: 1.3 !important;
    display: block !important;
}
/* Connection badge under product name */
body[class*="cartflows_step-template"] .prime-review-conn-badge {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important; font-weight: 600 !important;
    color: var(--prime-primary) !important;
    background: hsla(199, 89%, 48%, 0.08) !important;
    border: 1px solid hsla(199, 89%, 48%, 0.2) !important;
    padding: 0.1875rem 0.5rem !important; border-radius: 2rem !important;
    line-height: 1 !important;
    display: inline-flex !important; align-items: center !important; gap: 0.25rem !important;
    width: fit-content !important;
    letter-spacing: 0.02em !important;
    box-shadow: none !important;
}
body[class*="cartflows_step-template"] .prime-review-conn-badge svg {
    color: var(--prime-primary) !important;
    flex-shrink: 0 !important;
}

/* Price column */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item .product-total {
    text-align: right !important;
    color: var(--prime-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    white-space: nowrap !important;
    display: flex !important; flex-direction: column !important; align-items: flex-end !important;
    gap: 0.1875rem !important;
    flex-shrink: 0 !important;
}
/* Old price in order review */
body[class*="cartflows_step-template"] .prime-review-old-price {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important; font-weight: 500 !important;
    color: var(--prime-muted-fg) !important; opacity: 0.5;
    text-decoration: line-through !important;
    line-height: 1 !important;
    border: none !important;
}
/* Current price gradient */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart_item .product-total .woocommerce-Price-amount {
    background-image: var(--prime-gradient-text) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
}
/* Savings badge */
body[class*="cartflows_step-template"] .prime-review-save {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.5625rem !important; font-weight: 600 !important;
    color: hsl(142, 71%, 50%) !important;
    background: hsla(142, 71%, 45%, 0.1) !important;
    border: 1px solid hsla(142, 71%, 45%, 0.2) !important;
    padding: 0.125rem 0.375rem !important; border-radius: 2rem !important;
    line-height: 1.3 !important; letter-spacing: 0.02em !important;
    box-shadow: none !important;
}

/* Tfoot rows */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table tfoot,
.woocommerce body[class*="cartflows_step-template"] table.shop_table tfoot {
    display: block !important; width: 100% !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table tfoot tr,
.woocommerce body[class*="cartflows_step-template"] table.shop_table tfoot tr {
    display: flex !important; justify-content: space-between !important; align-items: center !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table tfoot th,
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table tfoot td {
    padding: 0.25rem 0 !important;
    background: transparent !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    display: block !important;
    border: none !important;
}

/* Coupon discount row */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-discount {
    background: hsla(142, 71%, 45%, 0.06) !important;
    border: 1px solid hsla(142, 71%, 45%, 0.15) !important;
    border-radius: 6px !important;
    padding: 0.375rem 0.625rem !important;
    margin: 0.25rem 0 !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-discount th {
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    color: hsl(142, 71%, 60%) !important;
    padding: 0 !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-discount td {
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    color: hsl(142, 71%, 60%) !important;
    text-align: right !important;
    padding: 0 !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-discount td .woocommerce-Price-amount {
    color: hsl(142, 71%, 60%) !important;
    background-image: none !important;
    -webkit-text-fill-color: hsl(142, 71%, 60%) !important;
    font-weight: 600 !important;
    font-size: 0.6875rem !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-discount td a.woocommerce-remove-coupon {
    color: var(--prime-muted-fg) !important;
    font-size: 0.5625rem !important;
    opacity: 0.6 !important;
    text-decoration: none !important;
    margin-left: 4px !important;
    transition: opacity 0.2s !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .cart-discount td a.woocommerce-remove-coupon:hover {
    opacity: 1 !important;
    color: hsl(0, 85%, 70%) !important;
}

/* Total row — divider ABOVE + big price */
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total,
.woocommerce body[class*="cartflows_step-template"] table.shop_table .order-total {
    padding-top: 0 !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total th {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 700 !important; font-size: 1rem !important;
    color: var(--prime-fg) !important;
    border: none !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total td {
    text-align: right !important;
    border: none !important;
}
body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total .woocommerce-Price-amount {
    background-image: var(--prime-gradient-text) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 1.375rem !important; font-weight: 700 !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
}

/* =============================================
   14. PAYMENT METHODS
   ============================================= */
body[class*="cartflows_step-template"] .wcf-payment-option-heading {
    margin: 1.5rem 0 0.75rem !important; padding: 0 !important;
}
body[class*="cartflows_step-template"] .wcf-payment-option-heading h3 {
    font-size: 0.875rem !important; margin: 0 !important;
}
body[class*="cartflows_step-template"] #payment {
    /* background: var(--prime-card-60) !important; */
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    /* border: 1px solid var(--prime-glass-border) !important; */
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.25rem !important;
    /* box-shadow: var(--prime-glow-sm); */
}
body[class*="cartflows_step-template"] #payment .payment_methods {
    border: none !important; padding: 0 !important; margin: 0 !important; margin-top: 0 !important;
    list-style: none !important; background: transparent !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li {
    background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important;
    border-radius: 0.625rem !important; padding: 0.625rem 1rem !important;
    margin-bottom: 0.5rem !important; transition: all 0.25s ease !important;
    list-style: none !important; position: relative !important;
    display: flex !important; flex-wrap: wrap !important; align-items: center !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li:hover {
    border-color: hsla(199, 89%, 48%, 0.3) !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li.prime-payment-active {
    border-color: var(--prime-primary-50) !important;
    background: var(--prime-primary-10) !important;
    box-shadow: var(--prime-glow-ring) !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li label {
    color: var(--prime-fg) !important; font-size: 0.875rem !important;
    font-weight: 500 !important; cursor: pointer !important;
    display: flex !important; align-items: center !important;
    flex-wrap: nowrap !important; gap: 0 !important;
    white-space: nowrap !important; line-height: 1 !important;
    flex: 1 !important; min-width: 0 !important;
    padding: 0 !important; margin: 0 !important;
}
/* Payment icons inline with label */
.prime-label-icons {
    display: inline-flex !important; align-items: center !important;
    gap: 0.2rem !important; margin-left: auto !important;
    flex-shrink: 0 !important; white-space: nowrap !important;
    line-height: 0 !important; padding-left: 0.5rem !important;
}
.prime-pay-icon {
    height: 20px !important; width: auto !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.25) !important;
    flex-shrink: 0 !important;
    display: block !important;
    vertical-align: middle !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li input[type="radio"] {
    width: 1.25rem !important; height: 1.25rem !important;
    border: 2px solid var(--prime-muted-fg) !important;
    border-radius: 50% !important; background: transparent !important;
    -webkit-appearance: none !important; appearance: none !important;
    cursor: pointer !important; position: relative !important;
    margin: 0 0.5rem 0 0 !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important; align-self: center !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li input[type="radio"]:checked {
    border-color: var(--prime-primary) !important; background: var(--prime-primary) !important;
    box-shadow: 0 0 0 3px hsla(199, 89%, 48%, 0.2) !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li input[type="radio"]:checked::after {
    content: '' !important; position: absolute !important;
    top: 50% !important; left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 0.375rem !important; height: 0.375rem !important;
    border-radius: 50% !important; background: var(--prime-primary-fg) !important;
}
body[class*="cartflows_step-template"] #payment .payment_box {
    background: transparent !important; color: var(--prime-muted-fg) !important;
    padding: 0.625rem 0 0 0 !important; font-size: 0.75rem !important;
    flex-basis: 100% !important; width: 100% !important;
    white-space: normal !important; line-height: 1.5 !important;
    border: none !important; border-top: none !important;
    box-shadow: none !important; outline: none !important;
    margin: 10px 0 0 0 !important;
}
body[class*="cartflows_step-template"] #payment .payment_box p {
    margin: 0 !important; padding: 0 !important;
    color: var(--prime-muted-fg) !important;
    font-size: 0.75rem !important; line-height: 1.5 !important;
    white-space: normal !important;
    border: none !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li.prime-payment-single .payment_box p {
    margin: 0 0 0 0 !important;
}
body[class*="cartflows_step-template"] #payment .payment_box::before,
body[class*="cartflows_step-template"] #payment .payment_box::after { display: none !important; }

/* ── Interac checkout box – pro design ── */
.prime-interac-box {
    background: linear-gradient(135deg, hsla(45, 98%, 58%, 0.06), hsla(45, 98%, 58%, 0.02)) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.12) !important;
    border-radius: 10px !important;
    padding: 0.875rem 1rem !important;
    margin-top: 0.625rem !important;
}

.prime-interac-box-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.625rem !important;
    border-bottom: 1px solid hsla(45, 98%, 58%, 0.08) !important;
}

.prime-interac-box-logo {
    width: 36px !important;
    height: 24px !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
}

.prime-interac-box-header-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.1rem !important;
}

.prime-interac-box-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: hsl(45, 98%, 68%) !important;
}

.prime-interac-box-subtitle {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    opacity: 0.7 !important;
}

.prime-interac-box-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem !important;
}

.prime-interac-box-feature {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.7rem !important;
    color: hsla(0, 0%, 100%, 0.65) !important;
}

.prime-interac-box-feature svg {
    color: hsl(45, 98%, 55%) !important;
    flex-shrink: 0 !important;
    opacity: 0.8 !important;
}

/* Kill all stray borders/lines inside payment methods */
body[class*="cartflows_step-template"] #payment .payment_methods li label {
    border: none !important; border-bottom: none !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li label::before,
body[class*="cartflows_step-template"] #payment .payment_methods li label::after {
    display: none !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li hr,
body[class*="cartflows_step-template"] #payment .payment_methods hr,
body[class*="cartflows_step-template"] #payment hr {
    display: none !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li fieldset {
    border: none !important; padding: 0 !important; margin: 0 !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li > div,
body[class*="cartflows_step-template"] #payment .payment_methods li > span,
body[class*="cartflows_step-template"] #payment .payment_methods li > p,
body[class*="cartflows_step-template"] #payment .payment_methods li > a,
body[class*="cartflows_step-template"] #payment .payment_methods li img {
    border: none !important;
}

/* Single payment method — hide radio, auto-active */
body[class*="cartflows_step-template"] #payment .payment_methods li.prime-payment-single {
    border-color: var(--prime-primary-50) !important;
    background: var(--prime-primary-10) !important;
    box-shadow: var(--prime-glow-ring) !important;
}
body[class*="cartflows_step-template"] #payment .payment_methods li.prime-payment-single input[type="radio"] {
    display: inline-block !important;
}

/* No payment methods notice — FORCE dark theme */
body[class*="cartflows_step-template"] #payment .woocommerce-notice--info,
body[class*="cartflows_step-template"] #payment .woocommerce-info,
body[class*="cartflows_step-template"] #payment .wc_payment_methods .woocommerce-notice,
body[class*="cartflows_step-template"] #payment li.woocommerce-notice {
    background: var(--prime-secondary-30) !important;
    border: 1px solid var(--prime-border) !important;
    border-radius: 0.5rem !important; padding: 0.875rem 1rem !important;
    color: var(--prime-muted-fg) !important; font-size: 0.8125rem !important;
    list-style: none !important; line-height: 1.5 !important;
    margin: 0 !important;
}
body[class*="cartflows_step-template"] #payment .woocommerce-notice--info *,
body[class*="cartflows_step-template"] #payment .woocommerce-info *,
body[class*="cartflows_step-template"] #payment li.woocommerce-notice * {
    color: var(--prime-muted-fg) !important;
    background: transparent !important;
}
body[class*="cartflows_step-template"] #payment .woocommerce-notice--info::before,
body[class*="cartflows_step-template"] #payment .woocommerce-info::before {
    color: var(--prime-primary) !important;
}

/* Privacy text */
body[class*="cartflows_step-template"] .woocommerce-privacy-policy-text p {
    color: var(--prime-muted-fg) !important; font-size: 0.75rem !important;
    line-height: 1.5 !important; margin: 0.75rem 0 !important;
}

/* =============================================
   15. PLACE ORDER BUTTON
   ============================================= */
body[class*="cartflows_step-template"] #place_order {
    width: 100% !important; height: auto !important;
    border-radius: var(--prime-radius-xl) !important;
    background: var(--prime-gradient) !important;
    color: var(--prime-primary-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 700 !important; font-size: 1rem !important;
    border: none !important; cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 25px -4px hsla(199, 89%, 48%, 0.45), 0 0 0 1px hsla(199, 89%, 48%, 0.2) !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    gap: 0.25rem !important;
    line-height: 1.2 !important; padding: 0.75rem 1.5rem 0.625rem !important;
    text-transform: none !important; letter-spacing: 0.01em !important;
    position: relative !important; overflow: hidden !important;
    z-index: 1 !important;
}
body[class*="cartflows_step-template"] #place_order:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 40px -4px hsla(199, 89%, 48%, 0.55), 0 0 0 1px hsla(199, 89%, 48%, 0.3) !important;
    filter: brightness(1.1) !important;
}
body[class*="cartflows_step-template"] #place_order:active {
    transform: translateY(0) !important;
    box-shadow: 0 3px 15px -4px hsla(199, 89%, 48%, 0.35) !important;
}
body[class*="cartflows_step-template"] #place_order::before {
    content: '' !important; display: inline-block !important;
    width: 1.5rem !important; height: 1.5rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important; background-size: contain !important;
    flex-shrink: 0 !important;
    position: absolute !important; left: 1.25rem !important; top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 0.5 !important;
}
body[class*="cartflows_step-template"] #place_order::after {
    content: 'Secured with 256-bit SSL encryption' !important;
    display: block !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important; font-weight: 400 !important;
    letter-spacing: 0.03em !important;
    opacity: 0.55 !important;
    color: var(--prime-primary-fg) !important;
    line-height: 1 !important;
}
body[class*="cartflows_step-template"] .place-order {
    background: transparent !important; padding: 1rem 0 0 !important;
}

/* =============================================
   16. QUICK VIEW MODAL / POPUP
   ============================================= */
body[class*="cartflows_step-template"] .wcf-quick-view-wrapper {
    z-index: 999999 !important;
}
body[class*="cartflows_step-template"] .wcf-quick-view-bg {
    background: hsla(222, 47%, 6%, 0.85) !important;
    backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important;
}
body[class*="cartflows_step-template"] #wcf-quick-view-modal {
    background: transparent !important;
}
body[class*="cartflows_step-template"] .wcf-content-main-wrapper {
    display: flex !important; align-items: center !important;
    justify-content: center !important; min-height: 100vh !important;
    padding: 2rem !important;
}
body[class*="cartflows_step-template"] .wcf-content-main {
    background: var(--prime-card) !important;
    border: 1px solid var(--prime-glass-border-30) !important;
    border-radius: var(--prime-radius-xl) !important;
    box-shadow: 0 25px 60px -12px hsla(222, 47%, 3%, 0.6), var(--prime-glow-md) !important;
    max-width: 40rem !important; width: 100% !important;
    overflow: hidden !important;
    animation: prime-slide-up 0.3s ease-out !important;
}
body[class*="cartflows_step-template"] .wcf-lightbox-content {
    padding: 0 !important; background: transparent !important;
}
body[class*="cartflows_step-template"] .wcf-content-main-head {
    display: flex !important; justify-content: flex-end !important;
    padding: 1rem 1.25rem 0 !important;
}
body[class*="cartflows_step-template"] .wcf-quick-view-close-btn {
    width: 2.25rem !important; height: 2.25rem !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    border-radius: 50% !important; background: var(--prime-secondary) !important;
    border: 1px solid var(--prime-border) !important;
    color: var(--prime-muted-fg) !important; cursor: pointer !important;
    transition: all 0.2s !important; text-decoration: none !important;
    font-size: 1rem !important;
}
body[class*="cartflows_step-template"] .wcf-quick-view-close-btn:hover {
    background: var(--prime-secondary-50) !important;
    color: var(--prime-fg) !important;
    border-color: hsla(199, 89%, 48%, 0.3) !important;
}
body[class*="cartflows_step-template"] #wcf-quick-view-content {
    padding: 1.25rem !important; color: var(--prime-fg) !important;
}
body[class*="cartflows_step-template"] #wcf-quick-view-content .product {
    background: transparent !important;
}
body[class*="cartflows_step-template"] #wcf-quick-view-content .product_title,
body[class*="cartflows_step-template"] #wcf-quick-view-content h1,
body[class*="cartflows_step-template"] #wcf-quick-view-content h2 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    color: var(--prime-fg) !important; font-weight: 700 !important;
}
body[class*="cartflows_step-template"] #wcf-quick-view-content .price .woocommerce-Price-amount {
    background-image: var(--prime-gradient-text) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 1.5rem !important; font-weight: 700 !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
}
body[class*="cartflows_step-template"] #wcf-quick-view-content .single_add_to_cart_button {
    background: var(--prime-gradient) !important; color: var(--prime-primary-fg) !important;
    border: none !important; border-radius: 0.5rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 700 !important; padding: 0.75rem 2rem !important;
    cursor: pointer !important; transition: all 0.2s !important;
}
body[class*="cartflows_step-template"] .wcf-quick-view-loader {
    border-color: var(--prime-border) !important;
    border-top-color: var(--prime-primary) !important;
}

/* =============================================
   17. SIDEBAR (PRODUCT CARD, FEATURES, TRUST)
   ============================================= */
.prime-sidebar-extra {
    position: sticky !important; top: 1.5rem !important;
    z-index: 10; animation: prime-slide-up 0.4s ease-out;
    margin-top: 0 !important;
}
.prime-product-card {
    background: var(--prime-card-60); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--prime-glass-border); border-radius: var(--prime-radius-xl);
    overflow: hidden; box-shadow: var(--prime-glow-sm); margin-bottom: 1.5rem;
}
.prime-product-image-wrap { position: relative; }
.prime-product-image { width: 100%; height: 12rem; object-fit: cover; display: block; }
.prime-product-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--prime-card), transparent); }
.prime-product-info { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
.prime-product-info h2 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.25rem !important; font-weight: 700 !important;
    color: var(--prime-fg) !important; margin: 0 0 0.25rem !important;
    padding: 0 !important; line-height: 1.3 !important;
}
.prime-product-info p { font-size: 0.875rem; color: var(--prime-muted-fg); margin: 0; }

/* Offer badge on product image */
.prime-offer-badge {
    position: absolute; top: 0.75rem; right: 0.75rem; z-index: 5;
    background: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(142, 71%, 38%));
    color: #fff; font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.03em;
    padding: 0.3rem 0.625rem; border-radius: 2rem;
    display: flex; align-items: center; gap: 0.25rem;
    box-shadow: 0 2px 12px -2px hsla(142, 71%, 45%, 0.5);
    animation: prime-fade-in 0.5s ease-out;
}
.prime-offer-badge svg { color: #fff; flex-shrink: 0; }

.prime-product-desc { padding: 1.25rem; }
.prime-product-desc p { font-size: 0.875rem; color: var(--prime-muted-fg); line-height: 1.6; margin: 0; }

/* Sale price row */
.prime-price-row {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
    margin-top: 0.875rem; padding-top: 0.875rem;
    border-top: 1px solid var(--prime-border);
}
.prime-price-old {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1rem; font-weight: 500; color: var(--prime-muted-fg);
    text-decoration: line-through; opacity: 0.6;
}
.prime-price-now {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.5rem; font-weight: 700;
    background-image: var(--prime-gradient-text);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.prime-price-save {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem; font-weight: 600;
    color: hsl(142, 71%, 45%);
    background: hsla(142, 71%, 45%, 0.1);
    border: 1px solid hsla(142, 71%, 45%, 0.2);
    padding: 0.2rem 0.5rem; border-radius: 2rem;
    white-space: nowrap;
}

/* Order review offer banner */
.prime-order-offer {
    display: flex; align-items: center; gap: 0.625rem;
    background: hsla(142, 71%, 45%, 0.08);
    border: 1px solid hsla(142, 71%, 45%, 0.2);
    border-radius: 0.625rem; padding: 0.5rem 0.75rem;
    margin: 0 0 0.625rem;
    animation: prime-fade-in 0.4s ease-out;
}
.prime-order-offer-icon {
    width: 1.75rem; height: 1.75rem; border-radius: 50%;
    background: hsla(142, 71%, 45%, 0.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prime-order-offer-icon svg { color: hsl(142, 71%, 45%); }
.prime-order-offer-text { display: flex; flex-direction: column; gap: 0; }
.prime-order-offer-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.75rem; font-weight: 700; color: hsl(142, 71%, 50%);
}
.prime-order-offer-sub {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.625rem; color: var(--prime-muted-fg); opacity: 0.7;
}

.prime-features-card {
    background: var(--prime-card-60); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--prime-glass-border); border-radius: var(--prime-radius-xl);
    padding: 1.25rem; box-shadow: var(--prime-glow-sm); margin-bottom: 1.5rem;
}
.prime-features-card h3 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important; font-weight: 600 !important; color: var(--prime-fg) !important;
    text-transform: uppercase !important; letter-spacing: 0.05em !important;
    margin: 0 0 1rem !important; padding: 0 !important;
}
.prime-features-list { display: flex; flex-direction: column; gap: 0.75rem; }
.prime-feature { display: flex; align-items: center; gap: 0.75rem; }
.prime-feature-icon {
    width: 1.5rem; height: 1.5rem; border-radius: 50%;
    background: var(--prime-primary-15); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.prime-feature-icon svg { color: var(--prime-primary); }
.prime-feature span { font-size: 0.875rem; color: var(--prime-muted-fg); font-family: 'Inter', system-ui, sans-serif; }

.prime-trust-badges { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 0.75rem 0; }
.prime-badge { display: flex; align-items: center; gap: 0.375rem; color: var(--prime-muted-fg); }
.prime-badge svg { color: var(--prime-primary); }
.prime-badge span { font-size: 0.75rem; font-family: 'Inter', system-ui, sans-serif; }

/* Money-back guarantee */
.prime-guarantee {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    margin-top: 0.875rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 0.875rem;
    position: relative;
    overflow: hidden;
}
.prime-guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.prime-guarantee-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    position: relative;
    z-index: 1;
}
.prime-guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    position: relative;
    z-index: 1;
}
.prime-guarantee-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #10b981;
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.01em;
}
.prime-guarantee-sub {
    font-size: 0.75rem;
    color: var(--prime-muted-fg);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.4;
}

/* SSL (sidebar) */
.prime-sidebar-extra .prime-ssl-text {
    margin-top: 0.75rem !important;
}
.prime-ssl-text svg { color: var(--prime-muted-fg); }

/* =============================================
   18. NOTICES — (moved to section 21)
   ============================================= */

/* =============================================
   19. LINKS & AMOUNTS
   ============================================= */
body[class*="cartflows_step-template"] a:not(.prime-back-btn):not(.wcf-quick-view-close-btn) {
    color: var(--prime-primary) !important; text-decoration: none !important;
}
body[class*="cartflows_step-template"] a:hover { opacity: 0.8; }
body[class*="cartflows_step-template"] .woocommerce-Price-amount,
body[class*="cartflows_step-template"] .amount { color: var(--prime-fg) !important; font-weight: 600; }

/* =============================================
   20. CHECKBOX
   ============================================= */
body[class*="cartflows_step-template"] input[type="checkbox"] {
    width: 1.125rem !important; height: 1.125rem !important;
    border: 2px solid var(--prime-border) !important; border-radius: 0.25rem !important;
    background: var(--prime-secondary-50) !important;
    -webkit-appearance: none !important; appearance: none !important;
    cursor: pointer !important; position: relative !important;
    transition: all 0.2s !important;
}
body[class*="cartflows_step-template"] input[type="checkbox"]:checked {
    background: var(--prime-primary) !important; border-color: var(--prime-primary) !important;
}
body[class*="cartflows_step-template"] input[type="checkbox"]:checked::after {
    content: '' !important; position: absolute !important;
    top: 1px !important; left: 4px !important;
    width: 5px !important; height: 9px !important;
    border: solid var(--prime-primary-fg) !important;
    border-width: 0 2px 2px 0 !important; transform: rotate(45deg) !important;
}

body[class*="cartflows_step-template"] .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    display: none !important;
}

/* =============================================
   21. WOOCOMMERCE NOTICES (ERROR, SUCCESS, INFO)
   Nuclear specificity — covers every WooCommerce notice location
   ============================================= */
body[class*="cartflows_step-template"] .woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-message,
body[class*="cartflows_step-template"] .woocommerce-info,
body[class*="cartflows_step-template"] .woocommerce-NoticeGroup .woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-NoticeGroup .woocommerce-message,
body[class*="cartflows_step-template"] .woocommerce-NoticeGroup .woocommerce-info,
body[class*="cartflows_step-template"] ul.woocommerce-error,
body[class*="cartflows_step-template"] div.woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-notices-wrapper .woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-notices-wrapper .woocommerce-message,
body[class*="cartflows_step-template"] .woocommerce-notices-wrapper .woocommerce-info,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-error,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-message,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-info,
body[class*="cartflows_step-template"] form.checkout .woocommerce-error,
body[class*="cartflows_step-template"] form.checkout .woocommerce-message,
body[class*="cartflows_step-template"] form.checkout .woocommerce-info,
body[class*="cartflows_step-template"] .wcf-customer-info .woocommerce-error,
body[class*="cartflows_step-template"] .wcf-customer-info .woocommerce-message,
body[class*="cartflows_step-template"] .wcf-customer-info .woocommerce-info,
body[class*="cartflows_step-template"] [role="alert"].woocommerce-error,
body[class*="cartflows_step-template"] [role="alert"].woocommerce-message,
body[class*="cartflows_step-template"] [role="alert"].woocommerce-info,
.woocommerce body[class*="cartflows_step-template"] .woocommerce-error,
.woocommerce body[class*="cartflows_step-template"] .woocommerce-message,
.woocommerce body[class*="cartflows_step-template"] .woocommerce-info {
    background: var(--prime-card-60) !important;
    backdrop-filter: blur(24px) !important; -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 0.75rem !important;
    padding: 0.875rem 1.25rem !important;
    margin: 0.75rem 0 !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-fg) !important;
    list-style: none !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
/* Error — red accent */
body[class*="cartflows_step-template"] .woocommerce-error,
body[class*="cartflows_step-template"] ul.woocommerce-error,
body[class*="cartflows_step-template"] div.woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-NoticeGroup .woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-notices-wrapper .woocommerce-error,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-error,
body[class*="cartflows_step-template"] form.checkout .woocommerce-error,
body[class*="cartflows_step-template"] .wcf-customer-info .woocommerce-error,
.woocommerce body[class*="cartflows_step-template"] .woocommerce-error {
    border: 1px solid hsla(0, 70%, 50%, 0.3) !important;
    background: hsla(0, 70%, 50%, 0.08) !important;
}
/* Error text + li items */
body[class*="cartflows_step-template"] .woocommerce-error,
body[class*="cartflows_step-template"] .woocommerce-error li,
body[class*="cartflows_step-template"] ul.woocommerce-error li,
body[class*="cartflows_step-template"] .woocommerce-error strong {
    color: hsl(0, 85%, 70%) !important;
    list-style: none !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    background: transparent !important;
}
/* Success — green accent */
body[class*="cartflows_step-template"] .woocommerce-message,
body[class*="cartflows_step-template"] .woocommerce-notices-wrapper .woocommerce-message,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-message,
.woocommerce body[class*="cartflows_step-template"] .woocommerce-message {
    border: 1px solid hsla(142, 71%, 45%, 0.3) !important;
    background: hsla(142, 71%, 45%, 0.08) !important;
}
body[class*="cartflows_step-template"] .woocommerce-message,
body[class*="cartflows_step-template"] .woocommerce-message li,
body[class*="cartflows_step-template"] .woocommerce-message strong {
    color: hsl(142, 71%, 65%) !important;
    background: transparent !important;
}
/* Info — blue accent */
body[class*="cartflows_step-template"] .woocommerce-info,
body[class*="cartflows_step-template"] .woocommerce-notices-wrapper .woocommerce-info,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-info,
.woocommerce body[class*="cartflows_step-template"] .woocommerce-info {
    border: 1px solid hsla(199, 89%, 48%, 0.3) !important;
    background: hsla(199, 89%, 48%, 0.08) !important;
}
body[class*="cartflows_step-template"] .woocommerce-info,
body[class*="cartflows_step-template"] .woocommerce-info li,
body[class*="cartflows_step-template"] .woocommerce-info strong {
    color: hsla(199, 89%, 70%, 1) !important;
    background: transparent !important;
}
/* Default WC notice ::before icon */
body[class*="cartflows_step-template"] .woocommerce-error::before,
body[class*="cartflows_step-template"] .woocommerce-message::before,
body[class*="cartflows_step-template"] .woocommerce-info::before,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-error::before,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-message::before,
body[class*="cartflows_step-template"] #wcf-embed-checkout-form .woocommerce-info::before {
    color: currentColor !important;
    margin-right: 0.5rem !important;
}
/* Notice links */
body[class*="cartflows_step-template"] .woocommerce-error a,
body[class*="cartflows_step-template"] .woocommerce-message a,
body[class*="cartflows_step-template"] .woocommerce-info a {
    color: var(--prime-primary) !important;
    text-decoration: underline !important;
}
/* Payment section notices */
body[class*="cartflows_step-template"] #payment .woocommerce-error,
body[class*="cartflows_step-template"] #payment .woocommerce-info,
body[class*="cartflows_step-template"] #payment .woocommerce-message,
body[class*="cartflows_step-template"] #payment .woocommerce-notice,
body[class*="cartflows_step-template"] #payment .woocommerce-notice--info,
body[class*="cartflows_step-template"] #payment li.woocommerce-notice {
    background: hsla(199, 89%, 48%, 0.08) !important;
    border: 1px solid hsla(199, 89%, 48%, 0.2) !important;
    border-radius: 0.625rem !important;
    color: var(--prime-muted-fg) !important;
    list-style: none !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.8125rem !important;
}
body[class*="cartflows_step-template"] #payment .woocommerce-error *,
body[class*="cartflows_step-template"] #payment .woocommerce-info *,
body[class*="cartflows_step-template"] #payment .woocommerce-message *,
body[class*="cartflows_step-template"] #payment .woocommerce-notice *,
body[class*="cartflows_step-template"] #payment li.woocommerce-notice * {
    color: var(--prime-muted-fg) !important;
    background: transparent !important;
}
/* Coupon inline notice inside .wcf-custom-coupon-field */
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice {
    margin: 0.5rem 0 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-basis: 100% !important;
}
/* Force error icon + text red */
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-error svg,
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-error svg * {
    stroke: #ff6b6b !important;
    fill: none !important;
    color: #ff6b6b !important;
}
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-error,
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-error span {
    color: #ff6b6b !important;
}
/* Force success icon + text green */
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-success svg,
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-success svg * {
    stroke: hsl(142, 71%, 65%) !important;
    fill: none !important;
    color: hsl(142, 71%, 65%) !important;
}
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-success,
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .prime-notice-success span {
    color: hsl(142, 71%, 65%) !important;
}
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .wcf-coupon-col-1,
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .wcf-coupon-col-1 span {
    flex: 1 !important;
    min-width: 0 !important;
    width: auto !important;
}
body[class*="cartflows_step-template"] .wcf-custom-coupon-field .wcf-coupon-code-input {
    height: 2.125rem !important;
    min-height: 2.125rem !important;
    width: 100% !important;
    font-size: 0.75rem !important;
    padding: 0 0.625rem !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
/* Coupon input error state */
body[class*="cartflows_step-template"] .wcf-coupon-code-input.prime-input-error {
    border-color: hsla(0, 80%, 55%, 0.5) !important;
    box-shadow: 0 0 0 1px hsla(0, 80%, 55%, 0.15) !important;
}

/* =============================================
   22. SCROLLBAR
   ============================================= */
body[class*="cartflows_step-template"] ::-webkit-scrollbar { width: 6px; }
body[class*="cartflows_step-template"] ::-webkit-scrollbar-track { background: var(--prime-bg); }
body[class*="cartflows_step-template"] ::-webkit-scrollbar-thumb { background: var(--prime-border); border-radius: 3px; }
body[class*="cartflows_step-template"] ::-webkit-scrollbar-thumb:hover { background: var(--prime-muted-fg); }

/* =============================================
   23. MOBILE: VARIATION ROWS (base adjustments)
   ============================================= */
@media (max-width: 600px) {
    body[class*="cartflows_step-template"] #payment .payment_methods {
        margin-top: 0 !important;
    }
    /* Disable hover transform on touch */
    body[class*="cartflows_step-template"] .wcf-qty-row:hover {
        transform: none !important;
    }
}

@media only screen and (max-width: 768px) {
    .wcf-embed-checkout-form.wcf-embed-checkout-form-modern-checkout .woocommerce {
        padding: 0px !important;
    }
}

/* =============================================
   23b. MOBILE: COMPREHENSIVE CHECKOUT LAYOUT
   ============================================= */
@media (max-width: 600px) {

    /* ── Page container: reduce side padding ── */
    .prime-page-layout {
        padding: 0.75rem 0.5rem !important;
        gap: 1rem !important;
    }

    /* ── Glass cards: tighter padding ── */
    body[class*="cartflows_step-template"] .wcf-col-1,
    body[class*="cartflows_step-template"] .wcf-col-2 {
        padding: 1rem 0.75rem !important;
        margin-bottom: 1rem !important;
        border-radius: 0.875rem !important;
    }

    /* ── Section headings: smaller ── */
    body[class*="cartflows_step-template"] .prime-section-label {
        font-size: 0.8125rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* ── Customer type radio card: tighter ── */
    body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper {
        padding: 0.875rem 0.625rem !important;
        margin-bottom: 1rem !important;
        border-radius: 0.875rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper > label.input-radio {
        font-size: 0.9375rem !important;
        margin-bottom: 0.75rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper .woocommerce-input-wrapper {
        gap: 0.5rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-input-radio-field-wrapper label.radio {
        padding: 0.625rem 0.5rem !important;
        border-radius: 0.625rem !important;
        min-height: 0 !important;
    }

    /* ── Product options / Variation card: tighter ── */
    body[class*="cartflows_step-template"] .wcf-product-option-wrap {
        padding: 0.75rem 0.5rem 0.5rem !important;
        margin-bottom: 1rem !important;
        border-radius: 0.875rem !important;
    }

    /* ── Variation rows: clean mobile layout ── */
    body[class*="cartflows_step-template"] .wcf-qty-row {
        padding: 0.75rem 0.625rem !important;
        border-radius: 0.625rem !important;
        min-height: 3.25rem !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        min-width: 0 !important;
    }

    /* ── Variation radio: big touch-friendly circle ── */
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector {
        flex-shrink: 0 !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector input[type="radio"].wcf-single-sel {
        width: 1.375rem !important;
        height: 1.375rem !important;
        min-width: 1.375rem !important;
        min-height: 1.375rem !important;
        border-width: 2px !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-selector input[type="radio"].wcf-single-sel:checked::after {
        width: 0.5rem !important;
        height: 0.5rem !important;
    }

    /* ── Variation text: single line, no overflow ── */
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-item-all-text {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-title {
        font-size: 0.8125rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        line-height: 1.3 !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-attributes {
        font-size: 0.6875rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        line-height: 1.3 !important;
    }

    /* ── Variation price: right-aligned, stacked ── */
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-price {
        flex-shrink: 0 !important;
        padding-left: 0.25rem !important;
        margin-left: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0.125rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-price {
        font-size: 0.9375rem !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
    }
    .prime-var-old-price {
        font-size: 0.6875rem !important;
        margin-right: 5px !important;
        line-height: 1 !important;
    }
    .prime-var-discount {
        font-size: 0.625rem !important;
        padding: 0.125rem 0.3rem !important;
    }
    .prime-var-badge {
        font-size: 0.5625rem !important;
        padding: 0.125rem 0.375rem !important;
    }

    /* ── Form inputs: comfortable touch targets ── */
    body[class*="cartflows_step-template"] .woocommerce-checkout .form-row input.input-text,
    body[class*="cartflows_step-template"] .woocommerce-checkout .form-row select,
    body[class*="cartflows_step-template"] .woocommerce-checkout .form-row textarea {
        font-size: 16px !important; /* prevents iOS zoom */
        padding: 0.625rem 0.75rem !important;
    }

    /* ── Mobile order summary card (before payment title) ── */
    .prime-mobile-order-card {
        background: var(--prime-card-60) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid var(--prime-glass-border) !important;
        border-radius: var(--prime-radius-xl) !important;
        padding: 0.875rem !important;
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
        box-shadow: var(--prime-glow-sm) !important;
    }
    .prime-mobile-order-header {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        color: var(--prime-fg) !important;
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-size: 0.875rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 1px solid var(--prime-border) !important;
    }
    .prime-mobile-order-header svg {
        color: var(--prime-primary) !important;
        flex-shrink: 0 !important;
    }
    /* Product row */
    .prime-mob-product {
        display: flex !important;
        align-items: center !important;
        gap: 0.625rem !important;
        background: var(--prime-secondary-30) !important;
        border: 1px solid var(--prime-border) !important;
        border-radius: 0.625rem !important;
        padding: 0.75rem !important;
        margin-bottom: 0.625rem !important;
    }
    .prime-mob-img {
        flex-shrink: 0 !important;
        width: 3.25rem !important;
        height: 3.25rem !important;
        border-radius: 0.5rem !important;
        overflow: hidden !important;
        border: 1px solid hsla(199, 89%, 48%, 0.15) !important;
        box-shadow: 0 2px 8px -2px rgba(0,0,0,0.4) !important;
    }
    .prime-mob-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        border: none !important;
    }
    .prime-mob-info {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
    }
    .prime-mob-title {
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-size: 0.8125rem !important;
        font-weight: 700 !important;
        color: var(--prime-fg) !important;
        line-height: 1.3 !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .prime-mob-info .prime-review-conn-badge {
        font-size: 0.5625rem !important;
        padding: 0.125rem 0.375rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.25rem !important;
        width: fit-content !important;
        color: var(--prime-primary) !important;
        background: hsla(199, 89%, 48%, 0.08) !important;
        border: 1px solid hsla(199, 89%, 48%, 0.2) !important;
        border-radius: 2rem !important;
        font-weight: 600 !important;
        font-family: 'Inter', system-ui, sans-serif !important;
    }
    .prime-mob-price {
        flex-shrink: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0.125rem !important;
    }
    .prime-mob-old {
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-size: 0.6875rem !important;
        color: var(--prime-muted-fg) !important;
        text-decoration: line-through !important;
        opacity: 0.5 !important;
        line-height: 1 !important;
    }
    .prime-mob-current {
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        background-image: var(--prime-gradient-text) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        line-height: 1.2 !important;
    }
    .prime-mob-save {
        font-family: 'Inter', system-ui, sans-serif !important;
        font-size: 0.5rem !important;
        font-weight: 600 !important;
        color: hsl(142, 71%, 50%) !important;
        background: hsla(142, 71%, 45%, 0.1) !important;
        border: 1px solid hsla(142, 71%, 45%, 0.2) !important;
        padding: 0.0625rem 0.25rem !important;
        border-radius: 2rem !important;
        line-height: 1.3 !important;
    }
    /* Total row */
    .prime-mob-total {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 0.5rem !important;
        border-top: 1px solid var(--prime-border) !important;
    }
    .prime-mob-total-label {
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        color: var(--prime-fg) !important;
    }
    .prime-mob-total-price {
        font-family: 'Space Grotesk', system-ui, sans-serif !important;
        font-size: 1.125rem !important;
        font-weight: 700 !important;
        background-image: var(--prime-gradient-text) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    /* ── Payment section: no side padding on mobile ── */
    body[class*="cartflows_step-template"] #payment {
        padding: 0.875rem 0 !important;
        border-radius: 0.875rem !important;
    }

    /* ── Payment method rows: comfortable for touch ── */
    body[class*="cartflows_step-template"] #payment .payment_methods li {
        padding: 0.75rem 0.625rem !important;
        border-radius: 0.625rem !important;
        margin-bottom: 0.375rem !important;
    }
    body[class*="cartflows_step-template"] #payment .payment_methods li label {
        font-size: 0.875rem !important;
        gap: 0 !important;
        flex-wrap: nowrap !important;
    }
    /* ── Payment radio: big touch-friendly circle ── */
    body[class*="cartflows_step-template"] #payment .payment_methods li input[type="radio"] {
        width: 1.375rem !important;
        height: 1.375rem !important;
        min-width: 1.375rem !important;
        min-height: 1.375rem !important;
        margin: 0 0.5rem 0 0 !important;
        border-width: 2px !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    body[class*="cartflows_step-template"] #payment .payment_methods li input[type="radio"]:checked::after {
        width: 0.5rem !important;
        height: 0.5rem !important;
    }

    /* ── Payment icons: bigger on mobile ── */
    .prime-label-icons {
        gap: 0.15rem !important;
        padding-left: 0.25rem !important;
    }
    .prime-pay-icon {
        height: 22px !important;
        border-radius: 3px !important;
    }

    /* ── Interac box: tighter ── */
    .prime-interac-box {
        padding: 0.625rem 0.75rem !important;
    }

    /* ── Order review table: compact ── */
    body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table {
        padding: 0.875rem 0.625rem !important;
        border-radius: 0.875rem !important;
    }
    body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table th,
    body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table td {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.8125rem !important;
    }
    body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total td,
    body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total th {
        font-size: 0.875rem !important;
    }
    body[class*="cartflows_step-template"] .woocommerce-checkout-review-order-table .order-total .woocommerce-Price-amount {
        font-size: 1.125rem !important;
    }

    /* ── Place order button: full width, big touch ── */
    body[class*="cartflows_step-template"] #payment .place-order {
        padding: 0 0.25rem !important;
    }
    body[class*="cartflows_step-template"] #payment #place_order,
    body[class*="cartflows_step-template"] #payment .wcf-btn-small {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
        border-radius: 0.75rem !important;
    }

    /* ── WooCommerce notices: compact ── */
    body[class*="cartflows_step-template"] .woocommerce-error,
    body[class*="cartflows_step-template"] .woocommerce-message,
    body[class*="cartflows_step-template"] .woocommerce-info {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.8125rem !important;
        border-radius: 0.5rem !important;
    }

    /* ── Thank you page mobile ── */
    body[class*="cartflows_step-template"] .wcf-thankyou-wrap,
    body[class*="cartflows_step-template"] .woocommerce-order {
        padding: 1rem 0.5rem !important;
    }
    body[class*="cartflows_step-template"] .woocommerce-thankyou-order-received {
        font-size: 1.25rem !important;
        padding: 1.25rem 1rem 1rem !important;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .prime-page-layout {
        padding: 0.5rem 0.25rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-col-1,
    body[class*="cartflows_step-template"] .wcf-col-2 {
        padding: 0.75rem 0.5rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-title {
        font-size: 0.75rem !important;
    }
    body[class*="cartflows_step-template"] .wcf-qty-row .wcf-display-price {
        font-size: 0.8125rem !important;
    }
    body[class*="cartflows_step-template"] #payment .payment_methods li {
        padding: 0.5rem 0.375rem !important;
    }
    .prime-pay-icon {
        height: 18px !important;
    }
}

/* =============================================
   24. THANK YOU PAGE
   Dark glassmorphism design for CartFlows thank you step
   ============================================= */

/* Page background */
body[class*="cartflows_step-template"] .wcf-thankyou-wrap,
body[class*="cartflows_step-template"] .woocommerce-order {
    background: none !important;
    color: var(--prime-fg) !important;
    font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif !important;
    min-height: 100vh !important;
    padding: 2rem 1.5rem !important;
    max-width: 720px !important;
    margin: 0 auto !important;
}

/* Thank you heading message */
body[class*="cartflows_step-template"] .woocommerce-thankyou-order-received,
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-thankyou-order-received {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    text-align: center !important;
    margin: 1rem 0 0 !important;
    padding: 2rem 1.5rem 1.5rem !important;
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: none !important;
}

/* Order overview list (order number, date, email, total, payment method) */
body[class*="cartflows_step-template"] .woocommerce-order ul.order_details,
body[class*="cartflows_step-template"] .woocommerce-order ul.woocommerce-thankyou-order-details {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 0.75rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem !important;
    background: transparent !important;
    border: none !important;
}

body[class*="cartflows_step-template"] .woocommerce-order ul.order_details li,
body[class*="cartflows_step-template"] .woocommerce-order ul.woocommerce-thankyou-order-details li {
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius) !important;
    padding: 1rem !important;
    text-align: center !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: var(--prime-muted-fg) !important;
    font-size: 0.8125rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    margin: 0 !important;
}

body[class*="cartflows_step-template"] .woocommerce-order ul.order_details li strong,
body[class*="cartflows_step-template"] .woocommerce-order ul.woocommerce-thankyou-order-details li strong {
    display: block !important;
    color: var(--prime-fg) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-top: 0.375rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
}

/* Section headings */
body[class*="cartflows_step-template"] .woocommerce-order h2,
body[class*="cartflows_step-template"] .woocommerce-order h2.woocommerce-order-details__title,
body[class*="cartflows_step-template"] .woocommerce-order h2.woocommerce-column__title,
body[class*="cartflows_step-template"] .woocommerce-order h2.wc-bacs-bank-details-heading,
body[class*="cartflows_step-template"] .woocommerce-order h2.woocommerce-order-downloads__title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: none !important;
    letter-spacing: -0.01em !important;
}

/* Order details title – icon + styled */
body[class*="cartflows_step-template"] .woocommerce-order h2.woocommerce-order-details__title {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.75rem !important;
    padding-bottom: 0.6rem !important;
    border-bottom: 1px solid hsla(220, 30%, 30%, 0.25) !important;
}
body[class*="cartflows_step-template"] .woocommerce-order h2.woocommerce-order-details__title svg {
    width: 16px !important;
    height: 16px !important;
}

/* ── Order details – hidden (replaced by prime-ty-order-product card) ── */
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-order-details {
    display: none !important;
}

/* Other section wrapper cards (customer details, bank, downloads) */
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details,
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-bacs-bank-details,
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-order-downloads {
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

/* ── Table base ── */
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table,
body[class*="cartflows_step-template"] .woocommerce-order table.shop_table,
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table--order-details {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
}

/* ── Table header ── */
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table thead th,
body[class*="cartflows_step-template"] .woocommerce-order table.shop_table thead th {
    background: hsla(220, 30%, 18%, 0.4) !important;
    color: var(--prime-muted-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 0.5rem 0.75rem !important;
    border: none !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table thead th:first-child {
    border-radius: var(--prime-radius) 0 0 0 !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table thead th:last-child {
    border-radius: 0 var(--prime-radius) 0 0 !important;
}

/* ── Table body rows ── */
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tbody td,
body[class*="cartflows_step-template"] .woocommerce-order table.shop_table tbody td {
    color: var(--prime-fg) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    padding: 0.6rem 0.75rem !important;
    border: none !important;
    background: transparent !important;
    vertical-align: middle !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tbody tr {
    border-bottom: 1px solid hsla(220, 30%, 30%, 0.15) !important;
    transition: background 0.2s ease !important;
}
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tbody tr:hover {
    background: hsla(220, 30%, 25%, 0.12) !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tbody tr:last-child {
    border-bottom: none !important;
}
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Product name cell – flex layout for thumbnail alignment */
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table--order-details tbody td.product-name {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
}

/* ── Table footer ── */
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tfoot th,
body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tfoot td,
body[class*="cartflows_step-template"] .woocommerce-order table.shop_table tfoot th,
body[class*="cartflows_step-template"] .woocommerce-order table.shop_table tfoot td {
    color: var(--prime-muted-fg) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.7rem !important;
    padding: 0.45rem 0.75rem !important;
    border: none !important;
    background: transparent !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table.woocommerce-table tfoot tr {
    border-top: 1px solid hsla(220, 30%, 30%, 0.1) !important;
}

/* Total row emphasis */
body[class*="cartflows_step-template"] .woocommerce-order table tfoot tr:last-child th,
body[class*="cartflows_step-template"] .woocommerce-order table tfoot tr:last-child td {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: var(--prime-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    padding-top: 0.6rem !important;
    border-top: 1px solid hsla(220, 30%, 30%, 0.25) !important;
}
body[class*="cartflows_step-template"] .woocommerce-order table tfoot tr:last-child td .woocommerce-Price-amount {
    color: var(--prime-primary) !important;
    font-size: 0.85rem !important;
}

/* Customer details columns */
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
}

body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details .woocommerce-column {
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
}

body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details address {
    color: var(--prime-muted-fg) !important;
    font-size: 0.875rem !important;
    line-height: 1.7 !important;
    font-style: normal !important;
    padding: 1rem !important;
    background: var(--prime-secondary-30) !important;
    border-radius: var(--prime-radius) !important;
    border: none !important;
}

body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details address p {
    color: var(--prime-muted-fg) !important;
    margin: 0 0 0.25rem !important;
}

/* Links */
body[class*="cartflows_step-template"] .woocommerce-order a {
    color: var(--prime-primary) !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
}

body[class*="cartflows_step-template"] .woocommerce-order a:hover {
    opacity: 0.8 !important;
}

/* Price amounts */
body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-Price-amount {
    color: var(--prime-fg) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-weight: 600 !important;
}

/* Product name in table */
body[class*="cartflows_step-template"] .woocommerce-order table .product-name {
    font-weight: 500 !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table .product-name .wc-item-meta {
    list-style: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 0 !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table .product-name .wc-item-meta li {
    color: var(--prime-muted-fg) !important;
    font-size: 0.8125rem !important;
    margin: 0 !important;
}

body[class*="cartflows_step-template"] .woocommerce-order table .product-name .wc-item-meta li p,
body[class*="cartflows_step-template"] .woocommerce-order table .product-name .wc-item-meta li strong {
    color: var(--prime-muted-fg) !important;
}

/* Success icon in thank you message */
.prime-ty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: hsla(142, 71%, 45%, 0.1);
    border: none;
    color: var(--prime-success);
    animation: prime-ty-pop 0.5s ease-out;
}

@keyframes prime-ty-pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* =============================================
   24b. THANK YOU – CARD PAYMENT (vanguard-payment)
   Green success theme
   ============================================= */

.prime-ty-icon-card {
    background: hsla(142, 71%, 45%, 0.1) !important;
    border: none !important;
    color: var(--prime-success) !important;
}

.prime-ty-method-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.625rem !important;
    margin-top: 1rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 999px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
}

.prime-ty-method-card {
    background: hsla(142, 71%, 45%, 0.08) !important;
    border: none !important;
    color: hsl(142, 71%, 65%) !important;
}

.prime-ty-method-badge .prime-ty-method-icons {
    display: flex !important;
    gap: 0.375rem !important;
}

.prime-ty-method-badge .prime-ty-method-icons img {
    width: 32px !important;
    height: 22px !important;
    border-radius: 3px !important;
    object-fit: contain !important;
}

body.prime-ty-card .prime-header-right {
    color: hsl(142, 71%, 65%) !important;
}

/* =============================================
   24c. THANK YOU – CLICK TO PAY (COD)
   Amber/orange pending theme
   ============================================= */

/* CTP Hero – professional centered design */
.prime-ctp-hero {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    overflow: hidden !important;
}

/* Subtle amber glow behind icon */
.prime-ctp-hero-glow {
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 180px !important;
    height: 180px !important;
    background: radial-gradient(circle, hsla(38, 92%, 50%, 0.08) 0%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Icon container with rings */
.prime-ctp-hero-icon {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.25rem !important;
    z-index: 1 !important;
}

.prime-ctp-hero-ring {
    position: absolute !important;
    inset: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid hsla(38, 92%, 55%, 0.2) !important;
    animation: prime-ctp-ring 3s ease-in-out infinite !important;
}

.prime-ctp-hero-ring-2 {
    inset: -10px !important;
    border-color: hsla(38, 92%, 55%, 0.08) !important;
    animation-delay: 1s !important;
}

@keyframes prime-ctp-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.4; }
}

.prime-ctp-hero-icon-inner {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, hsla(38, 92%, 50%, 0.15), hsla(38, 92%, 60%, 0.08)) !important;
    color: hsl(38, 92%, 60%) !important;
    box-shadow: 0 0 24px hsla(38, 92%, 50%, 0.1), inset 0 0 12px hsla(38, 92%, 50%, 0.05) !important;
}

/* Content text block */
.prime-ctp-hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.375rem !important;
    z-index: 1 !important;
    margin-bottom: 1.25rem !important;
}

/* Status badge with live dot */
.prime-ctp-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.3rem 0.875rem !important;
    border-radius: 999px !important;
    background: hsla(38, 92%, 50%, 0.1) !important;
    border: 1px solid hsla(38, 92%, 50%, 0.15) !important;
    color: hsl(38, 92%, 62%) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.375rem !important;
}

.prime-ctp-hero-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: hsl(38, 92%, 55%) !important;
    animation: prime-ctp-dot-blink 1.5s ease-in-out infinite !important;
    box-shadow: 0 0 6px hsla(38, 92%, 55%, 0.6) !important;
}

@keyframes prime-ctp-dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.prime-ctp-hero-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.625rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.prime-ctp-hero-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-muted-fg) !important;
    line-height: 1.65 !important;
    margin: 0.25rem 0 0 !important;
    max-width: 380px !important;
}

/* Bottom meta strip */
.prime-ctp-hero-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 0.625rem 1rem !important;
    border-radius: var(--prime-radius) !important;
    background: hsla(38, 92%, 50%, 0.04) !important;
    border: 1px solid hsla(38, 92%, 50%, 0.08) !important;
    width: 100% !important;
    z-index: 1 !important;
}

.prime-ctp-hero-meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: hsla(0, 0%, 100%, 0.5) !important;
}

.prime-ctp-hero-meta-item svg {
    flex-shrink: 0 !important;
    color: hsl(38, 92%, 55%) !important;
    opacity: 0.7 !important;
}

.prime-ctp-hero-meta-item strong {
    color: hsl(38, 92%, 65%) !important;
    font-weight: 600 !important;
}

.prime-ctp-hero-meta-sep {
    width: 1px !important;
    height: 16px !important;
    background: hsla(0, 0%, 100%, 0.1) !important;
}

body.prime-ty-ctp .prime-header-right {
    color: hsl(38, 92%, 60%) !important;
}

body.prime-ty-ctp[class*="cartflows_step-template"] .woocommerce-order,
body.prime-ty-ctp[class*="cartflows_step-template"] .wcf-thankyou-wrap {
    padding: 0 !important;
}

/* Hide WooCommerce default order overview list on CTP & card pages */
body.prime-ty-ctp .woocommerce-order ul.order_details,
body.prime-ty-ctp .woocommerce-order ul.woocommerce-thankyou-order-details,
body.prime-ty-card .woocommerce-order ul.order_details,
body.prime-ty-card .woocommerce-order ul.woocommerce-thankyou-order-details {
    display: none !important;
}

/* Hide support notice on card pages */
body.prime-ty-card .prime-ty-support-notice {
    display: none !important;
}

/* Card thank you – success-themed welcome card */
body.prime-ty-card .prime-ty-welcome {
    background: linear-gradient(135deg, hsla(152, 60%, 40%, 0.1), hsla(152, 60%, 50%, 0.04)) !important;
}

body.prime-ty-card .prime-ty-welcome::before {
    display: none !important;
}

body.prime-ty-card .prime-ty-welcome-icon {
    background: hsla(152, 60%, 45%, 0.15) !important;
    color: hsl(152, 60%, 55%) !important;
}

body.prime-ty-card .prime-ty-welcome-greeting {
    color: hsl(152, 60%, 65%) !important;
}

body.prime-ty-card .prime-ty-welcome p {
    color: hsla(152, 30%, 85%, 0.85) !important;
}
body.prime-ty-ctp .woocommerce-thankyou-order-received ~ p {
    display: none !important;
}
body.prime-ty-ctp .woocommerce-order > p {
    display: none !important;
}

.prime-ty-ctp-card {
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.5rem !important;
    margin: 1rem 0 !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.prime-ty-ctp-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.875rem !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 1rem !important;
    border-bottom: none !important;
}

.prime-ty-ctp-header-icon {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(38, 92%, 50%, 0.1) !important;
    border-radius: 50% !important;
    color: hsl(38, 92%, 60%) !important;
}

.prime-ty-ctp-header-text h3 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.25rem !important;
}

.prime-ty-ctp-header-text p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-muted-fg) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.prime-ty-ctp-methods {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
}

.prime-ty-ctp-method {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.875rem !important;
    background: var(--prime-secondary-30) !important;
    border: none !important;
    border-radius: var(--prime-radius) !important;
    transition: background 0.2s ease !important;
}

.prime-ty-ctp-method:hover {
    background: hsla(38, 92%, 50%, 0.05) !important;
}

.prime-ty-ctp-method-icon {
    display: flex !important;
    gap: 0.25rem !important;
    flex-shrink: 0 !important;
}

.prime-ty-ctp-method-icon img {
    width: 36px !important;
    height: 24px !important;
    border-radius: 3px !important;
    object-fit: contain !important;
}

.prime-ty-ctp-method-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.125rem !important;
}

.prime-ty-ctp-method-name {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-ty-ctp-method-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
}

/* CTP section titles */
.prime-ty-ctp-section-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.prime-ty-ctp-section-title svg {
    color: hsl(38, 92%, 60%) !important;
}

/* CTP Steps (1-2-3) */
.prime-ty-ctp-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.prime-ty-ctp-step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 0.25rem 0 !important;
}

.prime-ty-ctp-step-num {
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(38, 92%, 50%, 0.12) !important;
    color: hsl(38, 92%, 60%) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
}

.prime-ty-ctp-step-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
    padding-top: 0.25rem !important;
}

.prime-ty-ctp-step-title {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-ty-ctp-step-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    line-height: 1.5 !important;
}

.prime-ty-ctp-step-line {
    width: 2px !important;
    height: 20px !important;
    background: hsla(38, 92%, 50%, 0.2) !important;
    margin-left: 17px !important;
}

/* CTP Trust badges row */
.prime-ty-ctp-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    margin: 1rem 0 !important;
}

.prime-ty-ctp-trust-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 1rem 0.75rem !important;
    background: var(--prime-card-60) !important;
    border-radius: var(--prime-radius-xl) !important;
    text-align: center !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.prime-ty-ctp-trust-icon {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(38, 92%, 50%, 0.1) !important;
    border-radius: 50% !important;
    color: hsl(38, 92%, 60%) !important;
}

.prime-ty-ctp-trust-title {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-ty-ctp-trust-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
}

/* =============================================
   24ci. THANK YOU – INTERAC E-TRANSFER
   Gold/yellow Interac brand theme (hsl 45)
   ============================================= */

/* ── Interac body scoping ── */
body.prime-ty-interac .prime-header-right {
    color: hsl(45, 98%, 65%) !important;
}

body.prime-ty-interac .woocommerce-order ul.order_details,
body.prime-ty-interac .woocommerce-order ul.woocommerce-thankyou-order-details {
    display: none !important;
}

/* ── Interac Compact Header ── */
body.prime-ty-interac .woocommerce-thankyou-order-received {
    padding: 1rem 1.25rem !important;
    margin: 0.5rem 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.prime-interac-hero-compact {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    text-align: left !important;
}

.prime-interac-hero-compact-icon {
    flex-shrink: 0 !important;
    width: 80px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(45, 98%, 58%, 0.1) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.15) !important;
    border-radius: 12px !important;
    padding: 10px !important;
}

.prime-interac-hero-compact-icon img {
    border-radius: 4px !important;
}

.prime-interac-hero-compact-body {
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-interac-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 500 !important;
    color: hsl(45, 98%, 62%) !important;
    background: hsla(45, 98%, 58%, 0.08) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.12) !important;
    border-radius: 999px !important;
    padding: 0.2rem 0.625rem !important;
    margin-bottom: 0.375rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.prime-interac-hero-dot {
    width: 5px !important;
    height: 5px !important;
    background: hsl(45, 98%, 58%) !important;
    border-radius: 50% !important;
    animation: prime-interac-dot-blink 1.5s ease-in-out infinite !important;
}

@keyframes prime-interac-dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.prime-interac-hero-compact-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.2rem !important;
    letter-spacing: -0.01em !important;
}

.prime-interac-hero-compact-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    color: var(--prime-muted-fg) !important;
    margin: 0 !important;
}

/* ── Interac Cards ── */
.prime-ty-interac-card {
    background: var(--prime-card-60) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.1) !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.5rem !important;
    margin: 0.75rem 0 !important;
}

.prime-ty-interac-section-title {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    color: hsl(45, 98%, 68%) !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}

.prime-ty-interac-section-title svg {
    color: hsl(45, 98%, 58%) !important;
    flex-shrink: 0 !important;
}

/* ── Transfer Details ── */
.prime-ty-interac-details {
    display: flex !important;
    flex-direction: column !important;
}

.prime-ty-interac-detail {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.875rem 0 !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}

.prime-ty-interac-detail:last-child {
    border-bottom: none !important;
}

.prime-ty-interac-detail-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.prime-ty-interac-detail-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-ty-interac-detail-highlight {
    background: hsla(45, 98%, 58%, 0.04) !important;
    border-radius: 0.5rem !important;
    padding: 0.875rem 0.75rem !important;
    margin: 0.25rem -0.75rem !important;
    border-bottom: none !important;
}

.prime-ty-interac-amount {
    color: hsl(45, 98%, 65%) !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
}

.prime-ty-interac-copyable {
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    transition: color 0.2s ease !important;
}

.prime-ty-interac-copyable svg {
    color: var(--prime-muted-fg) !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s ease !important;
}

.prime-ty-interac-copyable:hover svg {
    opacity: 1 !important;
    color: hsl(45, 98%, 65%) !important;
}

.prime-ty-interac-copyable.prime-ty-copied {
    color: hsl(142, 71%, 65%) !important;
}

.prime-ty-interac-copyable.prime-ty-copied svg {
    color: hsl(142, 71%, 65%) !important;
    opacity: 1 !important;
}

/* ── Interac Steps ── */
.prime-ty-interac-steps {
    display: flex !important;
    flex-direction: column !important;
}

.prime-ty-interac-step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.prime-ty-interac-step-num {
    flex-shrink: 0 !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, hsl(45, 98%, 50%), hsl(45, 98%, 40%)) !important;
    color: #1a1a1a !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
}

.prime-ty-interac-step-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    padding-top: 0.25rem !important;
}

.prime-ty-interac-step-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-ty-interac-step-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    color: var(--prime-muted-fg) !important;
}

.prime-ty-interac-step-line {
    width: 2px !important;
    height: 20px !important;
    background: hsla(45, 98%, 58%, 0.15) !important;
    margin-left: 17px !important;
}

/* ── Interac Floating FAB + Slide-Up Drawer ── */

/* Overlay */
.prime-interac-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.prime-interac-overlay.prime-interac-overlay-visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Slide-up Drawer */
.prime-interac-drawer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-height: 75vh !important;
    background: hsl(230, 15%, 10%) !important;
    border-top: 1px solid hsla(45, 98%, 58%, 0.12) !important;
    border-radius: 16px 16px 0 0 !important;
    z-index: 99999 !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5) !important;
}

.prime-interac-drawer.prime-interac-drawer-open {
    transform: translateY(0) !important;
}

.prime-interac-drawer-handle {
    width: 32px !important;
    height: 3px !important;
    background: hsla(0, 0%, 100%, 0.15) !important;
    border-radius: 2px !important;
    margin: 8px auto 0 !important;
    cursor: grab !important;
}

.prime-interac-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06) !important;
    position: sticky !important;
    top: 0 !important;
    background: hsl(230, 15%, 10%) !important;
    z-index: 1 !important;
}

.prime-interac-drawer-title {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-interac-drawer-title img {
    border-radius: 3px !important;
}

.prime-interac-drawer-close {
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(0, 0%, 100%, 0.05) !important;
    border: none !important;
    border-radius: 8px !important;
    color: var(--prime-muted-fg) !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    padding: 0 !important;
}

.prime-interac-drawer-close:hover {
    background: hsla(0, 0%, 100%, 0.1) !important;
    color: var(--prime-fg) !important;
}

.prime-interac-drawer-body {
    padding: 0 1.25rem 1.5rem !important;
}

/* Drawer – Amount Row */
.prime-interac-drawer-amount-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}

.prime-interac-drawer-amount-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-weight: 500 !important;
}

.prime-interac-drawer-amount-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: hsl(45, 98%, 65%) !important;
}

/* Drawer – Info Rows */
.prime-interac-drawer-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    padding: 0.875rem 0 !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.04) !important;
}

.prime-interac-drawer-row:last-of-type {
    border-bottom: none !important;
}

.prime-interac-drawer-row-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
    min-width: 0 !important;
    flex: 1 !important;
}

.prime-interac-drawer-row-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-weight: 500 !important;
}

.prime-interac-drawer-row-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    word-break: break-all !important;
}

/* Drawer – Copy Button */
.prime-interac-drawer-copy {
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.375rem 0.625rem !important;
    background: hsla(0, 0%, 100%, 0.05) !important;
    border: 1px solid hsla(0, 0%, 100%, 0.08) !important;
    border-radius: 6px !important;
    color: var(--prime-muted-fg) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
}

.prime-interac-drawer-copy:hover {
    background: hsla(0, 0%, 100%, 0.08) !important;
    color: var(--prime-fg) !important;
}

.prime-interac-drawer-copy.prime-ty-copied {
    background: hsla(142, 71%, 45%, 0.12) !important;
    border-color: hsla(142, 71%, 45%, 0.2) !important;
    color: hsl(142, 71%, 65%) !important;
}

/* Drawer – Horizontal Steps */
.prime-interac-drawer-steps {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 1rem 0 !important;
    margin-top: 0.5rem !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}

.prime-interac-drawer-step {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    white-space: nowrap !important;
}

.prime-interac-drawer-step-num {
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(45, 98%, 58%, 0.12) !important;
    color: hsl(45, 98%, 65%) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
}

.prime-interac-drawer-step-arrow {
    color: hsla(0, 0%, 100%, 0.15) !important;
    flex-shrink: 0 !important;
}

/* Drawer – Bottom Note */
.prime-interac-drawer-note {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
    background: hsla(45, 98%, 58%, 0.04) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.08) !important;
    border-radius: 8px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: hsla(45, 60%, 80%, 0.7) !important;
    line-height: 1.4 !important;
}

.prime-interac-drawer-note svg {
    color: hsl(45, 98%, 58%) !important;
    flex-shrink: 0 !important;
}

/* ── Drawer – Proof Photo Upload ── */
.prime-proof-upload-section {
    margin: 0.75rem 0 !important;
    padding: 1rem !important;
    background: linear-gradient(135deg, hsla(210, 80%, 56%, 0.06), hsla(210, 80%, 56%, 0.02)) !important;
    border: 1px solid hsla(210, 80%, 56%, 0.15) !important;
    border-radius: 0.875rem !important;
}

.prime-proof-upload-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.625rem !important;
    flex-wrap: wrap !important;
}

.prime-proof-upload-label svg {
    color: hsl(210, 80%, 65%) !important;
    flex-shrink: 0 !important;
}

.prime-proof-upload-label > span:first-of-type {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-proof-upload-hint {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.5625rem !important;
    color: var(--prime-muted-fg) !important;
    width: 100% !important;
    padding-left: 1.5rem !important;
}

/* Choose Photo Button */
.prime-proof-choose-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.875rem !important;
    border: 2px dashed hsla(210, 80%, 56%, 0.3) !important;
    border-radius: 10px !important;
    background: hsla(210, 80%, 56%, 0.05) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: hsl(210, 80%, 70%) !important;
}

.prime-proof-choose-btn svg {
    color: hsl(210, 80%, 65%) !important;
    flex-shrink: 0 !important;
}

.prime-proof-choose-btn:hover {
    border-color: hsla(210, 80%, 56%, 0.5) !important;
    background: hsla(210, 80%, 56%, 0.1) !important;
}

.prime-proof-choose-btn:active {
    transform: scale(0.98) !important;
}

.prime-proof-choose-btn:disabled,
.prime-proof-choose-btn-disabled {
    opacity: 0.35 !important;
    cursor: default !important;
    border-color: hsla(0, 0%, 100%, 0.06) !important;
    color: var(--prime-muted-fg) !important;
}

.prime-proof-choose-btn:disabled:hover,
.prime-proof-choose-btn-disabled:hover {
    background: hsla(210, 80%, 56%, 0.05) !important;
    border-color: hsla(0, 0%, 100%, 0.06) !important;
}

/* Preview area — shown after choosing a file, before submitting */
.prime-proof-preview {
    margin-top: 0.625rem !important;
    padding: 0.75rem !important;
    border: 1px solid hsla(210, 80%, 56%, 0.2) !important;
    border-radius: 10px !important;
    background: hsla(210, 80%, 56%, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.625rem !important;
}

.prime-proof-preview-info {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.prime-proof-preview-file-details {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-proof-preview-remove {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    border: none !important;
    background: hsla(0, 80%, 50%, 0.85) !important;
    color: #fff !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s ease !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.prime-proof-preview-remove:hover {
    background: hsl(0, 80%, 45%) !important;
}

.prime-proof-preview-name {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: hsla(0, 0%, 100%, 0.7) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-proof-preview-size {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    color: hsla(0, 0%, 100%, 0.4) !important;
    flex-shrink: 0 !important;
}

.prime-proof-submit-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.75rem !important;
    border: none !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, hsl(210, 80%, 52%), hsl(210, 90%, 42%)) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}

.prime-proof-submit-btn svg {
    color: #fff !important;
    flex-shrink: 0 !important;
}

.prime-proof-submit-btn:hover {
    background: linear-gradient(135deg, hsl(210, 80%, 58%), hsl(210, 90%, 48%)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px hsla(210, 80%, 50%, 0.35) !important;
}

.prime-proof-submit-btn:active {
    transform: scale(0.98) translateY(0) !important;
}

.prime-proof-progress {
    margin-top: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
}

.prime-proof-progress-bar {
    flex: 1 !important;
    height: 3px !important;
    background: hsla(0, 0%, 100%, 0.08) !important;
    border-radius: 2px !important;
    overflow: hidden !important;
}

.prime-proof-progress-fill {
    height: 100% !important;
    width: 0% !important;
    background: linear-gradient(90deg, hsl(210, 80%, 52%), hsl(210, 90%, 42%)) !important;
    border-radius: 2px !important;
    transition: width 0.15s ease !important;
}

.prime-proof-progress-text {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    color: var(--prime-muted-fg) !important;
    flex-shrink: 0 !important;
    min-width: 55px !important;
    text-align: right !important;
}

.prime-proof-thumbs {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 0.625rem !important;
    flex-wrap: wrap !important;
}

.prime-proof-thumbs:empty {
    display: none !important;
}

.prime-proof-thumb {
    position: relative !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid hsla(210, 80%, 56%, 0.25) !important;
    flex-shrink: 0 !important;
}

.prime-proof-thumb-new {
    animation: prime-proof-fade-in 0.3s ease !important;
}

@keyframes prime-proof-fade-in {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.prime-proof-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.prime-proof-thumb-remove {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    width: 18px !important;
    height: 18px !important;
    background: hsla(0, 80%, 50%, 0.85) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.15s ease !important;
}

.prime-proof-thumb:hover .prime-proof-thumb-remove {
    opacity: 1 !important;
}

.prime-proof-thumb-check {
    position: absolute !important;
    bottom: 2px !important;
    right: 2px !important;
    width: 18px !important;
    height: 18px !important;
    background: hsl(142, 71%, 45%) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Small inline badge for "proof already submitted" (page reload) */
.prime-pp-proof-badge {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.625rem 0.875rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.12), hsla(142, 71%, 45%, 0.04)) !important;
    border: 1px solid hsla(142, 71%, 45%, 0.22) !important;
    margin: 0.75rem 0 !important;
}

.prime-pp-proof-badge svg {
    color: hsl(142, 71%, 55%) !important;
    flex-shrink: 0 !important;
}

.prime-pp-proof-badge span {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: hsl(142, 71%, 65%) !important;
}

/* Success popup after proof submission (active upload only) */
.prime-proof-success-popup {
    margin-top: 0.75rem !important;
    padding: 1.25rem !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.12), hsla(142, 71%, 45%, 0.04)) !important;
    border: 1px solid hsla(142, 71%, 45%, 0.25) !important;
    text-align: center !important;
}

/* When success popup is inside the PayPal drawer — full centered layout */
/* Only apply flex when popup is visible (not when hidden via inline style) */
.prime-paypal-drawer-body > .prime-proof-success-popup.prime-pp-popup-visible {
    margin: 0 !important;
    padding: 2.5rem 1.5rem !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 200px !important;
}

.prime-paypal-drawer-body > .prime-pp-popup-visible .prime-proof-success-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.18), hsla(142, 71%, 45%, 0.06)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
}

.prime-paypal-drawer-body > .prime-proof-success-popup .prime-proof-success-icon svg {
    width: 32px !important;
    height: 32px !important;
}

.prime-paypal-drawer-body > .prime-pp-popup-visible .prime-proof-success-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
}

.prime-paypal-drawer-body > .prime-pp-popup-visible .prime-proof-success-msg {
    font-size: 0.875rem !important;
    max-width: 320px !important;
    margin-bottom: 0.75rem !important;
}

.prime-paypal-drawer-body > .prime-pp-popup-visible .prime-proof-success-contact {
    margin-bottom: 1rem !important;
}

/* When success popup is inside the Interac drawer — only show when .prime-pp-popup-visible is added via JS */
.prime-interac-drawer-body > .prime-proof-success-popup.prime-pp-popup-visible {
    margin: 0 !important;
    padding: 2.5rem 1.5rem !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 280px !important;
}

.prime-interac-drawer-body > .prime-proof-success-popup .prime-proof-success-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.18), hsla(142, 71%, 45%, 0.06)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
}

.prime-interac-drawer-body > .prime-proof-success-popup .prime-proof-success-icon svg {
    width: 32px !important;
    height: 32px !important;
}

.prime-interac-drawer-body > .prime-proof-success-popup .prime-proof-success-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
}

.prime-interac-drawer-body > .prime-proof-success-popup .prime-proof-success-msg {
    font-size: 0.875rem !important;
    max-width: 320px !important;
    margin-bottom: 0.75rem !important;
}

.prime-interac-drawer-body > .prime-proof-success-popup .prime-proof-success-contact {
    margin-bottom: 1rem !important;
}

.prime-proof-success-icon {
    color: hsl(142, 71%, 50%) !important;
    margin-bottom: 0.5rem !important;
}

.prime-proof-success-icon svg {
    display: inline-block !important;
}

.prime-proof-success-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: hsl(142, 71%, 60%) !important;
    margin-bottom: 0.375rem !important;
}

.prime-proof-success-msg {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 400 !important;
    color: hsla(0, 0%, 100%, 0.7) !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
}

.prime-proof-success-msg strong {
    color: hsl(210, 80%, 70%) !important;
    font-weight: 600 !important;
}

.prime-proof-success-contact {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: hsla(0, 0%, 100%, 0.45) !important;
    margin-bottom: 0.75rem !important;
}

.prime-proof-success-contact a {
    color: hsl(210, 80%, 70%) !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

.prime-proof-success-contact a:hover {
    color: hsl(210, 80%, 80%) !important;
}

.prime-proof-success-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem 1.5rem !important;
    border: 1px solid hsla(142, 71%, 45%, 0.35) !important;
    border-radius: 8px !important;
    background: hsla(142, 71%, 45%, 0.1) !important;
    color: hsl(142, 71%, 60%) !important;
    cursor: pointer !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.prime-proof-success-close:hover {
    background: hsla(142, 71%, 45%, 0.18) !important;
    border-color: hsla(142, 71%, 45%, 0.5) !important;
}

@media (max-width: 600px) {
    .prime-proof-choose-btn {
        padding: 0.75rem !important;
        font-size: 0.75rem !important;
    }
    .prime-proof-submit-btn {
        padding: 0.625rem !important;
        font-size: 0.75rem !important;
    }
    .prime-proof-thumb {
        width: 48px !important;
        height: 48px !important;
    }
}

/* ══════════════════════════════════════════════════════════
   PayPal Proof Upload — Dropzone, Photo Preview & Submit
   ══════════════════════════════════════════════════════════ */

/* Upload section wrapper (inside PayPal drawer) */
#ppProofUploadSection {
    margin: 0.75rem 0 !important;
    padding: 0 !important;
}

/* ── Dropzone (initial state — "tap to select") ── */
.prime-pp-dropzone {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 1.75rem 1rem !important;
    border: 2px dashed hsla(45, 98%, 58%, 0.30) !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, hsla(45, 98%, 58%, 0.06), hsla(45, 98%, 58%, 0.02)) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.prime-pp-dropzone::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at 50% 40%, hsla(45, 98%, 58%, 0.08), transparent 70%) !important;
    pointer-events: none !important;
}

.prime-pp-dropzone:hover {
    border-color: hsla(45, 98%, 58%, 0.50) !important;
    background: linear-gradient(135deg, hsla(45, 98%, 58%, 0.10), hsla(45, 98%, 58%, 0.04)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px hsla(45, 98%, 50%, 0.12) !important;
}

.prime-pp-dropzone:active {
    transform: scale(0.98) !important;
}

.prime-pp-dropzone-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, hsla(45, 98%, 58%, 0.15), hsla(45, 98%, 58%, 0.06)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.25rem !important;
    color: hsl(45, 98%, 58%) !important;
    transition: all 0.25s ease !important;
}

.prime-pp-dropzone:hover .prime-pp-dropzone-icon {
    background: linear-gradient(135deg, hsla(45, 98%, 58%, 0.22), hsla(45, 98%, 58%, 0.10)) !important;
    transform: scale(1.05) !important;
}

.prime-pp-dropzone-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    letter-spacing: 0.01em !important;
}

.prime-pp-dropzone-hint {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: hsla(0, 0%, 100%, 0.50) !important;
    line-height: 1.4 !important;
}

.prime-pp-dropzone-formats {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    color: hsla(0, 0%, 100%, 0.30) !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    margin-top: 0.125rem !important;
}

/* ── Photo Preview Card (shown after selecting a photo) ── */
.prime-pp-preview-card {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
    padding: 0.875rem !important;
    border: 1px solid hsla(210, 80%, 56%, 0.20) !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, hsla(210, 80%, 56%, 0.06), hsla(210, 80%, 56%, 0.02)) !important;
    margin-bottom: 0.75rem !important;
    animation: prime-pp-preview-slide-in 0.35s ease !important;
}

@keyframes prime-pp-preview-slide-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.prime-pp-preview-img-wrap {
    position: relative !important;
    width: 72px !important;
    height: 72px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid hsla(210, 80%, 56%, 0.25) !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px hsla(210, 80%, 40%, 0.20) !important;
}

.prime-pp-preview-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.prime-pp-preview-remove {
    position: absolute !important;
    top: -1px !important;
    right: -1px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 0 8px 0 8px !important;
    border: none !important;
    background: hsla(0, 75%, 50%, 0.90) !important;
    color: #fff !important;
    font-size: 0.875rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
}

.prime-pp-preview-card:hover .prime-pp-preview-remove,
.prime-pp-preview-img-wrap:hover .prime-pp-preview-remove {
    opacity: 1 !important;
}

.prime-pp-preview-remove:hover {
    background: hsl(0, 80%, 42%) !important;
}

.prime-pp-preview-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-pp-preview-name {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: hsla(0, 0%, 100%, 0.85) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.prime-pp-preview-size {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    color: hsla(0, 0%, 100%, 0.40) !important;
}

/* ── "Photo ready — click to submit" banner ── */
.prime-pp-preview-ready {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.625rem 0.875rem !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, hsla(142, 71%, 45%, 0.12), hsla(142, 71%, 45%, 0.04)) !important;
    border: 1px solid hsla(142, 71%, 45%, 0.22) !important;
    margin-bottom: 0.75rem !important;
    animation: prime-pp-ready-pulse 2s ease-in-out infinite !important;
}

@keyframes prime-pp-ready-pulse {
    0%, 100% { border-color: hsla(142, 71%, 45%, 0.22); box-shadow: 0 0 0 0 hsla(142, 71%, 45%, 0); }
    50% { border-color: hsla(142, 71%, 45%, 0.40); box-shadow: 0 0 12px hsla(142, 71%, 45%, 0.10); }
}

.prime-pp-preview-ready svg {
    color: hsl(142, 71%, 55%) !important;
    flex-shrink: 0 !important;
}

.prime-pp-preview-ready span {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: hsl(142, 71%, 65%) !important;
    line-height: 1.4 !important;
}

/* ── Mobile adjustments ── */
@media (max-width: 600px) {
    .prime-pp-dropzone {
        padding: 1.25rem 0.75rem !important;
    }
    .prime-pp-dropzone-icon {
        width: 44px !important;
        height: 44px !important;
    }
    .prime-pp-dropzone-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    .prime-pp-dropzone-title {
        font-size: 0.8125rem !important;
    }
    .prime-pp-preview-img-wrap {
        width: 60px !important;
        height: 60px !important;
    }
    .prime-pp-preview-remove {
        opacity: 1 !important;
    }
}

/* FAB – Fixed Bottom Bar */
.prime-interac-fab {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    background: hsla(230, 15%, 8%, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06) !important;
    z-index: 99997 !important;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3) !important;
    gap: 0.75rem !important;
}

.prime-interac-fab-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.1rem !important;
    cursor: pointer !important;
}

.prime-interac-fab-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

.prime-interac-fab-amount {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: hsl(45, 98%, 65%) !important;
}

.prime-interac-fab-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.625rem 1.25rem !important;
    background: linear-gradient(135deg, hsl(45, 98%, 52%), hsl(40, 96%, 46%)) !important;
    color: #1a1a1a !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 10px hsla(45, 98%, 50%, 0.2) !important;
}

.prime-interac-fab-btn:hover {
    box-shadow: 0 4px 16px hsla(45, 98%, 50%, 0.3) !important;
}

.prime-interac-fab-btn:active {
    transform: scale(0.98) !important;
}

/* Add bottom padding to body so content doesn't hide behind FAB */
body.prime-ty-interac {
    padding-bottom: 72px !important;
}

/* ── Interac Mobile ── */
@media (max-width: 600px) {
    .prime-interac-hero-compact {
        gap: 0.75rem !important;
    }

    .prime-interac-hero-compact-icon {
        width: 42px !important;
        height: 42px !important;
    }

    .prime-interac-hero-compact-title {
        font-size: 0.9375rem !important;
    }

    .prime-interac-hero-compact-desc {
        font-size: 0.6875rem !important;
    }

    .prime-interac-fab {
        padding: 0.625rem 1rem !important;
    }

    .prime-interac-fab-amount {
        font-size: 1rem !important;
    }

    .prime-interac-fab-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }

    .prime-interac-drawer {
        max-height: 85vh !important;
        border-radius: 14px 14px 0 0 !important;
    }

    .prime-interac-drawer-body {
        padding: 0 1rem 1.5rem !important;
    }

    .prime-interac-drawer-steps {
        gap: 0.25rem !important;
    }

    .prime-interac-drawer-step {
        font-size: 0.6rem !important;
    }

    .prime-interac-drawer-step-num {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.5625rem !important;
    }

    .prime-interac-drawer-step-arrow {
        width: 12px !important;
        height: 12px !important;
    }
}

/* =============================================
   PAYPAL – Hero, Drawer, FAB (blue theme)
   ============================================= */
body.prime-ty-paypal .woocommerce-order ul.order_details,
body.prime-ty-paypal .woocommerce-order ul.woocommerce-thankyou-order-details,
body.prime-ty-paypal .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    display: none !important;
}

body.prime-ty-paypal a:not(.prime-back-btn):not(.wcf-quick-view-close-btn) {
    color: hsl(0, 0%, 100%) !important;
    text-decoration: none !important;
}

body.prime-ty-paypal .woocommerce-thankyou-order-received {
    padding: 1rem 1.25rem !important;
    margin-bottom: 0.75rem !important;
    background: linear-gradient(135deg, hsla(213, 100%, 26%, 0.15), hsla(213, 100%, 36%, 0.06)) !important;
    border: 1px solid hsla(213, 100%, 50%, 0.15) !important;
    border-radius: 14px !important;
}

.prime-paypal-hero-compact {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
}

.prime-paypal-hero-compact-icon {
    flex-shrink: 0 !important;
    width: 80px !important;
    height: 64px !important;
    border-radius: 12px !important;
    background: hsla(213, 100%, 36%, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 10px !important;
}

.prime-paypal-hero-compact-icon img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.prime-paypal-hero-compact-body {
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-paypal-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    color: hsl(213, 100%, 65%) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 0.25rem !important;
}

.prime-paypal-hero-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: hsl(213, 100%, 55%) !important;
    animation: prime-pulse 1.5s ease-in-out infinite !important;
}

.prime-paypal-hero-compact-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.125rem !important;
    line-height: 1.3 !important;
}

.prime-paypal-hero-compact-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* PayPal Guide Card */
.prime-pp-guide {
    background: linear-gradient(135deg, hsla(45, 98%, 58%, 0.06), hsla(45, 98%, 58%, 0.02)) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.15) !important;
    border-radius: 1rem !important;
    padding: 1.25rem !important;
    margin-top: 1rem !important;
}

.prime-pp-guide-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    color: hsl(45, 98%, 58%) !important;
}

.prime-pp-guide-header svg {
    stroke: hsl(45, 98%, 58%) !important;
    flex-shrink: 0 !important;
}

.prime-pp-guide-intro {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-subtle-fg) !important;
    margin: 0 0 1rem !important;
    line-height: 1.5 !important;
}

/* Timeline */
.prime-pp-timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    position: relative !important;
    padding-left: 1.25rem !important;
    margin-bottom: 1rem !important;
}

.prime-pp-timeline::before {
    content: '' !important;
    position: absolute !important;
    left: 0.5625rem !important;
    top: 1.25rem !important;
    bottom: 1.25rem !important;
    width: 2px !important;
    background: linear-gradient(180deg, hsl(45, 98%, 58%), hsl(35, 95%, 50%)) !important;
    border-radius: 1px !important;
    opacity: 0.3 !important;
}

.prime-pp-tl-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.875rem !important;
    position: relative !important;
    padding: 0.375rem 0 !important;
}

.prime-pp-tl-dot {
    flex-shrink: 0 !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsl(45, 98%, 50%) !important;
    color: #1a1a1a !important;
    border-radius: 50% !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 800 !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 0 0 3px hsla(45, 98%, 58%, 0.15) !important;
}

.prime-pp-tl-card {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: hsla(0, 0%, 100%, 0.03) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.12) !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 0.875rem !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
}

.prime-pp-tl-card:hover {
    background: hsla(45, 98%, 58%, 0.04) !important;
    border-color: hsla(45, 98%, 58%, 0.25) !important;
}

.prime-pp-tl-icon {
    flex-shrink: 0 !important;
    width: 2.25rem !important;
    height: 2.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(45, 98%, 58%, 0.1) !important;
    border-radius: 0.625rem !important;
}

.prime-pp-tl-icon svg {
    stroke: hsl(45, 98%, 58%) !important;
}

.prime-pp-tl-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.125rem !important;
}

.prime-pp-tl-text strong {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
}

.prime-pp-tl-text span {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    line-height: 1.4 !important;
}

/* Guide Footer */
.prime-pp-guide-footer {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: hsl(152, 68%, 55%) !important;
    background: hsla(152, 68%, 55%, 0.06) !important;
    border: 1px solid hsla(152, 68%, 55%, 0.15) !important;
    border-radius: 0.625rem !important;
    padding: 0.75rem !important;
    line-height: 1.5 !important;
}

.prime-pp-guide-footer svg {
    flex-shrink: 0 !important;
    margin-top: 0.125rem !important;
    stroke: hsl(152, 68%, 55%) !important;
}

.prime-pp-guide-footer strong {
    color: hsl(152, 68%, 65%) !important;
}

/* Guide Tags */
.prime-pp-guide-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-top: 0.75rem !important;
}

.prime-pp-guide-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: hsla(45, 98%, 70%, 0.9) !important;
    background: hsla(45, 98%, 58%, 0.08) !important;
    border: 1px solid hsla(45, 98%, 58%, 0.15) !important;
    border-radius: 2rem !important;
    padding: 0.3rem 0.625rem !important;
    line-height: 1.3 !important;
}

.prime-pp-guide-tag svg {
    flex-shrink: 0 !important;
    stroke: hsl(45, 98%, 58%) !important;
}

.prime-pp-guide-tag strong {
    color: hsl(45, 98%, 70%) !important;
}

/* PayPal Trust Bar */
.prime-ty-trust-bar {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    margin: 0.75rem 0 0 !important;
}

.prime-ty-trust-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.875rem 0.5rem !important;
    background: hsla(213, 100%, 50%, 0.06) !important;
    border: 1px solid hsla(213, 100%, 50%, 0.1) !important;
    border-radius: 12px !important;
    text-align: center !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
}

.prime-ty-trust-item:hover {
    background: hsla(213, 100%, 50%, 0.1) !important;
    border-color: hsla(213, 100%, 50%, 0.2) !important;
}

.prime-ty-trust-icon {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(213, 100%, 50%, 0.1) !important;
    border-radius: 50% !important;
    color: hsl(213, 100%, 65%) !important;
    flex-shrink: 0 !important;
}

.prime-ty-trust-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.125rem !important;
}

.prime-ty-trust-title {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    line-height: 1.3 !important;
}

.prime-ty-trust-desc {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.5625rem !important;
    color: var(--prime-muted-fg) !important;
    line-height: 1.3 !important;
}

/* PayPal Overlay */
.prime-paypal-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    z-index: 99996 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}
.prime-paypal-overlay-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* PayPal Drawer */
.prime-paypal-drawer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-height: 75vh !important;
    background: var(--prime-card) !important;
    border-radius: 16px 16px 0 0 !important;
    z-index: 99998 !important;
    transform: translateY(100%) !important;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1) !important;
    overflow-y: auto !important;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4) !important;
    border-top: 1px solid hsla(213, 100%, 50%, 0.15) !important;
}
.prime-paypal-drawer-open {
    transform: translateY(0) !important;
}

.prime-paypal-drawer-handle {
    width: 36px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: hsla(0, 0%, 100%, 0.15) !important;
    margin: 8px auto !important;
}

.prime-paypal-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    border-bottom: 1px solid var(--prime-border) !important;
}

.prime-paypal-drawer-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-paypal-drawer-header-left img {
    border-radius: 4px !important;
}

.prime-paypal-drawer-close {
    width: 28px !important;
    height: 28px !important;
    border: none !important;
    background: hsla(0, 0%, 100%, 0.06) !important;
    color: var(--prime-muted-fg) !important;
    border-radius: 50% !important;
    font-size: 1.125rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: background 0.15s ease !important;
}
.prime-paypal-drawer-close:hover {
    background: hsla(0, 0%, 100%, 0.1) !important;
}

.prime-paypal-drawer-body {
    padding: 0 1.25rem 1.75rem !important;
}

.prime-paypal-drawer-amount-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid var(--prime-border) !important;
    margin-bottom: 0.875rem !important;
}

.prime-paypal-drawer-amount-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-muted-fg) !important;
}

.prime-paypal-drawer-amount-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: hsl(213, 100%, 65%) !important;
}

/* Invoice button — main CTA */
.prime-paypal-invoice-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.875rem !important;
    border: none !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, hsl(213, 100%, 45%), hsl(213, 100%, 36%)) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-decoration: none !important;
    margin-bottom: 0.875rem !important;
}
.prime-paypal-invoice-btn svg {
    color: #fff !important;
}
.prime-paypal-invoice-btn:hover {
    background: linear-gradient(135deg, hsl(213, 100%, 50%), hsl(213, 100%, 42%)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px hsla(213, 100%, 50%, 0.35) !important;
    color: #fff !important;
}
.prime-paypal-invoice-btn:active {
    transform: scale(0.98) translateY(0) !important;
}

/* Info rows */
.prime-paypal-drawer-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid var(--prime-border) !important;
}

.prime-paypal-drawer-row-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.125rem !important;
    min-width: 0 !important;
    flex: 1 !important;
}

.prime-paypal-drawer-row-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.prime-paypal-drawer-row-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    word-break: break-all !important;
}

.prime-paypal-drawer-copy {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    padding: 0.3rem 0.625rem !important;
    border: 1px solid hsla(213, 100%, 50%, 0.2) !important;
    border-radius: 6px !important;
    background: hsla(213, 100%, 50%, 0.06) !important;
    color: hsl(213, 100%, 65%) !important;
    cursor: pointer !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    transition: all 0.15s ease !important;
    flex-shrink: 0 !important;
}
.prime-paypal-drawer-copy:hover {
    background: hsla(213, 100%, 50%, 0.12) !important;
    border-color: hsla(213, 100%, 50%, 0.35) !important;
}

/* Steps */
.prime-paypal-drawer-steps {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.375rem !important;
    margin: 1rem 0 !important;
    padding: 0.75rem 0 !important;
}

.prime-paypal-drawer-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    color: var(--prime-muted-fg) !important;
    text-align: center !important;
}

.prime-paypal-drawer-step-num {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: hsla(213, 100%, 50%, 0.12) !important;
    color: hsl(213, 100%, 65%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 700 !important;
}

.prime-paypal-drawer-step-arrow {
    color: hsla(0, 0%, 100%, 0.15) !important;
    flex-shrink: 0 !important;
}

/* Note bar */
.prime-paypal-drawer-note {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.625rem 0.875rem !important;
    background: hsla(213, 100%, 50%, 0.06) !important;
    border: 1px solid hsla(213, 100%, 50%, 0.12) !important;
    border-radius: 8px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: hsla(0, 0%, 100%, 0.55) !important;
    line-height: 1.4 !important;
}

.prime-paypal-drawer-note svg {
    color: hsl(213, 100%, 55%) !important;
    flex-shrink: 0 !important;
}

/* PayPal FAB */
.prime-paypal-fab {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    background: hsla(230, 15%, 8%, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06) !important;
    z-index: 99997 !important;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3) !important;
    gap: 0.75rem !important;
}

.prime-paypal-fab-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.1rem !important;
    cursor: pointer !important;
}

.prime-paypal-fab-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.prime-paypal-fab-amount {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: hsl(213, 100%, 65%) !important;
}

.prime-paypal-fab-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.625rem 1.25rem !important;
    background: linear-gradient(135deg, hsl(213, 100%, 45%), hsl(213, 100%, 36%)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}
.prime-paypal-fab-btn:hover {
    box-shadow: 0 4px 16px hsla(213, 100%, 50%, 0.3) !important;
}
.prime-paypal-fab-btn:active {
    transform: scale(0.98) !important;
}

body.prime-ty-paypal {
    padding-bottom: 70px !important;
}

@media (max-width: 600px) {
    .prime-paypal-fab {
        padding: 0.625rem 1rem !important;
    }
    .prime-paypal-fab-amount {
        font-size: 1rem !important;
    }
    .prime-paypal-fab-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }
    .prime-paypal-drawer {
        max-height: 85vh !important;
        border-radius: 14px 14px 0 0 !important;
    }
    .prime-paypal-drawer-body {
        padding: 0 1rem 1.5rem !important;
    }
    .prime-paypal-drawer-steps {
        gap: 0.25rem !important;
    }
    .prime-paypal-drawer-step {
        font-size: 0.6rem !important;
    }
    .prime-paypal-drawer-step-num {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.5625rem !important;
    }
    .prime-paypal-drawer-step-arrow {
        width: 12px !important;
        height: 12px !important;
    }
    .prime-ty-trust-bar {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.375rem !important;
    }
    .prime-ty-trust-item {
        padding: 0.625rem 0.25rem !important;
        gap: 0.375rem !important;
    }
    .prime-ty-trust-icon {
        width: 30px !important;
        height: 30px !important;
    }
    .prime-ty-trust-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    .prime-ty-trust-title {
        font-size: 0.5625rem !important;
    }
    .prime-ty-trust-desc {
        font-size: 0.5rem !important;
    }
}

/* =============================================
   24d. CRYPTO THANK YOU PAGE — Orange Theme
   ============================================= */

/* Hide WC default order details on crypto thank you */
body.prime-ty-crypto .woocommerce-order ul.order_details,
body.prime-ty-crypto .woocommerce-order ul.woocommerce-thankyou-order-details,
body.prime-ty-crypto .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details,
body.prime-ty-crypto .woocommerce-order-overview,
body.prime-ty-crypto ul.woocommerce-thankyou-order-details,
body.prime-ty-crypto ul.order_details {
    display: none !important;
}

/* ── Crypto Hero ── */
.prime-crypto-hero-compact {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    text-align: left !important;
}

.prime-crypto-hero-compact-icon {
    flex-shrink: 0 !important;
    width: 80px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(25, 95%, 53%, 0.1) !important;
    border: 1px solid hsla(25, 95%, 53%, 0.15) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    gap: 4px !important;
}

.prime-crypto-hero-compact-icon svg { display: none !important; }

.prime-crypto-hero-compact-icon img {
    border-radius: 4px !important;
}

.prime-crypto-hero-compact-body {
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-crypto-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 500 !important;
    color: #f7931a !important;
    background: hsla(25, 95%, 53%, 0.08) !important;
    border: 1px solid hsla(25, 95%, 53%, 0.12) !important;
    border-radius: 999px !important;
    padding: 0.2rem 0.625rem !important;
    margin-bottom: 0.375rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.prime-crypto-hero-dot {
    width: 5px !important;
    height: 5px !important;
    background: #f7931a !important;
    border-radius: 50% !important;
    animation: prime-crypto-dot-blink 1.5s ease-in-out infinite !important;
}

@keyframes prime-crypto-dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.prime-crypto-hero-compact-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.2rem !important;
    letter-spacing: -0.01em !important;
}

/* ── Crypto Guide Color Overrides ── */
body.prime-ty-crypto .prime-pp-guide {
    background: linear-gradient(135deg, hsla(25, 95%, 53%, 0.06), hsla(25, 95%, 53%, 0.02)) !important;
    border-color: hsla(25, 95%, 53%, 0.15) !important;
}
body.prime-ty-crypto .prime-pp-guide-header {
    color: #f7931a !important;
}
body.prime-ty-crypto .prime-pp-guide-header svg {
    stroke: #f7931a !important;
}
body.prime-ty-crypto .prime-pp-tl-dot {
    background: #f7931a !important;
    color: #fff !important;
}
body.prime-ty-crypto .prime-pp-tl-card {
    border-color: hsla(25, 95%, 53%, 0.1) !important;
}
body.prime-ty-crypto .prime-pp-tl-card:hover {
    border-color: hsla(25, 95%, 53%, 0.2) !important;
}
body.prime-ty-crypto .prime-pp-tl-icon {
    background: hsla(25, 95%, 53%, 0.08) !important;
}
body.prime-ty-crypto .prime-pp-tl-icon svg {
    stroke: #f7931a !important;
}
body.prime-ty-crypto .prime-pp-timeline::before {
    background: linear-gradient(to bottom, hsla(25, 95%, 53%, 0.2), transparent) !important;
}
body.prime-ty-crypto .prime-pp-guide-footer svg {
    stroke: #f7931a !important;
}

/* ── Crypto Dropzone Color Overrides ── */
body.prime-ty-crypto .prime-pp-dropzone {
    border-color: hsla(25, 95%, 53%, 0.2) !important;
    background: hsla(25, 95%, 53%, 0.03) !important;
}
body.prime-ty-crypto .prime-pp-dropzone:hover {
    border-color: hsla(25, 95%, 53%, 0.35) !important;
    background: hsla(25, 95%, 53%, 0.06) !important;
}
body.prime-ty-crypto .prime-pp-dropzone-icon {
    background: hsla(25, 95%, 53%, 0.08) !important;
    color: #f7931a !important;
}
body.prime-ty-crypto .prime-pp-dropzone-icon svg {
    stroke: #f7931a !important;
}

/* ── Crypto Overlay + Drawer ── */
.prime-crypto-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
}
.prime-crypto-overlay.prime-crypto-overlay-visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.prime-crypto-drawer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-height: 75vh !important;
    background: hsl(230, 15%, 10%) !important;
    border-top: 1px solid hsla(25, 95%, 53%, 0.12) !important;
    border-radius: 16px 16px 0 0 !important;
    z-index: 99999 !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5) !important;
}
.prime-crypto-drawer.prime-crypto-drawer-open {
    transform: translateY(0) !important;
}

.prime-crypto-drawer-handle {
    width: 32px !important;
    height: 3px !important;
    background: hsla(0, 0%, 100%, 0.15) !important;
    border-radius: 2px !important;
    margin: 8px auto 0 !important;
    cursor: grab !important;
}

.prime-crypto-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06) !important;
    position: sticky !important;
    top: 0 !important;
    background: hsl(230, 15%, 10%) !important;
    z-index: 1 !important;
}

.prime-crypto-drawer-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}
.prime-crypto-drawer-header-left img {
    border-radius: 3px !important;
}

.prime-crypto-drawer-close {
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(0, 0%, 100%, 0.05) !important;
    border: none !important;
    border-radius: 8px !important;
    color: var(--prime-muted-fg) !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    padding: 0 !important;
    font-size: 1.25rem !important;
}
.prime-crypto-drawer-close:hover {
    background: hsla(0, 0%, 100%, 0.1) !important;
    color: var(--prime-fg) !important;
}

.prime-crypto-drawer-body {
    padding: 0 1.25rem 1.5rem !important;
}

/* Drawer – Amount Row */
.prime-crypto-drawer-amount-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}
.prime-crypto-drawer-amount-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-weight: 500 !important;
}
.prime-crypto-drawer-amount-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: #f7931a !important;
}

/* Drawer – Info Rows */
.prime-crypto-drawer-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    padding: 0.875rem 0 !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.04) !important;
}
.prime-crypto-drawer-row:last-of-type {
    border-bottom: none !important;
}
.prime-crypto-drawer-row-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
    min-width: 0 !important;
    flex: 1 !important;
}
.prime-crypto-drawer-row-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
}
.prime-crypto-drawer-row-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    word-break: break-all !important;
}
.prime-crypto-addr {
    font-size: 0.75rem !important;
    letter-spacing: 0.02em !important;
}

/* Drawer – Copy Button */
.prime-crypto-drawer-copy {
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0.375rem 0.625rem !important;
    background: hsla(0, 0%, 100%, 0.05) !important;
    border: 1px solid hsla(0, 0%, 100%, 0.08) !important;
    border-radius: 6px !important;
    color: var(--prime-muted-fg) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
}
.prime-crypto-drawer-copy:hover {
    background: hsla(0, 0%, 100%, 0.08) !important;
    color: var(--prime-fg) !important;
}
.prime-crypto-drawer-copy.prime-ty-copied {
    background: hsla(142, 71%, 45%, 0.12) !important;
    border-color: hsla(142, 71%, 45%, 0.2) !important;
    color: hsl(142, 71%, 65%) !important;
}

/* Drawer – Steps */
.prime-crypto-drawer-steps {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 1rem 0 !important;
    margin-top: 0.5rem !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}
.prime-crypto-drawer-step {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    white-space: nowrap !important;
}
.prime-crypto-drawer-step-num {
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(25, 95%, 53%, 0.12) !important;
    color: #f7931a !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
}
.prime-crypto-drawer-step-arrow {
    color: hsla(0, 0%, 100%, 0.15) !important;
    flex-shrink: 0 !important;
}

/* Drawer – Note */
.prime-crypto-drawer-note {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
    background: hsla(25, 95%, 53%, 0.04) !important;
    border: 1px solid hsla(25, 95%, 53%, 0.08) !important;
    border-radius: 8px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: hsla(25, 80%, 80%, 0.7) !important;
    line-height: 1.4 !important;
}
.prime-crypto-drawer-note svg {
    color: #f7931a !important;
    flex-shrink: 0 !important;
}

/* ── Crypto Success Popup in Drawer ── */
.prime-crypto-drawer-body > .prime-proof-success-popup.prime-pp-popup-visible {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 280px !important;
    text-align: center !important;
    padding: 2rem 1rem !important;
}
.prime-crypto-drawer-body > .prime-proof-success-popup .prime-proof-success-icon {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: hsla(142, 71%, 45%, 0.12) !important;
    margin-bottom: 1rem !important;
}
.prime-crypto-drawer-body > .prime-proof-success-popup .prime-proof-success-icon svg {
    stroke: hsl(142, 71%, 55%) !important;
    width: 28px !important;
    height: 28px !important;
}
.prime-crypto-drawer-body > .prime-proof-success-popup .prime-proof-success-title {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}
.prime-crypto-drawer-body > .prime-proof-success-popup .prime-proof-success-msg {
    font-size: 0.8125rem !important;
    line-height: 1.6 !important;
    max-width: 340px !important;
}
.prime-crypto-drawer-body > .prime-proof-success-popup .prime-proof-success-contact {
    font-size: 0.75rem !important;
    margin-top: 1rem !important;
}

/* ── Crypto FAB ── */
.prime-crypto-fab {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    background: hsla(230, 15%, 8%, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06) !important;
    z-index: 99997 !important;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3) !important;
    gap: 0.75rem !important;
}
.prime-crypto-fab-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.1rem !important;
    cursor: pointer !important;
}
.prime-crypto-fab-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}
.prime-crypto-fab-amount {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #f7931a !important;
}
.prime-crypto-fab-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.625rem 1.25rem !important;
    background: linear-gradient(135deg, #f7931a, hsl(25, 95%, 40%)) !important;
    color: #fff !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 10px hsla(25, 95%, 50%, 0.2) !important;
}
.prime-crypto-fab-btn:hover {
    box-shadow: 0 4px 16px hsla(25, 95%, 50%, 0.3) !important;
}
.prime-crypto-fab-btn:active {
    transform: scale(0.98) !important;
}

body.prime-ty-crypto {
    padding-bottom: 72px !important;
}

/* ── Crypto Mobile ── */
@media (max-width: 600px) {
    .prime-crypto-hero-compact {
        gap: 0.75rem !important;
    }
    .prime-crypto-hero-compact-icon {
        width: 42px !important;
        height: 42px !important;
        padding: 8px !important;
    }
    .prime-crypto-hero-compact-title {
        font-size: 0.9375rem !important;
    }
    .prime-crypto-fab {
        padding: 0.625rem 1rem !important;
    }
    .prime-crypto-fab-amount {
        font-size: 1rem !important;
    }
    .prime-crypto-fab-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }
    .prime-crypto-drawer {
        max-height: 85vh !important;
        border-radius: 14px 14px 0 0 !important;
    }
    .prime-crypto-drawer-body {
        padding: 0 1rem 1.5rem !important;
    }
    .prime-crypto-drawer-steps {
        gap: 0.25rem !important;
    }
    .prime-crypto-drawer-step {
        font-size: 0.6rem !important;
    }
    .prime-crypto-drawer-step-num {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.5625rem !important;
    }
    .prime-crypto-drawer-step-arrow {
        width: 12px !important;
        height: 12px !important;
    }
}

/* =============================================
   24e. THANK YOU – WELCOME MESSAGE
   ============================================= */
.prime-ty-welcome {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    background: linear-gradient(135deg, hsla(0, 85%, 45%, 0.12), hsla(0, 85%, 55%, 0.06)) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.25rem 1.5rem !important;
    margin: 1rem 0 !important;
    text-align: left !important;
    position: relative !important;
    overflow: hidden !important;
}

.prime-ty-welcome::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(180deg, hsl(0, 85%, 55%), hsl(0, 85%, 40%)) !important;
    border-radius: 4px 0 0 4px !important;
}

.prime-ty-welcome-icon {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(0, 85%, 50%, 0.15) !important;
    border-radius: 50% !important;
    color: hsl(0, 85%, 60%) !important;
    animation: prime-ty-bell 1.5s ease-in-out 0.5s 2 !important;
}

@keyframes prime-ty-bell {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(12deg); }
    20% { transform: rotate(-12deg); }
    30% { transform: rotate(8deg); }
    40% { transform: rotate(-8deg); }
    50% { transform: rotate(0); }
}

.prime-ty-welcome-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-ty-welcome-greeting {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: hsl(0, 85%, 65%) !important;
    margin-bottom: 0.375rem !important;
    letter-spacing: -0.01em !important;
}

.prime-ty-welcome p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    line-height: 1.7 !important;
    color: hsla(0, 50%, 85%, 0.85) !important;
    margin: 0 !important;
}

/* =============================================
   24e. THANK YOU – ORDER SUMMARY BADGE
   ============================================= */
.prime-ty-order-summary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.25rem !important;
    padding: 0.875rem 1.5rem !important;
    margin: 1rem 0 !important;
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.prime-ty-order-summary-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.prime-ty-order-summary-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.prime-ty-order-summary-value {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
}

.prime-ty-order-total {
    color: var(--prime-primary) !important;
}

.prime-ty-order-summary-divider {
    width: 1px !important;
    height: 20px !important;
    background: var(--prime-border) !important;
}

.prime-ty-status-paid {
    color: hsl(142, 71%, 65%) !important;
}

.prime-ty-status-pending {
    color: hsl(38, 92%, 60%) !important;
}

.prime-ty-status-in-review {
    color: hsl(199, 89%, 58%) !important;
}

/* ── Support notice – alert style ── */
.prime-ty-support-notice {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    background: none !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.25rem 1.5rem !important;
    margin: 0.75rem 0 !important;
}
.prime-ty-support-notice .prime-ty-support-notice-icon {
    flex-shrink: 0 !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: hsla(38, 92%, 50%, 0.15) !important;
    border-radius: 50% !important;
    color: hsl(38, 92%, 60%) !important;
}
.prime-ty-support-notice .prime-ty-support-notice-content {
    flex: 1 !important;
    min-width: 0 !important;
}
.prime-ty-support-notice .prime-ty-support-notice-title {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: hsl(38, 92%, 65%) !important;
    margin-bottom: 0.3rem !important;
    letter-spacing: -0.01em !important;
}
.prime-ty-support-notice p {
    margin: 0 !important;
    font-size: 0.8125rem !important;
    line-height: 1.7 !important;
    color: hsla(38, 40%, 85%, 0.85) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}
.prime-ty-support-notice-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-top: 0.6rem !important;
}
.prime-ty-support-notice-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.7rem !important;
    color: hsla(38, 50%, 80%, 0.75) !important;
    background: hsla(38, 60%, 40%, 0.1) !important;
    border: 1px solid hsla(38, 60%, 50%, 0.12) !important;
    border-radius: 6px !important;
    padding: 0.3rem 0.6rem !important;
}
.prime-ty-support-notice-tag svg {
    color: hsl(38, 80%, 55%) !important;
    flex-shrink: 0 !important;
}
.prime-ty-support-notice-tag strong {
    color: hsla(38, 60%, 85%, 0.95) !important;
    font-weight: 600 !important;
}

/* =============================================
   24e2. THANK YOU – ORDER PRODUCT CARD
   ============================================= */
.prime-ty-order-product {
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1rem 1.25rem !important;
    margin: 0.75rem 0 !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.prime-ty-order-product-row {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
}

.prime-ty-order-product-img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 1px solid var(--prime-border) !important;
}

.prime-ty-order-product-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.prime-ty-order-product-name {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.prime-ty-order-product-qty {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    color: var(--prime-primary) !important;
    background: hsla(217, 89%, 61%, 0.1) !important;
    border: 1px solid hsla(217, 89%, 61%, 0.15) !important;
    border-radius: 6px !important;
    padding: 0.2rem 0.5rem !important;
    width: fit-content !important;
}

.prime-ty-order-product-qty svg {
    flex-shrink: 0 !important;
    opacity: 0.8 !important;
}

.prime-ty-order-product-price {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--prime-primary) !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

/* =============================================
   24f. THANK YOU – CUSTOMER INFO CARD
   ============================================= */
.prime-ty-customer-info {
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.5rem !important;
    margin: 1rem 0 !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.prime-ty-customer-info h3 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.prime-ty-customer-info h3 svg {
    color: var(--prime-primary) !important;
}

.prime-ty-customer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
}

.prime-ty-customer-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    padding: 0.75rem !important;
    background: var(--prime-secondary-30) !important;
    border-radius: var(--prime-radius) !important;
}

.prime-ty-customer-label {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.prime-ty-customer-value {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    word-break: break-all !important;
}

/* Customer type badge */
.prime-ty-customer-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.375rem 0.875rem !important;
    border-radius: 999px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.prime-ty-badge-new {
    background: hsla(217, 91%, 60%, 0.1) !important;
    color: hsl(217, 91%, 70%) !important;
}

.prime-ty-badge-renewed {
    background: hsla(280, 70%, 55%, 0.1) !important;
    color: hsl(280, 70%, 70%) !important;
}

/* Customer note */
.prime-ty-customer-note {
    margin-top: 1rem !important;
    padding-top: 0.875rem !important;
    border-top: none !important;
}

.prime-ty-customer-note-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.375rem !important;
}

.prime-ty-customer-note-label svg {
    color: var(--prime-muted-fg) !important;
}

.prime-ty-customer-note p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-fg) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0.625rem !important;
    background: var(--prime-secondary-30) !important;
    border-radius: var(--prime-radius) !important;
}

/* Product thumbnail in order details table */
.prime-ty-prod-thumb {
    width: 34px !important;
    height: 34px !important;
    border-radius: 7px !important;
    object-fit: cover !important;
    vertical-align: middle !important;
    margin-right: 0.5rem !important;
    border: 1px solid hsla(220, 40%, 50%, 0.15) !important;
    background: hsla(220, 30%, 18%, 0.4) !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 4px hsla(220, 40%, 10%, 0.25) !important;
}

/* WooCommerce Customer Details – extras (badge + note) */
.prime-ty-wc-extras {
    margin-bottom: 1.25rem !important;
}

.prime-ty-wc-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.375rem 0.875rem !important;
    border-radius: 999px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
}

.prime-ty-wc-note {
    margin-top: 0.5rem !important;
}

.prime-ty-wc-note-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    color: var(--prime-muted-fg) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 0.375rem !important;
}

.prime-ty-wc-note-label svg {
    color: var(--prime-muted-fg) !important;
}

.prime-ty-wc-note p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-fg) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0.625rem !important;
    background: var(--prime-secondary-30) !important;
    border-radius: var(--prime-radius) !important;
}

/* =============================================
   24g. THANK YOU – CONTACT / SUPPORT CARD
   ============================================= */
.prime-ty-contact {
    background: var(--prime-card-60) !important;
    border: none !important;
    border-radius: var(--prime-radius-xl) !important;
    padding: 1.5rem !important;
    margin: 1rem 0 !important;
    text-align: center !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.prime-ty-contact h3 {
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--prime-fg) !important;
    margin: 0 0 0.375rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    border: none !important;
    padding: 0 !important;
}

.prime-ty-contact h3 svg {
    color: var(--prime-primary) !important;
}

.prime-ty-contact > p {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    color: var(--prime-muted-fg) !important;
    margin: 0 0 1.25rem !important;
}

.prime-ty-contact-buttons {
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.prime-ty-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: var(--prime-radius) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
    cursor: pointer !important;
}

.prime-ty-btn:hover {
    transform: translateY(-1px) !important;
    opacity: 1 !important;
}

.prime-ty-btn-whatsapp {
    background: hsl(142, 70%, 40%) !important;
    color: #fff !important;
}

.prime-ty-btn-whatsapp svg {
    fill: #fff !important;
}

.prime-ty-btn-whatsapp span {
    color: #fff !important;
}

.prime-ty-btn-whatsapp:hover {
    box-shadow: 0 4px 16px hsla(142, 70%, 40%, 0.3) !important;
    color: #fff !important;
}

.prime-ty-btn-email {
    background: var(--prime-secondary-30) !important;
    color: var(--prime-fg) !important;
}

.prime-ty-btn-email:hover {
    background: var(--prime-card-60) !important;
    color: var(--prime-fg) !important;
}

/* =============================================
   24h. THANK YOU – FOOTER
   ============================================= */
.prime-ty-footer {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: none !important;
    text-align: center !important;
}

.prime-ty-footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.prime-ty-footer-logo {
    max-height: 32px !important;
    width: auto !important;
    opacity: 0.6 !important;
}

.prime-ty-footer-copy {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--prime-muted-fg) !important;
    opacity: 0.5 !important;
    margin: 0 !important;
}

/* =============================================
   24z. THANK YOU – MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
    body[class*="cartflows_step-template"] .woocommerce-order ul.order_details,
    body[class*="cartflows_step-template"] .woocommerce-order ul.woocommerce-thankyou-order-details {
        grid-template-columns: 1fr 1fr !important;
    }

    body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
        grid-template-columns: 1fr !important;
    }

    body[class*="cartflows_step-template"] .wcf-thankyou-wrap,
    body[class*="cartflows_step-template"] .woocommerce-order {
        padding: 1rem 0.75rem !important;
    }

    body[class*="cartflows_step-template"] .woocommerce-thankyou-order-received {
        font-size: 1.25rem !important;
        padding: 1.25rem 1rem !important;
    }

    body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-order-details,
    body[class*="cartflows_step-template"] .woocommerce-order .woocommerce-customer-details {
        padding: 1rem !important;
    }

    .prime-ty-ctp-methods {
        grid-template-columns: 1fr !important;
    }

    .prime-ty-ctp-trust {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .prime-ty-ctp-trust-item {
        padding: 0.75rem 0.5rem !important;
    }

    .prime-ty-order-summary {
        gap: 0.75rem !important;
        padding: 0.75rem 0.875rem !important;
    }

    .prime-ty-order-summary-label {
        font-size: 0.625rem !important;
    }

    .prime-ty-order-summary-value {
        font-size: 0.8125rem !important;
    }

    .prime-ty-customer-grid {
        grid-template-columns: 1fr !important;
    }

    .prime-ty-welcome,
    .prime-ty-customer-info,
    .prime-ty-contact,
    .prime-ty-ctp-card {
        padding: 1rem !important;
    }

    .prime-ty-contact-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .prime-ty-btn {
        justify-content: center !important;
    }

    .prime-ctp-hero-icon {
        width: 68px !important;
        height: 68px !important;
    }

    .prime-ctp-hero-icon-inner {
        width: 48px !important;
        height: 48px !important;
    }

    .prime-ctp-hero-title {
        font-size: 1.375rem !important;
    }

    .prime-ctp-hero-desc {
        font-size: 0.75rem !important;
    }

    .prime-ctp-hero-meta {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .prime-ctp-hero-meta-sep {
        width: 40px !important;
        height: 1px !important;
    }
}

/* =============================================
   Elementor overrides – remove unwanted borders
   (all funnels — high specificity to beat Elementor)
   ============================================= */
section.elementor-section.elementor-element.elementor-element-54ad0d84,
.elementor-element.elementor-element-54ad0d84,
[data-id="54ad0d84"] {
    border: 0 none transparent !important;
    border-style: none !important;
    border-width: 0px !important;
    border-color: transparent !important;
    padding: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* Hide footer section on checkout pages */
.elementor-element.elementor-element-31416d20,
[data-id="31416d20"] {
    display: none !important;
}

@media (max-width: 600px) {
    .elementor-23 .elementor-element.elementor-element-6c4082ea {
        padding: 0 !important;
    }
}

[data-id="191b3c35"] {
    display: none !important;
}

/* =============================================
   CHECKOUT FOOTER
   ============================================= */
.prime-checkout-footer {
    margin-top: 2rem !important;
    padding: 1.5rem 1rem 1.25rem !important;
    text-align: center !important;
    grid-column: 1 / -1 !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.06) !important;
}

.prime-checkout-footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.prime-checkout-footer-logo {
    max-height: 30px !important;
    width: auto !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s ease !important;
}

.prime-checkout-footer-logo:hover {
    opacity: 0.8 !important;
}

.prime-checkout-footer-trust {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.prime-checkout-footer-trust-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: hsla(0, 0%, 100%, 0.35) !important;
    letter-spacing: 0.01em !important;
}

.prime-checkout-footer-trust-item svg {
    stroke: hsla(0, 0%, 100%, 0.25) !important;
    flex-shrink: 0 !important;
}

.prime-checkout-footer-copy {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 0.6875rem !important;
    color: var(--prime-muted-fg) !important;
    opacity: 0.35 !important;
    margin: 0 !important;
}

@media (max-width: 600px) {
    .prime-checkout-footer-trust {
        gap: 0.625rem !important;
    }
    .prime-checkout-footer-trust-item {
        font-size: 0.625rem !important;
    }
}

/* =============================================
   PREMIUM FUNNEL — Gold/Amber Theme Override
   ============================================= */
body.prime-premium-funnel {
    --prime-primary: hsl(43, 96%, 56%);
    --prime-primary-fg: hsl(222, 47%, 6%);
    --prime-primary-10: hsla(43, 96%, 56%, 0.1);
    --prime-primary-15: hsla(43, 96%, 56%, 0.15);
    --prime-primary-50: hsla(43, 96%, 56%, 0.5);
    --prime-primary-5: hsla(43, 96%, 56%, 0.05);
    --prime-primary-3: hsla(43, 96%, 56%, 0.03);
    --prime-glass-border: hsla(43, 60%, 40%, 0.2);
    --prime-glass-border-30: hsla(43, 60%, 40%, 0.3);
    --prime-glow-sm: 0 0 15px -3px hsla(43, 96%, 56%, 0.15);
    --prime-glow-md: 0 0 30px -5px hsla(43, 96%, 56%, 0.2);
    --prime-glow-ring: 0 0 0 1px hsla(43, 96%, 56%, 0.3), 0 0 20px -5px hsla(43, 96%, 56%, 0.15);
    --prime-input-glow: 0 0 0 2px hsla(43, 96%, 56%, 0.2), 0 0 15px -3px hsla(43, 96%, 56%, 0.1);
    --prime-gradient: linear-gradient(135deg, hsl(43, 96%, 56%), hsl(38, 92%, 50%));
    --prime-gradient-text: linear-gradient(135deg, hsl(43, 96%, 56%), hsl(48, 96%, 65%));
}

/* Place order button — gold glow */
body.prime-premium-funnel[class*="cartflows_step-template"] #place_order {
    box-shadow: 0 6px 25px -4px hsla(43, 96%, 56%, 0.45), 0 0 0 1px hsla(43, 96%, 56%, 0.2) !important;
}
body.prime-premium-funnel[class*="cartflows_step-template"] #place_order:hover {
    box-shadow: 0 10px 40px -4px hsla(43, 96%, 56%, 0.55), 0 0 0 1px hsla(43, 96%, 56%, 0.3) !important;
}
body.prime-premium-funnel[class*="cartflows_step-template"] #place_order:active {
    box-shadow: 0 3px 15px -4px hsla(43, 96%, 56%, 0.35) !important;
}

/* Offer badge — gold gradient */
body.prime-premium-funnel .prime-offer-badge {
    background: linear-gradient(135deg, hsl(43, 96%, 56%), hsl(38, 92%, 50%)) !important;
    box-shadow: 0 2px 12px -2px hsla(43, 96%, 56%, 0.5) !important;
    color: hsl(222, 47%, 6%) !important;
}
body.prime-premium-funnel .prime-offer-badge svg {
    color: hsl(222, 47%, 6%) !important;
}

/* Price save badge — gold */
body.prime-premium-funnel .prime-price-save {
    color: hsl(43, 96%, 56%) !important;
    background: hsla(43, 96%, 56%, 0.1) !important;
    border-color: hsla(43, 96%, 56%, 0.2) !important;
}

/* Order review offer banner — gold */
body.prime-premium-funnel .prime-order-offer {
    background: hsla(43, 96%, 56%, 0.08) !important;
    border-color: hsla(43, 96%, 56%, 0.2) !important;
}
body.prime-premium-funnel .prime-order-offer-icon {
    background: hsla(43, 96%, 56%, 0.15) !important;
}
body.prime-premium-funnel .prime-order-offer-icon svg {
    color: hsl(43, 96%, 56%) !important;
}
body.prime-premium-funnel .prime-order-offer-title {
    color: hsl(43, 96%, 56%) !important;
}

/* Variation discount tags — gold */
body.prime-premium-funnel .prime-var-discount {
    color: hsl(43, 96%, 56%) !important;
    background: hsla(43, 96%, 56%, 0.1) !important;
    border-color: hsla(43, 96%, 56%, 0.25) !important;
}

/* Review save badge — gold */
body.prime-premium-funnel[class*="cartflows_step-template"] .prime-review-save {
    color: hsl(43, 96%, 56%) !important;
    background: hsla(43, 96%, 56%, 0.1) !important;
    border-color: hsla(43, 96%, 56%, 0.2) !important;
}

/* Connection badge — gold */
body.prime-premium-funnel[class*="cartflows_step-template"] .prime-review-conn-badge {
    background: hsla(43, 96%, 56%, 0.08) !important;
    border-color: hsla(43, 96%, 56%, 0.2) !important;
}

/* Product info subtitle — gold tint */
body.prime-premium-funnel .prime-product-info p {
    color: hsla(43, 96%, 70%, 0.8) !important;
}

/* ---- Premium Badge (product card) ---- */
.prime-premium-badge {
    position: absolute !important;
    top: 0.75rem !important;
    left: 0.75rem !important;
    z-index: 5 !important;
    background: linear-gradient(135deg, hsl(43, 96%, 56%), hsl(38, 92%, 50%)) !important;
    color: hsl(222, 47%, 6%) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.625rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    padding: 0.3rem 0.625rem !important;
    border-radius: 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    box-shadow: 0 2px 12px -2px hsla(43, 96%, 56%, 0.6) !important;
    animation: prime-fade-in 0.5s ease-out !important;
}
.prime-premium-badge svg {
    color: hsl(222, 47%, 6%) !important;
    flex-shrink: 0 !important;
}

/* ---- Premium Tag (header) ---- */
.prime-header-premium-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    background: linear-gradient(135deg, hsl(43, 96%, 56%), hsl(38, 92%, 50%)) !important;
    color: hsl(222, 47%, 6%) !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 0.5625rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 0.25rem !important;
    margin-left: 0.625rem !important;
    vertical-align: middle !important;
}
.prime-header-premium-tag svg {
    color: hsl(222, 47%, 6%) !important;
}

/* Radio checked dot — transparent */
.wcf-embed-checkout-form .woocommerce #payment input[type="radio"]:checked::before,
.wcf-embed-checkout-form .woocommerce #order_review input[type="radio"]:checked::before,
.wcf-embed-checkout-form .woocommerce .wcf-col2-set input[type="radio"]:checked::before,
.wcf-embed-checkout-form .woocommerce .wcf-product-option-wrap .wcf-qty-row input[type="radio"]:checked::before {
    background-color: transparent !important;
}
