
/* IHG theme overrides */
:root {
    --bs-primary: #2a1d17;
    --bs-secondary: #c89c3b;
    --bs-dark: #1f1712;
    --bs-light: #f5efe6;
    --bs-body-color: #2b231c;
    --bs-body-bg: #fbf8f3;
}

body {
    background:
        radial-gradient(circle at 5% 0%, rgba(200, 156, 59, 0.18), transparent 32%),
        radial-gradient(circle at 100% 4%, rgba(42, 29, 23, 0.14), transparent 30%),
        var(--bs-body-bg);
}

.bg-breadcrumb {
    background: linear-gradient(rgba(42, 29, 23, 0.78), rgba(42, 29, 23, 0.72)), url(../../frontend/assets/images/jpg_optimized/IMG_2200.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-wordmark {
    height: 55.66px;
    width: auto;
    object-fit: contain;
}

.service-item {
    box-shadow: 0 12px 28px rgba(22, 16, 12, 0.12);
}

.service-item .service-title-name .bg-primary {
    background: linear-gradient(125deg, rgba(42, 29, 23, 0.94), rgba(87, 63, 44, 0.94)) !important;
}

.service-content p {
    line-height: 1.6;
}

.detail-hero img {
    max-height: 520px;
    object-fit: cover;
}

.detail-panel {
    border: 1px solid rgba(42, 29, 23, 0.08);
    border-radius: 14px;
    padding: 1.35rem;
    box-shadow: 0 10px 26px rgba(22, 16, 12, 0.08);
}

.detail-panel ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.detail-panel li {
    margin-bottom: 0.5rem;
}

.booking-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(42, 29, 23, 0.2);
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    border: 0;
    background: #f2e8db;
    color: var(--bs-primary);
    width: 42px;
    height: 42px;
    font-size: 22px;
    line-height: 1;
}

.qty-input {
    width: 72px;
    height: 42px;
    border: 0;
    text-align: center;
    font-weight: 600;
    color: var(--bs-primary);
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(42, 29, 23, 0.1);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 0.9rem;
}

.cart-item-main {
    flex: 1;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.checkout-total {
    border-top: 1px solid rgba(42, 29, 23, 0.16);
}

@media (max-width: 767.98px) {
    .cart-item-row {
        flex-direction: column;
    }

    .cart-item-actions {
        align-items: flex-start;
    }
}

.detail-gallery-item {
    appearance: none;
    width: 100%;
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #efe4d5;
    border: 1px solid rgba(42, 29, 23, 0.12);
}

.detail-gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

body.gallery-open {
    overflow: hidden;
}

.detail-gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 8, 7, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
}

.detail-gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    flex: 1;
    padding: 3.25rem 0.5rem 1rem;
}

.detail-gallery-stage img {
    width: min(1120px, 95vw);
    max-height: 68vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
}

.detail-gallery-close {
    position: absolute;
    top: 0.95rem;
    right: 1rem;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.detail-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.detail-gallery-nav-prev {
    left: 1rem;
}

.detail-gallery-nav-next {
    right: 1rem;
}

.detail-gallery-footer {
    position: relative;
    z-index: 2;
}

.detail-gallery-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 0.55rem;
    max-height: 22vh;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.detail-gallery-thumb {
    appearance: none;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.detail-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.detail-gallery-thumb.active {
    border-color: var(--bs-secondary);
}

.carousel-item img {
    min-height: 520px;
    max-height: 720px;
    object-fit: cover;
}

.footer-item a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-item a:hover {
    color: var(--bs-secondary);
}

@media (max-width: 768px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-wordmark {
        height: 38.72px;
    }

    .carousel-item img {
        min-height: 380px;
    }

    .detail-gallery-stage {
        padding-top: 4.25rem;
    }

    .detail-gallery-nav {
        width: 44px;
        height: 44px;
    }

    .detail-gallery-nav-prev {
        left: 0.6rem;
    }

    .detail-gallery-nav-next {
        right: 0.6rem;
    }

    .detail-gallery-thumb-grid {
        grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
    }
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none !important;
    box-shadow: none !important;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: none !important;
    box-shadow: none !important;
}

.btn:focus,
.btn:active,
.btn-check:focus + .btn,
.btn-check:checked + .btn,
.btn.border-secondary,
.btn.btn-primary.border-secondary {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

.offer-topbar {
    height: 30px;
    background: #1c130f;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1035;
}

.offer-track {
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    animation: offer-scroll 24s linear infinite;
}

.offer-track span {
    display: inline-flex;
    align-items: center;
}

.offer-track span::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--bs-secondary);
    margin-left: 2.4rem;
}

@keyframes offer-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    color: #6b4a2b;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 6px;
        min-width: 220px;
        padding: 8px 0;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    color: #4a2f1b;
    font-size: 15px;
    padding: 10px 16px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 33.25px 0;
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 19px 0;
    }

    .navbar-light .navbar-brand img {
        max-height: 57px;
    }

    .sticky-top .navbar-light .navbar-brand img {
        max-height: 42.75px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 15.3px;
    }

    .navbar .dropdown-toggle::after {
        font-size: 9.9px;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header {
    height: 100vh;
    min-height: 700px;
}

.carousel-header #carouselId,
.carousel-header .carousel-inner {
    height: 100%;
    min-height: inherit;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-color: var(--bs-secondary) !important;
    background-size: 60% 60%;
    border: none !important;
    box-shadow: none !important;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    height: 100%;
    min-height: inherit;
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
        min-height: 700px;
    }

    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        display: none !important;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        align-items: flex-start;
        padding-top: 5.5rem;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption .display-1 {
        margin-top: 0 !important;
    }
}
/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: visible;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(22, 16, 12, 0.12);
}

.service .service-item .service-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service .service-item .service-inner .service-content .service-content-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 230px;
}

.service .service-item .service-inner .service-content .service-content-body .service-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.service .service-item .service-inner .service-content .service-content-body p {
    width: 100%;
    text-align: center;
}

.service .service-item .service-inner .service-content .service-summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: 0;
    text-align: center;
    transition: none;
    z-index: 2;
}

.service .service-item .service-inner .service-title .service-content {
    position: static;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    border-radius: 0 0 12px 12px;
    background: var(--bs-primary);
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    transition: none;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    position: relative;
    z-index: 3;
    transition: none;
}

.service .service-item .service-inner .service-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 12px 12px 0 0;
    background: #f0e8dd;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 0;
    opacity: 0;
}

.service .service-item .service-inner .service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
}

.service .service-item:hover .service-inner .service-img img {
    transform: none;
}

@media (min-width: 992px) {
    .service .service-item {
        height: 640px;
    }
}

@media (max-width: 991.98px) {
    .service .service-item {
        height: auto;
    }
}
/*** Service End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact .row .d-flex {
    align-items: flex-start;
}

.contact .row .d-flex .ps-3 {
    min-width: 0;
}

.contact .row .d-flex .ps-3 a {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
}

.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/

/* Frontend-matched header/navbar */
.nav-bar {
    position: relative;
    z-index: 1040;
    background: rgba(42, 29, 23, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.nav-bar.sticky-top {
    top: 30px;
    z-index: 1030;
}

.nav-bar .navbar {
    background: transparent !important;
    min-height: 96px;
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
}

.nav-bar .navbar .dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    margin-left: 0.4rem;
    font-size: 0.74rem;
    color: #ffffff;
    opacity: 0.95;
    vertical-align: 0.08em;
}

.nav-bar .dropdown {
    position: relative;
}

.nav-bar .navbar-light .navbar-nav .nav-link::before,
.nav-bar .navbar-light .navbar-nav .nav-link::after {
    content: none !important;
    display: none !important;
}

.nav-bar .navbar-light .navbar-nav .dropdown-toggle::after {
    content: "\f078" !important;
    display: inline-block !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
    margin-left: 0.4rem;
    margin-right: 0;
    font-size: 0.74rem;
    color: #ffffff;
    opacity: 0.95;
    vertical-align: 0.08em;
}

.nav-bar .navbar-light .navbar-nav .dropdown-toggle:hover::after,
.nav-bar .navbar-light .navbar-nav .dropdown-toggle:focus::after,
.nav-bar .navbar-light .nav-item.show > .dropdown-toggle::after {
    background: transparent !important;
}

.nav-bar .navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    margin-right: 0.35rem;
}

.nav-bar .navbar-light .navbar-nav .nav-link:hover,
.nav-bar .navbar-light .navbar-nav .nav-link.active,
.nav-bar .navbar-light .nav-item.show > .nav-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16);
}

.nav-bar .navbar-light .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff;
}

.nav-bar .navbar-light .navbar-toggler .fa-bars {
    color: #ffffff;
}

.nav-bar .dropdown .dropdown-menu {
    background: #f7efe5 !important;
    border: 1px solid rgba(74, 47, 27, 0.18);
    border-radius: 6px;
    min-width: 230px;
    padding: 0.45rem;
    z-index: 1060;
}

.nav-bar .dropdown .dropdown-item {
    color: #4a2f1b;
    border-radius: 4px;
    font-size: 0.97rem;
    padding: 0.52rem 0.8rem;
}

.nav-bar .dropdown .dropdown-item:hover,
.nav-bar .dropdown .dropdown-item:focus {
    background: rgba(74, 47, 27, 0.12);
    color: #4a2f1b;
}

.nav-bar .btn.btn-primary {
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-bar .header-cart-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-bar .header-cart-btn:hover,
.nav-bar .header-cart-btn:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.header-cart-count {
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--bs-secondary);
    color: #2a1d17;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.carousel-header {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        min-height: 84px;
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
    }
}