/* Product Showcase - 3D Renderer Style */
.product-showcase {
    position: relative;
    padding: 100px 0 120px 0;
    /* Use a dark radial background to focus attention but smoother */
    background: radial-gradient(circle at center, #1b0505 0%, #050505 70%);
    overflow: hidden;
    z-index: 5;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    /* Subtle red ambient glow behind the iPad */
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

.product-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.showcase-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Slightly larger */
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    /* Pull closer to iPad */
    z-index: 20;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    position: relative;
    letter-spacing: 1px;
}

.showcase-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto -40px auto;
    /* Pull iPad slightly up towards text, but keep readable */
    z-index: 20;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.showcase-title .highlight-red {
    color: var(--primary-red, #ff0000);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

#ipad-3d-scene {
    width: 100%;
    height: 700px;
    /* Taller area for larger iPad */
    outline: none;
    cursor: grab;
    z-index: 10;
}

#ipad-3d-scene:active {
    cursor: grabbing;
}

/* Optional overlay text if needed */
.product-overlay-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    #ipad-3d-scene {
        height: 400px;
    }

    .showcase-title {
        margin-bottom: 0;
    }
}