/* Wheel Slider Container */
.wheel-slider-area {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 600px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.wheel-section {
    overflow-x: hidden;
    max-width: 100vw;
}

/* The Rotating Wheel */
.wheel-stage {
    position: relative;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Individual Cards */
.wheel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    /* Transparent for hovering effect */
    border-radius: 0;
    /* No radius needed if image handles it */
    box-shadow: none;
    /* Remove card shadow */
    overflow: hidden;
    opacity: 0.5;
    filter: blur(5px);
    transition: opacity 0.5s, filter 0.5s, transform 0.5s;
    backface-visibility: hidden;
}

.wheel-item.active {
    opacity: 1;
    filter: blur(0);
    z-index: 10;
    transform: scale(1.15);
    /* Make active card 15% larger */
}

.wheel-item img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.wheel-item-content {
    padding: 15px;
    text-align: center;
}

.wheel-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.wheel-item-price {
    color: #f1683a;
    font-weight: bold;
}

/* Navigation/Controls */
.wheel-controls {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 20;
}

.wheel-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
}

.wheel-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Mobile Responsive Adjustments - Enhanced 3D Visibility */
@media (max-width: 768px) {
    .wheel-slider-area {
        height: 520px;
        /* Increased for better visibility */
        perspective: 1000px;
        /* Stronger 3D effect */
    }

    .wheel-stage {
        width: 280px;
        /* Larger cards */
        height: 380px;
    }

    .wheel-controls {
        bottom: 60px;
    }

    .wheel-btn {
        padding: 8px 15px;
        font-size: 14px;
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .wheel-slider-area {
        height: 500px;
        /* More height for 3D effect */
        perspective: 900px;
        /* Better perspective */
        padding: 20px 0;
    }

    .wheel-stage {
        width: 260px;
        /* Larger for visibility */
        height: 340px;
    }

    .wheel-controls {
        bottom: 50px;
    }

    .wheel-btn {
        padding: 8px 16px;
        font-size: 13px;
        margin: 0 8px;
    }

    .wheel-item-title {
        font-size: 1rem;
    }

    .wheel-item-price {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .wheel-slider-area {
        height: 480px;
        perspective: 850px;
    }

    .wheel-stage {
        width: 240px;
        height: 320px;
    }

    .wheel-item-title {
        font-size: 0.95rem;
    }

    .wheel-item-price {
        font-size: 0.9rem;
    }
}