    .shop-hero {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 240, 255, 0.15);
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(11, 14, 20, 0.97));
        border-radius: 14px;
        padding: 1.4rem 1.3rem;
        margin-bottom: 1.3rem;
        box-shadow: 0 12px 28px rgba(2, 6, 23, 0.3);
    }

    .shop-hero::after {
        content: '';
        position: absolute;
        inset: auto -30% -40% auto;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 68%);
        pointer-events: none;
    }

    .shop-hero-title {
        margin: 0;
        font-size: 1.45rem;
        line-height: 1.35;
        letter-spacing: -0.01em;
        font-weight: 800;
        color: #f8fafc;
    }

    .shop-hero-sub {
        margin: 0.45rem 0 0;
        color: #94a3b8;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .shop-hero-metrics {
        margin-top: 0.95rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .shop-metric-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0.38rem 0.7rem;
        border-radius: 999px;
        border: 1px solid rgba(0, 240, 255, 0.15);
        background: rgba(0, 240, 255, 0.06);
        color: #94a3b8;
        font-size: 0.78rem;
        font-weight: 600;
    }

    .shop-metric-chip i {
        color: #00f0ff;
        font-size: 0.72rem;
    }

    .shop-hero-trust {
        margin-top: 0.65rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
        font-size: 0.8rem;
        color: #64748b;
    }

    .shop-hero-trust span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .shop-toolbar {
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(15, 23, 42, 0.6);
        box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
    }

    .shop-toolbar-grid {
        display: grid;
        grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr)) auto;
        gap: 0.75rem;
        align-items: end;
    }

    .shop-field {
        display: flex;
        flex-direction: column;
        gap: 0.38rem;
        min-width: 0;
    }

    .shop-field label {
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #8b9bb4;
    }

    .shop-search-box {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        padding: 0 0.9rem;
        min-height: 46px;
    }

    .shop-search-box i {
        color: #00f0ff;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .shop-input,
    .shop-select {
        width: 100%;
        min-height: 46px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        color: #f8fafc;
        padding: 0 0.95rem;
        box-sizing: border-box;
        outline: none;
    }

    .shop-search-box .shop-input {
        min-height: 44px;
        border: 0;
        background: transparent;
        padding: 0;
    }

    .shop-input::placeholder {
        color: #64748b;
    }

    .shop-input:focus,
    .shop-select:focus,
    .shop-search-box:focus-within {
        border-color: rgba(0, 240, 255, 0.45);
        box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
    }

    .shop-select option {
        color: #0f172a;
    }

    .shop-toolbar-actions {
        display: flex;
        gap: 0.55rem;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
    }

    .shop-submit-btn,
    .shop-reset-btn {
        min-height: 46px;
        border-radius: 12px;
        border: 1px solid rgba(0, 240, 255, 0.22);
        padding: 0 1rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-sizing: border-box;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }

    .shop-submit-btn {
        color: #08111f;
        background: linear-gradient(135deg, #67e8f9, #38bdf8);
        box-shadow: 0 10px 24px rgba(56, 189, 248, 0.24);
    }

    .shop-submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(56, 189, 248, 0.3);
    }

    .shop-reset-btn {
        color: #cbd5e1;
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .shop-reset-btn:hover {
        color: #f8fafc;
        border-color: rgba(0, 240, 255, 0.18);
        background: rgba(0, 240, 255, 0.08);
    }

    .shop-filter-summary {
        margin-top: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.85rem;
        flex-wrap: wrap;
    }

    .shop-filter-meta {
        color: #cbd5e1;
        font-size: 0.88rem;
    }

    .shop-filter-summary > .shop-filter-meta + .shop-filter-meta {
        display: none;
    }

    .shop-filter-meta strong {
        color: #f8fafc;
    }

    .shop-filter-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .shop-filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.38rem 0.7rem;
        border-radius: 999px;
        background: rgba(0, 240, 255, 0.08);
        border: 1px solid rgba(0, 240, 255, 0.16);
        color: #93c5fd;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .shop-filter-chip strong {
        color: #f8fafc;
    }

    .shop-empty-state {
        padding: 3rem 1.25rem;
        color: var(--text-muted);
        text-align: center;
        border-radius: 14px;
        border: 1px dashed rgba(255, 255, 255, 0.12);
        background: rgba(15, 23, 42, 0.4);
    }

    .shop-empty-state i {
        font-size: 2.8rem;
        margin-bottom: 0.9rem;
        display: block;
        opacity: 0.7;
    }

    .shop-empty-state p {
        margin: 0.25rem 0 0;
        line-height: 1.6;
    }

    .shop-pagination-shell {
        margin-top: 1.1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
    }

    .shop-pagination-meta {
        color: #94a3b8;
        font-size: 0.84rem;
    }

    .shop-pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
    }

    .shop-page-btn {
        min-width: 42px;
        min-height: 42px;
        padding: 0 0.95rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(15, 23, 42, 0.68);
        color: #cbd5e1;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        font-size: 0.84rem;
        font-weight: 700;
        transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
    }

    .shop-page-btn:hover {
        transform: translateY(-1px);
        color: #f8fafc;
        border-color: rgba(0, 240, 255, 0.22);
        background: rgba(0, 240, 255, 0.08);
    }

    .shop-page-btn.active {
        color: #08111f;
        border-color: rgba(0, 240, 255, 0.28);
        background: linear-gradient(135deg, #67e8f9, #38bdf8);
        box-shadow: 0 10px 24px rgba(56, 189, 248, 0.22);
    }

    .cat-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 1.25rem;
        scroll-behavior: smooth;
        padding: 0.2rem;
    }

    .cat-item {
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.48rem 1.1rem;
        border-radius: 2rem;
        color: #94a3b8;
        text-decoration: none;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
        font-weight: 600;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 7px;
        position: relative;
        overflow: hidden;
    }

    .cat-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 150%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(0, 240, 255, 0.4), transparent);
        transform: skewX(-20deg) translateX(-120%);
        z-index: 0;
        pointer-events: none;
    }

    .cat-item>* {
        position: relative;
        z-index: 1;
    }

    .cat-item:hover {
        background: rgba(30, 41, 59, 0.95);
        color: #e2e8f0;
        transform: translateY(-2px);
        border-color: rgba(0, 240, 255, 0.3);
        box-shadow: 0 4px 14px rgba(0, 240, 255, 0.15);
    }

    .cat-item:hover::before {
        animation: smooth-glare 1.5s infinite ease-in-out;
    }

    .cat-item.active {
        background: linear-gradient(135deg, rgba(0, 200, 212, 0.2), rgba(0, 128, 255, 0.2));
        color: #00f0ff;
        border-color: rgba(0, 240, 255, 0.4);
        box-shadow: 0 4px 16px rgba(0, 240, 255, 0.2), inset 0 0 12px rgba(0, 240, 255, 0.06);
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 1.45rem;
        row-gap: 1.25rem !important;
        align-items: stretch;
        padding-bottom: 0.6rem;
    }

    .product-cell {
        display: flex;
        padding-bottom: 1.35rem !important;
    }

    .product-card {
        background: rgba(15, 23, 42, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 0.9rem;
        padding: 1rem;
        transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex;
        flex-direction: column;
        min-height: 100%;
        gap: 0.15rem;
        position: relative;
        width: 100%;
        margin-bottom: 0;
        color: #fff;
        border-top: 2px solid transparent;
        border-image: linear-gradient(90deg, #00f0ff, #0057ff) 1;
        border-image-slice: 1 1 0 1;
    }

    .diamond-glare {
        position: absolute;
        top: -10%;
        left: 0;
        width: 60%;
        height: 120%;
        background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0.7) 50%, rgba(0, 240, 255, 0.5) 60%, transparent 80%);
        transform: skewX(-20deg) translateX(-200%);
        z-index: 50;
        pointer-events: none;
        will-change: transform;
    }

    .product-card {
        transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes diamond-shine {
        to {
            background-position: 200% center;
        }
    }

    .product-name {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.45rem;
        letter-spacing: 0.3px;
        line-height: 1.4;
        min-height: 2.8rem;
        z-index: 1;
        position: relative;
        background: linear-gradient(to right,
                #fff 20%,
                #80d4ff 30%,
                #00f0ff 40%,
                #ffffff 50%,
                #00f0ff 60%,
                #80d4ff 70%,
                #fff 80%);
        background-size: 200% auto;
        color: #fff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: diamond-shine 3s linear infinite;
        filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.4));
    }

    .product-desc {
        background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(0, 87, 255, 0.08));
        border-left: 3px solid;
        border-image: linear-gradient(to bottom, #00f0ff, #0057ff) 1;
        padding: 8px 10px;
        border-radius: 0 8px 8px 0;
        margin-bottom: 0.72rem;
        font-size: 0.83rem;
        color: #cbd5e1;
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        white-space: pre-wrap;
        word-break: break-word;
        z-index: 1;
        position: relative;
    }

    .product-desc i {
        color: #00f0ff;
        margin-top: 2px;
        flex-shrink: 0;
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1.18rem;
        font-weight: 800;
        background: linear-gradient(90deg, #00f0ff, #0057ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.45rem;
        display: flex;
        align-items: baseline;
        gap: 5px;
        z-index: 1;
        position: relative;
    }

    .product-price-stack {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        background: none;
        -webkit-text-fill-color: initial;
    }

    .product-old-price {
        color: #94a3b8;
        font-size: 0.8rem;
        text-decoration: line-through;
        text-decoration-thickness: 2px;
        opacity: 0.95;
        -webkit-text-fill-color: #94a3b8;
    }

    .product-old-price-usd,
    .product-price-usd,
    .shop-price-usd {
        display: block;
        color: #94a3b8;
        font-size: 0.76rem;
        font-weight: 600;
        line-height: 1.35;
        -webkit-text-fill-color: #94a3b8;
    }

    .product-new-price {
        display: inline-flex;
        align-items: baseline;
        gap: 6px;
        font-size: 1.22rem;
        font-weight: 900;
        color: #f8fafc;
        text-shadow: 0 0 18px rgba(251, 191, 36, 0.32);
        -webkit-text-fill-color: #f8fafc;
    }

    .product-new-price .price-value {
        background: linear-gradient(90deg, #fbbf24, #fb7185);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .product-unit {
        font-size: 0.84rem;
        font-weight: 400;
        color: #8b9bb4;
        -webkit-text-fill-color: #8b9bb4;
    }

    .discount-badge {
        background: rgba(245, 158, 11, 0.1);
        color: #fbbf24;
        border: 1px solid rgba(245, 158, 11, 0.25);
        padding: 3px 9px;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 4px;
        width: fit-content;
    }

    .sale-timer-badge {
        background: rgba(251, 191, 36, 0.16);
        color: #fde68a;
        border: 1px solid rgba(251, 191, 36, 0.35);
    }

    .buy-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        z-index: 1;
    }

    .quantity-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 4px;
        z-index: 1;
        position: relative;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        user-select: none;
        -webkit-user-select: none;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
        font-weight: 700;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .qty-btn:hover {
        background: rgba(0, 240, 255, 0.2);
        color: #00f0ff;
    }

    .qty-label {
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-left: 8px;
    }

    .qty-input {
        flex: 1;
        background: transparent;
        border: none;
        color: white;
        text-align: center;
        font-weight: 700;
        font-size: 0.98rem;
        width: 40px;
        outline: none;
        appearance: textfield;
        -moz-appearance: textfield;
    }

    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .stock-badge {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        gap: 6px;
        border-radius: 999px;
        padding: 0.35rem 0.75rem;
        border: 1px solid rgba(0, 240, 255, 0.35);
        background: rgba(0, 240, 255, 0.12);
        color: #00f0ff;
        font-size: 0.85rem;
        font-weight: 600;
        z-index: 1;
        position: relative;
        white-space: nowrap;
    }

    .stock-badge.out-of-stock {
        color: #ff3366;
        background: rgba(255, 51, 102, 0.1);
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: #00f0ff;
        border-radius: 50%;
        margin-right: 8px;
        box-shadow: 0 0 8px #00f0ff;
    }

    .stock-badge.out-of-stock .dot {
        background-color: #ff3366;
        box-shadow: 0 0 8px #ff3366;
    }

    .btn-buy {
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #00c8d4, #0080ff);
        border: none;
        border-radius: 10px;
        color: #fff;
        padding: 0.7rem 1rem;
        font-weight: 700;
        font-size: 0.88rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.18s ease, opacity 0.18s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 4px 14px rgba(0, 200, 212, 0.3);
    }

    .btn-buy:hover:not(:disabled) {
        background: linear-gradient(135deg, #00e0ec, #0090ff);
        color: #fff;
        box-shadow: 0 6px 22px rgba(0, 200, 212, 0.45);
        transform: translateY(-2px);
    }

    .btn-buy:active:not(:disabled) {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(0, 200, 212, 0.25);
    }

    .btn-buy:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
        background: #334155;
        color: #64748b;
    }

    .payment-modal-container {
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        color: #111827;
        border-radius: 16px;
        width: 92%;
        max-width: 920px;
        padding: 20px;
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.34);
        position: relative;
        will-change: transform, opacity;
        backface-visibility: hidden;
        border: 1px solid rgba(148, 163, 184, 0.26);
    }

    .payment-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .payment-modal-order {
        font-size: 0.86rem;
        color: #64748b;
        font-weight: 700;
    }

    .payment-modal-grid {
        display: grid;
        grid-template-columns: 290px 1fr;
        gap: 14px;
        align-items: start;
    }

    .payment-modal-qr {
        background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 10px;
        text-align: center;
        min-height: 290px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

    .payment-modal-qr img {
        width: 100%;
        max-width: 255px;
        display: block;
        margin: 0 auto;
        transition: opacity 0.12s ease-out;
        transform: translateZ(0);
        backface-visibility: hidden;
        image-rendering: auto;
    }

    .payment-modal-qr.loading::before {
        content: 'Đang tạo QR...';
        color: #64748b;
        font-weight: 600;
        font-size: 0.92rem;
        position: absolute;
        left: 50%;
        top: calc(50% + 34px);
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .payment-modal-qr.loading::after {
        content: '';
        position: absolute;
        left: 50%;
        top: calc(50% - 10px);
        width: 38px;
        height: 38px;
        margin-left: -19px;
        margin-top: -19px;
        border: 3px solid rgba(148, 163, 184, 0.22);
        border-top-color: #0ea5e9;
        border-right-color: rgba(14, 165, 233, 0.38);
        border-radius: 50%;
        animation: checkout-spin 0.72s linear infinite;
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
        z-index: 1;
    }

    .payment-modal-qr.loading img {
        opacity: 0;
    }

    .payment-modal-product {
        display: block;
        color: #0f172a;
        font-size: 1.03rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .payment-modal-meta {
        background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 10px;
    }

    .payment-modal-label {
        color: #64748b;
        font-size: 0.81rem;
        margin-bottom: 4px;
    }

    .payment-modal-amount {
        color: #0f172a;
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .payment-modal-content {
        word-break: break-word;
        font-family: monospace;
        background: #e2e8f0;
        border-radius: 8px;
        padding: 10px;
        font-size: 0.98rem;
        margin-bottom: 8px;
    }

    .payment-modal-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .payment-modal-status {
        margin-top: 9px;
        color: #d97706;
        font-size: 0.88rem;
        font-weight: 600;
    }

    .payment-modal-countdown {
        margin-top: 4px;
        color: #92400e;
        font-size: 0.82rem;
    }

    .inline-check-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        padding: 7px 14px;
        background: #eff6ff;
        border: 1.5px solid #3b82f6;
        border-radius: 8px;
        color: #1d4ed8;
        font-size: 0.87rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s ease;
        letter-spacing: 0.1px;
    }

    .inline-check-btn:hover:not(:disabled) {
        background: #dbeafe;
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
    }

    .inline-check-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .inline-check-msg {
        margin-top: 5px;
        font-size: 0.83rem;
        min-height: 1.1em;
        font-weight: 600;
    }

    @media (max-width: 1180px) {
        .shop-toolbar-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .shop-toolbar-actions {
            justify-content: flex-start;
        }

        .product-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            column-gap: 1.1rem;
            row-gap: 1rem !important;
        }

        .product-cell {
            padding-bottom: 1.15rem !important;
        }
    }

    @media (max-width: 900px) {
        .shop-toolbar {
            padding: 0.9rem;
        }

        .shop-toolbar-grid {
            grid-template-columns: 1fr;
        }

        .shop-filter-summary {
            align-items: flex-start;
        }

        .cat-nav {
            justify-content: flex-start;
            padding-bottom: 6px;
        }

        .shop-pagination-shell {
            flex-direction: column;
            align-items: flex-start;
        }

        .cat-item {
            flex: 0 0 auto;
        }

        .product-grid {
            grid-template-columns: 1fr !important;
            column-gap: 0 !important;
            row-gap: 1.35rem !important;
        }

        .product-cell {
            padding-bottom: 1.45rem !important;
        }

        .product-card {
            padding: 0.9rem;
            margin: 0 !important;
        }

        .shop-hero {
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .shop-hero-title {
            font-size: 1.22rem;
        }

        .shop-hero-sub {
            font-size: 0.88rem;
        }

        .payment-modal-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 420px) {
        .shop-toolbar {
            padding: 0.85rem;
        }

        .shop-submit-btn,
        .shop-reset-btn {
            width: 100%;
        }

        .shop-pagination {
            width: 100%;
        }

        .shop-page-btn {
            flex: 1 1 auto;
        }

        .product-grid {
            grid-template-columns: 1fr;
            column-gap: 0;
            row-gap: 1rem !important;
        }

        .product-cell {
            padding-bottom: 1.1rem !important;
        }

        .shop-hero-title {
            font-size: 1.08rem;
        }

        .shop-metric-chip {
            width: 100%;
            justify-content: center;
        }

        .qty-label {
            font-size: 0.74rem;
            margin-left: 6px;
        }

        .qty-btn {
            width: 34px;
            height: 34px;
        }

        .qty-input {
            font-size: 1rem;
            min-width: 42px;
        }

        .btn-buy {
            min-height: 42px;
            font-size: 0.95rem;
        }

        .payment-modal-container {
            width: 95%;
            padding: 14px;
            border-radius: 12px;
        }

        .payment-modal-header h3 {
            font-size: 1.02rem !important;
        }

        .payment-modal-order {
            font-size: 0.78rem;
        }
    }
    /* Premium refresh */
    #shopBrowseRoot {
        view-transition-name: shop-browse;
    }

    .shop-hero {
        border: 1px solid rgba(124, 231, 255, 0.16);
        border-radius: 28px;
        padding: 1.6rem;
        margin-bottom: 1.3rem;
        background:
            radial-gradient(circle at top right, rgba(248, 195, 107, 0.12), transparent 28%),
            linear-gradient(135deg, rgba(13, 21, 40, 0.96), rgba(8, 14, 28, 0.92));
        box-shadow: 0 22px 48px rgba(2, 8, 23, 0.28);
    }

    .shop-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
        gap: 1.05rem;
        align-items: stretch;
    }

    .shop-hero-main,
    .shop-hero-side {
        position: relative;
        z-index: 1;
    }

    .shop-hero-main {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.25rem;
        min-height: 100%;
        padding: 1.35rem;
        border-radius: 26px;
        border: 1px solid rgba(124, 231, 255, 0.08);
        background:
            radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 42%),
            linear-gradient(180deg, rgba(8, 17, 32, 0.86), rgba(3, 10, 22, 0.62));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .shop-hero-copy,
    .shop-hero-footer {
        display: grid;
        gap: 0.9rem;
    }

    .shop-hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        min-height: 34px;
        padding: 0.42rem 0.8rem;
        border-radius: 999px;
        border: 1px solid rgba(124, 231, 255, 0.18);
        background: rgba(124, 231, 255, 0.08);
        color: #7ce7ff;
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .shop-hero-title {
        margin-top: 0.15rem;
        margin-bottom: 0;
        max-width: 12ch;
        font-size: clamp(2rem, 2.15vw + 1rem, 3.2rem);
        line-height: 1;
        letter-spacing: -0.04em;
        text-wrap: balance;
    }

    .shop-hero-sub {
        display: block;
        margin: 0;
        max-width: 34rem;
        color: #a9bdd7;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .shop-hero-actions {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .shop-hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        min-height: 48px;
        padding: 0.82rem 1.1rem;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .shop-hero-btn:hover {
        transform: translateY(-1px);
    }

    .shop-hero-btn-primary {
        border: 1px solid rgba(124, 231, 255, 0.24);
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(14, 165, 233, 0.88));
        color: #04131f;
        box-shadow: 0 18px 36px rgba(56, 189, 248, 0.2);
    }

    .shop-hero-btn-secondary {
        border: 1px solid rgba(248, 195, 107, 0.2);
        background: rgba(255, 255, 255, 0.04);
        color: #f8d28c;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .shop-hero-trust {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        color: #9db0ca;
        font-size: 0.78rem;
    }

    .shop-hero-trust span {
        min-height: 34px;
        padding: 0.48rem 0.78rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
    }

    .shop-hero-helper {
        margin-top: 0.85rem;
        color: #d7e2f0;
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .shop-hero-helper strong,
    .shop-hero-helper a {
        color: #7dd3fc;
        font-weight: 700;
        text-decoration: none;
    }

    .shop-conversion-strip {
        margin: 0 0 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .shop-conversion-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.48rem;
        min-height: 42px;
        padding: 0.68rem 0.95rem;
        border-radius: 999px;
        border: 1px solid rgba(125, 211, 252, 0.14);
        background: rgba(15, 23, 42, 0.58);
        color: #e2e8f0;
        text-decoration: none;
        font-size: 0.84rem;
        font-weight: 700;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .shop-conversion-pill strong {
        color: #f8fafc;
    }

    .shop-conversion-pill i {
        color: #38bdf8;
    }

    .shop-conversion-pill:hover {
        transform: translateY(-1px);
        border-color: rgba(125, 211, 252, 0.26);
        background: rgba(14, 165, 233, 0.08);
    }

    .shop-hero-side {
        display: grid;
        gap: 0.8rem;
        align-content: stretch;
    }

    .shop-hero-panel {
        height: 100%;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
        padding: 1rem;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .shop-hero-panel + .shop-hero-panel {
        margin-top: 0.8rem;
    }

    .shop-panel-label {
        color: #8ca3c0;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .shop-panel-grid {
        margin-top: 0.85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .shop-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .shop-panel-stat {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.45rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: linear-gradient(180deg, rgba(19, 28, 49, 0.82), rgba(13, 21, 40, 0.58));
        min-height: 92px;
        padding: 0.95rem 0.9rem;
    }

    .shop-panel-stat strong {
        display: block;
        font-size: 1.45rem;
        color: #f8fbff;
    }

    .shop-panel-stat span {
        display: block;
        margin-top: 0.28rem;
        font-size: 0.8rem;
        color: #8ca3c0;
    }

    .shop-panel-stat-primary {
        grid-column: 1 / -1;
        min-height: 144px;
        padding: 1.05rem 1rem;
        border-color: rgba(248, 195, 107, 0.2);
        background:
            radial-gradient(circle at top right, rgba(248, 195, 107, 0.2), transparent 40%),
            linear-gradient(135deg, rgba(20, 32, 57, 0.94), rgba(10, 18, 34, 0.92));
    }

    .shop-panel-stat-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        width: max-content;
        max-width: 100%;
        padding: 0.38rem 0.72rem;
        border-radius: 999px;
        background: rgba(248, 195, 107, 0.12);
        color: #f8d28c;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .shop-panel-stat-primary strong {
        font-size: clamp(2.15rem, 1.4vw + 1.6rem, 3rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .shop-panel-stat-title {
        margin-top: 0;
        color: #f8fbff;
        font-size: 0.92rem;
        font-weight: 700;
    }

    .shop-panel-stat-note {
        margin: 0;
        color: #a9bdd7;
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .shop-panel-highlight {
        background: linear-gradient(135deg, rgba(248, 195, 107, 0.14), rgba(255, 255, 255, 0.03));
    }

    .shop-panel-highlight strong {
        display: block;
        margin-top: 0.6rem;
        font-size: 1rem;
        line-height: 1.45;
        color: #fff;
    }

    .shop-panel-highlight p {
        margin: 0.45rem 0 0;
        color: #bdd0e6;
        line-height: 1.6;
        font-size: 0.88rem;
    }

    .shop-hero-highlight {
        display: grid;
        gap: 0.45rem;
        padding: 1rem 1.05rem;
        border-radius: 22px;
        border: 1px solid rgba(248, 195, 107, 0.18);
        background: linear-gradient(135deg, rgba(248, 195, 107, 0.14), rgba(255, 255, 255, 0.04));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .shop-hero-highlight-label {
        color: #f8d28c;
        font-size: 0.76rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .shop-hero-highlight strong {
        font-size: 1rem;
        line-height: 1.4;
        color: #fff;
    }

    .shop-hero-highlight-meta {
        color: #cfd9e8;
        font-size: 0.82rem;
        font-weight: 600;
    }

    .shop-hero-highlight-price {
        color: #f8d28c;
        font-weight: 800;
        font-size: 1rem;
    }

    .shop-toolbar {
        border-radius: 24px;
        border-color: rgba(255, 255, 255, 0.08);
        background: linear-gradient(180deg, rgba(10, 16, 32, 0.9), rgba(10, 16, 32, 0.74));
        box-shadow: 0 16px 36px rgba(2, 8, 23, 0.22);
    }

    .shop-search-box,
    .shop-input,
    .shop-select {
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .shop-filter-chip,
    .shop-metric-chip,
    .discount-badge,
    .stock-badge {
        border-radius: 999px;
    }

    .cat-nav {
        gap: 0.7rem;
        margin-bottom: 1.1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.1rem 0 0.35rem;
        scrollbar-width: none;
    }

    .cat-nav::-webkit-scrollbar {
        display: none;
    }

    .cat-item {
        min-height: 42px;
        padding: 0.62rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }

    .cat-item::before {
        display: none;
    }

    .cat-item:hover {
        transform: translateY(-1px);
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
        gap: 1rem;
        align-items: stretch;
    }

    .product-cell {
        padding-bottom: 0 !important;
        display: flex;
        align-items: stretch;
        min-width: 0;
        height: 100%;
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }

    .product-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100%;
        height: 100%;
        width: 100%;
        padding: 1.1rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-image: none;
        background:
            radial-gradient(circle at top right, rgba(124, 231, 255, 0.08), transparent 26%),
            linear-gradient(180deg, rgba(14, 22, 40, 0.96), rgba(10, 16, 32, 0.92));
        box-shadow: 0 18px 38px rgba(2, 8, 23, 0.2);
        contain: layout paint;
        transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .product-card:hover {
        transform: translateY(-4px);
        border-color: rgba(124, 231, 255, 0.22);
        box-shadow: 0 22px 42px rgba(2, 8, 23, 0.26);
    }

    .diamond-glare {
        display: none;
    }

    .product-name {
        min-height: 0;
        background: none;
        color: #f8fbff;
        -webkit-text-fill-color: initial;
        animation: none;
        filter: none;
        font-size: 1.05rem;
        letter-spacing: -0.02em;
    }

    .product-desc {
        border-radius: 16px;
        border-left: 0;
        border: 1px solid rgba(124, 231, 255, 0.08);
        padding: 0.78rem 0.85rem;
        background: rgba(255, 255, 255, 0.04);
        line-height: 1.6;
    }

    .product-proof-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
        margin-bottom: 0.8rem;
    }

    .product-proof-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.34rem 0.62rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.16);
        background: rgba(255, 255, 255, 0.04);
        color: #d5e2f0;
        font-size: 0.76rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .product-proof-chip i {
        color: #38bdf8;
    }

    .product-price {
        background: none;
        -webkit-text-fill-color: initial;
        color: #f8fbff;
    }

    .product-new-price {
        text-shadow: none;
    }

    .product-new-price .price-value {
        background: linear-gradient(90deg, #f8c36b, #fb7185);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .quantity-wrapper {
        padding: 0.45rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.04);
    }

    .buy-helper {
        margin: 0.72rem 0 0.78rem;
        padding: 0.75rem 0.82rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(148, 163, 184, 0.12);
    }

    .buy-helper-total {
        color: #f8fafc;
        font-size: 0.87rem;
        font-weight: 800;
        line-height: 1.35;
    }

    .buy-helper-note {
        margin-top: 0.28rem;
        color: #9db0ca;
        font-size: 0.76rem;
        line-height: 1.45;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .btn-buy {
        min-height: 46px;
        border-radius: 16px;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        text-transform: none;
        background: linear-gradient(135deg, #38bdf8, #0ea5e9);
        box-shadow: 0 16px 30px rgba(56, 189, 248, 0.2);
    }

    .btn-buy:hover:not(:disabled) {
        transform: translateY(-1px);
    }

    .payment-modal-container {
        border-radius: 28px;
        border: 1px solid rgba(124, 231, 255, 0.16);
        background:
            radial-gradient(circle at top right, rgba(248, 195, 107, 0.12), transparent 28%),
            linear-gradient(180deg, rgba(13, 21, 40, 0.98), rgba(10, 16, 32, 0.96));
        color: #f8fbff;
        box-shadow: 0 26px 56px rgba(2, 8, 23, 0.34);
    }

    .payment-modal-order,
    .payment-modal-label {
        color: #9db0ca;
    }

    .payment-modal-product,
    .payment-modal-amount {
        color: #f8fbff;
    }

    .payment-modal-content {
        background: rgba(255, 255, 255, 0.08);
        color: #f8fbff;
    }

    .payment-modal-meta,
    .payment-modal-qr {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .payment-modal-actions .btn {
        min-height: 44px;
        border-radius: 14px;
    }

    .payment-modal-actions #inlinePaymentCancelBtn {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #f8fbff;
        border-color: rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 980px) {
        .shop-hero-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .shop-hero {
            padding: 1.15rem;
            border-radius: 24px;
        }

        .shop-hero-main {
            padding: 1rem;
        }

        .shop-hero-title {
            max-width: 14ch;
        }

        .shop-hero-sub {
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .shop-hero-actions {
            flex-direction: column;
        }

        .shop-hero-btn {
            width: 100%;
        }

        .shop-panel-grid,
        .shop-hero-stats {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 420px) {
        .shop-hero {
            padding: 1rem;
            border-radius: 22px;
        }

        .shop-hero-main {
            padding: 0.95rem;
        }

        .shop-hero-title {
            max-width: none;
            font-size: clamp(1.65rem, 8vw, 2.1rem);
        }

        .shop-hero-actions {
            gap: 0.6rem;
        }

        .shop-hero-btn {
            min-height: 44px;
            padding: 0.72rem 0.9rem;
            font-size: 0.84rem;
        }

        .shop-hero-trust {
            gap: 0.5rem;
            font-size: 0.72rem;
        }

        .shop-hero-trust span {
            min-height: 32px;
            padding: 0.42rem 0.65rem;
        }

        .shop-conversion-strip {
            gap: 0.5rem;
        }

        .shop-conversion-pill {
            width: 100%;
            justify-content: center;
        }

        .shop-panel-stat {
            min-height: 78px;
            padding: 0.78rem;
        }

        .shop-panel-stat-primary {
            min-height: 126px;
        }

        .shop-panel-stat strong {
            font-size: 1.2rem;
        }
    }

    /* Luxury storefront polish */
    #shopBrowseRoot {
        position: relative;
    }

    #shopBrowseRoot .shop-hero,
    #shopBrowseRoot .shop-toolbar,
    #shopBrowseRoot .shop-empty-state,
    #shopBrowseRoot .shop-pagination-shell,
    #shopBrowseRoot .product-card,
    #inlinePaymentModal .payment-modal-container,
    #shopNoticeModal .payment-modal-container {
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    #shopBrowseRoot .shop-hero {
        position: relative;
        overflow: hidden;
        border-color: rgba(227, 199, 143, 0.16);
        background:
            radial-gradient(circle at 12% 18%, rgba(227, 199, 143, 0.16), transparent 28%),
            radial-gradient(circle at 88% 14%, rgba(125, 157, 134, 0.12), transparent 26%),
            linear-gradient(135deg, rgba(24, 20, 17, 0.97), rgba(13, 11, 9, 0.95));
        box-shadow: 0 34px 72px rgba(0, 0, 0, 0.34);
    }

    #shopBrowseRoot .shop-hero::before {
        content: '';
        position: absolute;
        inset: 1px;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.04);
        pointer-events: none;
    }

    #shopBrowseRoot .shop-hero-main,
    #shopBrowseRoot .shop-hero-panel,
    #shopBrowseRoot .shop-hero-highlight,
    #shopBrowseRoot .shop-toolbar,
    #shopBrowseRoot .shop-pagination-shell,
    #shopBrowseRoot .shop-empty-state {
        border-color: rgba(227, 199, 143, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    #shopBrowseRoot .shop-hero-kicker,
    #shopBrowseRoot .shop-filter-chip,
    #shopBrowseRoot .shop-metric-chip,
    #shopBrowseRoot .shop-conversion-pill,
    #shopBrowseRoot .cat-item,
    #shopBrowseRoot .product-proof-chip {
        border-color: rgba(227, 199, 143, 0.18);
        background: rgba(255, 255, 255, 0.035);
        color: #e8dcc6;
    }

    #shopBrowseRoot .shop-hero-kicker i,
    #shopBrowseRoot .shop-conversion-pill i,
    #shopBrowseRoot .product-proof-chip i,
    #shopBrowseRoot .shop-filter-chip i {
        color: var(--gold-color);
    }

    #shopBrowseRoot .shop-hero-title,
    #shopBrowseRoot .product-name,
    #inlinePaymentModal .payment-modal-header h3,
    #shopNoticeModal .payment-modal-header h3 {
        font-family: var(--font-display);
        letter-spacing: 0.045em;
    }

    #shopBrowseRoot .shop-hero-title {
        max-width: 11ch;
        color: #fff5e6;
        font-size: clamp(2.3rem, 2.3vw + 1rem, 3.6rem);
        line-height: 1.04;
        text-wrap: balance;
    }

    #shopBrowseRoot .shop-hero-sub,
    #shopBrowseRoot .shop-hero-helper,
    #shopBrowseRoot .shop-filter-meta,
    #shopBrowseRoot .shop-pagination-meta,
    #shopBrowseRoot .shop-empty-state,
    #shopBrowseRoot .buy-helper-note {
        color: #d6c9b5;
    }

    #shopBrowseRoot .shop-hero-helper strong,
    #shopBrowseRoot .shop-hero-helper a,
    #shopBrowseRoot .shop-filter-chip strong,
    #shopBrowseRoot .shop-conversion-pill strong,
    #shopBrowseRoot .shop-panel-stat strong,
    #shopBrowseRoot .shop-hero-highlight-price {
        color: #f3dfba;
    }

    #shopBrowseRoot .shop-hero-btn-primary,
    #shopBrowseRoot .shop-submit-btn,
    #shopBrowseRoot .shop-page-btn.active,
    #shopBrowseRoot .btn-buy {
        border-color: rgba(227, 199, 143, 0.28);
        background: linear-gradient(135deg, #f0ddb5, #d8b57a 58%, #b68546 100%);
        color: #17120e;
        box-shadow: 0 18px 34px rgba(84, 56, 20, 0.24);
    }

    #shopBrowseRoot .shop-hero-btn-primary:hover,
    #shopBrowseRoot .shop-submit-btn:hover,
    #shopBrowseRoot .shop-page-btn.active:hover,
    #shopBrowseRoot .btn-buy:hover:not(:disabled) {
        box-shadow: 0 22px 40px rgba(84, 56, 20, 0.3);
    }

    #shopBrowseRoot .shop-hero-btn-secondary,
    #shopBrowseRoot .shop-reset-btn,
    #shopBrowseRoot .shop-page-btn,
    #shopBrowseRoot .cat-item {
        border-color: rgba(227, 199, 143, 0.14);
        background: rgba(255, 255, 255, 0.028);
        color: #f1e2c6;
    }

    #shopBrowseRoot .shop-hero-btn-secondary:hover,
    #shopBrowseRoot .shop-reset-btn:hover,
    #shopBrowseRoot .shop-page-btn:hover,
    #shopBrowseRoot .cat-item:hover,
    #shopBrowseRoot .shop-conversion-pill:hover {
        border-color: rgba(227, 199, 143, 0.24);
        background: rgba(227, 199, 143, 0.08);
        color: #fff6e7;
    }

    #shopBrowseRoot .shop-search-box,
    #shopBrowseRoot .shop-input,
    #shopBrowseRoot .shop-select,
    #shopBrowseRoot .shop-panel-stat,
    #shopBrowseRoot .shop-panel-highlight {
        border-color: rgba(227, 199, 143, 0.1);
        background: rgba(255, 255, 255, 0.03);
        color: #f6eee3;
    }

    #shopBrowseRoot .shop-field label,
    #shopBrowseRoot .shop-panel-label,
    #shopBrowseRoot .shop-panel-stat span,
    #shopBrowseRoot .shop-hero-highlight-label {
        color: #c4b192;
    }

    #shopBrowseRoot .shop-input::placeholder {
        color: rgba(214, 201, 181, 0.56);
    }

    #shopBrowseRoot .shop-input:focus,
    #shopBrowseRoot .shop-select:focus,
    #shopBrowseRoot .shop-search-box:focus-within {
        border-color: rgba(227, 199, 143, 0.34);
        box-shadow: 0 0 0 4px rgba(227, 199, 143, 0.08);
    }

    #shopBrowseRoot .shop-panel-stat-primary,
    #shopBrowseRoot .shop-panel-highlight,
    #shopBrowseRoot .shop-hero-highlight {
        border-color: rgba(227, 199, 143, 0.18);
        background:
            radial-gradient(circle at top right, rgba(227, 199, 143, 0.16), transparent 36%),
            linear-gradient(135deg, rgba(37, 30, 24, 0.92), rgba(18, 15, 13, 0.86));
    }

    #shopBrowseRoot .shop-panel-stat-kicker {
        background: rgba(227, 199, 143, 0.14);
        color: #f0ddb5;
    }

    #shopBrowseRoot .cat-item.active {
        background: rgba(227, 199, 143, 0.12);
        color: #fff4de;
        border-color: rgba(227, 199, 143, 0.26);
        box-shadow: inset 0 0 0 1px rgba(227, 199, 143, 0.06), 0 12px 24px rgba(0, 0, 0, 0.18);
    }

    #shopBrowseRoot .product-card {
        position: relative;
        border-color: rgba(227, 199, 143, 0.12);
        background:
            radial-gradient(circle at top right, rgba(227, 199, 143, 0.12), transparent 26%),
            linear-gradient(180deg, rgba(24, 21, 18, 0.98), rgba(16, 14, 12, 0.96));
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
    }

    #shopBrowseRoot .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 18px;
        width: 92px;
        height: 1px;
        background: linear-gradient(90deg, rgba(227, 199, 143, 0.92), transparent);
        pointer-events: none;
    }

    #shopBrowseRoot .product-card:hover {
        border-color: rgba(227, 199, 143, 0.22);
        box-shadow: 0 28px 52px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
    }

    #shopBrowseRoot .product-name {
        margin-bottom: 0.58rem;
        color: #fff4e4;
        background: none;
        -webkit-text-fill-color: initial;
        animation: none;
        filter: none;
        font-size: 1.18rem;
        line-height: 1.15;
    }

    #shopBrowseRoot .product-desc,
    #shopBrowseRoot .quantity-wrapper,
    #shopBrowseRoot .buy-helper {
        border-color: rgba(227, 199, 143, 0.1);
        background: rgba(255, 255, 255, 0.035);
    }

    #shopBrowseRoot .product-desc {
        color: #dbcebb;
    }

    #shopBrowseRoot .product-desc i {
        color: #d8b57a;
    }

    #shopBrowseRoot .discount-badge {
        border-color: rgba(227, 199, 143, 0.2);
        background: rgba(227, 199, 143, 0.12);
        color: #f0ddb5;
    }

    #shopBrowseRoot .sale-timer-badge {
        border-color: rgba(239, 143, 127, 0.18);
        background: rgba(239, 143, 127, 0.12);
        color: #ffd7ce;
    }

    #shopBrowseRoot .product-price,
    #shopBrowseRoot .product-new-price .price-value {
        background: linear-gradient(90deg, #f4e1bb, #d8b57a 55%, #c38b4c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #shopBrowseRoot .product-old-price,
    #shopBrowseRoot .product-unit {
        color: #b8a487;
        -webkit-text-fill-color: #b8a487;
    }

    #shopBrowseRoot .stock-badge {
        border-color: rgba(160, 186, 170, 0.2);
        background: rgba(113, 142, 129, 0.12);
        color: #dbe9e0;
    }

    #shopBrowseRoot .stock-badge .dot {
        background-color: #d8b57a;
        box-shadow: 0 0 10px rgba(216, 181, 122, 0.36);
    }

    #shopBrowseRoot .stock-badge.out-of-stock {
        border-color: rgba(239, 143, 127, 0.18);
        background: rgba(239, 143, 127, 0.1);
        color: #ffd7ce;
    }

    #shopBrowseRoot .stock-badge.out-of-stock .dot {
        background-color: #ef8f7f;
        box-shadow: 0 0 10px rgba(239, 143, 127, 0.36);
    }

    #shopBrowseRoot .qty-label,
    #shopBrowseRoot .buy-helper-total {
        color: #f6eee3;
    }

    #shopBrowseRoot .qty-btn {
        border: 1px solid rgba(227, 199, 143, 0.12);
        background: rgba(227, 199, 143, 0.1);
        color: #f4e8d4;
    }

    #shopBrowseRoot .qty-btn:hover {
        background: rgba(227, 199, 143, 0.18);
        color: #fff8ec;
    }

    #shopBrowseRoot .shop-pagination-shell {
        padding: 0.9rem 1rem;
        border-radius: 22px;
    }

    #inlinePaymentModal .payment-modal-container,
    #shopNoticeModal .payment-modal-container {
        border-color: rgba(227, 199, 143, 0.16);
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(227, 199, 143, 0.12), transparent 24%),
            linear-gradient(180deg, rgba(25, 21, 18, 0.98), rgba(13, 11, 9, 0.97));
        color: #f7ebd8;
        box-shadow: 0 34px 72px rgba(0, 0, 0, 0.4);
    }

    #inlinePaymentModal .payment-modal-header h3,
    #shopNoticeModal .payment-modal-header h3 {
        color: #fff5e5 !important;
        font-size: clamp(1.5rem, 1vw + 1rem, 2rem) !important;
    }

    #inlinePaymentModal .payment-modal-order,
    #inlinePaymentModal .payment-modal-label,
    #shopNoticeModal .payment-modal-order {
        color: #bdaa8e;
    }

    #inlinePaymentModal .payment-modal-qr {
        border-color: rgba(227, 199, 143, 0.18);
        background: linear-gradient(180deg, #f8f0e2 0%, #ede2d0 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    #inlinePaymentModal .payment-modal-meta {
        border-color: rgba(227, 199, 143, 0.12);
        background: rgba(255, 255, 255, 0.035);
    }

    #inlinePaymentModal .payment-modal-product,
    #inlinePaymentModal .payment-modal-amount,
    #inlinePaymentModal .payment-modal-content,
    #shopNoticeModal .payment-modal-product {
        color: #fff5e5;
    }

    #inlinePaymentModal .payment-modal-amount {
        font-size: 1.28rem;
        background: linear-gradient(90deg, #f4e1bb, #d8b57a 58%, #c38b4c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #inlinePaymentModal .payment-modal-content {
        border: 1px solid rgba(227, 199, 143, 0.12);
        background: rgba(255, 255, 255, 0.04);
        border-radius: 16px;
    }

    #inlinePaymentModal .payment-modal-status {
        color: #efdcb6;
    }

    #inlinePaymentModal .payment-modal-countdown {
        color: #cfb587;
    }

    #inlinePaymentModal .payment-modal-actions .btn:first-child {
        border-color: rgba(227, 199, 143, 0.24);
        background: linear-gradient(135deg, #f0ddb5, #d8b57a 58%, #b68546 100%);
        color: #17120e;
    }

    #inlinePaymentModal #inlinePaymentCancelBtn {
        border: 1px solid rgba(239, 143, 127, 0.16);
        background: rgba(255, 255, 255, 0.045) !important;
        color: #fff0ee !important;
    }

    #inlinePaymentModal #inlinePaymentCancelBtn:hover {
        background: rgba(239, 143, 127, 0.12) !important;
        border-color: rgba(239, 143, 127, 0.24);
    }

    @media (max-width: 640px) {
        #shopBrowseRoot .shop-hero-title {
            max-width: 13ch;
            font-size: clamp(1.95rem, 7vw, 2.6rem);
        }

        #shopBrowseRoot .shop-hero-main,
        #shopBrowseRoot .shop-toolbar,
        #shopBrowseRoot .product-card,
        #inlinePaymentModal .payment-modal-container,
        #shopNoticeModal .payment-modal-container {
            border-radius: 24px;
        }
    }

    /* Cinematic storefront spotlight upgrade */
    #shopBrowseRoot {
        --stage-line: rgba(241, 208, 154, 0.12);
        --stage-glow: rgba(138, 227, 255, 0.18);
        --stage-warm: rgba(241, 208, 154, 0.18);
        --reveal-distance: 22px;
    }

    #shopBrowseRoot [data-shop-reveal] {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        transition:
            opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
        will-change: transform, opacity;
        backface-visibility: hidden;
    }

    #shopBrowseRoot [data-shop-reveal].is-pending-reveal {
        opacity: 0;
        transform: translate3d(0, var(--reveal-distance), 0) scale(0.992);
    }

    #shopBrowseRoot [data-shop-reveal].is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    body.shop-lite-motion #shopBrowseRoot [data-shop-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    body.shop-lite-motion #shopBrowseRoot [data-shop-glow]::after,
    body.shop-lite-motion #inlinePaymentModal [data-shop-glow]::after,
    body.shop-lite-motion #shopNoticeModal [data-shop-glow]::after {
        display: none;
    }

    body.shop-lite-motion #shopBrowseRoot .shop-hero-signal-dot,
    body.shop-lite-motion #shopBrowseRoot .shop-hero-signal-bar {
        animation: none !important;
        box-shadow: none;
    }

    #shopBrowseRoot [data-shop-glow],
    #inlinePaymentModal [data-shop-glow],
    #shopNoticeModal [data-shop-glow] {
        position: relative;
        isolation: isolate;
        overflow: hidden;
        --glow-x: 50%;
        --glow-y: 32%;
    }

    #shopBrowseRoot [data-shop-glow]::after,
    #inlinePaymentModal [data-shop-glow]::after,
    #shopNoticeModal [data-shop-glow]::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background:
            radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(138, 227, 255, 0.17), transparent 34%),
            radial-gradient(circle at calc(var(--glow-x) + 16%) calc(var(--glow-y) - 8%), rgba(241, 208, 154, 0.12), transparent 28%);
        opacity: 0;
        transition: opacity 0.22s ease;
        pointer-events: none;
        z-index: 0;
    }

    #shopBrowseRoot [data-shop-glow] > *,
    #inlinePaymentModal [data-shop-glow] > *,
    #shopNoticeModal [data-shop-glow] > * {
        position: relative;
        z-index: 1;
    }

    #shopBrowseRoot [data-shop-glow].is-glowing::after,
    #inlinePaymentModal [data-shop-glow].is-glowing::after,
    #shopNoticeModal [data-shop-glow].is-glowing::after {
        opacity: 1;
    }

    #shopBrowseRoot .shop-hero {
        position: relative;
        padding: 1.25rem;
        border-radius: 34px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background:
            radial-gradient(circle at 8% 12%, rgba(138, 227, 255, 0.12), transparent 24%),
            radial-gradient(circle at 92% 8%, rgba(241, 208, 154, 0.16), transparent 28%),
            linear-gradient(135deg, rgba(23, 18, 14, 0.98), rgba(14, 11, 9, 0.95));
        box-shadow:
            0 36px 80px rgba(0, 0, 0, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    #shopBrowseRoot .shop-hero-orb {
        position: absolute;
        border-radius: 999px;
        pointer-events: none;
        filter: blur(10px);
        opacity: 0.86;
    }

    #shopBrowseRoot .shop-hero-orb-a {
        top: -4rem;
        right: -2rem;
        width: 16rem;
        height: 16rem;
        background: radial-gradient(circle, rgba(138, 227, 255, 0.22), transparent 68%);
    }

    #shopBrowseRoot .shop-hero-orb-b {
        left: 34%;
        bottom: -8rem;
        width: 20rem;
        height: 20rem;
        background: radial-gradient(circle, rgba(241, 208, 154, 0.18), transparent 72%);
    }

    #shopBrowseRoot .shop-hero-grid {
        gap: 1.2rem;
    }

    #shopBrowseRoot .shop-hero-main {
        padding: 1.45rem;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    #shopBrowseRoot .shop-hero-badge-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-top: 0.2rem;
    }

    #shopBrowseRoot .shop-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.42rem;
        min-height: 36px;
        padding: 0.44rem 0.78rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
        color: #f3e7d2;
        font-size: 0.76rem;
        font-weight: 700;
        line-height: 1.2;
    }

    #shopBrowseRoot .shop-hero-badge i {
        color: var(--accent-cyan);
    }

    #shopBrowseRoot .shop-hero-title {
        max-width: 9.8ch;
        font-size: clamp(2.4rem, 4.3vw, 4.7rem);
        line-height: 1.02;
        letter-spacing: 0.038em;
        color: #fff7eb;
        text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    }

    #shopBrowseRoot .shop-hero-sub {
        max-width: 40rem;
        color: rgba(244, 232, 209, 0.78);
        font-size: 1.01rem;
        line-height: 1.72;
    }

    #shopBrowseRoot .shop-hero-actions {
        gap: 0.85rem;
    }

    #shopBrowseRoot .shop-hero-btn {
        position: relative;
        min-height: 56px;
        padding: 0.95rem 1.25rem;
        border-radius: 999px;
        overflow: hidden;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    }

    #shopBrowseRoot .shop-hero-btn::before {
        content: '';
        position: absolute;
        inset: 1px;
        border-radius: inherit;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
        opacity: 0.45;
        pointer-events: none;
    }

    #shopBrowseRoot .shop-hero-btn::after {
        content: '';
        position: absolute;
        right: -2rem;
        bottom: -8rem;
        width: 12rem;
        height: 12rem;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 66%);
        opacity: 0;
        transform: translate3d(10px, 10px, 0);
        transition: opacity 0.2s ease, transform 0.2s ease;
        pointer-events: none;
    }

    #shopBrowseRoot .shop-hero-btn:hover::after {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    #shopBrowseRoot .shop-hero-btn-primary {
        border-color: rgba(241, 208, 154, 0.26);
        background: linear-gradient(135deg, #f6e4c5 0%, #d39a57 58%, #8ae3ff 100%);
        color: #1a1009;
        box-shadow: 0 24px 50px rgba(201, 136, 68, 0.28);
    }

    #shopBrowseRoot .shop-hero-btn-secondary {
        border-color: rgba(255, 255, 255, 0.09);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
        color: #fff4e4;
    }

    #shopBrowseRoot .shop-hero-trust {
        gap: 0.7rem;
    }

    #shopBrowseRoot .shop-hero-trust span {
        padding: 0.58rem 0.82rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
        color: rgba(247, 236, 217, 0.84);
    }

    #shopBrowseRoot .shop-hero-helper {
        padding: 1rem 1.05rem;
        border-radius: 22px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016));
        color: rgba(244, 232, 209, 0.78);
    }

    #shopBrowseRoot .shop-hero-side {
        gap: 0.85rem;
    }

    #shopBrowseRoot .shop-hero-signal {
        padding: 1rem 1.05rem;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    #shopBrowseRoot .shop-hero-signal-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
    }

    #shopBrowseRoot .shop-hero-signal-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.42rem;
        padding: 0.36rem 0.74rem;
        border-radius: 999px;
        background: rgba(138, 227, 255, 0.08);
        border: 1px solid rgba(138, 227, 255, 0.15);
        color: var(--accent-cyan);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    #shopBrowseRoot .shop-hero-signal-live {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: #fff2de;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    #shopBrowseRoot .shop-hero-signal-dot {
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 50%;
        background: #93edc0;
        box-shadow: 0 0 0 0.35rem rgba(147, 237, 192, 0.14);
        animation: signalBlink 1.8s ease-in-out infinite;
    }

    #shopBrowseRoot .shop-hero-signal-bars {
        margin-top: 0.95rem;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.45rem;
        align-items: end;
        min-height: 84px;
    }

    #shopBrowseRoot .shop-hero-signal-bar {
        height: var(--bar-height, 50%);
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(138, 227, 255, 0.95), rgba(241, 208, 154, 0.6));
        box-shadow: 0 12px 22px rgba(138, 227, 255, 0.18);
        animation: signalWave 2.6s ease-in-out infinite;
        animation-delay: var(--bar-delay, 0s);
    }

    #shopBrowseRoot .shop-hero-signal-foot {
        margin-top: 0.85rem;
        display: grid;
        gap: 0.2rem;
    }

    #shopBrowseRoot .shop-hero-signal-foot strong {
        font-size: 1.55rem;
        color: #fff6e8;
    }

    #shopBrowseRoot .shop-hero-signal-foot span {
        color: rgba(244, 232, 209, 0.66);
        font-size: 0.82rem;
        line-height: 1.55;
    }

    #shopBrowseRoot .shop-hero-stats {
        gap: 0.85rem;
    }

    #shopBrowseRoot .shop-panel-stat {
        min-height: 104px;
        padding: 1rem;
        border-radius: 22px;
        border-color: rgba(255, 255, 255, 0.07);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    }

    #shopBrowseRoot .shop-panel-stat strong {
        font-size: 1.6rem;
        color: #fff7eb;
    }

    #shopBrowseRoot .shop-panel-stat span {
        color: rgba(244, 232, 209, 0.62);
    }

    #shopBrowseRoot .shop-panel-stat-primary {
        min-height: 158px;
        border-color: rgba(241, 208, 154, 0.18);
        background:
            radial-gradient(circle at top right, rgba(241, 208, 154, 0.18), transparent 44%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    }

    #shopBrowseRoot .shop-panel-stat-kicker {
        color: #fff0d4;
        background: rgba(241, 208, 154, 0.12);
    }

    #shopBrowseRoot .shop-hero-highlight {
        gap: 0.5rem;
        padding: 1.05rem;
        border-radius: 28px;
        border-color: rgba(241, 208, 154, 0.18);
        background:
            radial-gradient(circle at top right, rgba(241, 208, 154, 0.16), transparent 40%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    }

    #shopBrowseRoot .shop-hero-highlight-price {
        font-size: 1.1rem;
    }

    #shopBrowseRoot .shop-toolbar {
        padding: 1.1rem;
        border-radius: 30px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background:
            radial-gradient(circle at top right, rgba(138, 227, 255, 0.08), transparent 28%),
            linear-gradient(180deg, rgba(23, 18, 14, 0.95), rgba(14, 11, 9, 0.92));
        box-shadow: 0 28px 58px rgba(0, 0, 0, 0.26);
    }

    #shopBrowseRoot .shop-toolbar-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    #shopBrowseRoot .shop-toolbar-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        min-height: 34px;
        padding: 0.38rem 0.78rem;
        border-radius: 999px;
        border: 1px solid rgba(138, 227, 255, 0.14);
        background: rgba(138, 227, 255, 0.08);
        color: var(--accent-cyan);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    #shopBrowseRoot .shop-toolbar-title {
        margin: 0.48rem 0 0;
        color: #fff4e4;
        font-family: var(--font-display);
        font-size: clamp(1.42rem, 1.55vw + 1rem, 2.08rem);
        line-height: 1.14;
        letter-spacing: 0.04em;
    }

    #shopBrowseRoot .shop-toolbar-note {
        min-width: 220px;
        padding: 0.88rem 1rem;
        border-radius: 22px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
        text-align: right;
        display: grid;
        gap: 0.16rem;
    }

    #shopBrowseRoot .shop-toolbar-note strong {
        font-size: 1.42rem;
        line-height: 1;
        color: #fff6e8;
    }

    #shopBrowseRoot .shop-toolbar-note span {
        color: rgba(244, 232, 209, 0.62);
        font-size: 0.8rem;
        line-height: 1.45;
    }

    #shopBrowseRoot .shop-toolbar-grid {
        gap: 0.85rem;
    }

    #shopBrowseRoot .shop-field label {
        color: #cfbc9b;
        font-size: 0.74rem;
    }

    #shopBrowseRoot .shop-search-box,
    #shopBrowseRoot .shop-input,
    #shopBrowseRoot .shop-select {
        min-height: 54px;
        border-radius: 18px;
        border-color: rgba(255, 255, 255, 0.09);
        background: rgba(255, 255, 255, 0.045);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    #shopBrowseRoot .shop-search-box i {
        color: var(--accent-cyan);
    }

    #shopBrowseRoot .shop-submit-btn,
    #shopBrowseRoot .shop-reset-btn {
        min-height: 54px;
        padding: 0 1.15rem;
        border-radius: 18px;
    }

    #shopBrowseRoot .shop-submit-btn {
        background: linear-gradient(135deg, #f6e4c5 0%, #cf9653 60%, #8ae3ff 100%);
        color: #180f09;
        box-shadow: 0 18px 36px rgba(201, 136, 68, 0.24);
    }

    #shopBrowseRoot .shop-reset-btn {
        background: rgba(255, 255, 255, 0.04);
    }

    #shopBrowseRoot .shop-filter-summary {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    #shopBrowseRoot .shop-filter-chip {
        border-color: rgba(241, 208, 154, 0.16);
        background: rgba(241, 208, 154, 0.08);
        color: #ffeecb;
    }

    #shopBrowseRoot .shop-filter-meta {
        color: rgba(244, 232, 209, 0.72);
    }

    #shopBrowseRoot .shop-conversion-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    #shopBrowseRoot .shop-conversion-pill {
        min-height: 56px;
        justify-content: space-between;
        padding: 0.8rem 1rem;
        border-radius: 22px;
        border-color: rgba(241, 208, 154, 0.12);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
    }

    #shopBrowseRoot .shop-conversion-pill strong {
        margin-left: auto;
        color: #fff6e7;
    }

    #shopBrowseRoot .shop-category-shell {
        margin-bottom: 1rem;
        padding: 0.95rem 1rem 1rem;
        border-radius: 28px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background: linear-gradient(180deg, rgba(23, 18, 14, 0.9), rgba(14, 11, 9, 0.86));
        box-shadow: 0 24px 46px rgba(0, 0, 0, 0.2);
    }

    #shopBrowseRoot .shop-category-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        flex-wrap: wrap;
    }

    #shopBrowseRoot .shop-category-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.42rem;
        color: #fff1d3;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    #shopBrowseRoot .shop-category-meta {
        color: rgba(244, 232, 209, 0.62);
        font-size: 0.84rem;
        font-weight: 700;
    }

    #shopBrowseRoot .cat-nav {
        gap: 0.75rem;
        margin-bottom: 0;
    }

    #shopBrowseRoot .cat-item {
        min-height: 46px;
        padding: 0.72rem 1.1rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    #shopBrowseRoot .cat-item.active {
        border-color: rgba(241, 208, 154, 0.24);
        background: linear-gradient(135deg, rgba(241, 208, 154, 0.16), rgba(138, 227, 255, 0.08));
        color: #fff5e7;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    }

    #shopBrowseRoot .shop-products-shell {
        position: relative;
        scroll-margin-top: 96px;
    }

    #shopBrowseRoot .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.15rem;
    }

    #shopBrowseRoot .product-card {
        padding: 1.15rem;
        border-radius: 30px;
        border-color: rgba(241, 208, 154, 0.12);
        background:
            radial-gradient(circle at top right, rgba(138, 227, 255, 0.08), transparent 30%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
        box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
        transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.18s ease, box-shadow 0.18s ease;
        will-change: transform;
        backface-visibility: hidden;
    }

    #shopBrowseRoot .product-card::before {
        inset: 1px;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    #shopBrowseRoot .product-card:hover {
        transform: translate3d(0, -4px, 0);
        border-color: rgba(241, 208, 154, 0.22);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    #shopBrowseRoot .product-card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        margin-bottom: 0.82rem;
    }

    #shopBrowseRoot .product-card-index,
    #shopBrowseRoot .product-card-status {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0.38rem 0.72rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    #shopBrowseRoot .product-card-index {
        border: 1px solid rgba(138, 227, 255, 0.16);
        background: rgba(138, 227, 255, 0.08);
        color: var(--accent-cyan);
    }

    #shopBrowseRoot .product-card-status {
        border: 1px solid rgba(147, 237, 192, 0.18);
        background: rgba(147, 237, 192, 0.08);
        color: #dff9e9;
    }

    #shopBrowseRoot .product-card-status.is-out {
        border-color: rgba(255, 155, 112, 0.18);
        background: rgba(255, 155, 112, 0.08);
        color: #ffe0d2;
    }

    #shopBrowseRoot .product-badge-stack {
        display: grid;
        gap: 0.45rem;
        margin-bottom: 0.82rem;
    }

    #shopBrowseRoot .discount-badge {
        justify-content: flex-start;
        padding: 0.42rem 0.75rem;
        border-color: rgba(241, 208, 154, 0.18);
        background: linear-gradient(135deg, rgba(241, 208, 154, 0.12), rgba(255, 255, 255, 0.03));
    }

    #shopBrowseRoot .product-name {
        display: block;
        margin-bottom: 1.08rem;
        padding-bottom: 0.08rem;
        color: #fff7ed;
        font-family: var(--font-display);
        font-size: 1.38rem;
        letter-spacing: 0.04em;
        line-height: 1.24;
        overflow-wrap: anywhere;
    }

    #shopBrowseRoot .product-desc {
        margin-top: 0.12rem;
        display: flex;
        align-items: flex-start;
        gap: 0.55rem;
        padding: 0.88rem 0.95rem;
        border-radius: 18px;
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
        color: rgba(244, 232, 209, 0.74);
    }

    #shopBrowseRoot .product-proof-row {
        gap: 0.5rem;
        margin-bottom: 0.9rem;
    }

    #shopBrowseRoot .product-proof-chip {
        padding: 0.42rem 0.7rem;
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
    }

    #shopBrowseRoot .product-price-panel {
        margin-bottom: 0.9rem;
        padding: 0.92rem 0.95rem;
        border-radius: 20px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    }

    #shopBrowseRoot .product-stock-caption {
        margin-top: 0.5rem;
        color: rgba(244, 232, 209, 0.58);
        font-size: 0.76rem;
        line-height: 1.45;
    }

    #shopBrowseRoot .stock-badge {
        border-color: rgba(147, 237, 192, 0.18);
        background: rgba(147, 237, 192, 0.08);
        color: #e6ffee;
    }

    #shopBrowseRoot .stock-badge.out-of-stock {
        border-color: rgba(255, 155, 112, 0.18);
        background: rgba(255, 155, 112, 0.08);
        color: #ffe1d4;
    }

    #shopBrowseRoot .quantity-wrapper {
        padding: 0.56rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
    }

    #shopBrowseRoot .qty-label {
        color: #d9c7a6;
        font-weight: 700;
    }

    #shopBrowseRoot .qty-btn {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        border-color: rgba(241, 208, 154, 0.16);
        background: linear-gradient(135deg, rgba(241, 208, 154, 0.14), rgba(255, 255, 255, 0.04));
        color: #fff4e4;
    }

    #shopBrowseRoot .qty-input {
        min-height: 40px;
        border-radius: 14px;
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(12, 10, 8, 0.78);
        color: #fff7ea;
    }

    #shopBrowseRoot .buy-helper {
        margin: 0.82rem 0 0.92rem;
        padding: 0.82rem 0.9rem;
        border-radius: 18px;
        border-color: rgba(255, 255, 255, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    }

    #shopBrowseRoot .buy-helper-total {
        font-size: 0.9rem;
    }

    #shopBrowseRoot .btn-buy {
        min-height: 54px;
        border-radius: 18px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        background: linear-gradient(135deg, #f6e4c5 0%, #d39a57 56%, #8ae3ff 100%);
        color: #180f09;
        box-shadow: 0 20px 40px rgba(201, 136, 68, 0.25);
    }

    #shopBrowseRoot .btn-buy:hover:not(:disabled) {
        transform: translateY(-2px) scale(1.01);
    }

    #shopBrowseRoot .shop-empty-state {
        padding: 3.25rem 1.35rem;
        border-radius: 28px;
        border-color: rgba(241, 208, 154, 0.16);
        background: linear-gradient(180deg, rgba(23, 18, 14, 0.92), rgba(14, 11, 9, 0.88));
    }

    #shopBrowseRoot .shop-pagination-shell {
        padding: 1rem 1.1rem;
        border-radius: 28px;
        border: 1px solid rgba(241, 208, 154, 0.12);
        background: linear-gradient(180deg, rgba(23, 18, 14, 0.92), rgba(14, 11, 9, 0.88));
    }

    #shopBrowseRoot .shop-page-btn {
        min-height: 44px;
        border-radius: 999px;
        border-color: rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.045);
    }

    #shopBrowseRoot .shop-page-btn.active {
        border-color: rgba(241, 208, 154, 0.24);
        background: linear-gradient(135deg, rgba(241, 208, 154, 0.16), rgba(138, 227, 255, 0.08));
        color: #fff6e8;
    }

    #inlinePaymentModal .payment-modal-container,
    #shopNoticeModal .payment-modal-container {
        border-radius: 32px;
    }

    @keyframes signalBlink {
        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.62;
            transform: scale(0.9);
        }
    }

    @keyframes signalWave {
        0%,
        100% {
            transform: scaleY(0.92);
        }

        50% {
            transform: scaleY(1.08);
        }
    }

    @media (max-width: 980px) {
        #shopBrowseRoot .shop-toolbar-head {
            align-items: flex-start;
        }

        #shopBrowseRoot .shop-toolbar-note {
            width: 100%;
            text-align: left;
        }
    }

    @media (max-width: 900px) {
        #shopBrowseRoot .shop-conversion-strip {
            grid-template-columns: 1fr;
        }

        #shopBrowseRoot .product-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        #shopBrowseRoot .shop-hero {
            padding: 1rem;
            border-radius: 28px;
        }

        #shopBrowseRoot .shop-hero-main {
            padding: 1rem;
            border-radius: 24px;
        }

        #shopBrowseRoot .shop-hero-title {
            max-width: none;
            font-size: clamp(1.82rem, 8vw, 2.65rem);
            line-height: 1.08;
        }

        #shopBrowseRoot .shop-hero-badge-row {
            gap: 0.45rem;
        }

        #shopBrowseRoot .shop-hero-badge {
            width: 100%;
            justify-content: center;
        }

        #shopBrowseRoot .shop-hero-btn {
            min-height: 52px;
        }

        #shopBrowseRoot .shop-toolbar-title {
            font-size: clamp(1.28rem, 5.4vw, 1.82rem);
        }

        #shopBrowseRoot .shop-category-shell {
            padding: 0.9rem;
        }

        #shopBrowseRoot .product-card {
            border-radius: 26px;
        }

        #shopBrowseRoot .product-name {
            font-size: 1.24rem;
            line-height: 1.24;
        }
    }

    /* Vietnamese readability refinements */
    #shopBrowseRoot .shop-hero-title,
    #shopBrowseRoot .shop-toolbar-title,
    #shopBrowseRoot .product-name,
    #inlinePaymentModal .payment-modal-header h3,
    #shopNoticeModal .payment-modal-header h3 {
        font-family: var(--font-display);
        font-kerning: normal;
        text-rendering: optimizeLegibility;
    }

    #shopBrowseRoot .shop-hero-title,
    #shopBrowseRoot .product-name,
    #inlinePaymentModal .payment-modal-header h3,
    #shopNoticeModal .payment-modal-header h3 {
        letter-spacing: -0.018em;
    }

    #shopBrowseRoot .shop-toolbar-title {
        letter-spacing: -0.012em;
    }

    #shopBrowseRoot .shop-hero-title {
        max-width: 13.5ch;
        font-size: clamp(1.96rem, 1.75vw + 1rem, 3.05rem);
        line-height: 1.12;
        text-wrap: balance;
    }

    #shopBrowseRoot .shop-hero-title-claim {
        max-width: none;
        display: grid;
        gap: 0.06em;
        margin-top: 0.55rem;
        font-size: clamp(2.4rem, 4.4vw, 4.35rem);
        line-height: 0.94;
        letter-spacing: -0.03em;
        text-wrap: balance;
    }

    #shopBrowseRoot .shop-hero-title-line {
        display: block;
        white-space: nowrap;
    }

    #shopBrowseRoot .shop-hero-title-line-accent {
        color: #f6e4c5;
        text-shadow:
            0 0 28px rgba(241, 208, 154, 0.2),
            0 12px 28px rgba(0, 0, 0, 0.2);
        background: linear-gradient(135deg, #fff8ef 0%, #f6e4c5 38%, #8ae3ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #shopBrowseRoot .shop-toolbar-title {
        font-size: clamp(1.24rem, 1vw + 0.95rem, 1.68rem);
        line-height: 1.22;
    }

    #shopBrowseRoot .product-name {
        font-size: 1.18rem;
        line-height: 1.32;
    }

    #shopBrowseRoot .shop-hero-kicker,
    #shopBrowseRoot .shop-toolbar-kicker,
    #shopBrowseRoot .shop-category-kicker,
    #shopBrowseRoot .shop-panel-stat-kicker,
    #shopBrowseRoot .shop-hero-highlight-label,
    #shopBrowseRoot .product-card-index,
    #shopBrowseRoot .product-card-status {
        letter-spacing: 0.032em;
        text-transform: none;
    }

    #inlinePaymentModal .payment-modal-header h3,
    #shopNoticeModal .payment-modal-header h3 {
        font-size: clamp(1.22rem, 0.6vw + 1rem, 1.52rem) !important;
        line-height: 1.24;
    }

    @media (max-width: 640px) {
        #shopBrowseRoot .shop-hero-title {
            max-width: none;
            font-size: clamp(1.68rem, 7.2vw, 2.32rem);
            line-height: 1.14;
        }

        #shopBrowseRoot .shop-hero-title-claim {
            font-size: clamp(1.72rem, 7.8vw, 2.5rem);
            line-height: 1;
            gap: 0.06em;
        }

        #shopBrowseRoot .shop-toolbar-title {
            font-size: clamp(1.16rem, 4.8vw, 1.48rem);
        }

        #shopBrowseRoot .product-name {
            font-size: 1.08rem;
        }
    }

    /* Button visibility upgrade */
    #shopBrowseRoot .shop-hero-btn,
    #shopBrowseRoot .shop-submit-btn,
    #shopBrowseRoot .shop-reset-btn,
    #shopBrowseRoot .shop-conversion-pill,
    #shopBrowseRoot .cat-item,
    #shopBrowseRoot .shop-page-btn,
    #shopBrowseRoot .btn-buy,
    #inlinePaymentModal .payment-modal-actions .btn,
    #shopNoticeModal .btn-inline-confirm {
        position: relative;
        overflow: hidden;
        font-weight: 800;
        letter-spacing: 0.012em;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, filter 0.2s ease;
    }

    #shopBrowseRoot .shop-hero-btn > *,
    #shopBrowseRoot .shop-submit-btn > *,
    #shopBrowseRoot .shop-reset-btn > *,
    #shopBrowseRoot .shop-conversion-pill > *,
    #shopBrowseRoot .cat-item > *,
    #shopBrowseRoot .shop-page-btn > *,
    #shopBrowseRoot .btn-buy > *,
    #inlinePaymentModal .payment-modal-actions .btn > *,
    #shopNoticeModal .btn-inline-confirm > * {
        position: relative;
        z-index: 1;
    }

    #shopBrowseRoot .shop-hero-btn:focus-visible,
    #shopBrowseRoot .shop-submit-btn:focus-visible,
    #shopBrowseRoot .shop-reset-btn:focus-visible,
    #shopBrowseRoot .shop-conversion-pill:focus-visible,
    #shopBrowseRoot .cat-item:focus-visible,
    #shopBrowseRoot .shop-page-btn:focus-visible,
    #shopBrowseRoot .btn-buy:focus-visible,
    #inlinePaymentModal .payment-modal-actions .btn:focus-visible,
    #shopNoticeModal .btn-inline-confirm:focus-visible {
        outline: 3px solid rgba(255, 240, 208, 0.42);
        outline-offset: 3px;
    }

    #shopBrowseRoot .shop-hero-btn-primary,
    #shopBrowseRoot .shop-submit-btn,
    #shopBrowseRoot .shop-page-btn.active,
    #shopBrowseRoot .btn-buy {
        color: #170f09;
        border-color: rgba(241, 208, 154, 0.34);
        background: linear-gradient(135deg, #fff1cf 0%, #e7c78f 42%, #8ae3ff 100%);
        box-shadow:
            0 24px 46px rgba(84, 56, 20, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.38);
    }

    #shopBrowseRoot .shop-hero-btn-primary:hover,
    #shopBrowseRoot .shop-submit-btn:hover,
    #shopBrowseRoot .shop-page-btn.active:hover,
    #shopBrowseRoot .btn-buy:hover:not(:disabled) {
        transform: translateY(-2px) scale(1.01);
        box-shadow:
            0 30px 54px rgba(84, 56, 20, 0.32),
            inset 0 1px 0 rgba(255, 255, 255, 0.44);
    }

    #shopBrowseRoot .shop-hero-btn-secondary,
    #shopBrowseRoot .shop-reset-btn,
    #shopBrowseRoot .shop-page-btn,
    #shopBrowseRoot .cat-item {
        color: #fff6e7;
        border-color: rgba(241, 208, 154, 0.18);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 14px 28px rgba(0, 0, 0, 0.18);
    }

    #shopBrowseRoot .shop-hero-btn-secondary:hover,
    #shopBrowseRoot .shop-reset-btn:hover,
    #shopBrowseRoot .shop-page-btn:hover,
    #shopBrowseRoot .cat-item:hover {
        transform: translateY(-2px);
        border-color: rgba(241, 208, 154, 0.3);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(241, 208, 154, 0.14));
        box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
    }

    #shopBrowseRoot .cat-item.active {
        color: #170f09;
        border-color: rgba(241, 208, 154, 0.34);
        background: linear-gradient(135deg, #fff1cf 0%, #e4c287 56%, #8ae3ff 100%);
        box-shadow: 0 22px 42px rgba(84, 56, 20, 0.26);
    }

    #shopBrowseRoot .shop-conversion-pill {
        min-height: 58px;
        padding: 0.88rem 1rem;
        border-color: rgba(241, 208, 154, 0.16);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
        color: #fff2de;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 18px 34px rgba(0, 0, 0, 0.18);
    }

    #shopBrowseRoot .shop-conversion-pill strong {
        min-width: 2.35rem;
        margin-left: auto;
        padding: 0.34rem 0.62rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    #shopBrowseRoot .shop-conversion-pill:hover {
        transform: translateY(-3px);
        border-color: rgba(241, 208, 154, 0.28);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(241, 208, 154, 0.12));
        box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
    }

    #shopBrowseRoot .shop-conversion-pill-primary {
        color: #170f09;
        border-color: rgba(241, 208, 154, 0.34);
        background: linear-gradient(135deg, #fff1cf 0%, #e7c78f 42%, #8ae3ff 100%);
        box-shadow:
            0 24px 46px rgba(84, 56, 20, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.38);
    }

    #shopBrowseRoot .shop-conversion-pill-primary i,
    #shopBrowseRoot .shop-conversion-pill-primary strong {
        color: inherit;
    }

    #shopBrowseRoot .shop-conversion-pill-primary strong {
        background: rgba(23, 15, 9, 0.1);
    }

    #shopBrowseRoot .shop-conversion-pill-accent {
        border-color: rgba(138, 227, 255, 0.22);
        background: linear-gradient(135deg, rgba(138, 227, 255, 0.14), rgba(255, 255, 255, 0.04));
    }

    #shopBrowseRoot .shop-conversion-pill-accent i {
        color: #8ae3ff;
    }

    #shopBrowseRoot .shop-conversion-pill-accent strong {
        background: rgba(138, 227, 255, 0.12);
    }

    #shopBrowseRoot .btn-buy {
        min-height: 58px;
        padding: 0.92rem 1.1rem;
        border-width: 1px;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    #shopBrowseRoot .btn-buy:disabled {
        opacity: 1;
        border-color: rgba(148, 163, 184, 0.22);
        background: linear-gradient(180deg, rgba(71, 85, 105, 0.84), rgba(51, 65, 85, 0.96));
        color: rgba(226, 232, 240, 0.62);
        box-shadow: none;
    }

    #inlinePaymentModal .payment-modal-actions .btn {
        flex: 1 1 180px;
        min-height: 50px;
        border-radius: 16px;
        font-weight: 800;
    }

    #inlinePaymentModal #inlinePaymentCopyBtn {
        color: #170f09;
        border-color: rgba(241, 208, 154, 0.32);
        background: linear-gradient(135deg, #fff1cf 0%, #e7c78f 42%, #8ae3ff 100%);
        box-shadow:
            0 20px 38px rgba(84, 56, 20, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.36);
    }

    #inlinePaymentModal #inlinePaymentCopyBtn:hover {
        transform: translateY(-2px);
        box-shadow:
            0 24px 42px rgba(84, 56, 20, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.42);
    }

    #inlinePaymentModal #inlinePaymentCancelBtn {
        color: #fff4ef !important;
        border-color: rgba(248, 113, 113, 0.24) !important;
        background: linear-gradient(135deg, rgba(248, 113, 113, 0.16), rgba(255, 255, 255, 0.04)) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 14px 28px rgba(0, 0, 0, 0.16);
    }

    #inlinePaymentModal #inlinePaymentCancelBtn:hover {
        transform: translateY(-2px);
        border-color: rgba(248, 113, 113, 0.34) !important;
        background: linear-gradient(135deg, rgba(248, 113, 113, 0.24), rgba(255, 255, 255, 0.08)) !important;
        box-shadow: 0 18px 32px rgba(127, 29, 29, 0.22);
    }

    #shopNoticeModal .btn-inline-confirm {
        min-height: 48px;
        box-shadow:
            0 18px 36px rgba(84, 56, 20, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    @media (max-width: 640px) {
        #shopBrowseRoot .shop-conversion-pill {
            min-height: 54px;
        }

        #shopBrowseRoot .btn-buy,
        #shopBrowseRoot .shop-submit-btn,
        #inlinePaymentModal .payment-modal-actions .btn {
            min-height: 52px;
        }
    }

    /* Webview safety guards: keep product sections visible and let cards size to content. */
    #shopBrowseRoot .product-cell {
        min-height: 0;
        height: auto;
    }

    #shopBrowseRoot .product-card {
        min-height: 0;
        height: auto;
    }

    body.shop-embedded-webview #shopBrowseRoot [data-shop-reveal].is-pending-reveal {
        opacity: 1;
        transform: none;
    }
