/* Skeleton loading screens */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(197, 164, 78, 0.05) 25%,
        rgba(197, 164, 78, 0.12) 50%,
        rgba(197, 164, 78, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-card {
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(197, 164, 78, 0.1);
    border-radius: 40px 40px 8px 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
}

.skeleton-text {
    height: 1rem;
    border-radius: 4px;
}

.skeleton-text--short {
    width: 60%;
}

.skeleton-text--medium {
    width: 80%;
}

.skeleton-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* Product card skeleton variant */
.skeleton-card--product {
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.skeleton-card--product .skeleton-image {
    border-radius: 0;
}

.skeleton-card--product .skeleton-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Featured scroll skeleton */
.skeleton-scroll {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    padding: 0 2rem;
}

.skeleton-scroll .skeleton-card {
    min-width: 200px;
    flex-shrink: 0;
}
