/* =========================================
       PRODUCTS PAGE
    ========================================== */

    .products-page {
        padding: 70px 0 90px;
        background: #fff;
        overflow: hidden;
    }


    /* =========================================
       PRODUCT CARD
    ========================================== */

    .custom-product-card {
        position: relative;
        display: block;
        height: 100%;
        background: #fff;
        border-radius: 22px;
        overflow: hidden;
        text-decoration: none;
        border: 1px solid #eeeeee;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: all 0.35s ease;
    }

    .custom-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }


    /* =========================================
       IMAGE
    ========================================== */

    .product-card-image {
        position: relative;
        height: 250px;
        overflow: hidden;
        background: #f7f7f7;
    }

    .product-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .custom-product-card:hover .product-card-image img {
        transform: scale(1.08);
    }


    /* =========================================
       IMAGE OVERLAY
    ========================================== */

    .product-card-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.3s ease;
    }

    .custom-product-card:hover .product-card-overlay {
        opacity: 1;
    }

    .product-view-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff6b00;
        font-size: 22px;
        transform: scale(0.7);
        transition: 0.3s ease;
    }

    .custom-product-card:hover .product-view-icon {
        transform: scale(1);
    }


    /* =========================================
       CARD CONTENT
    ========================================== */

    .product-card-content {
        padding: 20px 20px 23px;
        text-align: center;
    }

    .product-card-content h3 {
        margin: 0;
        font-family: 'Bubblegum Sans', cursive;
        font-size: 23px;
        line-height: 1.3;
        color: #222;
    }

    .custom-product-card:hover .product-card-content h3 {
        color: #6c63ff;
    }


    /* =========================================
       PAGINATION
    ========================================== */

    .products-pagination {
        margin-top: 55px;
        display: flex;
        justify-content: center;
    }

    .products-pagination .pagination {
        gap: 8px;
    }

    .products-pagination .page-link {
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #444;
        background: #f4f4f4;
        font-weight: 500;
        transition: 0.3s ease;
    }

    .products-pagination .page-link:hover {
        background: #6c63ff;
        color: #fff;
    }

    .products-pagination .page-item.active .page-link {
        background: #ff6b00;
        color: #fff;
    }

    .products-pagination .page-item.disabled .page-link {
        opacity: 0.45;
    }


    /* =========================================
       NO PRODUCTS
    ========================================== */

    .no-products {
        text-align: center;
        padding: 70px 20px;
    }

    .no-products i {
        font-size: 55px;
        color: #ccc;
        display: block;
        margin-bottom: 15px;
    }

    .no-products h3 {
        font-family: 'Bubblegum Sans', cursive;
        font-size: 28px;
        color: #444;
    }

    .no-products p {
        color: #888;
    }


    /* =========================================
       TABLET
    ========================================== */

    @media (max-width: 991px) {

        .products-page {
            padding: 55px 0 70px;
        }

        .product-card-image {
            height: 220px;
        }

    }


    /* =========================================
       MOBILE
    ========================================== */

    @media (max-width: 767px) {

        .products-page {
            padding: 40px 0 60px;
        }

        .product-card-image {
            height: 200px;
        }

        .product-card-content {
            padding: 15px 12px 18px;
        }

        .product-card-content h3 {
            font-size: 19px;
        }

        .products-pagination {
            margin-top: 40px;
        }

    }


    /* =========================================
       SMALL MOBILE
    ========================================== */

    @media (max-width: 480px) {

        .product-card-image {
            height: 160px;
        }

        .product-card-content h3 {
            font-size: 17px;
        }

        .product-view-icon {
            width: 42px;
            height: 42px;
            font-size: 18px;
        }

        .products-pagination .page-link {
            width: 36px;
            height: 36px;
            font-size: 13px;
        }

    }
