

/* Swiper Container */
.swiper-container-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.swiper-container_com {
    overflow: hidden;
    padding: 10px 0;
}

.swiper-nav-btn i {
    width: 24px;
    height: 24px;
    color: #1f2937;
}



.category-card {
    position: relative;
    border-radius: 1.5rem;
    transition: all 0.5s ease-out;
    border: none;
    box-shadow: none;
}

.category-card-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    transition: all 0.3s ease;
}

.category-card-wrapper:hover .category-card-inner {
    transform: translateY(-5px);

}

/* Image Styles */
.category-image {
    position: relative;
    flex-shrink: 0;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.4) contrast(1.15);
    transition: transform 0.5s ease;
}

.category-card-wrapper:hover .category-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
    border-radius: 35px;
}

/* Content Styles */
.category-content {
    flex-grow: 1;
}

.category-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    color: #6b7280;
    text-transform: uppercase;
}

.category-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Button Styles */
.deep-purple-btn {
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    color: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5),
    0 0 25px rgba(168, 85, 247, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.deep-purple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6),
    0 0 30px rgba(168, 85, 247, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.deep-purple-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.btn-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    filter: blur(10px);
}

.deep-purple-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Pagination Dots */
.custom-pagination {
    display: flex;

    gap: 0.75rem;
    margin-top: 3rem;
}

.pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-dot.active {
    width: 3rem;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.pagination-dot:hover {
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .category-title {
        font-size: 2.5rem;
    }

    .category-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-image {
        width: 8rem;
        height: 8rem;
    }
}

@media (max-width: 768px) {

    .category-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {


    .category-title .animate-sparkle {
        width: 1.5rem;
        height: 1.5rem;
        right: -1.5rem;
    }

    .deep-purple-btn {
        padding: 0.75rem 2rem;
        font-size: 0.875rem;
    }
}
@media (max-width: 768px) {
    .category-image {
        width: 100%;
        border-radius: 99px;
        height: 180px;
    }
}
