:root {
    --luxury-color: #870200;
    --luxury-color-dark: #360505;
}

.mobile-navbar-divider {
    display: none;
}

.expired-ribbon {
    z-index: 10;
}

.bg-luxury {
    background-color: var(--luxury-color) !important;
}

.bg-luxury-dark {
    background-color: var(--luxury-color-dark) !important;
}

/* Custom Header Top */

.luxury-header .header-top,
.luxury-header .header-top-first-column,
.luxury-header .header-middle,
.luxury-header .header-top-second-column {
    background-color: var(--luxury-color-dark) !important;
    color: white;
}

.header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    background-color: #eaebef;
}

.header-top-first-column {
    width: 100%;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 5%;
}

.header-top-second-column {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 5%;
}

.header-vertical-line {
    border-right: 1px solid black;
    height: 14px;
    margin-right: 10px;
}

.header-top-second-column a:nth-of-type(1) {
    padding: 1rem;
    font-size: 1rem;
    background-color: #343a40;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.header-top-second-column a:nth-of-type(2) {
    color: inherit;
    margin-left: 3%;
    font-size: 1.2rem;
}

.header-top-second-column a:nth-of-type(3) {
    color: inherit;
    margin-left: 3%;
    font-size: 1.2rem;
}

.luxury-header .header-top-first-column,
.header-middle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 6px 1rem;
    width: 100%;
    background-color: #fcfdff;
}

.header-middle-first-column {
    width: 30%;
    margin-left: 5%;
}

.header-middle-first-column>a {
    display: inline-block;
}

.header-middle-first-column>a>img {
    max-width: 70%;
    height: auto;
    display: block;
}

.header-middle-second-column {
    width: 100%;
}

.header-middle-second-column form fieldset {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-middle-second-column form fieldset input {
    width: 80%;
    padding: 1.8rem 1rem;
    font-size: 14px;
    border: 1px solid rgb(158, 158, 158)
}

.header-middle-second-column form fieldset input::placeholder {
    font-size: 14px;
}

.header-middle-second-column form fieldset button {
    width: 15%;
    font-size: 18px;
}

.header-middle-third-column {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 5%;
}

.header-middle-third-column-currency>a:first-of-type {
    background-color: white;
    color: #CFCFCF;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}


.header-middle-third-column-currency-dropdown {
    height: 300px;
    overflow-y: scroll;
}

.header-middle-third-column-currency-dropdown>a {
    color: #CFCFCF;
    font-weight: 600;
}

#footer ch3 {
    letter-spacing: 0px;
    margin-bottom: 15px;
}

.footer-area {
    font-size: 1rem;
}

.header-middle-third-column-travel-deals-button {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 3%;
}

.header-middle-third-column-travel-deals-button:hover {
    background-color: #226732;
    text-decoration: none;
    color: white
}

.header-middle-third-column-free-samples-button {
    padding: 0.8rem 1rem;
    background-color: #ffc107;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 3%;
}

.header-middle-third-column-free-samples-button:hover {
    text-decoration: none;
    color: white
}

/* Custom Header Navbar */

.header-navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #131313;
}

.header-navbar-only-column {
    color: white;
    width: 100%;
    font-size: 1.7rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Add position relative here */
}

.header-navbar-only-column>a {
    font-family: sans-serif;
    color: #fff;
    padding: 1.3rem 3rem;
    transition: .25s linear;
}

.header-navbar-dropdown {
    color: #fff;
    padding: 1.8rem 3rem;
    transition: .25s linear;
    position: relative;
}


.header-navbar-dropdown>a {
    color: #fff;
    font-weight: bold;
    font-family: sans-serif;
}

.header-navbar-dropdown:hover {
    color: white;
    text-decoration: none;
}

.luxury-text {
    z-index: 99;
    font-weight: 900;
    font-size: 20px;
    background-image: linear-gradient(180deg, rgba(167, 11, 11, 1) 45%, rgba(227, 82, 82, 1) 50%, rgba(167, 11, 11, 1) 57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-navbar-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #131313;
    min-width: 160px;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.header-navbar-dropdown:hover .header-navbar-content {
    display: block;
}

.header-navbar-content a {
    color: #fff;
    padding: 12px 16px;
    display: block;
}

.header-navbar-content a:hover {
    color: white;
    text-decoration: none;
}

.navbar-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: 1px solid black;
    color: #000000;
    cursor: pointer;
    padding: 0.2rem 1rem;
}

.travel-deals-button-mobile {
    display: none;
}

.free-sample-button-mobile {
    display: none;
}

.mobile-navbar-container {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 1s ease, max-height 0.7s ease;
}

.mobile-navbar-container.visible {
    opacity: 1;
    max-height: 900px;
}

.mobile-navbar-container.hidden {
    opacity: 0;
    max-height: 0;
}


.sticky-header {
    width: 100%;
    height: max-content;
    position: fixed !important;
    top: -124px;
    left: 0;
    transition: top 0.5s ease;
    z-index: 999;
}

.sticky-header.visible {
    top: 0;
}

.sticky-mobile-header {
    width: 100%;
    height: max-content;
    position: fixed !important;
    top: -100px;
    left: 0;
    transition: top 0.5s ease;
    z-index: 999;
}

.sticky-mobile-header.visible {
    top: 0;
}

/* Home Page HeroSection Background Image */
.homepage-herosection {
    background-image: url('/assets/img/img01.jpg');
}

.join-community-button-container {
    display: flex;
    justify-content: center;

}

.join-community-button {
    display: inline-block;
    /* Ensure it scales as a block */
    transition: transform 0.3s ease-in-out;
    /* Smooth scaling */
}

.join-community-button:hover {
    transform: scale(1.1);
}


/* Brand Page */
.brand-page-header-text {
    font-size: 14px;
}

.brand-page-title-img-card {
    width: 100% !important;
    padding: 10px !important;
}

.brand-page-title-img-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

.brand-page-discounts-section-select {
    padding: 5px;
    font-size: 14px;
    margin-left: 3px;
}


.login-btn-sm {
    display: none;
}

.profile-sm {
    margin-left: 20px;
    display: inline-block;
}

.extension-button {
    margin: 20px 0;
}

.extension-text {
    color: white;
    font-weight: bold;
}

.extension-image {
    width: 30px;
    cursor: pointer;
    background-color: #888888;
    border-radius: 15px;
}

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background-color: #a8bbbf;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

/* Mobile (phones, portrait and landscape) */
@media only screen and (max-width: 767px) {
    .mobile-navbar-divider {
        display: block;
        border: 1px solid rgb(94, 94, 94)
    }

    .header-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-top-first-column {
        width: 100%;
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        margin-left: 0%;
    }

    .header-top-second-column {
        margin-top: 5%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-top-second-column a:nth-of-type(2) {
        margin-left: 20%;
    }

    .header-middle-first-column {
        margin-left: 0;
    }

    .header-middle-first-column>a>img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .header-middle-third-column {
        margin-right: 0%;
    }

    .header-middle-third-column-travel-deals-button {
        display: none;
        padding: 0.6rem;
        border-radius: 5px;
        margin-left: 2px;
    }

    .travel-deals-button-mobile {
        display: block;
    }

    .header-middle-third-column-free-samples-button {
        display: none;
        padding: 0.6rem;
        border-radius: 5px;
        margin-left: 2px;
    }

    .free-sample-button-mobile {
        display: block;
    }

    .header-middle-third-column-currency-dropdown {
        padding: 0.5rem;
        margin-left: 2px;
    }

    .navbar-toggle {
        display: block;
        margin-left: 5%;
    }

    .header-navbar {
        display: none;
    }

    .mobile-navbar-container {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 1s ease, max-height 0.7s ease;
    }

    .mobile-navbar-container.visible {
        opacity: 1;
        max-height: 900px;
        /* Adjust or calculate dynamically if needed */
    }

    .mobile-navbar-container.hidden {
        opacity: 0;
        max-height: 0;
    }

    .header-mobile-navbar {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        position: relative;
    }

    .header-mobile-navbar a {
        width: 100%;
        color: #fff;
        padding: 1.5rem 2rem;
        transition: .25s linear;
        background-color: #131313;
        font-size: 14px;
    }

    .header-mobile-navbar a:hover {
        color: white;
        text-decoration: none;
    }

    .header-mobile-navbar-dropdown {
        display: flex;
        flex-direction: column;
        color: #fff;
        transition: .25s linear;
        position: relative;
        width: 100%;

    }

    .header-mobile-navbar-dropdown a {
        width: 100%;
        color: #fff;
        padding: 1.5rem 2rem;
        transition: .25s linear;
        background-color: #131313;
        margin-left: 0%;
        font-size: 14px;
    }

    .header-mobile-navbar-dropdown a:hover {
        color: white;
        text-decoration: none;
    }

    .header-mobile-navbar-content {
        display: none;
        width: 100%;
        z-index: 10;
    }

    .header-mobile-navbar-content a {
        color: #000000;
        background-color: #eaebef;
        font-size: 14px;
    }

    .header-mobile-navbar-dropdown:hover .header-mobile-navbar-content {
        display: flex;
        flex-direction: column;
    }

    .header-mobile-searchbar {
        width: 100%;
        margin-bottom: 2px;
    }

    .header-mobile-searchbar form fieldset {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .header-mobile-searchbar form fieldset input {
        width: 100%;
        border: 1px solid grey;
        padding: 1.5rem 1.5rem;
    }

    .profile-sm {
        display: none;
    }

    .login-none {
        display: none;
    }

    .google-translate-bar-sm {
        display: flex;
        justify-content: end;
        align-items: center;
        width: 100%;
        padding-bottom: 10px;
    }

    .header-top-second-column {
        margin: 3% 0 2% 0 !important;
    }

    .login-btn-sm {
        display: flex;
        gap: 10px;
    }
}

/* * Tablet (portrait)  */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .mobile-navbar-divider {
        display: block;
        border: 1px solid rgb(94, 94, 94)
    }

    .header-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header-top-first-column {
        width: 100%;
        font-size: 1.3rem;
        font-weight: bold;
        text-align: start;
        margin-left: 0%;
    }

    .header-top-second-column {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
        margin-right: 0%;
    }


    .header-middle-first-column {
        margin-left: 0;
    }

    .header-middle-first-column>a>img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .header-middle-third-column {
        margin-right: 0%;
    }

    .header-middle-third-column-travel-deals-button {
        display: block;
        padding: 0.6rem;
        border-radius: 5px;
        margin-left: 2px;
    }

    .travel-deals-button-mobile {
        display: none;
    }

    .header-middle-third-column-free-samples-button {
        display: block;
        padding: 0.6rem;
        border-radius: 5px;
        margin-left: 2px;
    }

    .free-sample-button-mobile {
        display: none;
    }

    .header-middle-third-column-currency-dropdown {
        padding: 0.5rem;
        margin-left: 2px;
    }

    .navbar-toggle {
        display: block;
        margin-left: 5%;
    }

    .header-navbar {
        display: none;
    }

    .mobile-navbar-container {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 1s ease, max-height 0.7s ease;
    }

    .mobile-navbar-container.visible {
        opacity: 1;
        max-height: 900px;
        /* Adjust or calculate dynamically if needed */
    }

    .mobile-navbar-container.hidden {
        opacity: 0;
        max-height: 0;
    }


    .header-mobile-navbar {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        position: relative;
    }

    .header-mobile-navbar a {
        width: 100%;
        color: #fff;
        padding: 1.5rem 2rem;
        transition: .25s linear;
        background-color: #131313;
    }

    .header-mobile-navbar a:hover {
        color: white;
        text-decoration: none;
    }

    .header-mobile-navbar-dropdown {
        display: flex;
        flex-direction: column;
        color: #fff;
        transition: .25s linear;
        position: relative;
        width: 100%;

    }

    .header-mobile-navbar-dropdown a {
        width: 100%;
        color: #fff;
        padding: 1.5rem 2rem;
        transition: .25s linear;
        background-color: #131313;
        margin-left: 0%;
    }

    .header-mobile-navbar-dropdown a:hover {
        color: white;
        text-decoration: none;
    }

    .header-mobile-navbar-content {
        display: none;
        width: 100%;
        z-index: 10;
    }

    .header-mobile-navbar-content a {
        color: #000000;
        background-color: #eaebef;
    }

    .header-mobile-navbar-dropdown:hover .header-mobile-navbar-content {
        display: flex;
        flex-direction: column;
    }

    /* .header-middle-second-column {
        display: flex;
    } */

    #search-form {
        display: none;
    }

    .header-mobile-searchbar {
        width: 100%;
        margin-bottom: 2px;
        padding: 1.5rem 2rem;
    }

    .header-mobile-searchbar form fieldset {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .header-mobile-searchbar form fieldset input {
        width: 100%;
        border: 1px solid grey;
        padding: 1.5rem 1.5rem;
    }

}

ch1,
ch2,
ch3,
ch4,
ch5,
ch6 {
    display: block;
    font-family: Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ch1 {
    font-size: 52px;
    line-height: 70px;
    font-weight: 900;
    margin: 0 0 25px
}

ch2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    margin: 0 0 8px
}

ch3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin: 0 0 6px
}

ch4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0 0 5px;
}

ch5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 4px;
}

ch6 {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin: 0 0 3px;
}

.accordion-item ch2 {
    line-height: 1.2 !important
}

.fs-2-5 {
    font-size: 2.5rem;
}

ch1 .clr {
    color: #33b86c
}

.my-auto ch3 {
    font-size: 1.75rem;
}

.my-auto ch1 {
    font-size: 2.5rem;
    margin-bottom: .5rem;
}

@media (max-width: 767px) {
    ch1 {
        font-size: 30px;
        line-height: 40px;
    }

    ch2 {
        font-size: 28px;
        line-height: 30px;
    }

    ch3 {
        font-size: 28px;
        line-height: 24px;
    }

    ch4 {
        font-size: 20px;
        line-height: 22px;
    }

    ch5 {
        font-size: 18px;
        line-height: 20px;
    }

    ch6 {
        font-size: 17px;
        line-height: 26px;
    }
}

.small-bold-label {
    font-size: 1rem;
    font-weight: 800;
}

ol.breadcrumb {
    display: flex;
    font-size: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.font-1rem {
    font-size: 1rem;
}

.best-offer-discount {
    position: absolute;
    top: -15px;
    left: -10px;
    z-index: 10;
    width: 45px !important;
    height: 45px !important;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #33b86c;
    font-weight: 400;
    font-size: 14px
}

.expired-ribbon-wrapper {
    position: absolute;
    top: -7px;
    right: 0px;
    width: 100px;
    z-index: 10;
    height: 100px;
}

.expired-ribbon-wrapper img {
    width: 100%;
    height: 100%;
}

select.form-control {
    max-height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1rem;
}

/* Add margin to the right of the whole translator */
#google_translate_element {
    margin-right: 5px !important;
    display: inline-block;
}

/* Force "Powered by" and "Google" text to be visible (Dark Gray) */
.goog-te-gadget {
    color: #444 !important;
    font-size: 11px !important;
}

/* Make sure the Google Logo Link is visible and not hidden */
.goog-logo-link,
.goog-logo-link:link,
.goog-logo-link:visited {
    display: inline-block !important;
    color: #4285F4 !important;
    /* Google Blue */
    text-decoration: none !important;
    vertical-align: middle;
}

/* Style the actual dropdown box to look cleaner */
.goog-te-combo {
    padding: 4px;
    margin-right: 10px !important;
    border-radius: 5px;
    border: 1px solid #e5e5e5 !important;
    color: #CFCFCF;
    font-weight: 600;
}

/* Force the dropdown to show when the 'show' class is present */
.header-middle-third-column-currency .dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    background-color: white !important;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 100px;
}

/* Ensure the parent is positioned correctly */
.header-middle-third-column-currency {
    position: relative;
    display: inline-block;
}

/* Enable Hover for the Currency Dropdown */
@media (min-width: 992px) {

    /* Only apply on Desktop */
    .header-middle-third-column-currency:hover .dropdown-menu {
        display: block !important;
        margin-top: 0;
        /* Align it perfectly with the header */
        opacity: 1;
        visibility: visible;
    }
}

/* Optional: Smooth transition */
.header-middle-third-column-currency-dropdown {
    transition: all 0.3s ease;
}

.dropdown-toggle {
    padding: 5px 0px 5px 3px;
    display: inline-block;
    text-decoration: none;
    height: 30px;
    width: 62px;
    font-size: 1rem;
}

.dropdown-toggle::before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "🪙";
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.product-img {
    min-height: 200px;
}

.product-img>img {
    object-fit: contain !important
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.align-baseline {
    align-items: baseline;
}