@import url('https://fonts.googleapis.com/css2?family=Brawler:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Brawler", serif;
}

:root {
    --primary-color: #F95A3F;
    --grey-color: #636363;
    --black-color: #000000;
    --white-color: #ffffff;

}

.bg-reds {
    background: #F95A3F;

}

.bg-black {
    background: #000;
}

.bg-whites {
    background: #fff;

}

.btn-red {
    background: var(--primary-color);
    text-decoration: none;
    padding: 7px 20px;
    color: var(--white-color) !important;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
    font-size: 16px;

}

.btn-red:hover {
    background-color:#504949 !important;
    color: #FFF !important;
    transform: scale(1.05);
}


.btn-transp {
    border: 1px solid var(--white-color);
    text-decoration: none;
    padding: 7px 20px;
    color: var(--white-color);
    background: transparent;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;

}

.btn-transp:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    transform: scale(1.05);
}

.head-title {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/*********Navigation************/


a.navbar-brand img {
    max-width: 150px;
}

.navbar ul.navbar-nav li {
    padding: 0 10px;
}

.navbar ul.navbar-nav li a {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 500;
}

.navbar ul.navbar-nav li a.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 50px;

}

.navbar .right-menus {
    display: flex;
    justify-content: space-around;
    list-style: none;
    align-items: center;
    margin: 0;
}

.navbar .right-menus li {
    margin: 0 15px;
}

.navbar .right-menus li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--black-color);
}

/***** Home Banner Slider *****/
#carouselTsavendingllc .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    z-index: 10;
    width: 100%;
    padding: 0 15px;
}

#carouselTsavendingllc .carousel-caption .banner-title {
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--white-color);
}

#carouselTsavendingllc .carousel-caption h2 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--white-color);
}

#carouselTsavendingllc .carousel-caption h2 span {
    color: var(--primary-color);
}

#carouselTsavendingllc .carousel-caption p {
    font-size: 16px;
    color: var(--white-color)
}

#carouselTsavendingllc .banner-btngroup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#carouselTsavendingllc .banner-btngroup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#carouselTsavendingllc .banner-btngroup .btn {
    width: 150px !important;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100% !important;
}

#carouselTsavendingllc .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey-color);
    opacity: 0.5;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;

}

#carouselTsavendingllc .carousel-indicators .active {
    background: var(--white-color);
    opacity: 1;
    border: 2px solid var(--white-color);
}


/* About us */

.about-us .about-content h2 {
    font-size: 36px;
    color: var(--black-color);
    padding: 10px 0;
    font-weight: 700;
}

.about-us .about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

.about-us .counter-container {
    display: flex;
    gap: 50px;
    justify-content: start;
    text-align: center;
    margin-bottom: 20px;
}

.about-us .counter-box h2 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-us .counter-box p {
    font-size: 18px;
    color: var(--black-color);
}


/* our products */
.product-section {
    background-color: #FFEFED;
    padding: 60px 0;
}

.product-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
}


.product-section .nav-tabs {
    border-bottom: none;
    background: transparent;
}

.product-section .nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--black-color);
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.product-section .nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.product-section .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border: none;
    position: relative;
    background-color: transparent;
}

/* Optional underline effect for active tab */
/* .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #dc3545;
    border-radius: 1px;
} */


.product-section .product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-section .product-card .action-buttons {
    position: absolute;
    top: 15px;
    right: 10px;
    transform: translateY(-15%);
    z-index: 10;
    border: 1px solid #000;
    border-radius: 100%;
    padding: 2px;
    background-color: #fff;
}

.product-section .product-card .action-buttons .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
	border:none;
}

.product-section .product-card .action-buttons .btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 767px) {
    .product-section .product-card .action-buttons {
        top: 10px;
        right: 10px;
        transform: none;
    }
}


.product-section .card img {
    max-height: 320px;
    object-fit: contain;
}

/*  owl-nav  */
.product-section .owl-carousel .owl-dots.disabled,
.product-section .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.product-section .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.product-section .owl-nav button {
    background: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.product-section .owl-nav button i {
    font-size: 14px;
}

.product-section .owl-nav button:hover i {
    color: var(--primary-color);
}

.product-section button.owl-prev,
.product-section button.owl-next {
    background: var(--white-color) !important;
}

/* Why choose us */
.why-choose-us {
    background-image: url('../images/why-choose-us.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.why-choose-us h2 {
    font-size: 36px;
    color: var(--white-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.why-choose-us img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: inline-block;
}

.why-choose-us h5 {
    font-size: 20px;
    color: var(--primary-color);
    padding: 10px 0;
    font-weight: 500;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.why-choose-us p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-color);
    text-align: center;
}

/* Our Blogs */

.our-blogs h2 {
    font-size: 36px;
    color: var(--black-color);
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;

}

.our-blogs .card {
    border: 1px solid #C5C4C4 !important;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.our-blogs .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.our-blogs .card .date {
    color: var(--primary-color);
    font-size: 16px;
}

.our-blogs .card h4 {
    font-size: 20px;
    color: #3D404F;
    padding: 10px 0;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.our-blogs .card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 10px;
}

/* Contact us */

.contact-us {
    background-color: #FFEFED;
    padding: 60px 0;
}

.contact-us h2 {
    font-size: 36px;
    color: var(--black-color);
    padding-bottom: 0px;
    font-weight: 700;
    text-align: center;

}

.contact-us .form-control.no-label:focus {
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .12)
}

.contact-us .form-card .form-control {
    border: none;

}

.contact-us .form-card {
    max-width: 720px;
    margin: 2rem auto;
    padding: 1.25rem;
    border-radius: .75rem;

}

.contact-us .form-card ::placeholder {
    color: #6c757d;
    opacity: 1
}

.contact-us .form-card textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section  */

.faqs .faq-header h2 {
    font-size: 32px;
    color: var(--black-color);
    padding-bottom: 20px;

}

.faqs .faq-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

.faqs .accordion-button:not(.collapsed),
.faqs .accordion-button:focus {
    background-color: transparent;
    color: var(--black-color);
    box-shadow: none;
}

.faqs .accordion-header span {
    font-size: 20px;
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.faqs .faq-number {
    font-weight: bold;
    font-size: 1.5rem;
    color: gray;
    width: 50px;
}

.faqs .faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faqs .faq-icon {
    font-size: 1.5rem;
    width: 1.5rem;
    text-align: center;
}

.faqs .faq-section {
    max-width: 1000px;
    margin: 2rem auto;
}

.faqs .faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faqs .accordion-button::after {
    display: none;
}

.faqs hr {
    border-top: 1px solid #F95A3F;
}

/* Footer */

footer {
    background-color: var(--black-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.25rem;
}

.main-footer p {
    font-size: 16px;
    color: var(--white-color);
}

.main-footer h6 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.main-footer ul li {
    list-style: none;
    line-height: 2;
}

.main-footer ul li a {
    text-decoration: none;
    color: var(--white-color);
    transition: color 0.3s;
    font-weight: 400;
    font-size: 16px;
}

.main-footer ul li a:hover {
    color: var(--primary-color);
}

.footer-links a,
.footer-socials a {
    color: var(--white-color);
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover,
.footer-socials a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

hr.bg-secondary {
    border: none;
    height: 1px;
    background-color: #6c757d;
    opacity: 1;
}

/* Responsive */

@media screen and (min-width: 1200px) and (max-width: 1399px) {

    .product-section .nav-tabs .nav-link {
        padding: 8px 10px;

    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .navbar ul.navbar-nav li {
        padding: 0 2px;
    }

    .product-section .nav-tabs .nav-link {
        padding: 8px 10px;

    }
}

@media (max-width: 991px) {
    .navbar .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        top: 77px;
        width: 100%;
        background: #fff;
        z-index: 99;
        left: 0;
        padding-left: 10px;
        border-top: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .navbar .right-menus {
        align-items: center;
        margin: 0;
        display: block !important;
        padding: 0;
    }

    .product-section .owl-nav {
        position: relative !important;
        top: 0 !important;
        right: 0;
        display: flex;
        gap: 8px;
        justify-content: center !important;
        align-items: center;
    }

    #carouselTsavendingllc .carousel-caption {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -35%);
    }

    #carouselTsavendingllc .carousel-caption h2 {
        font-size: 42px;
        font-weight: bold;
        margin-bottom: 0px;
    }

}

@media (max-width: 767px) {

    #carouselTsavendingllc .carousel-caption {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -30%);
    }

    #carouselTsavendingllc .carousel-caption h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 0px;
    }

    #carouselTsavendingllc .carousel-item {
        height: 450px;
    }

    #carouselTsavendingllc .carousel-item img {
        height: 450px;
        width: 100%;
        object-fit: cover;
    }

}

/* ===== WooCommerce Product Grid Styling ===== */
ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
    padding: 0px 0 20px !important;
    flex: 1 1 calc(20% - 25px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* ===== Equal Image Height ===== */
ul.products li.product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* ===== Product Title ===== */
ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
}

/* ===== Price Styling ===== */
ul.products li.product .price {
    font-size: 1rem;
    color: #3F3024;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* ===== Add to Cart / Read More Button ===== */
ul.products li.product .button {
    background-color: #3F3024;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

ul.products li.product .button:hover {
    background-color: #6a503d;
    color: #fff;
}

/* ===== On Sale Badge ===== */
ul.products li.product .onsale {
    background: #e74c3c;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.85rem;
}

/* ===== Responsive Layout ===== */
@media (max-width: 991px) {
    ul.products li.product {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 575px) {
    ul.products li.product {
        flex: 1 1 100%;
    }
}

.breadcrumb-container {
    color: #fff;
}

.breadcrumb-container a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    color: #ddd;
    text-decoration: underline;
}

.breadcrumb-container span {
    color: #fff;
}



/* -------------------------------------------------------------------- */

