
  /* Enhanced Accessibility and Interactions */
  * {
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

/* Custom focus states */
*:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.location-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.review-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

section {
    animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, transparent, rgba(255,255,255,0.1));
    transform: skew(-15deg) translateX(-100%);
    transition: transform 0.5s;
    z-index: 1;
}

.product-card:hover::before {
    transform: skew(-15deg) translateX(100%);
}
.customer-reviews-pagination .swiper-pagination-bullet-active {
    background-color: #3b82f6 !important;
}