/* 
 * Styles for the 3D Dummy 13 Hero Section 
 */

.dummy13-hero-wrapper {
    position: relative;
    width: 100%;
    height: 75vh; /* Reduced from 80vh per user request */
    min-height: 500px;
    background: radial-gradient(circle at center, #2a2a2a 0%, #111111 100%) !important; /* Prevent white screen */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#dummy13-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Let clicks pass through if needed, but grab mousemove from document */
}

#dummy13-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: sans-serif;
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
}

/* UI Overlay Layer */
.dummy13-ui-layer {
    position: absolute;
    bottom: 40px;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dummy13-title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin: 0;
    pointer-events: none; /* Let model capture raycasts if we add them later */
}

#dummy13-reveal-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

#dummy13-reveal-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Carousel Overlay - Hidden by Default */
#dummy13-carousel {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.95);
    width: 80%;
    max-width: 1000px;
    z-index: 5; /* Behind UI, in front of model or mixed */
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Splide Carousel */
    padding: 0;
}

.splide__slide {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Ensure the arrows and pagination show over the dummy and look good */
.splide__arrow {
    background: rgba(255, 255, 255, 0.2) !important;
}
.splide__arrow svg {
    fill: white !important;
}
.splide__pagination__page {
    background: rgba(255, 255, 255, 0.3) !important;
}
.splide__pagination__page.is-active {
    background: white !important;
}

#dummy13-carousel.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Sample Product Cards inside Carousel */
.dummy13-product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dummy13-product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.dummy13-product-img {
    width: 100%;
    height: 150px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #aaa;
}

.dummy13-product-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.dummy13-product-card p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}
