    
    /* Products Card */

    .products-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 60px;
    }
    .product-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .image-box {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }
    .image-box:hover {
        transform: scale(1.02);
    }
    .image-box img {
        width: 100%;
        height: 100%;
        padding: 26px;
    }
    .text-box {
        background: #ffffff;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        margin: 0 auto;
        width: 95%;
        position: relative;
        margin-top: -50px;
    }

    .product-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #e50040;;
        text-align: center;
    }

    .product-description {
        font-size: 1.1rem;
        color: black;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    .more-button {
        background: black;
        color: white;
        padding: 0.8rem 1.6rem;
        border: none;
        font-size: 17px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    .more-button-general {
        transition: 0.3s ease;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        display: table;
    }
    .more-button-general:hover {
        transform: translateY(-3px);
    }

    @media (max-width: 1000px){
        .products-container {
            margin-top: 40px;
        }
    }
    @media (max-width: 768px) {
        .image-box {
            height: 300px;
        }

        .text-box {
            width: 100%;
            margin-top: -30px;
            padding: 1.5rem;
        }

        .product-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 480px) {
        .products-container {
            padding: 1rem;
        }

        .image-box {
            height: 250px;
            border-radius: 10px;
        }

        .text-box {
            padding: 1rem;
            margin-top: -20px;
            border-radius: 10px;
        }

        .more-button {
            width: 100%;
            text-align: center;
        }
    }