/* Image Loading Placeholder Styles */
.special-menu-img {
    position: relative;
}

.special-menu-img img {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

/* Loading state - spinner overlay */
.special-menu-img.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(245, 245, 245, 0.3);
    border-top: 3px solid #C59D5F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

/* Backdrop for spinner visibility */
.special-menu-img.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.8);
    z-index: 1;
}

.special-menu-img.loading img {
    opacity: 0.3;
}

.special-menu-img.loaded img {
    opacity: 1;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
