/*+++++++++++++++++++++++++++++++++++++++++++++++
        Home Styles | Products Section
************************************************/
.econotec-home__products-section {
    background-color: var(--background1-color);
    border-bottom: 1px solid #222222;
    padding: 40px 0;
}

.econotec-home__products-section .card-section {
    background-color: var(--background1-color);
    min-height: 500px;
    padding: 40px 0;
}

.econotec-home__products-section__row {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .econotec-home__products-section__row {
        max-width: 400px;
        margin: auto;
    }
}

.econotec-home__products-section .card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #ccc;
    box-shadow: 0px 7px 25px -12px rgba(0,0,0,0.75);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    max-width: 300px;
    min-height: 450px;
}

.econotec-home__products-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

.econotec-home__products-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.econotec-home__products-section .card-body {
    background-color: #ffffff;
    padding: 20px;
}

.econotec-home__products-section .card-text {
    font-size: 0.9rem;
    color: #666;
}

.econotec-home__products-section .card-category {
    font-size: 1rem;
    color: #999;
    margin-bottom: 5px;
}

.econotec-home__products-section .card-category a{
    color:var(--primary-color-mode1);
}

.econotec-home__products-section .card-category a:hover{
    text-decoration: underline;
}