
    .category-link {
        display: flex;
        text-decoration: none;
        color: inherit;
    }

    .cat-card {
        transition: all 0.3s ease;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .cat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .left {
        width: 40%;
        overflow: hidden;
    }

    .left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .cat-card:hover .left img {
        transform: scale(1.05);
    }

    .right {
        width: 60%;
        padding: 15px;
        display: flex;
        align-items: center;
    }

    .cat-data h2 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #333;
    }

    .cat-data p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }


  /* SweetAlert2 Modern Enhancements */
.swal2-popup {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.dark .swal2-popup {
    background-color: rgba(17, 24, 39, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f3f4f6 !important;
}

.swal2-title {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
}



.no-products-found {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin: 2rem 0;
}

.no-products-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-products-found svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.no-products-found h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #343a40;
}

.no-products-found p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.no-products-found .btn {
    padding: 0.5rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.no-products-found .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.no-products-found {
    animation: fadeIn 0.5s ease-out forwards;
}

 /* Category Cards - Uniform Size */
 .cat-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 120px; /* Fixed height for all cards */
    display: flex;
}

.category-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.left {
    width: 40%;
    overflow: hidden;
    height: 100%; /* Take full height of parent */
    position: relative; /* For absolute positioning of image */
}

.left img {
    width: 100%;
    height: 100%; /* Fill container */
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute; /* Ensure consistent sizing */
    top: 0;
    left: 0;
}

.right {
    width: 60%;
    padding: 15px;
    display: flex;
    align-items: center;
    height: 100%; /* Take full height */
}




