body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0f4c36 !important;
    font-family: "Dosis", sans-serif;
    font-weight: 600;
}

.banner img {
    width: 100% !important;
    height: auto;
    object-fit: cover;
}

.category .content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.category .content a {
    text-align: center;
    text-decoration: none;
}

.product-section a {
    text-decoration: none;
    color: #0f4c36;
}

.product-section a:hover {
    color: #13835a;
    transition: 0.2s ease;
}

.product-section .title h3 {
    color: #0f4c36;
    font-weight: bolder;
}

.other-sec-1 .content {
    text-align: center;
}

.other-sec-1 .desc {
    padding-top: 10px;
}

.other-sec-1 .desc p {
    font-size: 20px;
}

.other-sec-1 .content .button a {
    border: 1px solid #0f4c36;
}

.other-sec-2 .content {
    text-align: center;
}

.shop .content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.shop .content a {
    text-decoration: none;
    color: #0f4c36;
}

.shop .content a:hover {
    color: #13835a;
    transition: 0.2s ease;
}

.shop .content .button a {
    background-color: #0f4c36;
    width: 100%;
    color: white;
    border-radius: 0px;
}

.shop-detail .image img {
    width: 100%;
}

.shop-detail .price {
    font-size: 30px;
    color: #0f4c36;
}

.related-product a {
    text-decoration: none;
    color: #0f4c36;
}

.blogs .content a {
    text-decoration: none;
    color: #0f4c36;
}


.shop .image-wrapper {
    overflow: hidden;
}

.shop .image-wrapper img {
    transition: transform 0.3s ease-in-out;
}

.shop .image-wrapper:hover img {
    transform: scale(1.03);
    filter: grayscale(70%);
    /* Slight zoom on hover */
}

.shop .hover-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    top: 10px;
    right: 10px;
}

.shop .image-wrapper:hover .hover-buttons {
    opacity: 1;
    /* Show buttons on hover */
}

.shop .hover-buttons a {
    /* border: 1px solid #0f4c36; */
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    background: #0f4c36;
}

.shop .hover-buttons a:hover {
    background-color: #ffffff;
    border: none;
    color: #13a46f;
    transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.shop .hover-buttons a i {
    font-size: 20px;
}



.product-section .image-wrapper {
    overflow: hidden;
}

.product-section .image-wrapper img {
    transition: transform 0.3s ease-in-out;
}

.product-section .image-wrapper:hover img {
    transform: scale(1.03);
    filter: grayscale(70%);
    /* Slight zoom on hover */
}

.product-section .hover-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    top: 10px;
    right: 10px;
}

.product-section .image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-section .image-wrapper:hover .hover-buttons {
    opacity: 1;
    /* Show buttons on hover */
}

.product-section .hover-buttons a {
    border: 1px solid #0f4c36;
    color: #0f4c36;
    /* border: none; */
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    background: transparent;
}

.product-section .hover-buttons a:hover {
    background-color: #ffffff;
    border: 1px solid #0f4c36;
    color: #13a46f;
}

.product-section .hover-buttons a i {
    font-size: 20px;
}

.product-section .button a {
    background-color: #0f4c36;
    width: 100%;
    color: white;
    border-radius: 0px;
}

.product-section .content .title h5 {
    font-size: 18px;
}

.other-sec-1 .image img {
    width: 100%;
}

.shop .category .title {
    padding: 10px;
}

.shop .category .title h3 {
    font-size: 30px;
}

.shop .category ul {
    margin: 0;
    padding: 0;
}

.shop .category ul li {
    list-style-type: none;
    padding: 15px;
    padding-left: 0;
}

.shop .category ul li a {
    text-decoration: none;
    color: #482e0c;
    font-size: 18px;
}

.blogs .content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-detail .image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

.recent-blogs .content img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.recent-blogs .content p {
    font-size: 20px;

}














/* Owl Carousal CSS */

.owl-carousel .owl-nav {
    display: block !important;
    opacity: 1 !important;
}


/* Owl Carousel navigation buttons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    /* Customize button background color */
    border: none;
    font-size: 24px;
    /* Adjust button font size */
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
    /* Ensure buttons are above carousel items */
    color: #333;
    /* Customize button text color */
}

/* Position left and right */
.owl-carousel .owl-nav button.owl-prev {
    left: -65px;
    /* Move the previous button to the left */
}

.owl-carousel .owl-nav button.owl-next {
    right: -65px;
    /* Move the next button to the right */
}

/* Optional: Hover effect */
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #ddd;
    /* Button background on hover */
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    font-size: 50px !important;
    font-weight: 300 !important;
    color: green !important;
}



@media only screen and (max-width: 1400px) {
    .main-header nav .search {
        display: block;
    }
}

@media screen and (max-width: 1200px) {

    .shop h5 {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {

    .shop h5 {
        font-size: 14px;
    }

    .w-c-btn {
        display: block !important;
    }

    .nav .breadcrumb li {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 768px) {

    .product-section .owl-nav {
        display: none !important;
    }

    .nav .breadcrumb li {
        font-size: 20px !important;
    }

    .shop .content .button {
        display: none;
    }

    .w-c-btn {
        display: block !important;
    }

    .shop .content .w-c-btn a {
        font-size: 10px;
        width: 100%;
        color: white;
        border-radius: 0;
    }

    .shop .content img {
        height: 200px;
        object-fit: cover;
    }

    .shop-detail .owl-nav {
        display: none !important;
    }

    .shop-detail .price {
        font-size: 20px;
    }

    .related-product .owl-nav {
        display: none !important;
    }

    .product-section .button {
        display: none;
    }

    .product-section .w-c-btn a {
        width: 100%;
        color: white;
    }
}