/* 3D Product Showcase Section */
.showcase-section {
    padding: 100px 0;
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.showcase-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 60px;
}

/* Text Content */
.showcase-info {
    flex: 1;
    max-width: 500px;
}

.showcase-label {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #ffd700;
}

.showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.showcase-desc {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 40px;
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-point h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 5px;
}

.feature-point p {
    font-size: 14px;
    color: #64748b;
}

/* 360 Viewer Container */
.showcase-visual {
    flex: 1.2;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-360-stage {
    width: 100%;
    height: 100%;
    position: relative;
    /* CSS Grid background to look technical */
    background-image:
        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: 40px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5) inset;
}

/* Overriding/Customizing the 360 Viewer Component Styles locally if needed */
.viewer-360-container {
    width: 80%;
    height: 80%;
    position: relative;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-360-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    user-select: none;
}

.viewer-360-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.viewer-360-overlay.fade-out {
    opacity: 0;
}

.viewer-icon {
    animation: rotate-icon 2s infinite linear;
}

@keyframes rotate-icon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.showcase-actions {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
        text-align: center;
    }

    .showcase-label {
        justify-content: center;
    }

    .showcase-visual {
        height: 400px;
        width: 100%;
    }
}