/* --- PRODUCT SPOTLIGHT SECTION --- */
.product-spotlight {
    background: #052342; /* Dark background to match theme */
    padding: 100px 0;
    overflow: hidden;
}

.spotlight-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT: The 3D Stage */
.model-stage {
    width: 50%;
    height: 500px;
    background: radial-gradient(circle at center, #2a2a2a 0%, #000 70%); /* Studio Lighting Effect */
    border-radius: 20px; /* Soft corners */
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.viewer-3d {
    width: 100%;
    height: 100%;
    --poster-color: transparent; /* Hides loading background */
}

/* RIGHT: The Content */
.specs-panel {
    width: 45%;
    color: #fff;
}

.specs-label {
    color: var(--accent-gold); /* Molten Orange */
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.specs-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.specs-desc {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* The Grid Specification Layout */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.spec-item {
    border-left: 2px solid var(--accent); /* Orange Accent Line */
    padding-left: 15px;
}

.spec-item .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
}

.spec-item .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .spotlight-flex {
        flex-direction: column;
    }
    .model-stage, .specs-panel {
        width: 100%;
    }
    .model-stage {
        height: 400px;
    }
}