/* Inter Font Family */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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');


/* Jost Font Family */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/*===== Variable CSS =====*/
:root {
    /* Colors */
    --body-color: #fff8e1;
    --primary-color: #B1915D;
    --primary-color-alt: #7c6e41;
    --secondary-color: #fff8e1;
    --secondary-color-alt: #fff1c2;
    --white-color: #fff8e1;
    --black-color: #000000;

    --primary-text-color: #B1915D;
    --text-color-white: #fff8e1;
    --text-color-black: #000000;
    --text-color-gray: hsl(0, 0%, 30%);

    --container-color: hsl(0, 0%, 93%);
    --border-color: #B1915D;
    --border-color-alt: hsl(113, 15%, 90%);

    /* Font and Typography */
    /*--primary-font: "Poppins", sans-serif;*/
    --primary-font: "Jost", sans-serif;
    --second-font: "Montserrat", sans-serif;
    --second-font-alt: "Inter", sans-serif;

    --big-font-size: 3.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.75rem;
    --h3-font-size: 1.75rem;
    /*--h4-font-size: 1.375rem;*/
    --h4-font-size: 1.563rem;
    --large-font-size: 1.125rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    --tiny-font-size: 0.6875rem;

    /* Font Weight */
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;

    /* Transitions*/
    --transition: cubic-bezier(0, 0, 0.05, 1);
}

/* ========= Base ========= */
input,
textarea,
body {
    color: var(--black-color);
    font-family: var(--primary-font);
    font-size: var(--normal-font-size);
    font-weight: var(--weight-400);
}

body {
    background-color: var(--body-color);
}

nav {
    background-color: var(--primary-color);
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--weight-700);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--weight-600);
    line-height: 3.5rem;
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--weight-600);
    line-height: 2rem;
}

h6 {
    font-size: var(--normal-font-size);
    font-weight: var(--weight-500);
    line-height: 1.5rem;
    color: var(--primary-color);
}

p {
    color: var(--text-color-gray);
    font-size: var(--large-font-size);
    font-weight: var(--weight-400);
    line-height: 1.7rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    line-height: 1.7rem;
    color: var(--primary-color);
}

img {
    max-width: 100%;
}

button {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    font-size: var(--large-font-size);
    border: 2px solid transparent;
    outline: none !important;
    padding: 8px 18px;

    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

button:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    transform: scale(1.1);
}

button.button-reverse {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

button.button-reverse:hover {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border: 2px solid var(--primary-color);
}

.form-control {
    border: 1px solid var(--primary-color);
    background-color: var(--secondary-color-alt);
}

.form-control::placeholder {
    color: #868686;
}

.table td,
.table th {
    background-color: var(--body-color);
}

/* ========= Re-Usable CSS ========= */
.wellness-h4 {
    font-size: var(--h4-font-size);
}

.wellness-text-primary {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: var(--weight-500);
}

.dropdown-menu[data-bs-popper] {
    left: auto;
}

.dropdown-menu li {
    border-bottom: 1px solid white;
}

.dropdown-menu li:last-child {
    border-bottom: 0px;
}

.dropdown-menu li a {
    color: var(--white-color);
}

.nav-item:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
    /* Adjust this if needed */
}

.heading-title span {
    color: var(--primary-color);
}

.section__title {
    color: var(--primary-text-color);
    font-size: var(--normal-font-size);
}

.page-header-bg-banner {
    background-size: cover;
    background-position: center center;

}

.page-banner-content {
    height: 380px;
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
}

.new__price {
    color: var(--primary-color);
    font-weight: var(--weight-600);
}

.old__price {
    color: var(--text-color-white);
    font-size: var(--small-font-size);
    text-decoration: line-through;
}


.laravel-db-pagination nav {
    background-color: transparent;
}

.pagination .page-item {
    margin-left: 7px;
}

.pagination .page-item a {
    padding: .85rem 1.2rem;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.pagination .page-item.active .page-link,
.pagination .page-item.disabled .page-link {
    padding: .85rem 1.2rem;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.icons-custom-design {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--weight-400);
    background-color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 50px;
    margin: 12px;
}

/*Concerns Logo Carousal CSS */
.concerns-brand-item {
    border: 1px solid var(--primary-color);
    margin-right: 15px;
}

.concerns-brand-item img {
    height: 130px;
}

/* ========= Header CSS ========= */
.offcanvas {
    background-color: var(--primary-color);
}

.page-header .page-title {
    font-weight: 900;
    font-size: 4rem;
}

.page-header.breadcrumb-wrap {
    padding: .5rem;
    background-color: var(--secondary-color-alt);
}

.page-header.breadcrumb-wrap a {
    color: #000;
}

.page-header .breadcrumb {
    display: inline-block;
    padding: 0;
    text-transform: capitalize;
    color: #6e6e6e;
    font-size: 0.875rem;
    background: none;
    margin: 0;
    border-radius: 0;
}

.page-header .breadcrumb span {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.header__action-btn {
    position: relative;
}

.header__action-btn .count {
    position: absolute;
    top: 0.3rem;
    right: -0.3rem;
    color: var(--primary-color);
    background-color: var(--body-color);
    width: 18px;
    height: 18px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: var(--smaller-font-size);
}

/* ========= Header CSS End ========= */

/* ========= Slick Slider ========= */
.slick-dots {
    bottom: 35px;
}

.slick-dots ul li {
    margin: 0 7px;
}

.slick-dots li button {
    background-color: var(--body-color);
    border-radius: 15px;
}

.slick-dots li.slick-active button {
    background-color: var(--primary-color);
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    color: transparent;
}

/* ========= Preloader CSS ========= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #142718;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s linear;
}

.loader {
    transform: scale(1);
    transition: transform 1s ease-in;
    width: 180px;
    height: 180px;
    animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}


@keyframes zoom-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    99% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        display: none;
    }
}

.center {
    width: 300px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave {
    width: 5px;
    height: 100px;
    background: linear-gradient(45deg, cyan, #fff);
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}

.wave:nth-child(2) {
    animation-delay: 0.1s;
}

.wave:nth-child(3) {
    animation-delay: 0.2s;
}

.wave:nth-child(4) {
    animation-delay: 0.3s;
}

.wave:nth-child(5) {
    animation-delay: 0.4s;
}

.wave:nth-child(6) {
    animation-delay: 0.5s;
}

.wave:nth-child(7) {
    animation-delay: 0.6s;
}

.wave:nth-child(8) {
    animation-delay: 0.7s;
}

.wave:nth-child(9) {
    animation-delay: 0.8s;
}

.wave:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes wave {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

/* ========= Preloader CSS ========= */


/* ========= Home CSS Start ========= */

/* Slick Slider */

.slick-prev {
    display: none;
}

.slick-next {
    right: 25px;
}

.slick-next:before {
    color: transparent;
}

.hero__slider .swiper-slide,
.home-hero-slide {
    height: 90vh;
    position: relative;
}

.hero__slider .swiper-slide::before,
.home-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.slide__content {
    color: var(--text-color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide__content h2 {
    font-size: 60px;
}

.accordion-button {
    font-size: var(--large-font-size);
}

.accordion-button {
    font-size: var(--large-font-size);
    font-weight: var(--weight-600);
}

.accordion-button i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: var(--h4-font-size);
}

/*Our Concern */
.our-concern .item-img {
    max-width: 100%;
    min-width: 100%;
    max-height: 150px;
    min-height: 150px;
    object-fit: cover;
}

/* Discount Banner */
.discount-banner .container {
    background-color: var(--primary-color);
}

/* Insights Section */
#insights .accordion button:hover {
    transform: none;
    border: 0;
}

.video-overlay {
    position: relative;
}

.video-overlay-img {
    background-color: rgba(0, 0, 0, 0.7);
}

.pulse-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    animation: pulse 1.7s infinite;
}

.pulse-button:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 0;
    transform: translate(-50%, -50%) scale(1);
}

.pulse-play-icon {
    font-size: var(--h3-font-size);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 248, 225, 0.6);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 248, 225, 0.4);
    }

    100% {
        box-shadow: 0 0 0 40px rgba(255, 248, 225, 0.2);
    }
}

/* ========= Home CSS End ========= */

/* ========= Products ========= */
.tab__btns {
    display: flex;
    column-gap: .75rem;
    margin-bottom: 2rem;
}

.tab__btn {
    background-color: var(--container-color);
    color: var(--title-color);
    padding: 1rem 1.25rem 0.875rem;
    border-radius: .25rem;
    font-family: var(--second-font);
    font-size: var(--small-font-size);
    font-weight: var(--weight-600);
    cursor: pointer;
}

.product__item {
    border: 1px solid var(--border-color);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all .2s var(--transition);
}

.product__images,
.product__banner {
    position: relative;
}

.product__images {
    display: block;
    overflow: hidden;
}

.product__img {
    height: 370px;
    object-fit: cover;
    vertical-align: middle;
    transition: all 1.5s var(--transition);
}

.product__item:hover .product__img {
    transform: scale(1.1);
}

.product__img.hover {
    position: absolute;
    top: 0;
    left: 0;
}

.product__actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    column-gap: 0.5rem;
    transition: all .2s var(--transition);
}

.action__btn {
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary-color-alt);
    border: 1px solid var(--border-color);
    color: var(--white-color);
    font-size: var(--small-font-size);
    position: relative;
}

.action__btn::before,
.action__btn::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.action__btn::before {
    content: '';
    top: -2px;
    border: .5rem solid transparent;
    border-top-color: var(--primary-color);
}

.action__btn::after {
    content: attr(aria-label);
    bottom: 100%;
    background-color: var(--primary-color);
    color: var(--body-color);
    font-size: var(--small-font-size);
    font-weight: var(--weight-500);
    white-space: nowrap;
    padding-inline: 0.625rem;
    border-radius: 0.25rem;
    line-height: 2.58;
}

.product__badge {
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    background-color: var(--primary-color);
    color: var(--body-color);
    padding: .25rem 0.625rem;
    border-radius: 2.5rem;
    font-size: var(--tiny-font-size);
}

.product__badge.body-color-badge {
    color: var(--black-color);
    background-color: var(--body-color);
}

.product__badge.primary-color-badge {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.product__badge.light-green {
    background-color: hsl(155, 20%, 67%);
}

.product__badge.light-orange {
    background-color: hsl(24, 100%, 73%);
}

.product__badge.light-blue {
    background-color: hsl(202, 53%, 76%);
}

.product__content {
    padding: 0 1.25rem 1.125rem;
    position: relative;
}

.product__category {
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
}

.product__title {
    margin-block: .75rem .5rem;
}

.product__rating {
    color: hsl(42, 100%, 50%);
    font-size: var(--smaller-font-size);
    margin-bottom: .75rem;
}

.product__price .new__price {
    font-size: var(--large-font-size);
}

.cart__btn {
    position: absolute;
    bottom: 1.6rem;
    right: 1.25rem;
}

/* Active Tab */
.tab__btn.active-tab {
    color: var(--primary-color);
    background-color: var(--second-color);
}

.tab__item:not(.active-tab) {
    display: none;
}

/* ========= Products Hover ========= */
.product__img.hover,
.product__actions,
.action__btn::before,
.action__btn::after,
.product__item:hover .product__img.default {
    opacity: 0;
}

.product__item:hover {
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
}

.product__item:hover .product__img.hover,
.product__item:hover .product__actions,
.action__btn:hover::before,
.action__btn:hover::after {
    opacity: 1;
}

.action__btn:hover::before,
.action__btn:hover::after {
    transform: translateX(-50%) translateY(-0.5rem);
}

.action__btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--body-color);
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input[type="radio"] {
    display: none;
    /* Hide the radio buttons */
}

.rating label {
    font-size: 30px;
    color: #ccc;
    /* Default color for stars */
    cursor: pointer;
}

/* Hover effect for all stars before the current star */
.rating label:hover,
.rating label:hover~label {
    color: #FFD700;
    /* Highlight color for stars */
}

/* Keep the selected stars highlighted */
.rating input[type="radio"]:checked~label {
    color: #FFD700;
}


/* ========= Products End ========= */

/* ========= Product Details Start ========= */
input.qty {
    width: 80px;
    text-align: center;
    padding: 8px 12px;
    background-color: var(--secondary-color-alt);
    border: 1px solid var(--primary-color);
}

#single-product-details-tab nav {
    background-color: transparent;

}

#single-product-details-tab nav button.nav-link {
    background-color: transparent;
    color: var(--primary-color);
    font-size: var(--large-font-size);
    border-radius: 0;
    outline: none !important;
    padding: 8px 18px;
    margin-right: 15px !important;
}

#single-product-details-tab nav button.nav-link.active {
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid var(--primary-color);
}

#single-product-details-tab table td {
    background-color: transparent;
}

.product-thumbnail-nav-item {
    margin-right: 8px;
}

.product-thumbnail-nav-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ========= Product Details End ========= */


/* ========= Blogs ========= */
.blog__item {
    transition: all .2s var(--transition);
}

.blog__banner {
    margin-bottom: -12px;
}

.blog__images,
.blog__banner {
    position: relative;
}

.blog__images {
    display: block;
    overflow: hidden;
}

.blog__img {
    vertical-align: middle;
    transition: all 1.5s var(--transition);
}

.blog__item:hover .blog__img {
    transform: scale(1.1);
}

.blog__img.hover {
    position: absolute;
    top: 0;
    left: 0;
}

.blog__actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    column-gap: 0.5rem;
    transition: all .2s var(--transition);
}

.blog__badge {
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    background-color: var(--primary-color);
    color: var(--text-color-white);
    padding: .25rem 0.625rem;
    border-radius: 2.5rem;
    font-size: var(--tiny-font-size);
}

.blog__content {
    border: 1px solid var(--primary-color);
    border-top: 0;
    padding: 8px;
}

.blog__info span {
    font-size: var(--smaller-font-size);
}

.popular-tags a {
    border: 1px solid var(--primary-color);
}

/* ========= Blog Details CSS Start ========= */
.blog__details-banner img {
    height: 550px;
}

.recent-blog__banner {
    width: 120px;
}

.blog__details-banner {
    background-size: cover;
}

.recent__post-content-meta span {
    font-size: var(--tiny-font-size);
}

.recent__post-content-description {
    font-size: var(--small-font-size);
}

.category__list-item {
    margin-bottom: 5px;
}

#social-links ul {
    display: flex;
}

#social-links ul li {
    margin-right: 15px;
    font-size: 25px;
}

/* ========= Blog Details CSS End ========= */

/* ========= Venture Business CSS Start ========= */
.video-bg {
    height: 95vh;
    position: relative;
}

.venture-business-header video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
}

.video-bg-content {
    width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
    top: 40%;
    color: #fff;
    z-index: 2;
}

/* ========= Venture Business CSS End ========= */


/* ========= Restaurant Menu CSS Start ========= */
.restaurant-menu-gallery div {
    z-index: 3;
}

/* ========= Restaurant Menu CSS End ========= */



/* ========= Footer CSS Start ========= */
.newsletter {
    background-color: var(--primary-color);
}

footer h4,
footer a,
footer p,
footer i {
    color: var(--primary-color);
}

/* ========= Footer CSS End ========= */

/* ========= Customer Dashboard CSS End ========= */
#customer-dashboard button {
    text-align: left;
    color: var(--primary-color);
    background-color: var(--body-color);
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 0;
}

#customer-dashboard button.active {
    text-align: left;
    color: var(--body-color);
    background-color: var(--primary-color);
}

/* ========= Customer Dashboard CSS End ========= */

#scrollUp {
    bottom: 30px;
    right: 30px;
    padding: 6px 10px;
    border-radius: 10px;
    background-color: #B1915D;
    color: #fff;
}

#scrollUp i {
    font-size: var(--h3-font-size);
}

/* ========= Small devices (landscape phones, 576px and up) ========= */
@media only screen and (max-width: 576px) {

    h1,
    h2 {
        font-size: var(--h3-font-size);
    }

    h2 {
        line-height: 2.5rem;
    }

    p {
        font-size: var(--normal-font-size);
    }

    #heroSlider button {
        margin-bottom: 10px;
        width: 100%;
    }

    #heroSlider .slider-button-group {
        display: flex;
        justify-content: space-evenly;
    }

    #heroSlider .slider-button-group button {
        font-size: var(--small-font-size);
        padding: 8px 14px;
    }

    /* ========= Home ========= */
    .hero__slider .swiper-slide,
    .home-hero-slide {
        height: 480px;
    }

    .slide__content {
        width: 80%;
    }

    .slide__content h2 {
        font-size: 30px;
    }

    .slide__content p {
        font-size: var(--normal-font-size);
    }

    /*Product Details Page */

    #single-product-details-tab nav button.nav-link {
        width: 100%;
    }

}



/*  Additional deasing */

.timeline {
    position: relative;
    border-left: 4px solid #92400e;
    margin-left: 1rem;
}

.timeline-dot {
    position: absolute;
    left: -10px;
    width: 16px;
    height: 16px;
    background-color: #92400e;
    border-radius: 50%;
}

.timeline-year {
    color: #92400e;
    font-weight: 600;
}



.brand-title {
    color: #78350f;
}

.card-accent {
    border-top: 4px solid #92400e;
}
