.product-page-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .product-page-header .page-title {
        display: flex;
        align-items: center;
        gap: 0;
        min-width: 0;
    }

    .product-page-header .header-actions {
        width: auto;
        align-self: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .product-layout {
        display: grid;
        gap: 18px;
    }

    .media-card,
    .detail-card,
    .selector-card,
    .addon-card {
        padding: 20px;
    }

    .media-stage {
        border-radius: 18px;
        overflow: hidden;
        background: #ece9e4;
        aspect-ratio: 1 / 0.84;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .media-stage img,
    .media-stage video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

    .hero-thumbs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-top: 12px;
        scrollbar-width: none;
    }

    .hero-thumbs::-webkit-scrollbar {
        display: none;
    }

    .hero-thumb-chip {
        position: relative;
        width: 76px;
        min-width: 76px;
        height: 76px;
        border: 1px solid var(--restaurant-line);
        border-radius: 16px;
        padding: 4px;
        background: #fff;
        overflow: hidden;
    }

    .hero-thumb-chip.active {
        border-color: var(--restaurant-accent);
        box-shadow: 0 6px 18px rgba(242, 119, 162, 0.18);
    }

    .hero-thumb-chip img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        border-radius: 12px;
    }

    .hero-thumb-chip-icon {
        position: absolute;
        inset-inline-end: 8px;
        bottom: 8px;
        width: 22px;
        height: 22px;
        border-radius: 999px;
        background: rgba(31, 31, 31, 0.82);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        line-height: 1;
    }

    .detail-card h1,
    .selector-card h3,
    .addon-card h3 {
        margin: 0;
        font-size: 1.5rem;
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .detail-copy,
    .selector-copy,
    .addon-card p,
    .muted {
        color: var(--restaurant-muted);
        font-size: 0.96rem;
        line-height: 1.5;
        font-weight: 500;
    }

    .detail-copy {
        margin: 10px 0 0;
    }

    .detail-badges {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 14px;
    }

    .detail-badges span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        background: #f1efec;
        color: var(--restaurant-text);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .favorite-row {
        margin-top: 18px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .variation-grid {
        display: grid;
        gap: 12px;
        margin-top: 14px;
    }

    .variation-card {
        position: relative;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 18px;
        background: #faf8f5;
        border: 1px solid var(--restaurant-line);
        cursor: pointer;
    }

    .variation-card input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .variation-card:has(input:checked) {
        background: #fff0f5;
        border-color: var(--restaurant-accent);
        box-shadow: 0 10px 20px rgba(242, 119, 162, 0.16);
    }

    .variation-card.disabled {
        opacity: 0.52;
        cursor: not-allowed;
    }

    .variation-line {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        color: var(--restaurant-muted);
        font-size: 0.94rem;
        line-height: 1.4;
        font-weight: 500;
    }

    .addon-box {
        display: grid;
        gap: 12px;
        padding: 16px;
        border-radius: 18px;
        background: #faf8f5;
        border: 1px solid var(--restaurant-line);
    }

    .option-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--restaurant-line);
    }

    .option-row:first-of-type {
        padding-top: 0;
        border-top: 0;
    }

    .qty {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .qty button {
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 999px;
        background: #212121;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        line-height: 1;
        font-weight: 500;
    }

    .qty span {
        min-width: 28px;
        text-align: center;
        color: var(--restaurant-text);
        font-size: 1.1rem;
        line-height: 1;
        font-weight: 700;
    }

    .error {
        display: none;
        color: var(--restaurant-danger);
        font-size: 0.92rem;
        line-height: 1.4;
        font-weight: 500;
    }

    .cta-bar {
        position: sticky;
        bottom: 0;
        display: grid;
        gap: 12px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid var(--restaurant-line);
        box-shadow: var(--restaurant-shadow);
        backdrop-filter: blur(12px);
    }

    .cta-bar.single-action {
        grid-template-columns: 1fr;
    }

    @media (min-width: 980px) {
        .product-layout {
            grid-template-columns: 1fr 0.95fr;
            align-items: start;
        }

        .sticky-column {
            position: sticky;
            top: 18px;
        }
    }

    @media (max-width: 720px) {
        .product-page-header,
        .page-header.compact.product-page-header {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .product-page-header .page-title {
            display: flex;
            align-items: center;
        }

        .product-page-header .header-actions {
            width: auto;
            align-self: center;
            justify-content: flex-start;
        }

        .media-card,
        .detail-card,
        .selector-card,
        .addon-card {
            padding: 16px;
        }

        .detail-card h1,
        .selector-card h3,
        .addon-card h3 {
            font-size: 1.32rem;
        }

        .hero-thumb-chip {
            width: 70px;
            min-width: 70px;
            height: 70px;
        }

        .qty button {
            width: 42px;
            height: 42px;
        }
    }
