/* Custom styles for T-Shirts E-Commerce website */

/* Category tabs styling */
.category-tab {
    position: relative;
    color: #6B7280;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-tab:hover {
    color: #ff8a80;
}

.category-tab.active {
    color: #ff8a80;
    border-bottom: 2px solid #ff8a80;
}

/* Product card hover effects */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff8a80;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    color: white !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile menu styles */
.mobile-menu {
    animation: slideDown 0.3s ease-out forwards;
}

.mobile-menu.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 