:root {
    /* Colors */
    --primary-bg: #9E6747;
    --primary-color: #9E6747;
    --secondary-bg: #6e4630;
    --secondary-color: #6e4630;
    --accent-color: #f5a623;
    --bg-color: #ffffff;
    --text-color: #111;
    --muted-text-color: #777;
    --bs-green: #3ba574;
    /* Font */
    --font-primary: "Dosis", sans-serif;
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
    color: #000;
}

.bg-theme-primary {
    background-color: var(--primary-bg);
}

.border-theme-primary {
    border-color: var(--primary-color);
}

.bg-theme-secondary {
    background-color: var(--secondary-bg);
}

.text-custom {
    color: var(--primary-color);
}

.bg-theme-light {
    background-color: #e2cea1;
}

.bg-theme-light-2 {
    background-color: #FAF7F2;
}
.bg-theme-light-3 {
    background-color: #F6F0E6;
}

.bg-theme-black {
    background-color: #545554;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: #545554;
}

.top-strip{
    background-color: #ddd5d0;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    /* White text for contrast */
    border-color: var(--primary-color);
    /* Border matches background */
}

.bg-primary-subtle-custom {
    background-color: var(--primary-color);
    /* For text color on this subtle background, you typically want a darker version of the primary color */
    color: white;
}

.wt-search {
    width: 580px !important;
}

.social-box {
    width: 33px;
    height: 33px;
    text-align: center;
}

.fb-bg {
    background-color: #4c679e;
}

.insta-bg {
    background-color: #db3991;
}

.header-menu .nav-item:hover .dropdown-menu {
    display: block;
}

.header-menu .dropdown-menu {
    width: 100vw;
    left: 0;
    right: 0;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header-menu .navbar-nav .nav-item .nav-link:hover {
    background-color: var(--primary-bg);
    color: #fff !important;
}

.scroll-hidden,
.scroll-set {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.fs-22 {
    font-size: 22px;
}

.fs-23 {
    font-size: 23px;
}

.fs-24 {
    font-size: 24px;
}

.fs-25 {
    font-size: 25px;
}

.fs-26 {
    font-size: 26px;
}

.fs-27 {
    font-size: 27px;
}

.fs-28 {
    font-size: 28px;
}

.fs-29 {
    font-size: 29px;
}

.fs-30 {
    font-size: 30px;
}

.cat-box {
    background-color: #f3f6f9;
    height: 130px;
    width: 155px;
    transition: 0.5s;
}

.cat-box:hover {
    box-shadow: 0 10px 10px -10px #d5d5d5;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .cat-box {
        background-color: #f3f6f9;
        height: 80px !important;
        width: 100px !important;
        transition: 0.5s;
    }
    .cat-box img {
        width: 70px !important;
    }
    .cat-box p {
        font-size: 15px !important;
    }
    .pt-cat-box {
        padding-top: 60px !important;
    }
}

.pt-cat-box {
    padding-top: 85px;
}


/* Mega Menu Style */

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    /* Start with a slightly smaller size */
    transition: all 0.4s ease-in-out;
    /* Smooth transition for all properties */
}


/* Mega Menu visible on hover with smooth transition */

.nav-item:hover .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    /* Scale up to full size when menu is visible */
    background-color: #FAF7F2;
}

.header-menu .navbar-nav .nav-item .nav-link {
    position: relative;
    /* Essential for positioning the pseudo-element */
    display: inline-block;
    /* Or block, depending on your layout, but inline-block works well for text */
    color: #fff;
    /* Keep text color white */
    text-decoration: none;
    /* Remove default underline from links if any */
}

.header-menu .navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    /* Initially hidden */
    height: 2px;
    /* Thickness of the line */
    background-color: white;
    /* The color of your underline */
    bottom: 0;
    /* Position at the bottom of the link */
    left: 0;
    /* Start from the left */
    transition: width 0.3s ease-out;
    /* Smooth transition for width */
}

.header-menu .navbar-nav .nav-item:hover .nav-link::after {
    width: 100%;
    /* Expand to full width on hover */
}


/* Optional: If you want the text color to also change on hover */

.header-menu .navbar-nav .nav-item:hover .nav-link {
    color: #AD8846;
    /* Change text color to match line */
    transition: color 0.3s ease-out;
    /* Smooth transition for text color */
}


/* Hover effect on the nav item and mega menu open state */


/* .header-menu .navbar-nav .nav-item:hover .nav-link,
.header-menu .navbar-nav .nav-item:hover {
    background-color: #7a6846;
    color: #fff !important;
} */


/* Optional: Additional styling for the mega menu content */

.mega-menu .row {
    display: flex;
    justify-content: space-between;
}

.mega-menu h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.mega-menu ul {
    list-style-type: none;
    padding-left: 0;
}

.mega-menu ul li {
    margin-bottom: 5px;
}

.mega-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}


/* Hover effect for links */

.header-menu .mega-menu ul li a:hover {
    color: var(--primary-color) !important;
    /* Change the color on hover */
    background-color: transparent !important;
    text-decoration: underline;
}


/* Make sure the mega menu stays in place */

.nav-item {
    position: relative;
}


/* Optional: If you want to visually highlight the active nav item */

.nav-item:hover .nav-link {
    background-color: var(--primary-bg);
    color: #fff !important;
}

.pro-card:hover .pro-title {
    color: var(--primary-bg) !important;
}

.bg-dark-2 {
    background-color: #912b7d;
}

.bg-dark-3 {
    background-color: #458dbb;
}


/* Hide navigation buttons initially */

.pro-slider {
    position: absolute;
    top: -25%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    /* Prevents interference with clicks */
    transition: opacity 0.3s ease-in-out;
    background: #dc3545 !important;
    color: #fff;
    border-radius: 50%;
}


/* Style for left & right buttons */

.pro-slider .owl-prev,
.pro-slider .owl-next {
    border: none;
    background: gray !important;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    pointer-events: auto;
    /* Enable button clicks */
}


/* Adjust positioning */

.pro-slider .owl-prev {
    position: absolute;
    right: 45px;
    /* Moves outside the carousel */
}

.pro-slider .owl-next {
    position: absolute;
    right: -25px;
    /* Moves outside the carousel */
    margin-right: 24px !important;
}

@media (max-width: 575.98px) {
    .pro-slider {
        position: absolute;
        top: -40%;
    }
    /* Adjust positioning */
    .pro-slider .owl-prev {
        position: absolute;
        right: 35px;
        /* Moves outside the carousel */
    }
    .pro-slider .owl-next {
        position: absolute;
        right: 2px;
        /* Moves outside the carousel */
        margin-right: 2px !important;
    }
    .pro-slider .owl-prev,
    .pro-slider .owl-next {
        width: 30px;
        height: 30px;
    }
}

.swiper-custom {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.myModalSwiper2 {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    /* background-color:rgb(146, 146, 146);
    border-radius: 6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 35px !important;
    height: 35px !important; */
    color: #000 !important;
}

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffc107;
    /* Gold color for filled stars */
}

.star-rating .bi {
    font-size: 1.1rem;
}

.star-rating .bi.inactive {
    color: #e4e5e9;
    /* Light grey for empty stars */
}

.rating-text {
    margin-left: 8px;
    font-size: 0.95rem;
    color: #555;
}
.bi-cart-x{
    color: var(--primary-color);
}
.quantity-input {
    width: 60px;
    text-align: center;
}

.btn-animated {
    animation: bounceWave 1.8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes bounceWave {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05) translateY(-2px);
    }
    50% {
        transform: scale(0.97) translateY(1px);
    }
    75% {
        transform: scale(1.02) translateY(-1px);
    }
}

.recommend-sec .accordion-button::after {
    filter: brightness(0) invert(1);
    /* Turns default black icon white */
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
}

.buy-now-btn {
    padding: 2px 8px;
    font-size: 14px;
    float: right;
    background-color: var(--primary-color);
    color: white
}

.buy-now-btn:hover {
    background-color: #7a6846;
    color: #fff;
}

.custom-breadcrumb {
    --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='white'/%3E%3C/svg%3E");
    font-size: 1rem;
    color: white;
}

.custom-breadcrumb .breadcrumb-item a,
.custom-breadcrumb .breadcrumb-item.active {
    color: white;
}


/* Hide scrollbars on mobile */

#sidebarScroll::-webkit-scrollbar {
    display: none;
}

#sidebarScroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.sidebar {
    width: 260px;
    min-height: 75vh;
    background-color: var(--primary-color);
    color: #fff;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.scroll-btn {
    width: 40px;
    height: 52px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 767.98px) {
    .row>* {
        padding-left: 0%;
        padding-right: 0%
    }
    .sidebar {
        width: 100%;
        min-height: 10vh !important;
        background-color: var(--bs-green);
        border-radius: 0;
        white-space: nowrap;
    }
    #sidebarScroll .nav-link {
        font-size: 14px;
        min-width: max-content;
    }
    .bg_faqs {
        min-height: 200px;
    }
    .accordion-button {
        font-size: 0.88rem;
    }
}

.forgot-card {
    background-color: rgb(179, 224, 204);
}

.text-success-custom {
    color: #198754;
}

.btn-forgot {
    background-color: rgb(179, 224, 204);
    color: #000;
}

.btn-forgot:hover {
    background-color: #198754;
    color: #fff;
}

.details-img {
    max-height: 400px;
}

.bg_faqs {
    background: url("https://justvape365.co.uk/wp-content/uploads/2023/06/image-3.png") no-repeat center center;
    min-height: 400px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

.accordion-button {
    font-size: 1.3rem;
}

.card-toggle .nav-link:hover {
    background-color: var(--secondary-color);
    color: whtie !important;
}

.card-toggle .nav-link.active {
    background-color: var(--secondary-color);
    color: white;
}

.card-toggle .nav-link {
    border: 1px solid var(--secondary-color);
    color: var(--primary-color);
}

.benefit-icon {
    color: black;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.btn-login {
    background-color: var(--primary-bg);
    color: white;
}

.btn-login:hover {
    background-color: var(--secondary-color);
    color: white;
}

.full-bg {
    background-image: url('lib/img/banner/bg-login.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 576px) {
    .vh-100-lg {
        height: 100vh !important;
    }
    .rounded-cs {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }
}

@media (max-width: 576px) {
    .rounded-cs {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }
}