/* Shimmer Effect Styles */
.shimmer {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

/* Product Card Shimmer (Grid View) */
.product-shimmer-card {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 380px;
}

.product-shimmer-image {
    height: 220px;
    width: 100%;
}

.product-shimmer-title {
    height: 20px;
    margin: 12px 0;
    width: 80%;
    border-radius: 4px;
}

.product-shimmer-price {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
    border-radius: 4px;
}

.product-shimmer-button {
    height: 36px;
    width: 100%;
    border-radius: 4px;
}

/* Product List Shimmer (List View) */
.product-shimmer-list {
    border-radius: 0.5rem;
    overflow: hidden;
    min-height: 180px;
}

/* Responsive adjustments for list view */
@media (max-width: 768px) {
    .product-shimmer-list .product-shimmer-image {
        height: 180px;
        width: 100%;
    }
}

/* Active view button style *
