/* Custom Pizza Arc Styles */
.pizza-arc-wrapper {
    position: relative;
    width: 800px;
    height: 400px;
    /* Center in container */
    position: absolute;
    top: 55%; /* Moved down from 40% to 55% */
    left: 50%;
    transform: translate(-50%, -50%);
}

.pizza-item {
    position: absolute;
    width: 200px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform-origin: center 1000px; /* Radius of arc increased to push items off-screen */
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    /* Center the item on its own anchor point */
    margin-left: -100px; /* -width/2 */
    margin-top: -150px;  /* -height/2 */
    will-change: transform, opacity;
}

.pizza-item img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    /* border-radius: 10px; Removed to keep pizza shape natural */
    transition: transform 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .pizza-arc-wrapper {
        width: 100%;
        height: 300px;
        top: 45%;
    }
    
    .pizza-item {
        transform-origin: center 600px;
        width: 180px;
        height: 270px;
    }
    
    .pizza-item img {
        width: 180px;
    }
}
