.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #252525;
    margin: 50px 0;
    text-align: center;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card img {
    height: 260px;
    object-fit: cover;
    border: 1px solid #d4d4d4;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #252525;
}

.nav-pills .nav-link {
    border: 1px solid #ddd;
    color: #444;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #f2f2f2;
}

.nav-pills .nav-link.active {
    background-color: #956c42;
    color: #fff;
    border-color: #956c42;
}

#productTab .nav-link {
    min-width: 200px;
    text-align: center;
    border: 1px solid #956c42 !important;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.about-area .features-area .item img {
    height: 300px;
    width: 100%;
}

.slider-img {
    width: 100% !important;
    height: 100px !important;
    /* object-fit: cover; */
}

@media (min-width: 1024px) {
    nav.navbar.bootsnav ul.nav>li>a:hover {
        color: #efb300;
    }
}

@media (min-width: 1024px) {

    nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li a:hover,
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li a:hover {
        background-color: transparent;
        color: #efb300 !important;
    }
}

body {
    background-color: #d4d4d43a;
}