﻿/* Importing Google fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
 #Product Section
--------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.card-wrapper {
    max-width: 1100px;
    margin: 0 100px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}

    .card-list .card-item .card-link {
        user-select: none;
        display: block;
        background: #fff;
        padding: 18px;
        border-radius: 12px;
        text-decoration: none;
        border: 2px solid transparent;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transition: 0.2s ease;
    }

        .card-list .card-item .card-link:active {
            cursor: grabbing;
        }

        .card-list .card-item .card-link:hover {
            border-color: #278234;
        }

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge {
    color: #278234;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #DDE3FF;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-link .header-title {
    font-weight: 550;
    font-size: 1.5rem;
    margin: 16px 0 18px;
    transition: 0.07s ease;
}

.card-list .card-link:hover .header-title {
    font-weight: 600;
    color: #278234;
    
}

.card-list .card-link .badge.designer {
    color: #B22485;
    background: #F7DFF5;
}

    .card-list .card-link .badge.marketer {
        color: #B25A2B;
        background: #FFE3D2;
    }

    .card-list .card-link .badge.gamer {
        color: #205C20;
        background: #D6F8D6;
    }

    .card-list .card-link .badge.editor {
        color: #856404;
        background: #fff3cd;
    }

.card-list .card-link .card-details {
    font-size: 1.09rem;
    color: #000;
    font-weight: 300;
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #278234;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #278234;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: #fff;
    background: #278234;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #278234;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: #278234;
    margin-top: -35px;
}

@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}
