.products-section {
    background-color: #EDEDED;
    padding: 60px 0;
    border-radius: 50px 50px 0 0;
}

.products-section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 600px;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover .product-card {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card {
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card-image {
    position: relative;
    height: 388px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #004D3A 0%, rgba(0, 77, 58, 0.8) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.product-card-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    width: 44%;
    line-height: 1.5;
}

.products-section a.btn-primary-custom,
.products-section a.btn.btn-primary-custom,
.products-section .btn-primary-custom,
.products-section .btn.btn-primary-custom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff !important;
    background-color: #004D3A !important;
    border: none !important;
    border-radius: 30px;
    height: 48px;
    min-height: 48px;
    min-width: 160px;
    padding: 0 1.5rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: none;
}

.products-section a.btn-primary-custom:hover,
.products-section a.btn.btn-primary-custom:hover,
.products-section .btn-primary-custom:hover,
.products-section .btn.btn-primary-custom:hover {
    color: #fff !important;
    background-color: #005A37 !important;
    border: none !important;
}

.products-section-btn-mobile {
    display: none;
}

.products-carousel-dots {
    display: none;
}

.products-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 767px) {
    .products-section .section-title {
        text-align: center;
    }

    .products-section .products-section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .products-section .products-section-btn-desktop {
        display: none !important;
    }

    .products-section-btn-mobile {
        display: block;
    }

    .products-carousel-viewport {
        overflow: hidden;
    }

    .products-section .row.products-carousel-track {
        flex-wrap: nowrap;
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
        padding-left: 12px;
        padding-right: 12px;
        transition: transform 0.3s ease;
    }

    .products-section .row.products-carousel-track [class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .products-section .product-card-image {
        height: 320px;
    }

    .products-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 1.25rem;
    }

    .product-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        max-width: 10px;
        min-height: 10px;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        background: #ccc;
        border: 2px solid transparent;
        box-sizing: border-box;
        flex-shrink: 0;
        cursor: pointer;
        appearance: none;
        transition: background 0.3s, border-color 0.3s, width 0.3s, min-width 0.3s, max-width 0.3s;
    }

    .product-dot.active {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 10px;
        border-radius: 5px;
        background: #004D3A;
        border-color: #004D3A;
    }
}

@media (min-width: 768px) {
    .products-section .row.products-carousel-track {
        transition: none;
    }
}

