:root {
    --scenes-bg: #fff7ec; /* Cream Home */
    --scenes-text: #3d3533; /* Warm Dark */
    --scenes-muted: #6f6663;
    --scenes-border: #f2e8e4; /* Soft Line */
    --scenes-terracotta: #d07a4e; /* Primary */
    --scenes-sage: #94b8a1; /* Secondary */
    --scenes-blush: #f3b4b8; /* Emotional accent */
    --scenes-card: #fffaf3;
}

.scenes-shell {
    background: var(--scenes-bg);
    padding: 40px 0 60px;
    overflow-x: hidden;
}

.scenes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: hidden;
}

.space-y-12 > * + * {
    margin-top: 3rem;
}

.space-y-10 > * + * {
    margin-top: 2.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.space-y-5 > * + * {
    margin-top: 1.25rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}

.scene-heading__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.scene-heading__hint {
    font-size: 14px;
    color: var(--scenes-muted);
}

.scene-tabbar {
    display: flex;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.scene-tabbar--mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px env(safe-area-inset-bottom, 8px);
    background: #fffdf9;
    border-top: 1px solid var(--scenes-border);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    z-index: 900;
    display: none;
}

.scene-tab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--scenes-muted);
    cursor: pointer;
    transition: all 150ms ease;
    font-weight: 700;
}

.scene-tab-btn__icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.scene-tab-btn__icon svg {
    width: 100%;
    height: 100%;
}

.scene-tab-btn.is-active {
    color: var(--scenes-text);
    background: #fff4ea;
    border-color: rgba(208, 122, 78, 0.4);
    box-shadow: 0 10px 26px rgba(208, 122, 78, 0.1);
}

.scene-tab-btn.is-active .scene-tab-btn__icon {
    color: var(--scenes-terracotta);
}

.scene-tab-panels {
    width: 100%;
}

.scene-tab-panel {
    display: none;
}

.scene-tab-panel.is-active {
    display: block;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
    }
}

.bundle-section {
    margin-top: 20px;
}

.bundle-summary {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--scenes-text);
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 10px;
    padding: 8px 12px;
}

.bundle-grid {
    gap: 12px;
}

.bundle-product-card {
    display: flex;
    flex-direction: column;
    background: var(--scenes-card);
    border: 1px solid var(--scenes-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.bundle-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.bundle-product-card__image {
    position: relative;
    padding-top: 90%;
    background: #f8f5f2;
}

.bundle-product-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-product-card__badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--scenes-border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--scenes-text);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.bundle-product-card__body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bundle-product-card__title {
    font-weight: 700;
    color: var(--scenes-text);
    font-size: 14px;
}

.bundle-product-card__subtitle {
    font-size: 12px;
    color: var(--scenes-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundle-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bundle-checkbox:not(:checked) ~ .bundle-product-card__body,
.bundle-checkbox:not(:checked) ~ .bundle-product-card__image {
    opacity: 0.65;
}

.bundle-actions {
    margin-top: 14px;
    text-align: left;
}

.scene-cart-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scene-cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: transform 140ms ease, box-shadow 140ms ease, opacity 120ms ease, border-color 140ms ease;
}

.scene-cart-item.is-active:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.scene-cart-item.is-removed {
    opacity: 0.55;
    background: #f9f4ef;
}

.scene-cart-thumb {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--scenes-border);
    background: #f8f5f2;
}

.scene-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scene-cart-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scene-cart-title {
    font-weight: 700;
    color: var(--scenes-text);
    font-size: 15px;
    margin: 0;
}

.scene-cart-subtitle {
    color: var(--scenes-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.scene-cart-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.scene-cart-price {
    color: var(--scenes-terracotta);
    font-weight: 700;
}

.scene-cart-badge {
    background: #fff4ea;
    color: var(--scenes-terracotta);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    border: 1px dashed var(--scenes-border);
}

.scene-cart-remove {
    border: 1px solid var(--scenes-border);
    background: #fff;
    color: var(--scenes-text);
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 140ms ease;
    font-weight: 700;
}

.scene-cart-remove:hover {
    border-color: rgba(208, 122, 78, 0.4);
    color: var(--scenes-terracotta);
}

.scene-cart-item.is-removed .scene-cart-title {
    text-decoration: line-through;
}

.scene-cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--scenes-text);
}

.scene-cart-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.scene-cart-inputs {
    display: none;
}

.scene-cart-empty {
    display: none;
    font-size: 14px;
    color: var(--scenes-muted);
    background: #fff4ea;
    border: 1px dashed var(--scenes-border);
    border-radius: 10px;
    padding: 8px 10px;
}

.scene-cart-empty.is-visible {
    display: block;
}

.scene-cart-cta {
    width: 100%;
    justify-content: center;
}

.bundle-product-card__select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--scenes-bg);
    border-bottom: 1px dashed var(--scenes-border);
}

.bundle-product-card__status {
    font-size: 12px;
    font-weight: 700;
    color: var(--scenes-terracotta);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.bundle-product-card__status::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--scenes-terracotta);
    box-shadow: 0 0 0 4px rgba(208, 122, 78, 0.18);
}

.bundle-product-card__toggle {
    border: 1px solid var(--scenes-terracotta);
    background: transparent;
    color: var(--scenes-text);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
    transition: all 140ms ease;
}

.bundle-product-card__toggle:hover {
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

.bundle-product-card.is-selected {
    border-color: rgba(208, 122, 78, 0.45);
    box-shadow: 0 14px 32px rgba(208, 122, 78, 0.08);
}

.bundle-product-card.is-selected .bundle-product-card__status {
    color: var(--scenes-terracotta);
}

.bundle-product-card:not(.is-selected) {
    opacity: 0.8;
}

.bundle-product-card:not(.is-selected) .bundle-product-card__status {
    color: var(--scenes-muted);
}

.bundle-product-card:not(.is-selected) .bundle-product-card__status::before {
    background: var(--scenes-muted);
    box-shadow: 0 0 0 4px rgba(148, 184, 161, 0.18);
}

.headline {
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--scenes-text);
}

.body-text {
    color: var(--scenes-muted);
    line-height: 1.8;
    font-size: 16px;
}

.body-text.lead {
    font-size: 18px;
}

.muted {
    color: rgba(31, 42, 46, 0.7);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--scenes-text);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(31, 42, 46, 0.75);
    background: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--scenes-border);
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--scenes-terracotta);
    display: inline-block;
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--scenes-terracotta);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    box-shadow: 0 8px 18px rgba(208, 122, 78, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(208, 122, 78, 0.2);
}

.btn-primary.small {
    padding: 10px 12px;
    font-size: 13px;
}

.btn-ghost {
    color: var(--scenes-text);
    padding: 11px 14px;
    border: 1px solid var(--scenes-terracotta);
    border-radius: 999px;
    text-decoration: none;
    background: var(--scenes-bg);
    transition: background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.btn-ghost.small {
    padding: 8px 12px;
    font-size: 13px;
}

.btn-ghost:hover {
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.card-blur {
    position: relative;
    overflow: hidden;
}

.card-blur::before,
.card-blur::after {
    content: '';
    position: absolute;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 0;
}

.card-blur::before {
    width: 160px;
    height: 160px;
    background: var(--scenes-blush);
    left: -30px;
    top: -30px;
}

.card-blur::after {
    width: 180px;
    height: 180px;
    background: var(--scenes-sage);
    right: -50px;
    bottom: -50px;
}

.card-blur__inner {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--scenes-border);
    z-index: 1;
}

.card-blur__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo-inline {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.card-blur__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.card-blur__scene {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--scenes-border);
}

.card-blur__scene img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.card-blur__scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

.card-blur__scene-title {
    position: absolute;
    bottom: 8px;
    right: 10px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.card-blur__copy {
    font-size: 14px;
    color: var(--scenes-muted);
    line-height: 1.7;
}

.scene-card {
    background: var(--scenes-card);
    border: 1px solid var(--scenes-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--scenes-text);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scene-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.scene-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.scene-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.scene-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

.scene-card__pill {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--scenes-text);
}

.pill-terracotta {
    background: #f0c9b8;
    color: #9a5333;
}

.pill-sage {
    background: #e7f1eb;
    color: #4f6f5c;
}

.pill-blush {
    background: #fde1e4;
    color: #a5575a;
}

.scene-card__body {
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scene-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--scenes-text);
}

.scene-card__subtitle {
    font-size: 14px;
    color: var(--scenes-muted);
    line-height: 1.6;
    margin: 0;
}

.scene-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--scenes-terracotta);
    font-weight: 700;
}

.product-card {
    background: var(--scenes-card);
    border: 1px solid var(--scenes-border);
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 160ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(208, 122, 78, 0.35);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    background: #f8f5f2;
    aspect-ratio: 4 / 5;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--scenes-border);
}

.product-card__image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    position: relative;
    background: #fff;
    border-top: 1px solid var(--scenes-border);
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.03);
    min-height: 0;
}

.product-card__flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--scenes-terracotta);
    background: #fff4ea;
    border: 1px dashed var(--scenes-border);
    border-radius: 999px;
    padding: 4px 10px;
    width: fit-content;
}

.product-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--scenes-text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__subtitle {
    font-size: 13px;
    color: var(--scenes-muted);
    line-height: 1.6;
    margin: 6px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer .product-card__subtitle {
    margin: 4px 0 0 0;
    font-size: 12px;
}

.product-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.chip {
    background: #fff;
    color: var(--scenes-text);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid var(--scenes-border);
}

.chip--ghost {
    background: #fff;
    border-style: dashed;
    color: var(--scenes-muted);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card__price {
    color: var(--scenes-terracotta);
    font-weight: 700;
    font-size: 15px;
}

.product-card__price--old {
    text-decoration: line-through;
    color: var(--scenes-muted);
    font-weight: 400;
    margin-left: 6px;
    font-size: 13px;
}

.product-card__currency {
    color: var(--scenes-muted);
    font-size: 12px;
}

.product-card__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.card-rich {
    background: #fffaf3;
    border: 1px solid var(--scenes-border);
    border-radius: 16px;
    padding: 18px 20px;
    line-height: 1.9;
    color: var(--scenes-text);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.card-rich--cta {
    background: #fff;
}

.card-rich__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.section-soft {
    background: #fffdf9;
    border: 1px solid var(--scenes-border);
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.scene-detail .section-header {
    align-items: flex-start;
}

.scene-panorama {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--scenes-border);
    background: #fffaf3;
    padding: 8px;
    overflow: hidden;
}

.scene-panorama__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #faf7f5;
    min-height: 320px;
}

.scene-panorama__layer {
    position: absolute;
    top: 0;
    left: 0;
    direction: ltr;
    min-height: 320px;
    height: auto;
    transform: translate3d(0, 0, 0);
    transition: transform 180ms ease-out;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
}

.scene-panorama__layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.scene-panorama__hotspots {
    position: absolute;
    inset: 0;
}

.scene-hotspot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--scenes-terracotta);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.scene-hotspot__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--scenes-terracotta);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 92, 75, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(212, 92, 75, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 92, 75, 0);
    }
}

.scene-hotspot__tooltip {
    position: absolute;
    transform: translate(calc(-50% + var(--tooltip-shift-x, 0px)), calc(-120% + var(--tooltip-shift-y, 0px)));
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    padding: 12px;
    width: 280px;
    max-width: 82vw;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.scene-hotspot__tooltip.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(calc(-50% + var(--tooltip-shift-x, 0px)), calc(-130% + var(--tooltip-shift-y, 0px)));
}

.tooltip-product {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: center;
}

.tooltip-product img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--scenes-border);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.tooltip-product__title {
    font-weight: 700;
    color: var(--scenes-text);
    margin-bottom: 4px;
    font-size: 14px;
}

.tooltip-product__subtitle {
    font-size: 12px;
    color: var(--scenes-muted);
    line-height: 1.5;
}

.tooltip-product__price {
    color: var(--scenes-terracotta);
    font-weight: 700;
    margin-top: 6px;
    font-size: 13px;
}

.tooltip-product__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tooltip-product__actions .btn-primary,
.tooltip-product__actions .btn-ghost {
    width: 100%;
    justify-content: center;
}

.scene-panorama__gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 52px;
    pointer-events: none;
    transition: opacity 150ms ease;
    opacity: 0;
}

.scene-panorama__gradient--left {
    left: 0;
    background: linear-gradient(90deg, var(--scenes-bg) 0%, rgba(255, 247, 236, 0) 100%);
}

.scene-panorama__gradient--right {
    right: 0;
    background: linear-gradient(270deg, var(--scenes-bg) 0%, rgba(255, 247, 236, 0) 100%);
}

.scene-panorama__hint {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: var(--scenes-muted);
    background: #fff;
    border: 1px dashed var(--scenes-border);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-block;
}

.scene-panorama__hint.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease;
}

.scene-panorama__track {
    width: 96px;
    height: 10px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: #f1ece6;
    border: 1px solid var(--scenes-border);
    position: relative;
    overflow: hidden;
}

.scene-panorama__thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40px;
    background: var(--scenes-terracotta);
    border-radius: 999px;
    transition: transform 120ms ease-out;
}

.product-quicklook {
    position: fixed;
    inset: 0;
    background: rgba(17, 22, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.product-quicklook.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.body--quicklook-open {
    overflow: hidden;
}

.product-quicklook__dialog {
    background: var(--scenes-card);
    border-radius: 18px;
    width: min(960px, 96vw);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    padding: 18px;
    border: 1px solid var(--scenes-border);
    position: relative;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-quicklook__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
    max-height: calc(92vh - 60px);
    overflow-y: auto;
    padding-right: 4px;
}

.product-quicklook__media {
    background: var(--scenes-bg);
    border-radius: 14px;
    border: 1px solid var(--scenes-border);
    padding: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-quicklook__main {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding-top: 72%;
    background: #fff;
}

.product-quicklook__main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-quicklook__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding: 4px 2px 2px;
}

.product-quicklook__thumb {
    border: 1px solid var(--scenes-border);
    border-radius: 10px;
    background: #fff;
    padding: 0;
    cursor: pointer;
    transition: border-color 120ms ease, transform 120ms ease;
    flex: 0 0 auto;
}

.product-quicklook__thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.product-quicklook__thumb.is-active {
    border-color: var(--scenes-terracotta);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-quicklook__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-quicklook__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--scenes-muted);
}

.product-quicklook__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--scenes-text);
    line-height: 1.6;
}

.product-quicklook__price {
    color: var(--scenes-terracotta);
    font-weight: 800;
    font-size: 18px;
}

.product-quicklook__description {
    margin: 0;
    color: var(--scenes-muted);
    line-height: 1.9;
}

.product-quicklook__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-quicklook__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-quicklook__actions .btn-primary {
    flex: 1 1 220px;
    justify-content: center;
}

.product-quicklook__actions .btn-ghost {
    flex: 0 0 auto;
    justify-content: center;
}

.product-quicklook__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--scenes-border);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    color: var(--scenes-text);
    transition: background 0.15s ease, transform 0.15s ease;
}

.product-quicklook__close:hover {
    background: #f4ede7;
    transform: translateY(-1px);
}

.scene-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--scenes-terracotta);
    background: #fff7ef;
    border: 1px dashed var(--scenes-border);
    border-radius: 999px;
    padding: 4px 10px;
    width: fit-content;
    margin-bottom: 4px;
}

.scene-card--compact .scene-card__image img {
    height: 160px;
}

.scene-related-grid {
    gap: 14px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__media img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.blog-card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.blog-card__title {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: var(--scenes-text);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--scenes-terracotta);
}

.blog-card__meta {
    color: var(--scenes-muted);
    font-size: 12px;
}

.blog-card__excerpt {
    color: var(--scenes-muted);
    font-size: 14px;
    margin: 0;
}

.blog-card__actions {
    margin-top: auto;
}

.occasion-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.occasion-hero__media {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #f8f5f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.occasion-hero__media img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.occasion-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--scenes-text);
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px dashed var(--scenes-border);
    width: fit-content;
}

.occasion-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--scenes-terracotta);
    box-shadow: 0 0 0 4px rgba(208, 122, 78, 0.16);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.occasion-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--scenes-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--scenes-text);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 140ms ease;
}

.occasion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(208, 122, 78, 0.35);
}

.occasion-card__image {
    position: relative;
    padding-top: 60%;
    background: #f8f5f2;
}

.occasion-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.occasion-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.occasion-card__eyebrow {
    font-size: 12px;
    color: var(--scenes-muted);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.occasion-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--scenes-text);
}

.occasion-card__subtitle {
    margin: 0;
    font-size: 13px;
    color: var(--scenes-muted);
    line-height: 1.7;
}

.occasion-card__cta {
    color: var(--scenes-terracotta);
    font-weight: 700;
    font-size: 13px;
    margin-top: auto;
}

.scene-filters {
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.scene-filters__label {
    font-size: 13px;
    color: var(--scenes-muted);
}

.scene-filters__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-chip {
    border: 1px solid var(--scenes-border);
    background: #fff;
    color: var(--scenes-text);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    text-decoration: none;
    transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.filter-chip.is-active {
    background: #fff4ea;
    border-color: rgba(208, 122, 78, 0.6);
    color: var(--scenes-terracotta);
    box-shadow: 0 8px 20px rgba(208, 122, 78, 0.08);
}

.filter-chip:hover {
    border-color: rgba(208, 122, 78, 0.5);
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.playlist-card {
    background: #fff;
    border: 1px solid var(--scenes-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.playlist-card__cover {
    height: 190px;
    overflow: hidden;
    background: #f8f5f2;
}

.playlist-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.playlist-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.playlist-card__eyebrow {
    font-size: 12px;
    color: var(--scenes-muted);
    letter-spacing: 0.4px;
}

.playlist-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--scenes-text);
}

.playlist-card__subtitle {
    margin: 0;
    color: var(--scenes-muted);
    line-height: 1.7;
}

.playlist-embed iframe {
    width: 100%;
    min-height: 220px;
    border-radius: 12px;
    border: 1px solid var(--scenes-border);
}

.playlist-player {
    background: #fffaf3;
    border: 1px dashed var(--scenes-border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.playlist-player__now {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.playlist-player__label {
    font-size: 12px;
    color: var(--scenes-muted);
}

.playlist-player__title {
    font-weight: 800;
    color: var(--scenes-text);
}

.playlist-player__artist {
    font-size: 13px;
    color: var(--scenes-muted);
}

.playlist-player__controls {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.playlist-tracklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.playlist-track {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid var(--scenes-border);
    border-radius: 10px;
    background: #fff;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.playlist-track.is-active {
    border-color: rgba(208, 122, 78, 0.6);
    box-shadow: 0 10px 24px rgba(208, 122, 78, 0.08);
}

.playlist-track__play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--scenes-border);
    background: #fff;
    color: var(--scenes-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.playlist-track__play:hover {
    border-color: rgba(208, 122, 78, 0.6);
    color: var(--scenes-terracotta);
}

.playlist-track__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.playlist-track__title {
    font-weight: 700;
    color: var(--scenes-text);
    font-size: 14px;
}

.playlist-track__artist {
    font-size: 12px;
    color: var(--scenes-muted);
}

.playlist-track__duration {
    font-size: 12px;
    color: var(--scenes-muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 768px) {
    .scenes-shell {
        padding-bottom: 110px;
    }

    .scene-tabbar--desktop {
        display: none;
    }

    .scene-tabbar--mobile {
        display: flex;
    }

    .scene-tab-btn__label {
        font-size: 12px;
    }

    .scene-cart-item {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .scene-cart-thumb {
        width: 100%;
        height: 160px;
    }

    .headline {
        font-size: 24px;
    }

    .scene-hotspot__tooltip {
        width: 220px;
    }

    .scene-panorama__viewport {
        min-height: 320px;
    }

    .product-quicklook__grid {
        grid-template-columns: 1fr;
        max-height: none;
        overflow-y: visible;
    }

    .product-quicklook__dialog {
        padding: 16px;
        max-height: 90vh;
    }

    .product-quicklook__main {
        padding-top: 90%;
    }

    .product-quicklook__actions .btn-primary {
        flex-basis: 100%;
    }

    .product-card__image {
        aspect-ratio: 1 / 1;
        min-height: 180px;
    }

    .product-card__body {
        padding: 14px 14px 16px;
        gap: 8px;
    }

    .product-card__actions {
        justify-content: center;
    }

    .product-card__actions .btn-primary,
    .product-card__actions .btn-ghost {
        flex: 1 1 100%;
        justify-content: center;
    }

    .occasion-hero {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .occasion-card__image {
        padding-top: 68%;
    }

    .scene-card--compact .scene-card__image img {
        height: 180px;
    }

    .scene-filters__chips {
        flex-wrap: nowrap;
    }
}

@media (min-width: 769px) {
    .scene-tabbar--mobile {
        display: none;
    }
}
