<style>
/* ===================== Landing Pages Styles (Optimized) ===================== */

/* ===================== Animations ===================== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@keyframes pulse-glow {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.045); }
    100% { transform: scale(1); }
}
@keyframes sticky-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes sticky-bounce-icon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-3px); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-3px); }
}

/* ===================== Sticky Checkout Button ===================== */
#sticky-checkout-btn {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 24px);
    max-width: 420px;
    background: #FF2C2C;
    background-size: 200% auto;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 11px 18px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
    direction: rtl;
    animation: sticky-pulse-glow 1s ease-in-out infinite, sticky-shimmer 2.4s linear infinite;
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(255, 44, 44, 0.35);
}
#sticky-checkout-btn .sticky-btn-icon {
    font-size: 16px;
    animation: sticky-bounce-icon 1.8s ease-in-out infinite;
}
@media (min-width: 600px) {
    #sticky-checkout-btn {
        padding: 13px 22px;
        font-size: 15px;
        gap: 10px;
    }
    #sticky-checkout-btn .sticky-btn-icon { font-size: 18px; }
}
#sticky-checkout-btn:hover {
    animation-play-state: paused;
    box-shadow: 0 8px 30px rgba(255, 90, 60, 0.65);
    transform: translateX(-50%) scale(1.03);
}
#sticky-checkout-btn:active {
    transform: translateX(-50%) scale(0.97);
}
#sticky-checkout-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* ===================== Reviews Section ===================== */
.reviews-section {
    padding: 10px 10px;
    background: #fff;
    direction: rtl;
    font-family: inherit;
}
.copyright-bar { display: none !important; }
.reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    border: 5px solid white;
    padding: 7px 5px 5px;
    border-style: dashed;
    border-radius: 10px;
}
.reviews-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.reviews-left { flex: 1 1 280px; }
.reviews-title { font-size: 2rem; font-weight: 700; margin: 0 0 12px; }
.reviews-subtitle-parts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1rem;
    color: #444;
}
.reviews-count { font-weight: 700; font-size: 1.1rem; }
.reviews-right {
    flex: 2 1 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rating-row { display: flex; align-items: center; gap: 12px; }
.rating-label { min-width: 70px; font-size: 0.9rem; color: #333; text-align: right; }
.rating-stars .E1DT0 { display: flex; gap: 2px; }
.xbJPp { width: 16px; height: 16px; fill: green; }
.xbJPp.empty { fill: #ddd; }
.rating-bar-wrap { display: flex; align-items: center; gap: 10px; flex: 1; }
.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 0.6s ease;
}
.rating-percent { min-width: 38px; font-size: 0.85rem; color: #555; text-align: left; }

/* ===================== Buy Button Animated ===================== */
.add-to-cart-section { display: block !important; }
.btn-animated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    color: #fff;
    background-size: 200% auto;
    animation: pulse-glow 1s ease-in-out infinite, shimmer 2.4s linear infinite;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}
#PBS-pslna1775942547023 .add-to-cart-section .single-submit {
    background: #284B32 !important;
    border-radius: 20px !important;
    height: 50px !important;
}
.add-to-cart-section .single-submit {
    width: 90% !important;
}
.btn-animated:hover {
    opacity: 0.9;
    animation-play-state: paused;
    box-shadow: 0 8px 30px rgba(255, 90, 60, 0.6);
    transform: scale(1.03);
}
.btn-animated:active {
    transform: scale(0.97);
}
.btn-animated .btn-icon {
    font-size: 20px;
    animation: bounce-icon 1.8s ease-in-out infinite;
}

/* ===================== Reduced Motion ===================== */
@media (prefers-reduced-motion: reduce) {
    #sticky-checkout-btn {
        animation: none;
        box-shadow: 0 4px 20px rgba(255, 90, 60, 0.4);
    }
    #sticky-checkout-btn .sticky-btn-icon { animation: none; }
    .btn-animated {
        animation: none;
        box-shadow: 0 4px 18px rgba(255, 90, 60, 0.4);
    }
    .btn-animated .btn-icon { animation: none; }
}

/* ===================== UGC Video Container ===================== */
#testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    font-family: sans-serif;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    #testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    .ugc-card-info {
        padding: 8px !important;
    }
    .ugc-card-info .ugc-stars {
        font-size: 14px !important;
    }
    .ugc-card-info .ugc-name {
        font-size: 13px !important;
    }
    .ugc-card-info .ugc-text {
        font-size: 12px !important;
    }
    .ugc-play-btn {
        width: 40px !important;
        height: 40px !important;
    }
    .ugc-play-arrow {
        border-top: 8px solid transparent !important;
        border-bottom: 8px solid transparent !important;
        border-left: 12px solid #000 !important;
    }
}

/* ===================== Checkout Form ===================== */
.checkout {
    border: 2px dotted #0584ad;
    border-radius: 20px;
    margin: 0 0 10px;
    padding: 0 7.5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}
.single-product .checkout-section .checkout .main .checkout-form .checkout-select select,
.single-product .checkout-section .checkout .main .checkout-form input[type="text"],
.single-product .checkout-section .checkout .main .checkout-form input[type="email"],
.single-product .checkout-section .checkout .main .checkout-form input[type="url"],
.single-product .checkout-section .checkout .main .checkout-form input[type="number"],
.single-product .checkout-section .checkout .main .checkout-form input[type="tel"],
.single-product .checkout-section .checkout .main .checkout-form input[type="password"],
.single-product .checkout-section .checkout .main .checkout-form textarea {
    border-color: #F7F2F2;
    border-radius: 15px;
    font-family: inherit;
}
.checkout-heading {
    text-align: center;
    font-weight: bold !important;
}
[dir] .checkout-section .checkout .main .checkout-form .checkout-groups {
    margin: 0 -7.5px;
}
.checkout-form {
    padding: 30px;
    border-radius: 7px;
}
[dir] input[type=email],
[dir] input[type=number],
[dir] input[type=password],
[dir] input[type=search],
[dir] input[type=tel],
[dir] input[type=text],
[dir] input[type=url],
[dir] textarea {
    border-radius: 12px;
    border: 2px solid #1DB6EA;
    padding: 10px 15px;
    background-color: #ffffff;
    font-family: inherit;
}
input[type="tel"]::placeholder,
input[name="phone"]::placeholder {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}
input[type="tel"],
input[name="phone"] {
    direction: rtl !important;
    text-align: right !important;
}

/* ===================== Enhanced Variants — Generic CRO =====================
 * Override any token below in your site CSS to match your brand.
 * All other rules are structural — do not touch them.
 * ======================================================================= */

:root {
    /* Active card (selected state) — green = "go / confirmed" */
    --ev-accent:         #16a34a;
    --ev-accent-bg:      #f0fdf4;
    --ev-accent-shadow:  rgba(22, 163, 74, 0.22);
    --ev-accent-hover:   rgba(22, 163, 74, 0.10);

    /* Price display */
    --ev-price:          #dc2626;

    /* 2nd card — "popular" glow (deep orange = stronger urgency) */
    --ev-popular-clr:    #ea580c;
    --ev-popular-bg:     #fff7ed;

    /* Free / bonus badge (green = universally recognised as gain) */
    --ev-free-clr:       #059669;
    --ev-free-bg:        #f0fdf4;

    /* Corner badges */
    --ev-limited-clr:    #dc2626;   /* red  = urgency / scarcity   */
    --ev-best-val-clr:   #7c3aed;   /* purple = premium / best deal */
}

/* ---- Base platform container ---- */
.single-variants {
    border: 3px solid #f5f5f5;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-bottom: -5px;
    padding: 8px;
    background-color: #f5f5f5;
    font-weight: bold;
    position: relative;
    top: -5px;
}
[dir] .single-variants .single-variant .option-name {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin: 0 0 10px;
}
.single-variants .single-variant .color-based-buttons-container,
.single-variants .single-variant .image-based-buttons-container,
.single-variants .single-variant .textual-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ---- Enhanced wrapper ---- */
.enhanced-variants-wrapper {
    padding: 16px 12px;
    background: transparent;
    border-radius: 20px;
    margin: 16px 0;
    direction: rtl;
}
.enhanced-variants-wrapper .option-name,
.product-section.single-variants .option-name {
    display: none !important;
}
.enhanced-variants-wrapper .radio-buttons-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    max-width: 100% !important;
}

/* ---- Heading ---- */
.ev-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 6px;
    direction: rtl;
    justify-content: center;
}
.ev-heading-icon { font-size: 22px; }
.ev-heading div strong { font-size: 16px; font-weight: 800; color: #1e293b; text-align: center; }
.ev-heading div p { margin: 2px 0 0; font-size: 13px; color: #888; text-align: center; }

/* ---- Variant cards ---- */
.enhanced-variants-wrapper .radio-button-variant {
    position: relative;
    width: 100%;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}
.enhanced-variants-wrapper .radio-button-variant:hover {
    border-color: var(--ev-accent);
    box-shadow: 0 4px 16px var(--ev-accent-hover);
}
.enhanced-variants-wrapper .radio-button-variant.ev-checked {
    border-color: var(--ev-accent) !important;
    background: var(--ev-accent-bg) !important;
    box-shadow: 0 4px 18px var(--ev-accent-shadow) !important;
}
.enhanced-variants-wrapper .radio-button-variant:nth-child(2) {
    border: 2.5px solid rgba(234, 88, 12, 0.35) !important;
    background: linear-gradient(135deg, var(--ev-popular-bg), #fff) !important;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.30) !important;
    animation: ev-popularGlow 2.2s ease-in-out infinite;
}
.enhanced-variants-wrapper .radio-button-variant:nth-child(2).ev-checked {
    border-color: var(--ev-accent) !important;
    background: var(--ev-accent-bg) !important;
    box-shadow: 0 4px 18px var(--ev-accent-shadow) !important;
    animation: none;
}
@keyframes ev-popularGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(234, 88, 12, 0.30); }
    50%       { box-shadow: 0 10px 36px rgba(234, 88, 12, 0.65); }
}
.enhanced-variants-wrapper .radio-button-variant input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 3;
    cursor: pointer;
    margin: 0;
}
.enhanced-variants-wrapper .radio-button-variant label {
    display: block !important;
    padding: 14px 16px !important;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    direction: rtl !important;
    text-align: right !important;
}
.enhanced-variants-wrapper .radio-button-variant label::before,
.enhanced-variants-wrapper .radio-button-variant label::after {
    display: none !important;
    content: none !important;
}
.enhanced-variants-wrapper .radio-buttons-container [type="radio"]:checked + label,
.enhanced-variants-wrapper .radio-buttons-container [type="radio"]:not(:checked) + label {
    padding: 14px 16px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    background: transparent;
    color: inherit;
}

/* ---- Card internals ---- */
.ev-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    direction: rtl;
}
.ev-card-top-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.ev-title { font-size: 16px; font-weight: 700; color: #1e293b; line-height: 1.3; direction: rtl; text-align: right; }
.ev-subtitle { font-size: 12px; color: #888; margin-top: 2px; direction: rtl; text-align: right; }
.ev-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}
.ev-radio-circle::after {
    content: '';
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ev-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.enhanced-variants-wrapper .radio-button-variant.ev-checked .ev-radio-circle {
    border-color: var(--ev-accent) !important;
}
.enhanced-variants-wrapper .radio-button-variant.ev-checked .ev-radio-circle::after {
    display: block !important;
}

/* ---- Price row ---- */
.ev-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    direction: rtl;
}
.ev-prices { display: flex; align-items: center; gap: 8px; }
.ev-price-current { font-size: 17px; font-weight: 800; color: var(--ev-price); }
.ev-price-old { font-size: 13px; color: #94a3b8; text-decoration: line-through; font-weight: 500; }

/* ---- Inline badges ---- */
.ev-save-badge {
    background: #fef2f2;
    color: var(--ev-limited-clr);
    border: 1px solid #fecaca;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.ev-disc-badge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.ev-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #10b981, var(--ev-free-clr));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.4);
}
.ev-mid-badge {
    display: inline-flex;
    align-items: center;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    direction: rtl;
}

/* ---- Corner badges ---- */
.ev-badge {
    position: absolute;
    top: -12px;
    left: 14px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ev-badge.ev-limited {
    background: var(--ev-limited-clr);
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
}
.ev-badge.ev-popular {
    background: linear-gradient(135deg, #f97316, var(--ev-popular-clr));
    box-shadow: 0 3px 14px rgba(234, 88, 12, 0.70);
    animation: ev-badgePulse 1.6s ease-in-out infinite;
    font-size: 11px;
    padding: 4px 11px;
}
.ev-badge.ev-best-value {
    background: var(--ev-best-val-clr);
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.4);
}
.ev-badge.ev-flash {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    box-shadow: 0 3px 10px rgba(8, 145, 178, 0.4);
    animation: ev-badgePulse 2s ease-in-out infinite;
}
@keyframes ev-badgePulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}

/* ---- Free-offer card ---- */
.enhanced-variants-wrapper .radio-button-variant.ev-free-offer {
    border-color: #e2e8f0 !important;
    background: linear-gradient(135deg, var(--ev-free-bg), #fff) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}
.enhanced-variants-wrapper .radio-button-variant.ev-free-offer.ev-checked {
    border-color: var(--ev-accent) !important;
    background: var(--ev-accent-bg) !important;
    box-shadow: 0 6px 24px var(--ev-accent-shadow) !important;
}

/* ---- Utility ---- */
.ev-label-text { display: none; }
.sticky-cart-bar { transition: opacity 0.3s ease, transform 0.3s ease !important; }
.single-variants,
.product-section.single-variants,
.enhanced-variants-wrapper,
.ev-heading {
    isolation: isolate;
    z-index: auto !important;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .enhanced-variants-wrapper { padding: 12px 8px; margin: 12px 0; }
    .enhanced-variants-wrapper .radio-button-variant { min-height: 70px; }
    .ev-title         { font-size: 15px; font-weight: 800; }
    .ev-subtitle      { font-size: 11px; }
    .ev-price-current { font-size: 19px; }
    .ev-disc-badge    { font-size: 12px; padding: 3px 10px; }
    .ev-mid-badge     { font-size: 11px; padding: 3px 8px; }
    .ev-badge         { font-size: 10px; padding: 3px 10px; top: -10px; }
}

/* ===================== Scarcity Bar ===================== */
@keyframes hurry-pulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(220, 38, 38, 0.15); }
    50%       { box-shadow: 0 4px 20px rgba(220, 38, 38, 0.32); }
}
@keyframes hurry-shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes hurry-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}
.single-hurry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 12px 0 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border: 1.5px solid #fca5a5;
    border-radius: 14px;
    direction: rtl;
    text-align: center;
    letter-spacing: 0 !important;
    word-spacing: normal !important;
    animation: hurry-pulse 2.2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
.single-hurry::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: hurry-shimmer 3s linear infinite;
    pointer-events: none;
}
.single-hurry .sh-main {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #b91c1c;
    line-height: 1.5;
    word-break: break-word;
    white-space: normal;
}
.single-hurry .sh-main::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dc2626;
    margin-left: 6px;
    vertical-align: middle;
    animation: hurry-live 1.2s ease-in-out infinite;
}
.single-hurry .sh-sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #ef4444;
    opacity: 0.85;
    line-height: 1.4;
    word-break: break-word;
    white-space: normal;
}

/* =============================================================
 *  Thank-You Page — Premium multi-card layout
 *  (matches reference design: forest-green hero + stacked cards)
 * ============================================================= */

/* Force-kill YouCan's mobile section padding on the thank-you page */
@media (max-width: 768px) {
    [dir] .order-summary-section,
    [dir] .orders-section,
    [dir] .pages-section,
    [dir] .cart-section,
    [dir] .auth-section,
    [dir] .categories-section,
    [dir] .section-search,
    [dir] .single-category,
    [dir] .upsell-section {
        padding: 0 !important;
    }
}
.kh-ty-card {
    --kh-green:        #1a4731;
    --kh-green-deep:   #0f3220;
    --kh-green-soft:   #f0fdf4;
    --kh-green-border: #bbf7d0;
    --kh-cream:        #fef9ed;
    --kh-cream-border: #f5e8c4;
    --kh-text:         #1f2937;
    --kh-muted:        #6b7280;
    --kh-line:         #f1f5f9;

    direction: rtl;
    max-width: 520px;
    margin: 20px auto 40px;
    padding: 0 12px;
    font-family: inherit;
    color: var(--kh-text);
    animation: kh-ty-fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes kh-ty-fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}

/* ---- State toggles (must win over bulletproof !important on button) ---- */
.kh-ty-card .kh-ty-only-done                   { display: none !important; }
.kh-ty-card.kh-ty-confirmed .kh-ty-only-review { display: none !important; }
.kh-ty-card.kh-ty-confirmed .kh-ty-only-done   { display: flex !important; }
.kh-ty-card.kh-ty-confirmed h2.kh-ty-only-done { display: block !important; }

/* ===== HERO ===== */
.kh-ty-hero {
    text-align: center;
    padding: 18px 12px 22px;
}
.kh-ty-hero-check {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #06BEFF;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow:
        0 0 0 8px rgba(26, 71, 49, 0.08),
        0 14px 30px rgba(26, 71, 49, 0.30);
    animation: kh-ty-checkPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes kh-ty-checkPop {
    0%   { transform: scale(0.3); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
.kh-ty-hero-check span { display: block; line-height: 1; margin-top: -2px; }
.kh-ty-hero-greet {
    font-size: 17px;
    color: var(--kh-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.kh-ty-hero-greet strong { color: var(--kh-green); font-weight: 800; }
.kh-ty-hero-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--kh-text);
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.kh-ty-hero-ref {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12.5px;
    color: var(--kh-muted);
    background: #f3f4f6;
    border-radius: 8px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* ===== BLOCK (each stacked card) ===== */
.kh-ty-block {
    background: #fff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    margin-bottom: 14px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.03),
        0 8px 28px rgba(15, 50, 32, 0.06);
    border: 1px solid #f0eee7;
}

/* Block header variants */
.kh-ty-block-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.kh-ty-block-head-spread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.kh-ty-block-head-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-top: 4px;
}

.kh-ty-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.kh-ty-icon-green {
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 71, 49, 0.25);
}
.kh-ty-icon-soft {
    background: var(--kh-green-soft);
    color: var(--kh-green);
    border: 1px solid var(--kh-green-border);
}

.kh-ty-block-head-text { flex: 1; min-width: 0; text-align: right; }
.kh-ty-block-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--kh-muted);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.kh-ty-block-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--kh-text);
    line-height: 1.45;
}
.kh-ty-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--kh-text);
    margin: 0;
    line-height: 1.3;
}

/* ---- Call number bar (first card bottom) ---- */
.kh-ty-callbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
}
.kh-ty-callbar-lbl { color: var(--kh-muted); font-weight: 600; }
.kh-ty-callbar strong {
    color: var(--kh-green);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* ---- Data confirmation card ---- */
.kh-ty-confirmed-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 800;
    color: var(--kh-green);
    background: var(--kh-green-soft);
    border: 1px solid var(--kh-green-border);
    border-radius: 9999px;
    animation: kh-ty-pillIn 0.4s ease;
}
@keyframes kh-ty-pillIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: none; }
}
.kh-ty-data-list {
    margin: 8px 0 16px;
    padding: 12px 14px;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    direction: rtl;
}
.kh-ty-data-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    direction: rtl;
    text-align: right;
}
.kh-ty-data-row:last-child { border-bottom: none; }
.kh-ty-data-lbl {
    font-size: 13.5px;
    color: var(--kh-muted);
    font-weight: 600;
    flex-shrink: 0;
    text-align: right;
}
.kh-ty-data-val {
    font-size: 14.5px;
    color: var(--kh-text);
    font-weight: 700;
    text-align: right;
    unicode-bidi: plaintext;
    word-break: break-word;
    min-width: 0;
}

/* ---- Confirm button (HERO CTA) ---- *
 * Bulletproofed against YouCan/PageBuilder inherited button styles
 * with !important + high specificity. */
.kh-ty-card .kh-ty-confirm-btn,
.kh-ty-card button.kh-ty-confirm-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 58px !important;
    background: #1a4731 !important;
    background: var(--kh-green, #1a4731) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 17px 22px !important;
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    letter-spacing: 0.01em !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
    text-transform: none !important;
    box-shadow:
        0 4px 0 #0f3220,
        0 12px 24px rgba(26, 71, 49, 0.35) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
    font-family: inherit !important;
    position: relative !important;
    overflow: hidden !important;
    line-height: 1.2 !important;
}
.kh-ty-card .kh-ty-confirm-btn span,
.kh-ty-card button.kh-ty-confirm-btn span {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    font: inherit !important;
}
.kh-ty-confirm-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
    background-size: 220% 100%;
    background-position: -120% 0;
    animation: kh-ty-btnShine 3s linear infinite;
    pointer-events: none;
}
@keyframes kh-ty-btnShine {
    0%   { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}
.kh-ty-confirm-btn .kh-ty-btn-ico { font-size: 19px; line-height: 1; }
.kh-ty-confirm-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 6px 0 var(--kh-green-deep),
        0 16px 30px rgba(26, 71, 49, 0.45);
}
.kh-ty-confirm-btn:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 var(--kh-green-deep),
        0 4px 10px rgba(26, 71, 49, 0.3);
}

/* ---- Done state (replaces the button after confirm) ---- */
.kh-ty-done-state {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 20px;
    background: var(--kh-green-soft);
    color: var(--kh-green);
    border: 1.5px dashed var(--kh-green-border);
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 800;
}

/* ---- Wrong-info redirect link ---- */
.kh-ty-wrong-info {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--kh-muted);
    direction: rtl;
}
.kh-ty-wrong-link {
    color: var(--kh-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--kh-green);
    padding-bottom: 1px;
    transition: opacity .15s;
}
.kh-ty-wrong-link:hover { opacity: .75; }

/* ---- Bullets (what happens in the call) ---- */
.kh-ty-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kh-ty-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 4px;
    font-size: 14.5px;
    color: var(--kh-text);
    line-height: 1.55;
    font-weight: 500;
}
.kh-ty-bullets li + li { border-top: 1px solid var(--kh-line); }
.kh-ty-bullet-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1;
    margin-top: 1px;
}

/* ---- Order summary card ---- */
.kh-ty-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.kh-ty-cash-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    font-size: 11.5px;
    font-weight: 800;
    color: #92400e;
    background: var(--kh-cream);
    border: 1px solid var(--kh-cream-border);
    border-radius: 9999px;
    white-space: nowrap;
}
.kh-ty-product-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fafbfc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 12px;
}
.kh-ty-prod-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--kh-text);
    white-space: nowrap;
    flex-shrink: 0;
}
.kh-ty-prod-price small {
    font-size: 12px;
    font-weight: 700;
    color: var(--kh-muted);
}
.kh-ty-prod-info { flex: 1; min-width: 0; }
.kh-ty-prod-name {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--kh-text);
    line-height: 1.35;
    margin-bottom: 3px;
    word-break: break-word;
}
.kh-ty-prod-variant {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--kh-green);
    background: var(--kh-green-soft);
    border-radius: 6px;
}
.kh-ty-prod-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.kh-ty-prep {
    padding: 11px 14px;
    background: linear-gradient(135deg, #fff5f5, #fee2e2);
    border: 1.5px solid #fca5a5;
    border-radius: 12px;
    color: #991b1b;
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    line-height: 1.55;
}
.kh-ty-prep strong { color: #7f1d1d; font-size: 13.5px; }

/* ===== Mobile ===== */
@media (max-width: 480px) {
    .kh-ty-card { margin: 12px auto 28px; padding: 0 4px; }
    .kh-ty-hero { padding: 10px 8px 18px; }
    .kh-ty-hero-check { width: 68px; height: 68px; font-size: 30px; }
    .kh-ty-hero-greet { font-size: 15px; }
    .kh-ty-hero-title { font-size: 1.35rem; }
    .kh-ty-block { padding: 16px 14px 16px; border-radius: 16px; }
    .kh-ty-icon-circle { width: 40px; height: 40px; font-size: 18px; }
    .kh-ty-block-title { font-size: 14px; }
    .kh-ty-confirm-btn { font-size: 16px; padding: 15px 18px; }
    .kh-ty-bullets li { font-size: 13.5px; gap: 10px; padding: 10px 2px; }
    .kh-ty-bullet-ico { width: 28px; height: 28px; font-size: 15px; }
    .kh-ty-prod-name { font-size: 13.5px; }
    .kh-ty-prod-price { font-size: 15.5px; }
    .kh-ty-prod-img { width: 48px; height: 48px; font-size: 22px; border-radius: 10px; }
    .kh-ty-callbar { font-size: 13px; padding: 10px 12px; }
    .kh-ty-callbar strong { font-size: 14px; }
    .kh-ty-data-lbl { font-size: 12.5px; }
    .kh-ty-data-val { font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) {
    .kh-ty-card,
    .kh-ty-hero-check,
    .kh-ty-confirm-btn::after,
    .kh-ty-confirmed-pill { animation: none; }
}

</style>