/* ==========================================================
   Yomi Digi Products
   ========================================================== */

body[data-brand="yomi-digi"] .yomi-products-section {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 65px 0 75px;
    background: #f1f3f5;
    scroll-margin-top: 95px;
}

body[data-brand="yomi-digi"] .yomi-products-heading {
    max-width: 900px;
    margin: 0 auto 32px;
}

body[data-brand="yomi-digi"] .yomi-products-title {
    color: var(--main-yomi-digi);
    text-align: center;
}

body[data-brand="yomi-digi"] .yomi-products-title h1,
body[data-brand="yomi-digi"] .yomi-products-title h2,
body[data-brand="yomi-digi"] .yomi-products-title h3,
body[data-brand="yomi-digi"] .yomi-products-title h4,
body[data-brand="yomi-digi"] .yomi-products-title h5,
body[data-brand="yomi-digi"] .yomi-products-title h6,
body[data-brand="yomi-digi"] .yomi-products-title p {
    margin: 0;
    color: var(--main-yomi-digi);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center !important;
}

body[data-brand="yomi-digi"] .yomi-products-title h1 span,
body[data-brand="yomi-digi"] .yomi-products-title h2 span,
body[data-brand="yomi-digi"] .yomi-products-title h3 span,
body[data-brand="yomi-digi"] .yomi-products-title h4 span,
body[data-brand="yomi-digi"] .yomi-products-title h5 span,
body[data-brand="yomi-digi"] .yomi-products-title h6 span {
    color: var(--main-yomi-digi);
}

body[data-brand="yomi-digi"] .yomi-products-subtitle {
    max-width: 850px;
    margin: 10px auto 0;
    color: #747474;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

body[data-brand="yomi-digi"] .yomi-products-subtitle p,
body[data-brand="yomi-digi"] .yomi-products-subtitle div {
    margin: 0;
    color: #747474;
    font-size: inherit;
    line-height: inherit;
    text-align: center !important;
}

body[data-brand="yomi-digi"] .yomi-products-slider-shell {
    width: 100%;
    padding: 14px 40px 0;
}

body[data-brand="yomi-digi"] .products-carousel {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 50px;
}

body[data-brand="yomi-digi"] .products-carousel .swiper-wrapper {
    align-items: stretch;
}

body[data-brand="yomi-digi"] .products-carousel .swiper-slide {
    display: flex;
    width: 330px;
    height: auto;
}

body[data-brand="yomi-digi"] .product-card-wrapper {
    width: 100%;
    height: 450px;
    min-height: 450px;
    perspective: 1200px;
    -webkit-perspective: 1200px;
    transition: transform 0.3s ease;
}

body[data-brand="yomi-digi"] .products-carousel .swiper-slide:hover .product-card-wrapper {
    transform: translateY(-6px);
}

body[data-brand="yomi-digi"] .product-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: visible;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.6s ease;
    will-change: transform;
}

body[data-brand="yomi-digi"] .product-card.flipped {
    transform: rotateY(180deg);
}

body[data-brand="yomi-digi"] .product-card-front,
body[data-brand="yomi-digi"] .product-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid rgba(224, 179, 48, 0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(61, 61, 61, 0.07);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

body[data-brand="yomi-digi"] .products-carousel .swiper-slide:hover .product-card-front,
body[data-brand="yomi-digi"] .products-carousel .swiper-slide:hover .product-card-back {
    border-color: rgba(224, 179, 48, 0.42);
    box-shadow: 0 16px 32px rgba(224, 179, 48, 0.12);
}

body[data-brand="yomi-digi"] .product-card-front {
    z-index: 2;
    display: flex;
    flex-direction: column;
    transform: rotateY(0deg) translateZ(1px);
}

body[data-brand="yomi-digi"] .product-card-back {
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 17px 15px;
    transform: rotateY(180deg) translateZ(1px);
}

body[data-brand="yomi-digi"] .product-card.flipped .product-card-front {
    pointer-events: none;
}

body[data-brand="yomi-digi"] .product-card:not(.flipped) .product-card-back {
    pointer-events: none;
}

body[data-brand="yomi-digi"] .product-image-wrap {
    height: 280px;
    flex-shrink: 0;
    margin: 10px 12px 0;
    padding: 7px;
    overflow: hidden;
    border-radius: 13px;
    background: #f5f5f3;
}

body[data-brand="yomi-digi"] .product-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

body[data-brand="yomi-digi"] .product-info-red {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 8px 12px 12px;
    text-align: center;
}

body[data-brand="yomi-digi"] .product-title-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

body[data-brand="yomi-digi"] .product-title {
    width: 100%;
    margin: 0;
    color: #202020;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

body[data-brand="yomi-digi"] .product-title p,
body[data-brand="yomi-digi"] .product-title h1,
body[data-brand="yomi-digi"] .product-title h2,
body[data-brand="yomi-digi"] .product-title h3,
body[data-brand="yomi-digi"] .product-title h4,
body[data-brand="yomi-digi"] .product-title h5,
body[data-brand="yomi-digi"] .product-title h6 {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: center !important;
}

body[data-brand="yomi-digi"] .product-specs-red {
    min-height: 30px;
    margin-top: 2px;
    overflow: hidden;
    color: #8a8a8a;
    font-size: 11.5px;
    line-height: 1.5;
    text-align: center;
}

body[data-brand="yomi-digi"] .product-specs-red * {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: center !important;
}

body[data-brand="yomi-digi"] .price-separator {
    width: 100%;
    height: 1px;
    min-height: 1px;
    flex-shrink: 0;
    margin: 5px 0 4px;
    background: rgba(224, 179, 48, 0.18);
}

body[data-brand="yomi-digi"] .product-price-red {
    display: flex;
    flex: 1;
    min-height: 35px;
    align-items: center;
    justify-content: center;
}

body[data-brand="yomi-digi"] .red-price {
    color: var(--main-yomi-digi) !important;
    font-size: 24px !important;
    font-weight: 700;
    line-height: 1.2;
}

body[data-brand="yomi-digi"] .red-price span {
    color: var(--main-yomi-digi) !important;
    font-size: 14px;
    font-weight: 600;
}

body[data-brand="yomi-digi"] .product-actions {
    position: relative;
    z-index: 5;
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
    pointer-events: auto;
}

body[data-brand="yomi-digi"] .product-price-red + .product-actions {
    margin-top: 6px;
}

body[data-brand="yomi-digi"] .product-actions .btn {
    display: inline-flex;
    flex: 1;
    min-width: 0;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 7px;
    border-radius: 9px;
    box-shadow: none !important;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
    transition: 0.25s ease;
}

body[data-brand="yomi-digi"] .btn-primary-red {
    color: #ffffff !important;
    background: var(--main-yomi-digi) !important;
    border: 1px solid var(--main-yomi-digi) !important;
}

body[data-brand="yomi-digi"] .btn-primary-red:hover {
    color: #ffffff !important;
    background: var(--main-yomi-digi) !important;
    border-color: var(--main-yomi-digi) !important;
}

body[data-brand="yomi-digi"] .btn-outline-red {
    color: var(--main-yomi-digi) !important;
    background: #ffffff !important;
    border: 1px solid var(--main-yomi-digi) !important;
}

body[data-brand="yomi-digi"] .btn-outline-red:hover {
    color: #ffffff !important;
    background: var(--main-yomi-digi) !important;
    border-color: var(--main-yomi-digi) !important;
}

body[data-brand="yomi-digi"] .product-long-description {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-inline-end: 4px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.8;
}

body[data-brand="yomi-digi"] .product-long-description h1,
body[data-brand="yomi-digi"] .product-long-description h2,
body[data-brand="yomi-digi"] .product-long-description h3,
body[data-brand="yomi-digi"] .product-long-description h4,
body[data-brand="yomi-digi"] .product-long-description h5,
body[data-brand="yomi-digi"] .product-long-description h6 {
    margin: 0 0 10px;
    color: #202020;
    font-size: 19px;
    line-height: 1.45;
}

body[data-brand="yomi-digi"] .product-long-description p {
    margin: 0 0 9px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.8;
}

body[data-brand="yomi-digi"] .product-details-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
}

body[data-brand="yomi-digi"] .product-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.7;
}

body[data-brand="yomi-digi"] .detail-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--main-yomi-digi);
}

body[data-brand="yomi-digi"] .detail-text {
    flex: 1;
}

body[data-brand="yomi-digi"] .product-back-footer {
    flex-shrink: 0;
    margin-top: 14px;
}

body[data-brand="yomi-digi"] .close-details-btn-new {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    padding: 9px 10px;
    background: rgba(224, 179, 48, 0.08);
    border: 1px solid rgba(224, 179, 48, 0.22);
    border-radius: 9px;
}

body[data-brand="yomi-digi"] .close-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: start;
}

body[data-brand="yomi-digi"] .close-btn-text strong {
    color: #292929;
    font-size: 13px;
    font-weight: 600;
}

body[data-brand="yomi-digi"] .close-btn-text span {
    color: #777777;
    font-size: 10px;
    line-height: 1.5;
}

body[data-brand="yomi-digi"] .rotate-icon {
    display: block;
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

body[data-brand="yomi-digi"] .products-swiper-pagination {
    position: absolute !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 8px !important;
    z-index: 5;
    min-height: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none !important;
}

body[data-brand="yomi-digi"] .products-swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
    border-radius: 50%;
    background: #b9b9b9;
    opacity: 1;
    transition: 0.25s ease;
}

body[data-brand="yomi-digi"] .products-swiper-pagination .swiper-pagination-bullet-active {
    width: 9px;
    height: 9px;
    background: var(--main-yomi-digi);
}

@media (max-width: 1199px) {
    body[data-brand="yomi-digi"] .yomi-products-slider-shell {
        padding-right: 28px;
        padding-left: 28px;
    }
}

@media (max-width: 767px) {
    body[data-brand="yomi-digi"] .yomi-products-section {
        padding: 55px 0 65px;
    }

    body[data-brand="yomi-digi"] .yomi-products-heading {
        margin-bottom: 25px;
        padding-right: 15px;
        padding-left: 15px;
    }

    body[data-brand="yomi-digi"] .yomi-products-title h1,
    body[data-brand="yomi-digi"] .yomi-products-title h2,
    body[data-brand="yomi-digi"] .yomi-products-title h3,
    body[data-brand="yomi-digi"] .yomi-products-title h4,
    body[data-brand="yomi-digi"] .yomi-products-title h5,
    body[data-brand="yomi-digi"] .yomi-products-title h6,
    body[data-brand="yomi-digi"] .yomi-products-title p {
        font-size: 28px;
    }

    body[data-brand="yomi-digi"] .yomi-products-subtitle {
        font-size: 15px;
    }

    body[data-brand="yomi-digi"] .yomi-products-slider-shell {
        padding-right: 18px;
        padding-left: 18px;
    }

    body[data-brand="yomi-digi"] .product-card-wrapper,
    body[data-brand="yomi-digi"] .product-card,
    body[data-brand="yomi-digi"] .product-card-front,
    body[data-brand="yomi-digi"] .product-card-back {
        height: 440px;
        min-height: 440px;
    }

    body[data-brand="yomi-digi"] .product-image-wrap {
        height: 270px;
    }
}

body[data-brand="yomi-digi"] .products-carousel,
body[data-brand="yomi-digi"] .products-carousel .swiper-wrapper,
body[data-brand="yomi-digi"] .products-carousel .swiper-slide {
    overflow: visible !important;
}

/* --- Merged from product-order.css --- */

.product-order-page {
    --order-primary: var(--main-yomi-digi);
    --order-secondary: var(--main-yomi-digi);
    --order-dark: var(--dark, #01273B);
    --order-heading: var(--color-heading, #04000B);
    --order-text: var(--color-paragraph, #666666);
    --order-white: var(--white, #FFFFFF);
    --order-bg-soft: var(--bg-gray, #FFF7F7);
    --order-bg: var(--bg-gray-secondary, #F8FAFB);
    --order-border: rgba(224, 179, 48, 0.16);
    --order-border-strong: rgba(224, 179, 48, 0.35);
    --order-shadow: 0 16px 50px rgba(1, 39, 59, 0.09);

    min-height: 100vh;
    font-family: var(--font-style-two, "Manrope", sans-serif);
    color: var(--order-text);
    background: #FFFFFF;
}

.product-order-page *,
.product-order-page *::before,
.product-order-page *::after {
    box-sizing: border-box;
}

.product-order-page button,
.product-order-page input,
.product-order-page textarea {
    font-family: inherit;
}

.product-order-page .order-page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 16px;
}

.product-order-page .order-page-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

html[dir="rtl"] .product-order-page .order-page-topbar {
    flex-direction: row-reverse;
}

.product-order-page .order-page-brand img {
    display: block;
    width: auto;
    height: 28px;
}

.product-order-page .order-page-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--order-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--order-border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(1, 39, 59, 0.05);
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.product-order-page .order-page-back i {
    color: var(--order-primary);
}

.product-order-page .order-page-back:hover {
    color: var(--order-primary);
    background: var(--order-white);
    border-color: var(--order-border-strong);
    transform: translateY(-1px);
}

.product-order-page .order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 470px);
    align-items: stretch;
    gap: 18px;
}

.product-order-page .order-card,
.product-order-page .product-showcase-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--order-border);
    border-radius: 20px;
    box-shadow: var(--order-shadow);
}

.product-order-page .order-card {
    position: relative;
    padding: 34px 36px 24px;
    overflow: hidden;
}

.product-order-page .order-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg,
            var(--order-primary) 0%,
            var(--order-secondary) 100%);
}

.product-order-page .order-title {
    margin: 0 0 8px;
    color: var(--order-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
}

.product-order-page .order-title::after {
    display: block;
    width: 52px;
    height: 3px;
    margin: 13px auto 0;
    content: "";
    background: linear-gradient(90deg,
            var(--order-primary),
            var(--order-secondary));
    border-radius: 999px;
}

.product-order-page .order-subtitle {
    margin: 0 0 22px;
    color: var(--order-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
}

.product-order-page .order-message {
    margin-bottom: 16px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.product-order-page .order-message-success {
    color: #397622;
    background: #F1F9ED;
    border: 1px solid #CDE7BF;
}

.product-order-page .order-message-error {
    color: #9D1F1B;
    background: #FFF1F1;
    border: 1px solid rgba(224, 179, 48, 0.25);
}

.product-order-page .order-form-grid {
    display: grid;
    gap: 12px;
}

.product-order-page .order-field {
    min-width: 0;
}

.product-order-page .order-input-wrap {
    position: relative;
}

.product-order-page .order-input-wrap i {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    z-index: 1;
    color: var(--order-primary);
    font-size: 14px;
    pointer-events: none;
    transform: translateY(-50%);
}

.product-order-page .order-input-wrap .order-textarea-icon {
    top: 18px;
    transform: none;
}

.product-order-page .order-input[type="tel"] {
    direction: inherit;
    text-align: start;
}

.product-order-page .order-input,
.product-order-page .order-textarea {
    width: 100%;
    min-height: 55px;
    padding-inline: 42px 16px;
    padding-top: 10px;
    padding-bottom: 16px;
    line-height: 1.4;
    color: var(--order-heading);
    background: var(--order-white);
    border: 1px solid #E3E6E9;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.product-order-page .order-input:hover,
.product-order-page .order-textarea:hover {
    border-color: rgba(224, 179, 48, 0.32);
}

.product-order-page .order-input:focus,
.product-order-page .order-textarea:focus {
    background: #FFFFFF;
    border-color: var(--order-primary);
    box-shadow: 0 0 0 3px rgba(224, 179, 48, 0.1);
}

.product-order-page .order-input::placeholder,
.product-order-page .order-textarea::placeholder {
    color: #8B8B8B;
    font-weight: 400;
    opacity: 1;
}

.product-order-page .order-textarea {
    min-height: 88px;
    padding-top: 14px;
    line-height: 1.7;
    resize: vertical;
}

.product-order-page .order-input.is-invalid,
.product-order-page .order-textarea.is-invalid {
    border-color: var(--order-primary);
    box-shadow: 0 0 0 3px rgba(224, 179, 48, 0.08);
}

.product-order-page .order-validation-error {
    margin-top: 6px;
    color: var(--order-secondary);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.product-order-page .turnstile-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    padding: 14px 16px;
    overflow: hidden;
    background: linear-gradient(180deg,
            #FFFFFF 0%,
            var(--order-bg-soft) 100%);
    border: 1px solid var(--order-border);
    border-radius: 12px;
}

.product-order-page .turnstile-box .cf-turnstile {
    width: 100%;
}

.product-order-page .turnstile-client-error {
    margin-top: 7px;
}

.product-order-page .order-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.product-order-page .order-submit-btn,
.product-order-page .order-reset-btn {
    min-height: 50px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, filter, box-shadow;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.product-order-page .order-submit-btn {
    color: var(--order-white);
    background: linear-gradient(135deg,
            var(--order-primary) 0%,
            var(--order-secondary) 100%);
    border: 1px solid var(--order-primary);
    box-shadow: none;
}

.product-order-page .order-submit-btn:hover,
.product-order-page .order-submit-btn:focus-visible {
    color: var(--order-white);
    background: linear-gradient(135deg,
            var(--order-primary) 0%,
            var(--order-secondary) 100%);
    border-color: var(--order-secondary);
    box-shadow: none;
    filter: brightness(0.94);
    transform: translateY(-2px) scale(1.005);
}

.product-order-page .order-submit-btn:active {
    box-shadow: none;
    filter: brightness(0.9);
    transform: translateY(0) scale(0.995);
    transition-duration: 0.08s;
}

.product-order-page .order-submit-btn:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.product-order-page .order-reset-btn {
    color: var(--order-primary);
    background: var(--order-white);
    border: 1px solid var(--order-primary);
}

.product-order-page .order-reset-btn:hover,
.product-order-page .order-reset-btn:focus-visible {
    color: var(--order-primary);
    background: var(--order-white);
    border-color: var(--order-primary);
    box-shadow: none;
    transform: translateY(-2px) scale(1.005);
}

.product-order-page .order-reset-btn:active {
    color: var(--order-primary);
    background: var(--order-white);
    border-color: var(--order-primary);
    box-shadow: none;
    transform: translateY(0) scale(0.995);
    transition-duration: 0.08s;
}

.product-order-page .order-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--order-text);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.product-order-page .order-security i {
    color: var(--order-primary);
}

.product-order-page .product-showcase-card {
    min-height: 100%;
    padding: 14px;
}

.product-order-page .showcase-stage {
    position: relative;
    min-height: 540px;
    padding: 18px 18px 128px;
    overflow: hidden;
    background: transparent;
    border-radius: 16px;
}

.product-order-page .showcase-shape-lines {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(120deg,
            transparent 0 20%,
            var(--order-primary) 20% 20.8%,
            transparent 20.8% 100%),
        linear-gradient(30deg,
            transparent 0 54%,
            var(--order-secondary) 54% 54.7%,
            transparent 54.7% 100%),
        linear-gradient(150deg,
            transparent 0 36%,
            var(--order-primary) 36% 36.6%,
            transparent 36.6% 100%);
    pointer-events: none;
}

.product-order-page .showcase-plant {
    position: absolute;
    inset-inline-start: 34px;
    bottom: 166px;
    width: 86px;
    height: 112px;
}

.product-order-page .showcase-plant::before,
.product-order-page .showcase-plant::after {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 94px;
    content: "";
    background: linear-gradient(180deg,
            rgba(224, 179, 48, 0.72) 0%,
            var(--order-secondary) 100%);
    border-radius: 100px 100px 0 100px;
    transform-origin: bottom center;
}

.product-order-page .showcase-plant::before {
    inset-inline-start: 18px;
    transform: rotate(-18deg);
}

.product-order-page .showcase-plant::after {
    inset-inline-end: 12px;
    opacity: 0.82;
    transform: rotate(16deg);
}

.product-order-page .showcase-rock {
    position: absolute;
    inset-inline-start: 24px;
    bottom: 146px;
    width: 74px;
    height: 70px;
    background: linear-gradient(180deg,
            #FFFFFF 0%,
            #E9E9E9 100%);
    border-radius: 44px 44px 28px 28px;
    box-shadow: 0 10px 30px rgba(1, 39, 59, 0.1);
}

.product-order-page .showcase-rock.small {
    inset-inline-start: 6px;
    bottom: 152px;
    width: 34px;
    height: 30px;
    border-radius: 26px;
}

.product-order-page .showcase-pedestal {
    position: absolute;
    left: 50%;
    bottom: 132px;
    width: min(72%, 300px);
    height: 58px;
    background: linear-gradient(180deg,
            #FFFFFF 0%,
            #EAEAEA 100%);
    border: 1px solid rgba(224, 179, 48, 0.08);
    border-radius: 50%;
    box-shadow: 0 12px 36px rgba(1, 39, 59, 0.12);
    transform: translateX(-50%);
}

.product-order-page .showcase-product {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    filter: none;
    transform: none;
}

.product-order-page .showcase-details {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    display: grid;
    grid-template-columns: 120px 1px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--order-border);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(1, 39, 59, 0.08);
}

.product-order-page .showcase-separator {
    width: 1px;
    height: 58px;
    background: rgba(224, 179, 48, 0.18);
}

.product-order-page .availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #397622;
    background: #F1F9ED;
    border: 1px solid #D6EBCB;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.product-order-page .availability-badge::before {
    width: 8px;
    height: 8px;
    content: "";
    background: #61B439;
    border-radius: 50%;
}

.product-order-page .showcase-price {
    margin-bottom: 2px;
    color: var(--order-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.product-order-page .showcase-price small {
    display: block;
    margin-top: 4px;
    color: var(--order-text);
    font-size: 12px;
    font-weight: 400;
}

.product-order-page .showcase-name {
    margin: 0 0 6px;
    color: var(--order-heading);
    font-size: 19px;
    font-weight: 600;
}

.product-order-page .showcase-description {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--order-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-order-page .showcase-features {
    display: none;
}

.product-order-page .showcase-feature {
    padding: 8px 12px;
    color: var(--order-dark);
    background: var(--order-bg-soft);
    border: 1px solid var(--order-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .product-order-page .order-layout {
        grid-template-columns: 1fr;
    }

    .product-order-page .showcase-stage {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .product-order-page .order-page-wrap {
        padding: 16px 10px 24px;
    }

    .product-order-page .order-page-topbar {
        align-items: flex-start;
    }

    .product-order-page .order-page-brand img {
        height: 25px;
    }

    .product-order-page .order-page-back {
        padding: 9px 11px;
        font-size: 12px;
    }

    .product-order-page .order-card {
        padding: 22px 16px 20px;
    }

    .product-order-page .order-title {
        font-size: 30px;
    }

    .product-order-page .order-actions,
    .product-order-page .showcase-details {
        grid-template-columns: 1fr;
    }

    .product-order-page .showcase-separator {
        display: none;
    }

    .product-order-page .showcase-stage {
        min-height: 500px;
        padding: 14px 14px 150px;
    }

    .product-order-page .showcase-pedestal {
        bottom: 124px;
        width: min(80%, 240px);
        height: 50px;
    }



    .product-order-page .showcase-plant {
        bottom: 156px;
        width: 68px;
        height: 92px;
    }

    .product-order-page .showcase-rock {
        bottom: 140px;
        width: 58px;
        height: 54px;
    }

    .product-order-page .showcase-rock.small {
        bottom: 146px;
    }

    .product-order-page .showcase-details {
        right: 12px;
        bottom: 12px;
        left: 12px;
        gap: 10px;
        padding: 14px;
        transform: none;
    }

    .product-order-page .showcase-name {
        font-size: 17px;
    }

    .product-order-page .showcase-description {
        -webkit-line-clamp: 3;
    }

    .product-order-page .turnstile-box {
        padding-inline: 8px;
    }
}











/*dialog*/
.product-order-page .order-status-dialog {
    position: fixed;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(calc(100vw - 32px), 480px);
    max-width: 480px;
    max-height: calc(100vh - 32px);
    margin: 0;
    padding: 0;
    overflow: visible;
    color: var(--order-text);
    background: transparent;
    border: none;
    outline: none;
    transform: translate(-50%, -50%);
}

.product-order-page .order-status-dialog[open] {
    display: block;
}

.product-order-page .order-status-dialog::backdrop {
    background: rgba(4, 0, 11, 0.58);
    backdrop-filter: blur(6px);
}

.product-order-page .order-status-dialog__panel {
    position: relative;
    width: 100%;
    max-height: calc(100vh - 32px);
    padding: 42px 34px 32px;
    overflow-y: auto;
    text-align: center;
    background: var(--order-white);
    border: 1px solid rgba(224, 179, 48, 0.14);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(4, 0, 11, 0.28);
    animation: order-status-dialog-enter 0.3s ease-out;
}

.product-order-page .order-status-dialog__panel::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(90deg,
            var(--order-primary) 0%,
            var(--order-secondary) 100%);
}

.product-order-page .order-status-dialog--success .order-status-dialog__panel::before {
    background: linear-gradient(90deg,
            #61B439 0%,
            #397622 100%);
}

.product-order-page .order-status-dialog__close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #777777;
    background: #F5F6F7;
    border: 1px solid #EBEDEF;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transform: translateZ(0);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-order-page .order-status-dialog__close:hover,
.product-order-page .order-status-dialog__close:focus-visible {
    color: var(--order-primary);
    background: var(--order-bg-soft);
    border-color: var(--order-border);
    transform: rotate(90deg);
}

.product-order-page .order-status-dialog__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 2px auto 22px;
    color: var(--order-primary);
    background: #FFF1F1;
    border: 1px solid rgba(224, 179, 48, 0.2);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 10px 28px rgba(224, 179, 48, 0.1);
}

.product-order-page .order-status-dialog--success .order-status-dialog__icon {
    color: #397622;
    background: #F1F9ED;
    border-color: #CDE7BF;
    box-shadow: 0 10px 28px rgba(97, 180, 57, 0.12);
}

.product-order-page .order-status-dialog__title {
    margin: 0 0 12px;
    color: var(--order-heading);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

.product-order-page .order-status-dialog__message {
    max-width: 390px;
    margin: 0 auto 22px;
    color: var(--order-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}

.product-order-page .order-status-dialog__reference {
    max-width: 330px;
    margin: 0 auto 26px;
    padding: 13px 16px;
    background: var(--order-bg-soft);
    border: 1px solid var(--order-border);
    border-radius: 12px;
}

.product-order-page .order-status-dialog__reference-label {
    display: block;
    margin-bottom: 5px;
    color: var(--order-text);
    font-size: 12px;
    font-weight: 500;
}

.product-order-page .order-status-dialog__reference-value {
    display: block;
    color: var(--order-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    direction: ltr;
    unicode-bidi: isolate;
    overflow-wrap: anywhere;
}

.product-order-page .order-status-dialog__action {
    width: 100%;
    max-width: 220px;
    min-height: 48px;
    padding: 10px 24px;
    color: var(--order-white);
    background: linear-gradient(135deg,
            var(--order-primary) 0%,
            var(--order-secondary) 100%);
    border: 1px solid var(--order-primary);
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(224, 179, 48, 0.22);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, filter, box-shadow;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

.product-order-page .order-status-dialog__action:hover,
.product-order-page .order-status-dialog__action:focus-visible {
    color: var(--order-white);
    background: linear-gradient(135deg,
            var(--order-primary) 0%,
            var(--order-secondary) 100%);
    border-color: var(--order-secondary);
    box-shadow: 0 13px 28px rgba(180, 140, 30, 0.28);
    filter: brightness(0.94);
    transform: translateY(-2px) scale(1.01);
}

.product-order-page .order-status-dialog__action:active {
    box-shadow: none;
    filter: brightness(0.9);
    transform: translateY(0) scale(0.99);
    transition-duration: 0.08s;
}

@keyframes order-status-dialog-enter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 575px) {
    .product-order-page .order-status-dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .product-order-page .order-status-dialog__panel {
        max-height: calc(100vh - 24px);
        padding: 38px 20px 24px;
        border-radius: 20px;
    }

    .product-order-page .order-status-dialog__close {
        top: 13px;
        inset-inline-end: 13px;
        width: 34px;
        height: 34px;
    }

    .product-order-page .order-status-dialog__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
        font-size: 26px;
    }

    .product-order-page .order-status-dialog__title {
        font-size: 22px;
    }

    .product-order-page .order-status-dialog__message {
        font-size: 14px;
        line-height: 1.8;
    }

    .product-order-page .order-status-dialog__reference {
        margin-bottom: 22px;
    }

    .product-order-page .order-status-dialog__action {
        max-width: none;
    }
}



