:root {
    --px-black: #090b10;
    --px-text: #101114;
    --px-muted: #666b76;
    --px-line: #e8e8e8;
    --px-yellow: #d7a51f;
    --px-bg: #f6f6f4;
}

.px-shop-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--px-text);
    background: var(--px-bg);
    min-height: 100vh;
}

.px-product-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    padding: 80px 7vw;
    align-items: center;
}

.px-product-copy {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.px-eyebrow {
    letter-spacing: 0.22em;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 32px;
}

.px-product-copy h1 {
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.95;
    margin: 0 0 28px;
    letter-spacing: -0.06em;
}

.px-product-copy p {
    color: var(--px-muted);
    font-size: 22px;
    line-height: 1.45;
    max-width: 460px;
}

.px-product-card,
.px-success-card {
    background: #fff;
    border: 1px solid var(--px-line);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.px-product-card h2 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.px-muted,
.px-note {
    color: var(--px-muted);
}

.px-checkout-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 18px 0 8px;
}

.px-checkout-form input[type="text"],
.px-checkout-form input[type="email"],
.px-checkout-form input[type="number"],
.px-checkout-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dcdde1;
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    background: #fbfbfb;
    outline: none;
}

.px-checkout-form input:focus,
.px-checkout-form textarea:focus {
    border-color: var(--px-yellow);
    box-shadow: 0 0 0 4px rgba(215, 165, 31, 0.12);
}

.px-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.px-variant-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.px-variant-option {
    cursor: pointer;
    margin: 0 !important;
}

.px-variant-option input {
    position: absolute;
    opacity: 0;
}

.px-variant-option span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dcdde1;
    border-radius: 16px;
    padding: 14px 16px;
    transition: all 0.15s ease;
}

.px-variant-option input:checked + span {
    border-color: var(--px-yellow);
    background: rgba(215, 165, 31, 0.08);
}

.px-variant-option small {
    color: var(--px-muted);
    font-weight: 700;
}

.px-btn-primary {
    display: inline-block;
    width: 100%;
    border: 0;
    border-radius: 16px;
    background: var(--px-black);
    color: #fff !important;
    padding: 16px 22px;
    font-size: 16px;
    font-weight: 800;
    margin-top: 24px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.px-feature-strip {
    background: var(--px-black);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 44px 7vw;
}

.px-feature-strip div {
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.px-feature-strip div:last-child {
    border-right: 0;
}

.px-feature-strip strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--px-yellow);
}

.px-feature-strip span {
    color: rgba(255,255,255,0.78);
}

.px-alert {
    border-radius: 14px;
    background: #fff4f4;
    border: 1px solid #ffd0d0;
    color: #9b1c1c;
    padding: 14px;
    margin: 16px 0;
}

.px-success-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.px-success-card {
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.px-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(215, 165, 31, 0.14);
    color: var(--px-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    font-weight: 900;
    margin: 0 auto 22px;
}

.px-order-box {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 18px;
    margin: 24px 0;
}

.px-order-box span {
    display: block;
    color: var(--px-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.px-order-box strong {
    font-size: 22px;
}

@media (max-width: 900px) {
    .px-product-hero {
        grid-template-columns: 1fr;
        padding: 48px 20px;
    }

    .px-product-copy {
        min-height: auto;
    }

    .px-form-grid,
    .px-feature-strip {
        grid-template-columns: 1fr;
    }

    .px-feature-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
}

.px-status-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f5f2;
}

.px-status-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 28px;
    padding: 42px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.px-status-icon {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.px-status-warning {
    background: #fff2f2;
    color: #c62828;
}

.px-status-card h1 {
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 700;
}

.px-status-text {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.px-order-box {
    background: #fafafa;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 30px;
}

.px-order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.px-order-row:last-child {
    margin-bottom: 0;
}

.px-status-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.px-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.px-btn-primary:hover {
    color: #fff;
    background: #222;
}

.px-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #efefef;
    color: #111;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.px-btn-secondary:hover {
    background: #e2e2e2;
    color: #111;
}