.other-products-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.other-products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.other-products-section .header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.other-products-section .header-top-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.other-products-section .brand-line {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin-right: 20px;
}

.other-products-section .section-label {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.other-products-section .section-title {
    color: #124672;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    max-width: 800px;
    text-transform: none !important;
}

.other-products-section .nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1.5px solid #124672;
    background: transparent;
    color: #124672;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 18px;
}

.other-products-section .nav-btn:hover {
    background-color: #124672;
    color: #fff;
}

.other-products-section .header-right {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

/* Card Styles */
.other-products-slider {
    position: relative;
}

.other-products-track-container {
    overflow: hidden;
    margin: 0 -15px;
}

.other-products-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    transition: transform 0.5s ease;
}

.product-cat-card {
    flex: 0 0 330px;
    margin: 0 15px;
    background: #fff;
    border: none;
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
}

.product-cat-card .card-title {
    color: #124672;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    min-height: 50px;
}

.product-cat-card .card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.product-cat-card .card-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-cat-card:hover .card-image img {
    transform: scale(1.05);
}

.product-cat-card .card-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.product-cat-card:hover .card-footer {
    opacity: 1;
    transform: translateY(0);
}

.product-cat-card .btn-know-more {
    box-sizing: border-box;
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Responsiveness */
@media (max-width: 1300px) {
    .other-products-section .section-title {
        font-size: 28px;
        max-width: 700px;
    }
}


@media (max-width: 991px) {

    .other-products-section {
        padding: 60px 0;
    }

    .other-products-section .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .other-products-section {
        padding: 40px 0;
    }

    .other-products-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .other-products-section .header-top-row {
        margin-bottom: 10px;
    }

    .other-products-section .brand-line {
        width: 35px;
        margin-right: 12px;
    }

    .other-products-section .section-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .other-products-section .section-title {
        font-size: 20px;
        line-height: 1.3;
        font-weight: 500;
    }

    .other-products-section .header-right {
        margin-top: 5px;
        width: 100%;
        justify-content: flex-end;
        gap: 15px;
    }

    .other-products-section .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .product-cat-card .card-title {
        font-size: 18px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .product-cat-card .card-image img {
        max-height: 200px;
    }

    .product-cat-card .card-footer {
        opacity: 1;
        transform: none;
        margin-top: 15px;
    }
}