/* ==========================================================================
   PUBLICARD - PRODUCT + CHECKOUT EXPERIENCE
   --------------------------------------------------------------------------
   Final visual layer for the product page that also contains the checkout.
   Loaded after style-product.css and style-checkout.css.
   ========================================================================== */

body.single-product {
    --pc-product-admin-offset: 0px;
    --pc-product-bar-offset: 0px;
    --pc-product-header-offset: calc(var(--pc-product-admin-offset) + var(--pc-product-bar-offset) + var(--header-height, 70px));
    --pc-product-page-top: calc(var(--pc-product-header-offset) + 42px);
    --pc-product-sticky-top: calc(var(--pc-product-header-offset) + 24px);
    --pc-product-page: #f4f6fa;
    --pc-product-surface: #ffffff;
    --pc-product-ink: var(--pc-slate-900, #0f172a);
    --pc-product-muted: var(--pc-slate-500, #64748b);
    --pc-product-line: rgba(148, 163, 184, 0.24);
    --pc-product-line-strong: rgba(100, 116, 139, 0.24);
    --pc-product-blue: var(--pc-blue-600, #2563eb);
    --pc-product-pink: var(--pc-pink-500, #ec4899);
    --pc-product-success: var(--pc-green-500, #10b981);
    --pc-product-radius: 22px;
    --pc-product-radius-sm: 14px;
    --pc-product-shadow: 0 22px 70px rgba(15, 23, 42, 0.09);
    --pc-product-shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.07);
    background: var(--pc-product-page);
}

body.admin-bar.single-product {
    --pc-product-admin-offset: 32px;
}

body.single-product:has(.hello-bar-modern) {
    --pc-product-bar-offset: 50px;
}

body.single-product #cmplz-manage-consent,
body.single-product .cmplz-manage-consent {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar.single-product {
        --pc-product-admin-offset: 46px;
    }
}

body.single-product .site-content,
body.single-product #content,
body.single-product .entry-content {
    background: var(--pc-product-page);
}

body.single-product .saas-wrapper {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
    padding: var(--pc-product-page-top) 0 72px;
}

body.single-product .saas-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 34px;
    align-items: stretch;
    margin: 0 0 46px;
}

body.single-product .visual-area,
body.single-product .interface-area,
body.single-product .header-block {
    min-width: 0;
}

body.single-product .visual-area {
    align-self: stretch;
}

body.single-product .sticky-wrapper {
    position: sticky;
    top: var(--pc-product-sticky-top);
    height: fit-content;
}

body.single-product .visual-card-3d {
    position: relative;
    overflow: visible;
    padding: 18px;
    border: 1px solid var(--pc-product-line);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
        var(--pc-product-surface);
    box-shadow: var(--pc-product-shadow);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

body.single-product .visual-card-3d::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(236, 72, 153, 0.95)) 0 0 / 25% 5px no-repeat,
        linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.95)) 100% 0 / 54% 5px no-repeat;
}

body.single-product .visual-card-3d:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 26px 78px rgba(15, 23, 42, 0.12);
}

body.single-product .img-container {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        #ffffff;
    background-size: 28px 28px;
}

body.single-product .img-container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%, transparent 100%);
    transform: translateX(-130%);
    animation: pcProductImageSheen 7.5s ease-in-out infinite;
}

body.single-product .product-img-live {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border-radius: 18px;
    transform: translate3d(0, 0, 0) scale(1.01);
    transform-origin: center center;
    will-change: transform;
}

body.single-product .product-img-live.floating-anim {
    animation: pcProductImageFloat 7s ease-in-out infinite;
}

body.single-product .floating-anim:not(.product-img-live),
body.single-product .anim-fade-up,
body.single-product .anim-zoom-in {
    animation: none;
    opacity: 1;
}

@keyframes pcProductImageFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1.01);
    }

    50% {
        transform: translate3d(0, -10px, 0) scale(1.025);
    }
}

@keyframes pcProductImageSheen {
    0%,
    58%,
    100% {
        transform: translateX(-130%);
        opacity: 0;
    }

    68% {
        opacity: 1;
    }

    82% {
        transform: translateX(130%);
        opacity: 0;
    }
}

@keyframes pcPromoBadgePulse {
    0%,
    100% {
        transform: var(--pc-promo-badge-transform) scale(1) rotate(0deg);
        box-shadow: 0 24px 54px rgba(190, 18, 60, 0.28);
    }

    44% {
        transform: var(--pc-promo-badge-transform) scale(1.07) rotate(-2deg);
        box-shadow: 0 30px 70px rgba(190, 18, 60, 0.36);
    }

    66% {
        transform: var(--pc-promo-badge-transform) scale(0.99) rotate(1deg);
    }
}

@keyframes pcPromoValuePulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    44% {
        transform: translateY(-1px) scale(1.08);
    }

    66% {
        transform: translateY(0) scale(0.98);
    }
}

body.single-product .promo-sticker {
    --pc-promo-badge-transform: translate(20%, -34%);
    position: absolute;
    top: 0;
    right: 0;
    width: 108px;
    height: 108px;
    min-width: 108px;
    min-height: 108px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pc-product-pink), #f43f5e);
    color: #ffffff;
    border: 6px solid var(--pc-product-page);
    box-shadow: 0 24px 54px rgba(190, 18, 60, 0.28);
    transform: var(--pc-promo-badge-transform) scale(1);
    transform-origin: center center;
    animation: pcPromoBadgePulse 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    overflow: visible;
    isolation: isolate;
    will-change: transform, box-shadow;
    z-index: 5;
}

body.single-product .promo-sticker::before {
    content: none;
    display: none;
}

body.single-product .promo-sticker::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
    z-index: 0;
}

body.single-product .promo-sticker .sticker-val {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 2.05rem;
    font-weight: 900;
    line-height: 1;
    transform-origin: center center;
    animation: pcPromoValuePulse 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body.single-product .social-proof-animated {
    justify-content: flex-start;
    gap: 14px;
    margin: 18px 0 0;
    padding: 14px 16px;
    border: 1px solid var(--pc-product-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

body.single-product .avatars-group {
    padding-left: 10px;
}

body.single-product .av-circle {
    width: 36px;
    height: 36px;
    border-width: 2px;
}

body.single-product .count-badge-social {
    background: var(--pc-product-ink);
    color: #ffffff;
}

body.single-product .proof-text {
    margin: 0;
    color: var(--pc-product-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

body.single-product .interface-area {
    padding: 4px 0 0;
}

body.single-product .tags-wrapper {
    display: none;
}

body.single-product .tag-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.single-product .gradient-blue {
    background: rgba(37, 99, 235, 0.10);
    color: var(--pc-product-blue);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

body.single-product .gradient-red {
    background: rgba(236, 72, 153, 0.11);
    color: #be185d;
    border: 1px solid rgba(236, 72, 153, 0.18);
}

body.single-product .product-title-lg {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--pc-product-ink);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

body.single-product .meta-live {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 14px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

body.single-product .price-live-wrap,
body.single-product .rating-live {
    border: 1px solid var(--pc-product-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

body.single-product .price-live-wrap {
    padding: 18px 20px;
}

body.single-product .price-live {
    color: var(--pc-product-ink);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

body.single-product .price-live del {
    color: #94a3b8;
    font-size: 0.68em;
    font-weight: 700;
    opacity: 1;
}

body.single-product .price-live ins {
    color: var(--pc-product-ink);
    text-decoration: none;
}

body.single-product .price-legal-note {
    max-width: 520px;
    color: var(--pc-product-muted);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

body.single-product .rating-live {
    min-width: 170px;
    justify-content: center;
    flex-direction: column;
    padding: 16px 18px;
    gap: 6px;
    color: var(--pc-product-ink);
}

body.single-product .stars-animated {
    justify-content: center;
}

body.single-product .stars-animated .filled-star {
    color: #f5b301;
}

body.single-product .stars-animated .empty-star {
    color: #cbd5e1;
}

body.single-product .review-count-text {
    color: var(--pc-product-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

body.single-product .desc-glass,
body.single-product .ltd-sidebar-box,
body.single-product .action-zone-premium {
    border: 1px solid var(--pc-product-line);
    border-radius: var(--pc-product-radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--pc-product-shadow-soft);
}

body.single-product .ltd-sidebar-box {
    position: relative;
    overflow: hidden;
    margin: 0 0 18px;
    padding: 22px 24px 20px;
    border-color: rgba(16, 185, 129, 0.34) !important;
    background:
        linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(255, 255, 255, 0.94) 54%, rgba(239, 246, 255, 0.82)),
        #ffffff !important;
    box-shadow:
        0 24px 58px rgba(15, 23, 42, 0.08),
        0 14px 34px rgba(16, 185, 129, 0.10) !important;
}

body.single-product .ltd-sidebar-box::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--pc-product-success), var(--pc-product-blue));
}

body.single-product .ltd-sidebar-box::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    pointer-events: none;
}

body.single-product .ltd-header-row {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

body.single-product .flash-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    background: #ffffff;
    color: #047857;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

body.single-product .flash-badge i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 0.78rem;
}

body.single-product .ltd-main-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #102033;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.65;
}

body.single-product .ltd-main-text strong {
    display: block;
    margin: 0 0 6px;
    color: #047857;
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.25;
}

body.single-product .sub-text-stock {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: #047857;
    font-size: 0.9rem;
    font-weight: 850;
    text-align: center;
}

body.single-product .desc-glass {
    margin: 0 0 18px;
    padding: 20px 22px;
    color: #243044;
    font-size: 1.04rem;
    line-height: 1.65;
}

body.single-product .desc-glass p {
    margin: 0 0 12px;
}

body.single-product .desc-glass p:last-child {
    margin-bottom: 0;
}

body.single-product .action-zone-premium {
    padding: 22px;
}

body.single-product .selector-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}

body.single-product .label-qty {
    color: var(--pc-product-ink);
    font-size: 1rem;
    font-weight: 800;
}

body.single-product .qty-stepper-neon {
    width: 156px;
    height: 50px;
    overflow: hidden;
    border: 1px solid var(--pc-product-line-strong);
    border-radius: 15px;
    background: #ffffff;
}

body.single-product .qty-stepper-neon button {
    width: 52px;
    height: 50px;
    color: var(--pc-product-ink);
    background: #f8fafc;
}

body.single-product .qty-stepper-neon button:hover {
    color: #ffffff;
    background: var(--pc-product-ink);
}

body.single-product .qty-stepper-neon input {
    height: 50px;
    padding: 0 !important;
    border-color: var(--pc-product-line);
    color: var(--pc-product-ink);
    font-weight: 800;
    text-align: center !important;
    -moz-appearance: textfield;
}

body.single-product #btn-add-fix.btn-shimmer-effect,
body.single-product #place_order {
    min-height: 58px;
    border: 1px solid var(--pc-product-ink) !important;
    border-radius: 16px !important;
    background: var(--pc-product-ink) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22) !important;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    transform: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.single-product #btn-add-fix.btn-shimmer-effect:hover,
body.single-product #place_order:hover {
    transform: translateY(-2px);
    background: #020817 !important;
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.28) !important;
}

body.single-product .shimmer-line {
    display: none;
}

body.single-product .purchase-terms-note {
    justify-content: flex-start;
    margin: 14px 0 0;
    color: #047857;
    font-size: 0.91rem;
    font-weight: 800;
    text-align: left;
}

body.single-product .trust-icons-row {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--pc-product-line);
    color: #64748b;
    font-size: 1.58rem;
}

body.single-product .secure-label {
    color: #047857;
    font-size: 0.88rem;
    font-weight: 800;
}

body.single-product .tabs-modern-container {
    margin-top: 58px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

body.single-product .tabs-nav-ios {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    gap: 12px;
    width: min(100%, 720px);
    max-width: 100%;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.single-product .tab-btn {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    overflow: hidden;
    border: 1px solid var(--pc-product-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: #526078;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    transform: none !important;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

body.single-product .tab-btn::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: transparent;
    z-index: -1;
}

body.single-product .tab-btn:hover {
    color: var(--pc-product-ink);
    border-color: rgba(37, 99, 235, 0.24);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    transform: none !important;
}

body.single-product .tab-btn.active {
    color: var(--pc-product-ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
        #ffffff;
    border-color: rgba(37, 99, 235, 0.34);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
    transform: none !important;
}

body.single-product .tab-btn.active::before {
    background: linear-gradient(90deg, var(--pc-product-pink), var(--pc-product-blue));
}

body.single-product .tab-btn.active::after {
    content: none;
}

body.single-product .bubble-count {
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--pc-product-blue);
    font-size: 0.8rem;
    font-weight: 900;
}

body.single-product .tab-btn:not(.active) .bubble-count {
    color: #526078;
    background: rgba(148, 163, 184, 0.14);
}

body.single-product .content-box-glass {
    border: 1px solid var(--pc-product-line);
    border-radius: var(--pc-product-radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--pc-product-shadow-soft);
}

body.single-product .content-box-glass {
    max-width: none;
    padding: 28px;
    color: #243044;
}

body.single-product .guarantee-grid {
    max-width: none;
    gap: 18px;
}

body.single-product .guarantee-card {
    padding: 24px;
    border: 1px solid var(--pc-product-line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transform: none;
}

body.single-product .guarantee-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.26);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.single-product .g-icon {
    color: var(--pc-product-blue);
}

body.single-product form.checkout_coupon button[name="apply_coupon"] {
    border-radius: 14px;
    background: var(--pc-product-ink);
    color: #ffffff;
    font-weight: 800;
}

body.single-product textarea,
body.single-product input[type="text"],
body.single-product input[type="email"] {
    border-color: var(--pc-product-line-strong);
    border-radius: 14px;
}

body.single-product textarea:focus,
body.single-product input:focus {
    border-color: var(--pc-product-blue);
    box-shadow: none;
    outline: 2px solid rgba(37, 99, 235, 0.48);
    outline-offset: 2px;
}

/* Checkout section */

body.single-product .checkout-ui-wrapper {
    background: var(--pc-product-page);
    font-family: var(--font-body, "Outfit", sans-serif);
    padding-bottom: 80px;
}

body.single-product .checkout-ui-wrapper.active {
    display: block;
    opacity: 1;
}

body.single-product .checkout-header-clean {
    margin-bottom: -58px;
    padding: 44px 20px 98px;
    background:
        linear-gradient(90deg, var(--pc-product-pink) 0 16%, transparent 16% 72%, var(--pc-product-blue) 72% 100%) top / 100% 5px no-repeat,
        var(--pc-product-ink);
    text-align: center;
}

body.single-product .checkout-header-clean .secure-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 9px 15px;
    border: 1px solid rgba(16, 185, 129, 0.30);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #bbf7d0;
    font-size: 0.9rem;
    font-weight: 800;
    animation: none;
}

body.single-product .checkout-header-clean h1 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

body.single-product .checkout-container-pro {
    width: min(1180px, calc(100% - 40px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative;
}

body.single-product .woo-notices-area {
    margin-bottom: 16px;
}

body.single-product form.woocommerce-checkout {
    width: 100%;
}

@media (min-width: 992px) {
    body.single-product form.woocommerce-checkout {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr) !important;
        gap: 24px !important;
        align-items: start;
        grid-auto-flow: row;
    }

    body.single-product form.woocommerce-checkout > * {
        grid-column: 1 / -1 !important;
        width: 100%;
    }

    body.single-product #customer_details {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    body.single-product #order_review,
    body.single-product #order_review_heading {
        grid-column: 2 !important;
        grid-row: auto !important;
    }
}

body.single-product #customer_details,
body.single-product #order_review {
    overflow: visible;
    border: 1px solid var(--pc-product-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--pc-product-shadow);
}

body.single-product #customer_details {
    padding: 28px;
}

body.single-product #order_review {
    padding: 28px;
}

body.single-product #order_review.publicard-scroll-focus {
    border-color: rgba(37, 99, 235, 0.38);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    animation: pcCheckoutPaymentFocus 1.4s ease-out 1;
}

@keyframes pcCheckoutPaymentFocus {
    0% {
        border-color: rgba(37, 99, 235, 0.18);
    }

    100% {
        border-color: rgba(37, 99, 235, 0.38);
    }
}

@media (min-width: 992px) {
    body.single-product #customer_details,
    body.single-product #order_review {
        position: sticky !important;
        top: var(--pc-product-sticky-top) !important;
        align-self: start;
        z-index: 10;
    }
}

body.single-product #customer_details::before,
body.single-product #order_review::before {
    margin: 0 0 20px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--pc-product-line);
    color: var(--pc-product-ink);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

body.single-product .publicard-checkout-auth-status,
body.single-product .publicard-co-auth-connected {
    margin-bottom: 18px;
    border-radius: 16px;
}

body.single-product .publicard-co-auth-connected {
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(16, 185, 129, 0.24);
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(37, 99, 235, 0.04)),
        #ffffff;
    color: #047857;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

body.single-product .publicard-co-auth-connected i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ecfdf3;
    color: #059669;
}

body.single-product .co-auth-banner {
    margin: 0 0 18px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(236, 72, 153, 0.06)),
        #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

body.single-product .co-auth-banner-btn,
body.single-product .account-form-btn {
    border-radius: 14px;
    font-weight: 800;
}

body.single-product .co-auth-form-container {
    --login-ink: var(--pc-product-ink);
    --login-panel: #ffffff;
    --login-line: var(--pc-product-line);
    --login-muted: var(--pc-product-muted);
    --login-blue: var(--pc-product-blue);
    --login-pink: var(--pc-product-pink);
    --login-green: var(--pc-product-success);
    --login-field: #f8fafc;
    --login-field-border: rgba(100, 116, 139, 0.24);
    --login-focus: rgba(37, 99, 235, 0.12);
}

body.single-product .co-auth-login-header {
    margin: 0 0 22px;
}

body.single-product .co-auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--pc-product-blue);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

body.single-product .co-auth-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--pc-product-pink);
}

body.single-product .co-auth-login-header h2 {
    margin: 0 0 12px;
    color: var(--pc-product-ink);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

body.single-product .co-auth-login-header p {
    max-width: 430px;
    margin: 0;
    color: var(--pc-product-muted);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.55;
}

@media (min-width: 992px) {
    body.single-product .co-auth-banner {
        display: none !important;
    }

    body.single-product .co-auth-modal-overlay {
        display: block;
        position: static;
        padding: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    body.single-product .co-auth-modal-overlay .co-auth-form-container {
        display: block !important;
        margin: 0 0 24px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
}

body.single-product .toggle-new-customer {
    padding: 14px 0;
    color: #243044;
    font-size: 1rem;
    font-weight: 700;
}

body.single-product .toggle-new-customer span {
    color: var(--pc-product-blue);
}

body.single-product .woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

body.single-product .form-row label {
    margin-bottom: 7px;
    color: #344054;
    font-size: 0.88rem;
    font-weight: 800;
}

body.single-product .woocommerce-checkout input.input-text,
body.single-product .woocommerce-checkout select,
body.single-product .select2-container--default .select2-selection--single {
    min-height: 52px !important;
    border: 1px solid var(--pc-product-line-strong) !important;
    border-radius: 14px !important;
    background-color: #f8fafc !important;
    color: var(--pc-product-ink) !important;
    font-size: 0.96rem !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.single-product .woocommerce-checkout input.input-text:focus,
body.single-product .woocommerce-checkout select:focus,
body.single-product .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--pc-product-blue) !important;
    background: #ffffff !important;
    box-shadow: none !important;
    outline: 2px solid rgba(37, 99, 235, 0.48) !important;
    outline-offset: 2px !important;
}

body.single-product .woocommerce-form-coupon-toggle .woocommerce-info,
body.single-product .woocommerce-info,
body.single-product .woocommerce-message,
body.single-product .woocommerce-error {
    border-radius: 16px !important;
    box-shadow: none !important;
}

body.single-product form.checkout_coupon,
body.single-product form.woocommerce-form-login {
    border: 1px dashed var(--pc-product-line-strong) !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

body.single-product table.shop_table {
    margin-bottom: 18px;
    border-collapse: separate;
    border-spacing: 0;
}

body.single-product table.shop_table th,
body.single-product table.shop_table td {
    border-color: var(--pc-product-line) !important;
    color: #334155;
}

body.single-product table.shop_table th {
    color: var(--pc-product-ink);
    font-weight: 800;
}

body.single-product tr.order-total th,
body.single-product tr.order-total td {
    color: var(--pc-product-ink);
    font-family: var(--font-head, "Space Grotesk", sans-serif);
    font-size: 1.22rem;
    font-weight: 800;
}

body.single-product #payment ul.payment_methods {
    gap: 12px;
}

body.single-product #payment ul.payment_methods li {
    border: 1px solid var(--pc-product-line);
    border-radius: 16px;
    background: #ffffff;
}

body.single-product #payment ul.payment_methods li:hover {
    border-color: rgba(37, 99, 235, 0.26);
}

body.single-product #payment ul.payment_methods li label {
    color: var(--pc-product-ink);
    font-weight: 800;
}

body.single-product #payment .payment_box,
body.single-product .publicard-payment-terms {
    border: 1px solid var(--pc-product-line);
    border-radius: 16px;
    background: #f8fafc;
}

body.single-product #order_review #payment > .wcpay-express-checkout-wrapper > #wc-stripe-payment-request-wrapper {
    padding: 12px;
    border-color: var(--pc-product-line);
    border-radius: 16px;
    background: #f8fafc;
}

body.single-product .woocommerce-terms-and-conditions-wrapper {
    margin: 18px 0;
    color: var(--pc-product-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

body.single-product .woocommerce-terms-and-conditions-wrapper a {
    color: var(--pc-product-blue);
    font-weight: 800;
}

@media (max-width: 1100px) {
    body.single-product .saas-wrapper {
        width: min(calc(100% - 32px), 980px);
        padding-top: calc(var(--pc-product-header-offset) + 28px);
    }

    body.single-product .saas-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    body.single-product .sticky-wrapper {
        position: relative;
        top: auto;
    }

    body.single-product .visual-card-3d {
        max-width: 620px !important;
        margin: 0 auto;
        padding: 18px !important;
    }

    body.single-product .social-proof-animated {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    body.single-product .product-title-lg {
        font-size: 42px;
    }
}

@media (max-width: 900px) {
    body.single-product .meta-live {
        grid-template-columns: 1fr;
    }

    body.single-product .rating-live {
        min-width: 0;
        align-items: flex-start;
    }

    body.single-product .tabs-nav-ios {
        overflow-x: visible;
        justify-content: center;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.single-product .tab-btn {
        min-width: 0;
    }

    body.single-product .guarantee-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        margin: 0 -16px !important;
        padding: 2px 16px 22px !important;
        scroll-padding-left: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.single-product .guarantee-grid::-webkit-scrollbar {
        display: none;
    }

    body.single-product .guarantee-card {
        flex: 0 0 min(340px, 68vw);
        width: min(340px, 68vw) !important;
        min-width: min(340px, 68vw) !important;
        scroll-snap-align: start;
    }

    body.single-product #customer_details,
    body.single-product #order_review {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 640px) {
    body.single-product .saas-wrapper {
        width: calc(100% - 24px);
        padding: calc(var(--pc-product-header-offset) + 18px) 0 52px;
    }

    body.single-product .saas-grid {
        gap: 22px;
        margin-bottom: 34px;
    }

    body.single-product .visual-card-3d {
        margin-top: 14px !important;
        padding: 12px !important;
        border-radius: 22px;
    }

    body.single-product .promo-sticker {
        --pc-promo-badge-transform: translate(-4%, -26%);
        width: 82px;
        height: 82px;
        min-width: 82px;
        min-height: 82px;
        border-width: 4px;
    }

    body.single-product .promo-sticker .sticker-val {
        font-size: 1.45rem;
    }

    body.single-product .visual-card-3d::before {
        background:
            linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(236, 72, 153, 0.95)) 0 0 / 34% 4px no-repeat,
            linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.95)) 100% 0 / 48% 4px no-repeat;
    }

    body.single-product .img-container,
    body.single-product .product-img-live {
        border-radius: 16px;
    }

    body.single-product .social-proof-animated {
        align-items: flex-start;
        padding: 12px;
    }

    body.single-product .product-title-lg {
        font-size: 34px;
        line-height: 1.08;
    }

    body.single-product .price-live {
        font-size: 30px;
    }

    body.single-product .desc-glass,
    body.single-product .ltd-sidebar-box,
    body.single-product .action-zone-premium,
    body.single-product .content-box-glass {
        border-radius: 18px;
        padding: 18px;
    }

    body.single-product .selector-row {
        align-items: stretch;
        flex-direction: column;
    }

    body.single-product .qty-stepper-neon {
        width: 100%;
    }

    body.single-product .qty-stepper-neon button {
        flex: 0 0 54px;
    }

    body.single-product .trust-icons-row {
        justify-content: center;
        text-align: center;
    }

    body.single-product .secure-label {
        width: 100%;
        justify-content: center;
    }

    body.single-product .tabs-modern-container {
        margin-top: 36px;
    }

    body.single-product .tabs-nav-ios {
        width: 100%;
        gap: 8px;
        padding: 0;
        border-radius: 0;
    }

    body.single-product .tab-btn {
        min-width: 0;
        min-height: 50px;
        padding: 10px 8px;
        border-radius: 15px;
        font-size: 0.82rem;
    }

    body.single-product .bubble-count {
        min-width: 22px;
        height: 22px;
        padding: 0 6px;
        font-size: 0.72rem;
    }

    body.single-product .guarantee-grid {
        margin: 0 -12px !important;
        padding: 2px 12px 22px !important;
        scroll-padding-left: 12px;
    }

    body.single-product .guarantee-card {
        flex-basis: 74vw;
        width: 74vw !important;
        min-width: 74vw !important;
    }

    body.single-product .checkout-header-clean {
        margin-bottom: -40px;
        padding: 34px 14px 72px;
    }

    body.single-product .checkout-header-clean h1 {
        font-size: 30px;
    }

    body.single-product .checkout-container-pro {
        width: calc(100% - 24px) !important;
    }

    body.single-product #customer_details,
    body.single-product #order_review {
        padding: 20px;
        border-radius: 20px;
    }

    body.single-product #customer_details::before,
    body.single-product #order_review::before {
        font-size: 22px;
    }

    body.single-product #billing_first_name_field,
    body.single-product #billing_last_name_field {
        width: 100% !important;
        float: none !important;
        display: block !important;
        margin-right: 0 !important;
    }
}

/* ==========================================================================
   PRODUCT PAGE - PUBLICARD ALIGNMENT PASS
   Keeps the product page on the same visual system as header/account/claim.
   ========================================================================== */

body.single-product {
    --pc-product-page: #eef3fb;
    background:
        linear-gradient(90deg, rgba(214, 227, 245, 0.62) 1px, transparent 1px),
        linear-gradient(180deg, rgba(214, 227, 245, 0.62) 1px, transparent 1px),
        linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
    background-size: 56px 56px, 56px 56px, auto;
}

body.single-product .site-content,
body.single-product #content,
body.single-product .entry-content,
body.single-product .checkout-ui-wrapper {
    background: transparent;
}

body.single-product .visual-card-3d,
body.single-product .desc-glass,
body.single-product .ltd-sidebar-box,
body.single-product .action-zone-premium,
body.single-product .content-box-glass,
body.single-product .guarantee-card {
    border-color: rgba(214, 227, 245, 0.92);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

body.single-product .visual-card-3d {
    padding: 16px;
    border-radius: 24px;
}

body.single-product .visual-card-3d > .product-img-live {
    z-index: 1;
    border-radius: 18px;
}

body.single-product .visual-card-3d::before {
    inset: 0 0 auto;
    z-index: 2;
    height: 7px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #ec4899 0 18%, #0f172a 18% 72%, #2563eb 72% 100%);
}

body.single-product .img-container {
    border: 1px solid rgba(214, 227, 245, 0.86);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(214, 227, 245, 0.58) 1px, transparent 1px),
        linear-gradient(180deg, rgba(214, 227, 245, 0.58) 1px, transparent 1px),
        #ffffff;
    background-size: 36px 36px, 36px 36px, auto;
}

body.single-product .product-img-live,
body.single-product .product-img-live.floating-anim {
    animation: none;
    transform: none;
    will-change: auto;
}

body.single-product .img-container::after {
    display: none;
}

body.single-product .social-proof-animated {
    border-color: rgba(214, 227, 245, 0.92);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

body.single-product .tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

body.single-product .tag-pill {
    min-height: 32px;
    border-radius: 999px;
    padding: 7px 12px;
    background: #f8fbff;
    border: 1px solid #d6e3f5;
    color: #2563eb;
}

body.single-product .gradient-red {
    border-color: #fbcfe8;
    background: #fff7fb;
    color: #be185d;
}

body.single-product .product-title-lg {
    max-width: 720px;
    margin-bottom: 18px;
    color: #0f172a;
    font-weight: 900;
}

body.single-product .price-live-wrap,
body.single-product .rating-live {
    border-color: rgba(214, 227, 245, 0.92);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

body.single-product .ltd-sidebar-box {
    border-color: rgba(16, 185, 129, 0.26) !important;
    border-radius: 20px;
    background: #ffffff !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07) !important;
}

body.single-product .ltd-sidebar-box::before {
    width: 5px;
    background: linear-gradient(180deg, #0d9488, #2563eb);
}

body.single-product .ltd-sidebar-box::after {
    display: none;
}

body.single-product .flash-badge {
    border-color: #d6e3f5;
    background: #f8fbff;
    color: #0f172a;
    box-shadow: none;
}

body.single-product .desc-glass,
body.single-product .action-zone-premium,
body.single-product .content-box-glass {
    border-radius: 20px;
}

body.single-product #btn-add-fix.btn-shimmer-effect,
body.single-product #place_order {
    border-radius: 14px !important;
    background: #0f172a !important;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.22) !important;
}

body.single-product #btn-add-fix.btn-shimmer-effect:hover,
body.single-product #place_order:hover {
    border-color: #2563eb !important;
    background: #2563eb !important;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26) !important;
}

body.single-product .tabs-nav-ios {
    width: max-content;
    max-width: 100%;
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid #d6e3f5;
    border-radius: 999px;
    background: #f8fbff;
}

body.single-product .tab-btn {
    width: auto;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: #526078;
}

body.single-product .tab-btn::before {
    display: none;
}

body.single-product .tab-btn:hover,
body.single-product .tab-btn.active {
    border-color: #2563eb;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

body.single-product .bubble-count {
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
}

body.single-product .guarantee-card {
    border-radius: 18px;
}

body.single-product .g-icon {
    color: #2563eb;
}

body.single-product .saas-mega-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(214, 227, 245, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

body.single-product .mega-header {
    max-width: 920px;
    margin-bottom: clamp(42px, 6vw, 72px);
}

body.single-product .tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d6e3f5;
    border-radius: 999px;
    background: #f8fbff;
    color: #2563eb;
    box-shadow: none;
}

body.single-product .mega-header h2 {
    color: #0f172a;
    font-size: clamp(2.15rem, 1.25rem + 3.2vw, 3.85rem);
    line-height: 1.06;
    letter-spacing: 0;
}

body.single-product .gradient-text-anim {
    animation: none;
    background: none;
    color: #2563eb;
    -webkit-text-fill-color: #2563eb;
    -webkit-background-clip: initial;
    background-clip: initial;
}

body.single-product .mega-intro {
    color: #5c6f8a;
    font-size: clamp(1rem, 0.92rem + 0.35vw, 1.18rem);
    font-weight: 600;
    line-height: 1.65;
}

body.single-product .mega-intro a {
    color: #2563eb;
    font-weight: 800;
}

body.single-product .mega-section {
    gap: clamp(32px, 5vw, 70px);
    margin-bottom: clamp(56px, 8vw, 96px);
    padding: 0;
}

body.single-product .step-badge {
    color: rgba(37, 99, 235, 0.10);
    font-size: clamp(3.5rem, 2.8rem + 2vw, 5rem);
    letter-spacing: 0;
}

body.single-product .ms-content h3 {
    color: #0f172a;
    font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem);
    letter-spacing: 0;
}

body.single-product .ms-lead {
    border-left-color: #2563eb;
    color: #5c6f8a;
    font-size: 1.08rem;
    font-weight: 600;
}

body.single-product .img-shadow {
    border: 1px solid rgba(214, 227, 245, 0.92);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

body.single-product .float-stat {
    border: 1px solid rgba(214, 227, 245, 0.92);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

body.single-product .feat-box,
body.single-product .highlight-card {
    border: 1px solid rgba(214, 227, 245, 0.92);
    border-radius: 18px;
    background: #f8fbff;
    box-shadow: none;
}

body.single-product .feat-box:hover,
body.single-product .highlight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

body.single-product .feat-box i,
body.single-product .hc-icon {
    color: #2563eb;
}

body.single-product .eco-banner {
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 24px;
    background: #ecfdf5;
    box-shadow: none;
}

@media (max-width: 900px) {
    body.single-product .tabs-nav-ios {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 18px;
    }

    body.single-product .tab-btn {
        min-width: 0;
        padding: 0 10px;
        border-radius: 14px;
    }

    body.single-product .saas-mega-wrapper {
        padding: 28px 18px;
        border-radius: 20px;
    }

    body.single-product .mega-header {
        margin-bottom: 44px;
    }

    body.single-product .mega-section {
        gap: 22px;
        margin-bottom: 64px;
    }

    body.single-product .ms-image {
        margin-bottom: 28px;
    }
}

@media (max-width: 640px) {
    body.single-product .tags-wrapper {
        justify-content: flex-start;
    }

    body.single-product .product-title-lg {
        font-size: clamp(2rem, 1.5rem + 6vw, 2.55rem);
    }

    body.single-product .tabs-nav-ios {
        gap: 4px;
        padding: 4px;
    }

    body.single-product .tab-btn {
        min-height: 46px;
        padding: 0 6px;
        font-size: 0.8rem;
    }

    body.single-product .saas-mega-wrapper {
        padding: 24px 14px;
    }

    body.single-product .mega-header h2 {
        font-size: clamp(2rem, 1.35rem + 8vw, 2.65rem);
    }
}

/* ==========================================================================
   PRODUCT PAGE - SPACING AND OVERLAP AUDIT
   ========================================================================== */

body.single-product .saas-grid {
    align-items: start;
    gap: clamp(30px, 4.2vw, 52px);
}

body.single-product .sticky-wrapper {
    display: grid;
    gap: 14px;
}

body.single-product .social-proof-animated {
    margin: 0;
}

body.single-product .interface-area {
    display: grid;
    align-content: start;
    gap: 18px;
    padding-top: 0;
}

body.single-product .header-block {
    display: grid;
    gap: 18px;
}

body.single-product .tags-wrapper {
    display: none;
    margin: 0;
}

body.single-product .product-title-lg,
body.single-product .meta-live,
body.single-product .ltd-sidebar-box,
body.single-product .desc-glass,
body.single-product .action-zone-premium {
    margin: 0;
}

body.single-product .price-live-wrap,
body.single-product .rating-live {
    min-width: 0;
}

body.single-product .price-live,
body.single-product .price-legal-note,
body.single-product .review-count-text,
body.single-product .ltd-main-text,
body.single-product .desc-glass,
body.single-product .purchase-terms-note {
    overflow-wrap: anywhere;
}

body.single-product .rating-live {
    align-items: center;
    text-align: center;
}

body.single-product .promo-sticker {
    --pc-promo-badge-transform: translate(8%, -22%);
    width: 92px;
    height: 92px;
    min-width: 92px;
    min-height: 92px;
}

body.single-product .promo-sticker .sticker-val {
    font-size: 1.6rem;
}

body.single-product #btn-add-fix.btn-shimmer-effect {
    width: 100%;
}

body.single-product #btn-add-fix .btn-content {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body.single-product #btn-add-fix .btn-content span {
    min-width: 0;
}

body.single-product .trust-icons-row {
    align-items: center;
    flex-wrap: wrap;
}

body.single-product .secure-label {
    min-width: fit-content;
}

body.single-product .tabs-modern-container {
    margin-top: clamp(46px, 5vw, 68px);
    padding-top: clamp(18px, 2.2vw, 24px);
}

body.single-product .tabs-nav-ios {
    width: min(100%, 680px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border: 1px solid #d6e3f5;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.single-product .tab-btn {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
}

body.single-product .tab-btn:hover,
body.single-product .tab-btn.active {
    border-color: rgba(37, 99, 235, 0.28);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

body.single-product #content-desc .content-box-glass {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.single-product #content-desc .saas-mega-wrapper {
    margin: 0;
}

body.single-product .ms-image {
    min-width: 0;
}

body.single-product .img-shadow {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

body.single-product .float-stat {
    max-width: min(72%, 260px);
    white-space: normal;
}

body.single-product .top-right {
    top: 18px;
    right: 16px;
}

body.single-product .top-left {
    top: 18px;
    left: 16px;
}

body.single-product .bottom-right {
    right: 16px;
    bottom: 18px;
}

body.single-product .bottom-left {
    bottom: 18px;
    left: 16px;
}

body.single-product .feat-box,
body.single-product .highlight-card {
    min-width: 0;
}

body.single-product .feat-box {
    gap: 16px;
    padding: 20px;
}

body.single-product .feat-box i,
body.single-product .hc-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 12px;
    background: #ffffff;
    font-size: 1.08rem;
}

body.single-product .feat-box strong,
body.single-product .feat-box span,
body.single-product .hc-text strong,
body.single-product .hc-text p,
body.single-product .eco-text p {
    overflow-wrap: anywhere;
}

body.single-product .eco-wrapper {
    gap: 24px;
}

body.single-product .eco-stat {
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    body.single-product .saas-grid {
        gap: 24px;
    }

    body.single-product .sticky-wrapper {
        gap: 12px;
    }

    body.single-product .visual-card-3d {
        max-width: min(100%, 580px) !important;
    }

    body.single-product .interface-area,
    body.single-product .header-block {
        gap: 14px;
    }

    body.single-product .tabs-modern-container {
        margin-top: 38px;
    }

    body.single-product .tabs-nav-ios {
        width: 100%;
    }

    body.single-product #content-desc .saas-mega-wrapper {
        padding: 28px 18px;
    }

    body.single-product .mega-section {
        gap: 22px;
        margin-bottom: 58px;
    }

    body.single-product .ms-image {
        margin-bottom: 0;
    }

    body.single-product .float-stat {
        max-width: calc(100% - 32px);
        padding: 10px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 640px) {
    body.single-product .saas-wrapper {
        width: calc(100% - 20px);
    }

    body.single-product .visual-card-3d {
        margin-top: 8px !important;
    }

    body.single-product .promo-sticker {
        --pc-promo-badge-transform: translate(-3%, -18%);
        width: 72px;
        height: 72px;
        min-width: 72px;
        min-height: 72px;
        border-width: 4px;
    }

    body.single-product .promo-sticker .sticker-val {
        font-size: 1.22rem;
    }

    body.single-product .product-title-lg {
        font-size: 2.15rem;
        line-height: 1.08;
    }

    body.single-product .price-live {
        font-size: 1.9rem;
    }

    body.single-product .price-live-wrap,
    body.single-product .rating-live,
    body.single-product .desc-glass,
    body.single-product .ltd-sidebar-box,
    body.single-product .action-zone-premium {
        padding: 16px;
    }

    body.single-product .tabs-nav-ios {
        gap: 3px;
        padding: 3px;
        border-radius: 16px;
    }

    body.single-product .tab-btn {
        min-height: 44px;
        padding: 0 5px;
        border-radius: 13px;
        font-size: 0.76rem;
    }

    body.single-product .guarantee-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        scroll-snap-type: none;
    }

    body.single-product .guarantee-card {
        width: auto !important;
        min-width: 0 !important;
        flex: initial;
        scroll-snap-align: none;
    }

    body.single-product #content-desc .saas-mega-wrapper {
        padding: 22px 14px;
    }

    body.single-product .mega-header {
        margin-bottom: 34px;
    }

    body.single-product .mega-header h2 {
        font-size: 2.1rem;
        line-height: 1.08;
    }

    body.single-product .mega-section {
        margin-bottom: 48px;
    }

    body.single-product .step-badge {
        font-size: 3.1rem;
        margin-bottom: -26px;
    }

    body.single-product .ms-content h3 {
        font-size: 1.65rem;
        line-height: 1.12;
    }

    body.single-product .ms-lead {
        padding-left: 14px;
        border-left-width: 3px;
        font-size: 0.98rem;
        text-align: left;
    }

    body.single-product .feat-box,
    body.single-product .highlight-card {
        gap: 12px;
        padding: 16px;
    }

    body.single-product .float-stat {
        top: 12px;
        right: 12px;
        bottom: auto;
        left: auto;
    }

    body.single-product .secure-label {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    body.single-product .product-title-lg {
        font-size: 1.95rem;
    }

    body.single-product .tab-btn {
        font-size: 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.single-product .product-img-live.floating-anim,
    body.single-product .img-container::after,
    body.single-product #order_review.publicard-scroll-focus,
    body.single-product .promo-sticker,
    body.single-product .promo-sticker::before,
    body.single-product .promo-sticker .sticker-val {
        animation: none !important;
    }

    body.single-product .product-img-live {
        transform: none !important;
        will-change: auto;
    }

    body.single-product .promo-sticker {
        transform: var(--pc-promo-badge-transform) scale(1);
        will-change: auto;
    }
}
