/* CSS para placeholders e imágenes de ejemplo */

/* Placeholder para imágenes */
.image-placeholder {
    background: linear-gradient(135deg, #daa520 0%, #8b4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
}

.business-photo .image-placeholder {
    width: 100%;
    height: 400px;
}

.about-image .image-placeholder {
    width: 100%;
    height: 350px;
}

/* Efectos hover para placeholders */
.image-placeholder:hover {
    transform: scale(1.02);
    transition: var(--transition);
}

/* Placeholder para productos */
.product-placeholder {
    width: 80px;
    height: 80px;
    background: #faf8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #8b4513;
    border: 3px solid #daa520;
    transition: var(--transition);
}

.product-placeholder:hover {
    background: #daa520;
    color: white;
    transform: scale(1.1);
}

/* Estados de carga */
.loading-placeholder {
    background: linear-gradient(90deg, #f5f1eb 25%, #e8ddd4 50%, #f5f1eb 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive para placeholders */
@media (max-width: 768px) {
    .business-photo .image-placeholder {
        height: 300px;
        font-size: 1.5rem;
    }
    
    .about-image .image-placeholder {
        height: 250px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .business-photo .image-placeholder {
        height: 250px;
        font-size: 1.2rem;
    }
    
    .about-image .image-placeholder {
        height: 200px;
        font-size: 1.2rem;
    }
    
    .product-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
