/* ==========================================================================
   ATELIER LUXE - Interactive Components & Dynamic Engine Styles
   Hotspots, Configurator, Bento Grid, Sample Drawer, Modals
   ========================================================================== */

/* ==========================================================================
   1. Hotspot Section & Stage
   ========================================================================== */
.interactive-section {
    padding: 7rem 0;
    position: relative;
}

.room-tabs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.room-tab-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s var(--ease-fluid);
}

.room-tab-btn i {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.7;
}

.room-tab-btn:hover {
    border-color: var(--border-gold);
    color: var(--text-primary);
}

.room-tab-btn.active {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.2);
}

.room-tab-btn.active i {
    opacity: 1;
}

/* Hotspot Visual Stage */
.hotspot-stage {
    position: relative;
    width: 100%;
    height: 640px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: #08080a;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.scene-view {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-fluid);
}

.scene-view.active {
    opacity: 1;
    pointer-events: auto;
}

/* Scene Visuals (High-End Architectural Visual Mockups) */
.scene-visual {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Kitchen Architectural Render Scene */
.kitchen-bg {
    background: radial-gradient(circle at 50% 40%, rgba(20, 22, 28, 0.4) 0%, rgba(10, 10, 12, 0.95) 100%),
                linear-gradient(180deg, #15161c 0%, #0d0e12 60%, #08090b 100%);
    background-image: 
        radial-gradient(ellipse at 50% 50%, rgba(197, 168, 128, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}

.kitchen-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 380px;
    background: linear-gradient(135deg, #1e2029 0%, #111218 50%, #0a0b0e 100%);
    border-top: 4px solid var(--gold);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8), inset 0 2px 10px rgba(197, 168, 128, 0.3);
}

.kitchen-bg::after {
    content: '◈ ATELIER BESPOKE MINIMALIST KITCHEN SUITE';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Bathroom Architectural Render Scene */
.bathroom-bg {
    background: radial-gradient(circle at 60% 40%, rgba(30, 25, 20, 0.3) 0%, rgba(10, 10, 12, 0.95) 100%),
                linear-gradient(180deg, #1a1815 0%, #0f0e0d 60%, #080808 100%);
    background-image: 
        radial-gradient(ellipse at 60% 50%, rgba(197, 168, 128, 0.07) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.bathroom-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 25%;
    height: 280px;
    background: radial-gradient(ellipse at 50% 30%, #2a2930 0%, #151419 60%, #09090b 100%);
    border-radius: 50% 50% 10% 10% / 40% 40% 10% 10%;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.9), inset 0 4px 12px rgba(255, 255, 255, 0.1);
}

.bathroom-bg::after {
    content: '◈ MONOLITHIC SPA BATHROOM SUITE';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Pulsing Hotspot Pin */
.hotspot-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    animation: pinPulseAnim 2.5s infinite;
}

@keyframes pinPulseAnim {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
    70% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.pin-dot {
    position: relative;
    width: 32px;
    height: 32px;
    background: var(--bg-main);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--gold-glow);
    transition: all 0.3s var(--ease-fluid);
}

.pin-dot span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
}

.pin-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-primary);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.hotspot-pin:hover .pin-dot,
.hotspot-pin.active .pin-dot {
    background: var(--gold);
    transform: scale(1.15);
    box-shadow: 0 0 25px var(--gold);
}

.hotspot-pin:hover .pin-dot span,
.hotspot-pin.active .pin-dot span {
    color: var(--bg-main);
}

.hotspot-pin:hover .pin-label,
.hotspot-pin.active .pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(12px);
}

/* Hotspot Details Floating Glass Card */
.hotspot-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 380px;
    background: rgba(18, 18, 24, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 20;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease-fluid);
}

.hotspot-card.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.card-close-btn:hover {
    color: var(--text-primary);
}

.card-badge {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.card-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-subtle);
}

.spec-cell {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.spec-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-action-bar {
    display: flex;
    gap: 0.75rem;
}

.btn-card-add-sample {
    flex: 1.2;
    background: var(--gold);
    color: var(--bg-main);
    border: none;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.btn-card-add-sample:hover {
    background: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
}

.btn-card-inquire {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.btn-card-inquire:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-gold);
    color: var(--gold);
}

/* ==========================================================================
   2. Material Configurator & Studio
   ========================================================================== */
.configurator-section {
    padding: 7rem 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.configurator-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* Live Texture Display Canvas */
.config-preview-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.preview-stage {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.texture-display {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: all 0.5s var(--ease-fluid);
}

.texture-overlay-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.texture-watermark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.preview-floating-info {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
}

.preview-badge {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.2rem 0;
}

.preview-code {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.preview-details-bar {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.detail-pill {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-pill i {
    color: var(--gold);
}

/* Controls Panel */
.config-controls-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.control-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.chip-btn:hover {
    border-color: var(--border-gold);
    color: var(--text-primary);
}

.chip-btn.active {
    background: var(--gold);
    color: var(--bg-main);
    font-weight: 700;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Swatches Grid */
.swatches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.85rem;
}

.swatch-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.6rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s var(--ease-fluid);
}

.swatch-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.swatch-card.active {
    border-color: var(--gold);
    background: rgba(197, 168, 128, 0.1);
    box-shadow: 0 0 15px var(--gold-dim);
}

.swatch-thumb {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
}

.swatch-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Treatment Buttons */
.treatment-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.treatment-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.treatment-btn:hover {
    border-color: var(--border-gold);
    color: var(--text-primary);
}

.treatment-btn.active {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold-light);
}

.config-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.config-actions button {
    flex: 1;
}

/* ==========================================================================
   3. Bento Grid Section
   ========================================================================== */
.collections-section {
    padding: 7rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-fluid);
}

.bento-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-large {
    grid-column: span 2;
}

.card-tall {
    grid-row: span 2;
}

.bento-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-fluid);
}

.bento-card:hover .bento-img {
    transform: scale(1.05);
}

/* High-End Bento Image Render Representations */
.bento-img-1 {
    background: linear-gradient(135deg, #1c1d24 0%, #101116 100%),
                radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.25) 0%, transparent 60%);
    background-blend-mode: overlay;
}

.bento-img-2 {
    background: linear-gradient(180deg, #181615 0%, #0d0c0b 100%),
                radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.2) 0%, transparent 60%);
}

.bento-img-3 {
    background: linear-gradient(135deg, #2b251f 0%, #15120f 100%),
                radial-gradient(circle at 30% 30%, rgba(223, 200, 167, 0.3) 0%, transparent 50%);
}

.bento-img-4 {
    background: repeating-linear-gradient(90deg, #231c17, #231c17 12px, #17120e 12px, #17120e 24px);
}

.bento-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, 0.95) 85%);
    pointer-events: none;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-tag {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.bento-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    transition: gap 0.3s ease;
}

.bento-card:hover .bento-link {
    gap: 0.85rem;
    color: var(--gold);
}

/* ==========================================================================
   4. Slide-out Sample Box Drawer & Cart
   ========================================================================== */
.sample-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0.4s ease;
}

.sample-drawer.open {
    visibility: visible;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sample-drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 90vw;
    background: var(--bg-surface-elevated);
    border-left: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-fluid);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

html[dir="rtl"] .drawer-panel {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--border-subtle);
    transform: translateX(-100%);
}

.sample-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.drawer-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.drawer-close-btn:hover {
    color: var(--text-primary);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-sample-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--text-muted);
    padding: 2rem;
}

.empty-sample-state i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-sample-state p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.empty-sample-state span {
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Sample Item Card inside Drawer */
.sample-item-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    position: relative;
}

.sample-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
}

.sample-item-info {
    flex: 1;
}

.sample-item-cat {
    font-size: 0.68rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
}

.sample-item-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0.15rem 0;
}

.sample-item-finish {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sample-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.sample-item-remove:hover {
    color: #ff5555;
}

.drawer-footer {
    padding: 1.75rem 2rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.sample-progress-bar {
    margin-bottom: 1.25rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-full);
    transition: width 0.3s var(--ease-fluid);
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   5. Modal Dialogs
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s var(--ease-fluid);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 1.75rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 0.4rem;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .configurator-layout {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .card-large, .card-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .hotspot-card {
        width: calc(100% - 3rem);
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

/* ==========================================================================
   6. 360° HERO ARCHITECTURAL HOTSPOTS & ROOM THEME SWITCHER
   ========================================================================== */
.hero-hotspots-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
}

.architectural-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    z-index: 25;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.architectural-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.architectural-hotspot .hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.4);
    animation: hotspotRadar 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes hotspotRadar {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.architectural-hotspot .hotspot-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5e3a9 0%, #d4af37 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.8), 0 4px 10px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0f12;
    font-size: 0.75rem;
}

.architectural-hotspot .hotspot-callout {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(13, 15, 18, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
}

.architectural-hotspot:hover .hotspot-callout {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.architectural-hotspot .hotspot-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #f5f5f7;
}

.architectural-hotspot .hotspot-text {
    font-size: 0.68rem;
    color: #d4af37;
}

/* Room Theme Switcher Chips */
.room-theme-switcher-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 0.35rem 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.room-theme-chip {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9999px;
    padding: 0.4rem 0.9rem;
    color: #a1a1aa;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.room-theme-chip:hover {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.3);
}

.room-theme-chip.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: #d4af37;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.theme-swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.swatch-calacatta { background: #f4f3ee; }
.swatch-travertine { background: #d9c5a7; }
.swatch-marquina { background: #141416; }

/* ==========================================================================
   7. CLADDING CATEGORIES GRID (3D TILT CARDS)
   ========================================================================== */
.cladding-categories-section {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05) 0%, #0a0c0f 100%);
}

.cladding-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .cladding-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cladding-categories-grid {
        grid-template-columns: 1fr;
    }
}

.cladding-cat-card {
    position: relative;
    background: rgba(18, 20, 26, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cladding-cat-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.cat-card-bg-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cat-num {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #d4af37;
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.cat-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: #ffffff;
    line-height: 1.3;
}

.cat-card-desc {
    font-size: 0.88rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cat-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.cat-features-list li {
    font-size: 0.82rem;
    color: #d4d4d8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-features-list li i {
    color: #d4af37;
    font-size: 0.75rem;
}

.cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-cat-action {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #d4af37;
    color: #f5e3a9;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.3s ease;
}

.btn-cat-action:hover {
    background: #d4af37;
    color: #0d0f12;
}

.cat-link-more {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.cat-link-more:hover {
    color: #d4af37;
}

/* ==========================================================================
   8. BEFORE & AFTER CLADDING COMPARISON SLIDER
   ========================================================================== */
.comparison-section {
    padding: 6rem 0;
    position: relative;
    background: #08090c;
}

.comparison-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 540px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    user-select: none;
}

.comparison-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-after {
    z-index: 1;
}

.comparison-before {
    z-index: 2;
    width: 50%;
}

.comp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1100px;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.comparison-badge {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
}

.after-badge {
    right: 1.5rem;
    background: rgba(13, 15, 18, 0.85);
    border: 1px solid #d4af37;
    color: #f5e3a9;
}

.before-badge {
    left: 1.5rem;
    background: rgba(13, 15, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    z-index: 15;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-line {
    width: 2px;
    height: 100%;
    background: #d4af37;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4af37;
    color: #0d0f12;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   9. PRODUCTS SHOWCASE GRID
   ========================================================================== */
.products-showcase-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.04) 0%, #0a0b0e 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-luxe-card {
    background: rgba(16, 18, 24, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.product-luxe-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.12);
}

.product-card-media {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-luxe-card:hover .product-card-media img {
    transform: scale(1.08);
}

.media-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(16, 18, 24, 0.95) 100%);
}

.product-cat-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f5e3a9;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
}

.product-origin-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
}

.product-card-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-sku-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.sku-tag {
    font-size: 0.7rem;
    color: #71717a;
    letter-spacing: 1px;
}

.stock-tag {
    font-size: 0.7rem;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-luxe-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}

.product-luxe-desc {
    font-size: 0.82rem;
    color: #a1a1aa;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-spec-chips {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec-chip {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    color: #d4d4d8;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-add-sample-card {
    flex-grow: 1;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #d4af37;
    color: #f5e3a9;
    padding: 0.6rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-add-sample-card:hover {
    background: #d4af37;
    color: #0d0f12;
}

.btn-inquire-card {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-inquire-card:hover {
    background: #d4af37;
    color: #0d0f12;
    border-color: #d4af37;
}

/* ==========================================================================
   10. PHYSICAL SAMPLE BOX BANNER SECTION
   ========================================================================== */
.sample-box-banner-section {
    padding: 5rem 0;
}

.sample-box-banner-card {
    background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(18, 20, 26, 0.95) 70%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
    .sample-box-banner-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

.banner-title {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.banner-desc {
    font-size: 0.95rem;
    color: #d4d4d8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sample-box-mockup-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.mockup-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.box-floating-pill {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(13, 15, 18, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid #d4af37;
    color: #f5e3a9;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* ==========================================================================
   11. ACTIVEHOP-STYLE 3D CLADDING BANNER STAGE
   ========================================================================== */
.activehop-banner-stage {
    position: relative;
    width: 100vw;
    min-height: 780px;
    height: 90vh;
    background: #0d0f14;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 2rem 2.5rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .activehop-banner-stage {
    background: #f4f5f8;
    border-color: rgba(212, 175, 55, 0.35);
}

/* Giant Background Typography */
.activehop-bg-typography {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-typo-row {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8.5vw, 9.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.12);
    -webkit-text-stroke: 1.5px rgba(212, 175, 55, 0.35);
    text-shadow: 0 0 45px rgba(212, 175, 55, 0.2);
    white-space: nowrap;
    user-select: none;
    transition: all 0.3s ease;
}

[data-theme="light"] .bg-typo-row {
    color: rgba(0, 0, 0, 0.06);
    -webkit-text-stroke: 1.5px rgba(212, 175, 55, 0.45);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.bg-typo-row-1 {
    transform: translateX(-5%);
}

.bg-typo-row-2 {
    transform: translateX(5%);
}

/* Editorial Top Text */
.activehop-editorial-top {
    position: relative;
    z-index: 10;
    max-width: 680px;
    text-align: center;
}

.activehop-editorial-top .editorial-text {
    font-size: clamp(0.85rem, 1.3vw, 0.98rem);
    font-weight: 500;
    color: #a1a1aa;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

[data-theme="light"] .activehop-editorial-top .editorial-text {
    color: #4b5563;
}

/* 3D WebGL Canvas */
.activehop-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: grab;
}

.activehop-canvas-container:active {
    cursor: grabbing;
}

.activehop-canvas-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    outline: none;
}

.activehop-3d-badge {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: rgba(13, 15, 20, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f5e3a9;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 15;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .activehop-3d-badge {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.6);
    color: #8c6b2d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Central Frosted Glass Capsule (ActiveHop Style) */
.activehop-glass-capsule-wrap {
    position: relative;
    z-index: 12;
    pointer-events: none;
    margin: auto 0;
}

.activehop-glass-capsule {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 9999px;
    padding: 0.9rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 
                inset 0 1px 2px rgba(255, 255, 255, 0.45);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .activehop-glass-capsule {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 
                inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.activehop-glass-capsule:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 
                inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .activehop-glass-capsule:hover {
    background: rgba(255, 255, 255, 0.82);
}

.capsule-col {
    display: flex;
    align-items: center;
}

.capsule-left {
    gap: 1.4rem;
}

.capsule-link {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #e4e4e7;
    transition: color 0.25s ease;
}

[data-theme="light"] .capsule-link {
    color: #1f2937;
}

.capsule-link:hover {
    color: #d4af37;
}

.capsule-center {
    flex-direction: column;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0 1.8rem;
}

[data-theme="light"] .capsule-center {
    border-color: rgba(0, 0, 0, 0.1);
}

.capsule-brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    line-height: 1;
}

[data-theme="light"] .capsule-brand-title {
    color: #111827;
}

.capsule-brand-subtitle {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #d4af37;
    margin-top: 0.2rem;
}

.capsule-btn-sample {
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s ease, color 0.25s ease;
}

.capsule-btn-sample:hover {
    color: #f5e3a9;
    transform: scale(1.08);
}

[data-theme="light"] .capsule-btn-sample:hover {
    color: #b48c2e;
}

/* Bottom Swatches */
.activehop-bottom-swatches {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(13, 15, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 9999px;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    flex-wrap: wrap;
    justify-content: center;
}

[data-theme="light"] .activehop-bottom-swatches {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.activehop-swatch-chip {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9999px;
    padding: 0.45rem 1rem;
    color: #a1a1aa;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.25s ease;
}

[data-theme="light"] .activehop-swatch-chip {
    color: #4b5563;
}

.activehop-swatch-chip:hover {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.4);
}

[data-theme="light"] .activehop-swatch-chip:hover {
    color: #111827;
}

.activehop-swatch-chip.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

[data-theme="light"] .activehop-swatch-chip.active {
    background: #d4af37;
    color: #ffffff;
}

.swatch-gold-wood {
    background: linear-gradient(135deg, #543621 50%, #d4af37 50%);
}

/* ==========================================================================
   12. DAY / LIGHT THEME COMPLETE STYLES ([data-theme="light"])
   ========================================================================== */
[data-theme="light"] {
    --bg-main: #f8f9fa;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f0f2f5;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.85);

    --text-primary: #121418;
    --text-secondary: #4a505b;
    --text-muted: #717682;

    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(197, 168, 128, 0.5);
    --border-active: rgba(197, 168, 128, 0.9);
}

[data-theme="light"] body {
    background-color: #f8f9fa;
    color: #121418;
}

[data-theme="light"] .top-editorial-bar {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .brand-main-name {
    color: #121418;
}

[data-theme="light"] .editorial-nav-link {
    color: #374151;
}

[data-theme="light"] .editorial-nav-link:hover,
[data-theme="light"] .editorial-nav-link.active {
    color: #b48c2e;
    background: rgba(212, 175, 55, 0.12);
}

[data-theme="light"] .top-action-btn {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

[data-theme="light"] .cladding-categories-section {
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.08) 0%, #f4f5f8 100%);
}

[data-theme="light"] .cladding-cat-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cladding-cat-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 25px rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .cat-card-title {
    color: #111827;
}

[data-theme="light"] .cat-card-desc {
    color: #4b5563;
}

[data-theme="light"] .cat-features-list li {
    color: #374151;
}

[data-theme="light"] .cat-card-footer {
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .three-simulator-section {
    background: radial-gradient(circle at 50% 25%, rgba(212, 175, 55, 0.08) 0%, #edf0f4 100%);
}

[data-theme="light"] .product-category-tab {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #374151;
}

[data-theme="light"] .product-category-tab.active {
    background: #d4af37;
    color: #ffffff;
}

[data-theme="light"] .product-category-tab.active span.tab-num {
    color: #ffffff;
}

[data-theme="light"] .three-canvas-container {
    background: #101217;
}

[data-theme="light"] .sim-control-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
    color: #111827;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .sim-control-card h4 {
    color: #111827;
}

[data-theme="light"] .comparison-section {
    background: #eef1f5;
}

[data-theme="light"] .products-showcase-section {
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.06) 0%, #f4f6f9 100%);
}

[data-theme="light"] .product-luxe-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .product-luxe-title {
    color: #111827;
}

[data-theme="light"] .product-luxe-desc {
    color: #4b5563;
}

[data-theme="light"] .spec-chip {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    color: #374151;
}

[data-theme="light"] .section-title {
    color: #111827;
}

[data-theme="light"] .section-subtitle {
    color: #4b5563;
}

[data-theme="light"] .site-footer {
    background: #111317;
    color: #f5f5f7;
}

[data-theme="light"] .site-footer .brand-logo .logo-text {
    color: #ffffff;
}

[data-theme="light"] .sample-box-banner-card {
    background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.18) 0%, #ffffff 70%);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .banner-title {
    color: #0f172a;
}

[data-theme="light"] .banner-desc {
    color: #334155;
}

/* Enhanced Light Mode High-Contrast Typography */
[data-theme="light"] .brand-main-name {
    color: #0f172a !important;
}

[data-theme="light"] .brand-sub-tag {
    color: #8c6b2d !important;
    font-weight: 800;
}

[data-theme="light"] .editorial-nav-link {
    color: #0f172a !important;
    font-weight: 700;
}

[data-theme="light"] .editorial-nav-link:hover,
[data-theme="light"] .editorial-nav-link.active {
    color: #b48c2e !important;
    background: rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .cat-card-title {
    color: #0f172a !important;
    font-weight: 800;
}

[data-theme="light"] .cat-card-desc {
    color: #334155 !important;
    font-weight: 500;
    line-height: 1.7;
}

[data-theme="light"] .cat-features-list li {
    color: #1e293b !important;
    font-weight: 600;
}

[data-theme="light"] .cat-link-more {
    color: #8c6b2d !important;
    font-weight: 700;
}

[data-theme="light"] .section-title {
    color: #0f172a !important;
    font-weight: 800;
}

[data-theme="light"] .section-subtitle {
    color: #334155 !important;
    font-weight: 500;
}

[data-theme="light"] .activehop-editorial-top .editorial-text {
    color: #1e293b !important;
    font-weight: 600;
    line-height: 1.8;
}

[data-theme="light"] .capsule-brand-title {
    color: #0f172a !important;
}

[data-theme="light"] .capsule-link {
    color: #0f172a !important;
    font-weight: 700;
}

[data-theme="light"] .activehop-swatch-chip {
    color: #1e293b !important;
    font-weight: 700;
}

[data-theme="light"] .product-luxe-title {
    color: #0f172a !important;
    font-weight: 800;
}

[data-theme="light"] .product-luxe-desc {
    color: #334155 !important;
    font-weight: 500;
}

[data-theme="light"] .spec-chip {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
    color: #0f172a !important;
    font-weight: 600;
}

[data-theme="light"] .spec-chip i {
    color: #8c6b2d;
}

[data-theme="light"] .sim-control-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .sim-control-card h4 {
    color: #0f172a !important;
}

/* ==========================================================================
   13. CONTINUOUS.VC LUXURY DARK PALETTE & SCATTER TYPOGRAPHY STYLES
   ========================================================================== */
[data-theme="dark"] {
    --bg-main: #060709;
    --bg-surface: #0a0c10;
    --bg-surface-elevated: #11141b;
    --bg-card: rgba(13, 16, 22, 0.78);
    --bg-glass: rgba(10, 12, 18, 0.72);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.45);
}

[data-theme="dark"] body {
    background-color: #060709;
    color: #f8fafc;
}

[data-theme="dark"] .top-editorial-bar {
    background: rgba(6, 7, 10, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .cladding-categories-section {
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05) 0%, #060709 100%);
}

[data-theme="dark"] .cladding-cat-card {
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(11, 14, 20, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cladding-cat-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .product-luxe-card {
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(12, 15, 21, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

[data-theme="dark"] .activehop-banner-stage {
    background: radial-gradient(circle at 50% 50%, rgba(15, 20, 30, 0.9) 0%, #060709 100%);
}

/* Fluid Water Ripple Layer */
#fluidWaterCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    opacity: 0.5;
}

[data-theme="light"] #fluidWaterCanvas {
    mix-blend-mode: multiply;
    opacity: 0.35;
}

/* Scatter Typography Kinetic Elements */
.scatter-word-wrap {
    display: inline-block;
    white-space: nowrap;
}

.scatter-char {
    display: inline-block;
    will-change: transform;
    cursor: default;
    transition: color 0.15s ease, text-shadow 0.15s ease;
    user-select: none;
}

.scatter-char:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
}




