 
/* Enhanced Product Card Hover Effects */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease-out;
    z-index: 1;
    pointer-events: none;
}

.group:hover .product-card::before {
    left: 100%;
}

.product-card:hover {
    box-shadow: 0 25px 50px 0 rgba(0,0,0,0.2);
}

/* Shimmer overlay effect */
.shimmer-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.8s ease-out;
    pointer-events: none;
    z-index: 2;
}

.group:hover .shimmer-overlay {
    left: 100%;
    opacity: 1;
}

/* Floating animation for cards */
@keyframes float {
    0%, 100% { 
        transform: translateY(-16px) scale(1.05); 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
    }
}

.group:hover .product-card {
    animation: float 3s ease-in-out infinite;
}

/* Pulse effect for the view button */
@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
}

.group:hover .bg-white\/95 {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Staggered animation delays for grid items */
.product-card-link:nth-child(1) .product-card { transition-delay: 0ms; }
.product-card-link:nth-child(2) .product-card { transition-delay: 100ms; }
.product-card-link:nth-child(3) .product-card { transition-delay: 200ms; }
.product-card-link:nth-child(4) .product-card { transition-delay: 300ms; }
.product-card-link:nth-child(5) .product-card { transition-delay: 100ms; }
.product-card-link:nth-child(6) .product-card { transition-delay: 200ms; }
.product-card-link:nth-child(7) .product-card { transition-delay: 300ms; }
.product-card-link:nth-child(8) .product-card { transition-delay: 400ms; }

/* Fade-in animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Enhanced pagination hover effects */
.pagination-btn {
    width: 52px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(195, 214, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.pagination-btn:hover::before {
    left: 100%;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #039db6;
}

.pagination-btn--active {
    background: #039db6;
    color: #222;
    font-weight: 600;
    border: 1.5px solid #039db6;
    transform: scale(1.1);
}

.pagination-btn--disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pagination-btn:not(:last-child) {
    margin-right: 0;
}

/* Responsive design */
@media (max-width: 640px) {
    .pagination-btn { 
        width: 40px; 
        height: 40px; 
        font-size: 1rem; 
    }
    
    .product-card:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

/* Smooth backdrop blur effect */
@supports (backdrop-filter: blur(10px)) {
    .backdrop-blur-sm {
        backdrop-filter: blur(10px);
    }
}

/* Highlighted product special effects */
.highlighted-product .product-card {
    position: relative;
}

.highlighted-product .product-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: inherit;
    z-index: -1;
    animation: highlighted-glow 2s ease-in-out infinite;
}

@keyframes highlighted-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}
 