/*your custom css goes here*/
:root {
    /* colors */
    --primary-white: white;
    --secondary-white: #fffbfa;
    --third-white: #f9f7ef;
    --primary-pink: #c85c27;
    --secondary-pink: #f2c9c4;
    --primary-red: #d13d1b;
    --secondary-red: #c75c27;
    --third-red: #dd9f87;
    --primary-brown: #802605;
    --secondary-brown: #dbc5a4;
    --primary-green: #b6b899;
    --primary-yellow: #f1cac3;
    --secondary-yellow: #f1cac4;
    --primary-black: black;
    --secondary-black: #1a1a1a;
    /* fonts */
    --inter: "Inter";
    --sackers-gothic-std: "Sackers Gothic Std";
    --neue-haas-unica-pro: "Neue Haas Unica Pro";
    --cheltenham-pro-cd: "Cheltenham Pro Cd";
    --playfair-display: "Playfair Display";
    /* font size */
    --text-10: 10px;
    --text-12: 12px;
    --text-13: 13px;
    --text-14: 14px;
    --text-15: 15px;
    --text-16: 16px;
    --text-18: 18px;
    --text-20: 20px;
    --text-30: 30px;
    --text-40: 40px;
    --text-48: 48px;
    --text-60: 60px;
    --text-70: 70px;
    /* font weight */
    --text-under-normal: 300;
    --text-normal: 400;
    --text-semi-bold: 500;
    --text-bold: 700;
    --text-extra-bold: 850;
    /* line height */
    --text-line-height-12: 12px;
    --text-line-height-14: 14.4px;
    --text-line-height-19: 19.58px;
    --text-line-height-20: 20px;
    --text-line-height-22: 22.59px;
    --text-line-height-24: 24px;
    --text-line-height-24-1: 24.1px;
    --text-line-height-27: 27.11px;
    --text-line-height-30: 30.12px;
    --text-line-height-43: 43.96px;
    --text-line-height-52: 52.75px;
    --text-line-height-65: 65.94px;
    --text-line-height-76: 76.93px;
    /* width */
    --width-50: 50%;
}

.text-10{
    font-size: 10px;
}
.text-12{
    font-size: 12px;
}
.text-13{
    font-size: 13px;
}
.text-14{
    font-size: 14px;
}
.text-15{
    font-size: 15px;
}
.text-16{
    font-size: 16px;
}
.text-18{
    font-size: 18px;
}
.text-20{
    font-size: 20px;
}
.text-30{
    font-size: 30px;
}
.text-40{
    font-size: 40px;
}
.text-48{
    font-size: 48px;
}
.text-60{
    font-size: 60px;
}
.text-70{
    font-size: 70px;
}

html {
    display: flex;
    justify-content: center;
    background-color: var(--third-white);
}

body {
    margin: 0px !important;
    width: 100%;
}

h5 {
    font-family: var(--sackers-gothic-std);
    margin: 0;
}

h2 {
    font-family: var(--cheltenham-pro-cd);
    font-size: var(--text-60);
    line-height: var(--text-line-height-65);
    margin: 0;
}

.h-10 {
    height: 10px;
}

.h-20 {
    height: 20px;
}

.h-30 {
    height: 30px;
}

.h-40 {
    height: 40px;
}

.h-50 {
    height: 50px;
}

.h-60 {
    height: 60px;
}

.h-70 {
    height: 70px;
}

.h-80 {
    height: 80px;
}

.h-90 {
    height: 90px;
}

.h-100 {
    height: 100px;
}

/* fonts */
@font-face {
    font-family: "Sackers Gothic Std";
    src: url("./font/Sackers\ Gothic\ Std.ttf") format("truetype");
}

@font-face {
    font-family: "Neue Haas Unica Pro";
    src: url("./font/Neue\ Haas\ Unica\ Pro.ttf") format("truetype");
}

@font-face {
    font-family: "Playfair Display";
    src: url("./font/Playfair\ Display.ttf") format("truetype");
}

@font-face {
    font-family: "Cheltenham Pro Cd";
    src: url("./font/cheltenham-pro-condensed-light.otf") format("opentype");
}

.text-10 {
    font-size: var(--text-10);
}

.text-12 {
    font-size: var(--text-12);
}

.text-13 {
    font-size: var(--text-13);
}

.text-14 {
    font-size: var(--text-14);
}

.text-15 {
    font-size: var(--text-15);
}

.text-16 {
    font-size: var(--text-16);
}

.text-18 {
    font-size: var(--text-18);
}

.text-20 {
    font-size: var(--text-20);
}

.text-30 {
    font-size: var(--text-30);
}

.text-40 {
    font-size: var(--text-40);
}

.text-48 {
    font-size: var(--text-48);
}

.text-60 {
    font-size: var(--text-60);
}

.text-70 {
    font-size: var(--text-70);
}

/* font colors */
.text-yellow {
    color: var(--primary-yellow);
}

.text-semi-yellow {
    color: var(--secondary-yellow);
}

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

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

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

.text-semi-black {
    color: var(--secondary-black);
}

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

.text-third-white {
    color: var(--third-white);
}

.ff-sacker {
    font-family: var(--sackers-gothic-std) !important;
}

.ff-neue {
    font-family: var(--neue-haas-unica-pro) !important;
}

.ff-cheltenham {
    font-family: var(--cheltenham-pro-cd) !important;
}

.ff-playfair {
    font-family: var(--playfair-display) !important;
}

/* background colors */
.bg-brown {
    background-color: var(--primary-brown);
}

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

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

.bg-third-white {
    background-color: var(--third-white);
}

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

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

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

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

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

.bg-third-red {
    background-color: var(--third-red);
}

/* background colors */
.border-brown {
    border-color: var(--primary-brown) !important;
}

.border-semi-brown {
    border-color: var(--secondary-brown);
}

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

.border-third-white {
    border-color: var(--third-white);
}

.border-semi-red {
    border-color: var(--secondary-red);
}

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

.border-seim-black {
    border-color: var(--secondary-black);
}

.border-semi-pink {
    border-color: var(--secondary-pink);
}

.border-semi-yellow {
    border-color: var(--secondary-yellow);
}

.border-third-red {
    border-color: var(--third-red);
}



/* line style */
.underline-brown {
    border-bottom: 1px solid var(--primary-brown);
}

.underline-red {
    border-bottom: 1px solid var(--primary-red);
}

.hov-underline-brown:hover {
    border-bottom: 1px solid var(--primary-brown);
}


.border {
    border: 1px var(--primary-brown);
}

.active-item {
    color: var(--primary-red);
    border-bottom: 1px solid var(--primary-red);
}

.bar-brown {
    display: flex;
    align-items: center;
    gap: 51px;
    padding: 10px 0;
    overflow-x: hidden;
}

.bar-black {
    display: flex;
    align-items: center;
    /* gap: 51px; */
    /* padding: 30px 0; */
    overflow-x: hidden;
}

.bar-brown>div,
.bar-black>div {
    font-family: var(--sackers-gothic-std);
    text-wrap: nowrap;
}

.bar-brown .circle,
.bar-black .circle {
    width: 7px;
    height: 7px;
    border-radius: 100%;
}

.left-unset {
    left: unset !important;
}


.header {
    margin: 10px 0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header .left {
    display: flex;
    gap: 17px;
    align-items: center;
}

.header .right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header .center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 18px;
}

.shop-brand-title {
    margin-left: 28px;
    font-family: 'Cheltenham Pro Cd', serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 53px;
    letter-spacing: 0.01em;
    color: #802605;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.header.seller-header {
    height: auto;
    flex-wrap: wrap;
    row-gap: 6px;
}

.header.seller-header .center {
    position: static;
    left: auto;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
}

.header.seller-header .center > a {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 4px;
}

.header.seller-header .shop-brand-title {
    margin-left: 0;
    flex-basis: 100%;
    justify-content: center;
    white-space: normal;
    word-break: break-word;
}

.header .center>div {
    font-family: var(--cheltenham-pro-cd);
    line-height: var(--text-line-height-22);
}

.header .left,
.right>div {
    font-family: var(--neue-haas-unica-pro);
    font-size: var(--text-13);
    font-weight: var(--text-semi-bold);
    color: var(--primary-brown);
}

.landing {
    /* padding: 136px; */
    display: block;
    align-items: center;
}
.landing>div:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
}

.landing>div:first-child {
    position: absolute;
    padding: 0 30px;
    min-width: 220px;
    width: 60%;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
}

.logo-image-style {
    height: 44px;
}

.landing>div>.title {
    font-family: var(--cheltenham-pro-cd);
    font-size: var(--text-70);
    font-weight: var(--text-under-normal);
    line-height: var(--text-line-height-24);
}

.landing>div>div {
    font-family: var(--neue-haas-unica-pro);
    font-weight: var(--text-semi-bold);
    font-size: var(--text-30);
    line-height: var(--text-line-height-19);
}

.landing>div>img {
    height: 313px;
}

.landing>div>button {
    margin: 26px 0;
}

.right-background-home {
    position: relative;
    background-image: url("../img/new/image\ \(43\).png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.right-background-eshop {
    position: relative;
    background-image: url("../img/new/image\ \(25\).png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-text>.text-content {
    padding: 3px 7px;
    border-radius: 100%;
    font-family: var(--neue-haas-unica-pro);
    font-weight: var(--text-bold);
    font-size: var(--text-12);
}

.center-section {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.center-section .title {
    font-family: var(--cheltenham-pro-cd);
    font-size: var(--text-20);
    line-height: var(--text-line-height-24);
    padding: 0 30px;
    text-align: center;
}

.center-section p {
    text-align: center;
    padding: 10px;
    font-family: var(--neue-haas-unica-pro);
    font-size: var(--text-12);
    line-height: var(--text-line-height-14);
    font-weight: var(--text-semi-bold);
}

button {
    padding: 15px;
    font-family: var(--sackers-gothic-std);
    font-size: var(--text-12);
    font-weight: var(--text-bold);
    line-height: var(--text-line-height-14);
}

.promotion-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.promotion-section>.instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.promotion-section>.instagram>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.promotion-section>.instagram>div>p {
    margin: 0;
    font-family: var(--cheltenham-pro-cd);
    font-weight: var(--text-under-normal);
    line-height: var(--text-line-height-65);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 16px;
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    padding: 30px 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer>.top-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer>.top-footer>.left-part {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer>.top-footer>.left-part>div:last-child {
    display: flex;
    justify-content: space-between;
}

.footer>.top-footer>.left-part>div:last-child>div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer>.top-footer>.left-part>div:last-child>div>div {
    font-family: var(--neue-haas-unica-pro);
    font-size: var(--text-12);
    font-weight: var(--text-normal);
    line-height: var(--text-line-height-14);
}

.footer>.top-footer>.right-part {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.footer>.top-footer>.right-part>.label {
    font-family: var(--cheltenham-pro-cd);
    font-size: var(--text-18);
    line-height: var(--text-line-height-24);
}

.mail-subscribe {
    font-family: var(--neue-haas-unica-pro);
    font-size: var(--text-15);
    line-height: var(--text-line-height-22);
}

.social-part {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bottom-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bottom-footer>hr {
    width: 100%;
    margin: 10px;
}

.bottom-footer>div {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bottom-footer>div>div:nth-child(3) {
    flex: 1;
}

.bottom-footer>div>div {
    font-family: var(--neue-haas-unica-pro);
    font-size: var(--text-16);
    line-height: var(--text-line-height-24);
}

.text-paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-paragraph>div {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 960px;
}

.text-paragraph>div>div {
    font-size: var(--text-30);
    font-family: var(--cheltenham-pro-cd);
    line-height: var(--text-line-height-30);
    text-align: center;
}

.text-paragraph>div>p {
    font-size: var(--text-13);
    font-family: var(--neue-haas-unica-pro);
    line-height: var(--text-line-height-29);
    text-align: center;
}

.left-image {
    display: flex;
}

.left-image>div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-image>div>div {
    max-width: 474px;
    padding: 0 20px;
}

.left-image>div>div>h5 {
    font-size: var(--text-12);
}

.left-image>div>div>h2 {
    font-size: var(--text-40);
}

.left-image>div>div>p {
    font-size: var(--text-12);
    line-height: var(--text-line-height-20);
}

.width-50 {
    width: var(--width-50);
}

.input-container {
    display: flex;
    align-items: center;
    /* border-bottom: 2px solid var(--primary-red); */
    position: relative;
}

.input-container input {
    /* /flex: 1; */
    font-family: var(--neue-haas-unica-pro);
    border: none;
    border-bottom: 2px solid var(--primary-red);
    padding: 20px 44px 20px 0;
    outline: none;
    transition: border-color 0.3s ease;
    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;
}

.input-container input:focus {
    animation: borderFade 1s ease-in-out;
}

.input-container input.form-control {
    background-color: transparent !important;
    color: white;
}

.input-container button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    z-index: 2;
}

.input-container button:hover {
    scale: 1.05;
}

.turnstile-subscribe {
    width: 100%;
}

.turnstile-subscribe--footer {
    width: 100%;
    max-width: 420px;
}

.turnstile-subscribe__widget {
    width: 100%;
    max-width: 100%;
}

.guest-auth-dropdown {
    background: #fffaf3;
    border-color: #e7d8c4 !important;
}

.guest-auth-dropdown .user-top-nav-element > a {
    padding: 12px 18px !important;
    background: #fffaf3;
}

.guest-auth-dropdown .user-top-nav-element + .user-top-nav-element > a {
    border-top: 1px solid #f1e5d6;
}

.guest-auth-dropdown .user-top-nav-element > a:hover {
    background: #fff1df !important;
}

@keyframes borderFade {
    0% {
        border-color: #007bff;
    }

    50% {
        border-color: transparent;
    }

    100% {
        border-color: #007bff;
    }
}

@media screen and (min-width: 430px) {
    .landing>div>img {
        height: 165px;
    }
    .landing>div>div {
        color: var(--primary-brown);
    }
    .landing {
        /* padding: 136px; */
        display: flex;
        align-items: center;
    }
    .landing>div:last-child {
        width: 50%;
        display: flex;
    }
    
    .landing>div:first-child {
        width: 50%;
        position: inherit;
        display: block;
        background-image: none;
        background-repeat: unset;
        background-position: unset;
        background-size: unset;
        left: unset;
        top: unset;
        transform: unset;
    }
}

@media screen and (min-width: 768px) {
    .logo-image-style {
        height: 57px;
    }
    .landing>div:first-child {
        padding: 0 60px;
    }

    .landing>div>.title {
        font-size: var(--text-40);
        line-height: var(--text-line-height-43);
    }

    .landing>div>img {
        height: 240px;
    }

    .landing>div>div {
        font-size: var(--text-15);
        line-height: var(--text-line-height-19);
    }

    .center-section {
        gap: 32px;
        padding: 40px 0;
    }

    .center-section .title {
        font-size: var(--text-40);
        line-height: var(--text-line-height-43);
    }

    .center-section p {
        font-size: var(--text-15);
        line-height: var(--text-line-height-19);
    }

    .footer {
        padding: 46px 46px 15px;
        gap: 46px;
    }

    .footer>.top-footer>.right-part>.label {
        font-size: var(--text-20);
        line-height: var(--text-line-height-27);
    }

    .footer>.top-footer>.left-part>div:last-child>div>div {
        font-size: var(--text-13);
        line-height: var(--text-line-height-19);
    }

    .grid-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }

    .text-paragraph>div {
        padding: 60px;
        gap: 40px;
        max-width: 960px;
    }

    .text-paragraph>div>div {
        font-size: var(--text-40);
        line-height: var(--text-line-height-43);
    }

    .text-paragraph>div>p {
        font-size: var(--text-16);
        line-height: var(--text-line-height-30);
    }

    .left-image>div>div>h5 {
        font-size: var(--text-12);
    }

    .left-image>div>div>h2 {
        font-size: var(--text-48);
    }

    .left-image>div>div>p {
        font-size: var(--text-13);
        line-height: var(--text-line-height-22);
    }

    .header {
        height: 97px;
    }
}

@media screen and (min-width: 1024px) {
    .landing>div:first-child {
        padding: 0 98px;
    }

    .landing>div>.title {
        font-size: var(--text-60);
        line-height: var(--text-line-height-65);
    }

    .landing>div>img {
        height: 340px;
    }

    .landing>div>div {
        font-size: var(--text-16);
        line-height: var(--text-line-height-19);
    }

    .center-section {
        padding: 80px 0;
    }

    .center-section .title {
        font-size: var(--text-48);
        line-height: var(--text-line-height-65);
    }

    .center-section p {
        font-size: var(--text-16);
        line-height: var(--text-line-height-19);
    }

    .footer {
        padding: 66px 66px 20px;
        gap: 66px;
    }

    .footer>.top-footer>.right-part>.label {
        font-size: var(--text-30);
        line-height: var(--text-line-height-43);
    }

    .footer>.top-footer>.left-part>div:last-child>div>div {
        font-size: var(--text-15);
        line-height: var(--text-line-height-20);
    }

    .grid-container {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 28px;
    }

    .text-paragraph>div {
        padding: 60px;
        gap: 40px;
        max-width: 960px;
    }

    .text-paragraph>div>div {
        font-size: var(--text-line-height-52);
        line-height: var(--text-line-height-65);
        text-align: center;
    }

    .text-paragraph>div>p {
        font-size: var(--text-line-height-19);
        line-height: var(--text-line-height-30);
    }

    .left-image>div>div>h5 {
        font-size: var(--text-12);
    }

    .left-image>div>div>h2 {
        font-size: var(--text-48);
    }

    .left-image>div>div>p {
        font-size: var(--text-15);
        line-height: var(--text-line-height-24);
    }
}

@media screen and (min-width: 1280px) {
    .landing>div>.title {
        font-size: var(--text-70);
        line-height: var(--text-line-height-76);
    }

    .landing>div>img {
        height: 509px;
    }

    .landing>div>div {
        font-size: var(--text-18);
        line-height: var(--text-line-height-27);
    }

    .header {
        margin: 0;
        padding: 0px 110px;
        background-color: white;
    }

    .header .left {
        gap: 37px;
    }

    .header .right {
        gap: 10px;
    }

    .header .center {
        gap: 38px;
    }

    .header .center>div {
        line-height: var(--text-line-height-52);
    }

    .header .left,
    .right>div {
        font-size: var(--text-13);
    }

    .center-section {
        gap: 42px;
        padding: 120px 0;
    }

    .center-section .title {
        font-size: var(--text-60);
        line-height: var(--text-line-height-65);
    }

    .center-section p {
        font-size: var(--text-18);
        line-height: var(--text-line-height-27);
    }

    .footer {
        padding: 96px 96px 30px;
        gap: 96px;
    }

    .footer>.top-footer>.right-part>.label {
        font-size: var(--text-40);
        line-height: var(--text-line-height-43);
    }

    .footer>.top-footer>.left-part>div:last-child>div>div {
        font-size: var(--text-16);
        line-height: var(--text-line-height-24);
    }

    .grid-container {
        gap: 32px;
    }

    .text-paragraph>div {
        padding: 60px;
        gap: 40px;
        max-width: 960px;
    }

    .text-paragraph>div>div {
        font-size: var(--text-60);
        line-height: var(--text-line-height-65);
    }

    .text-paragraph>div>p {
        font-size: var(--text-20);
        line-height: var(--text-line-height-29);
    }

    .left-image>div>div>h5 {
        font-size: var(--text-13);
    }

    .left-image>div>div>h2 {
        font-size: var(--text-60);
    }

    .left-image>div>div>p {
        font-size: var(--text-18);
        line-height: var(--text-line-height-27);
    }

}

.collapse-sidebar {
    display: flex;
    flex-direction: column;
}

.bootstrap-select.form-control {
    background: none !important;
    color: var(--primary-brown) !important;
}

.bootstrap-select.form-control button {
    border: none;

}

.filter-option-inner-inner {
    color: var(--primary-brown);
    font-family: var(--neue-haas-unica-pro);
    font-weight: 500;
}

.bootstrap-select>.dropdown-toggle {
    width: auto !important;
}

#search-form .bootstrap-select>.dropdown-toggle {
    max-width: none !important;
}

#search-form .w-lg-200px {
    width: auto !important;
}

#search-form .dropdown-menu {
    max-width: none !important;
}

.product-detail .bestseller-badge {
    width: fit-content;
    padding: 10px;
    background-color: var(--secondary-pink);
}

.product-detail .bestseller-badge span {
    color: var(--primary-brown);
    font-size: 10px;
    font-weight: 850;
    text-align: left;
}

.product-detail .product-name {
    font-size: 60px;
    font-weight: 300;
    line-height: 65.94px;
    letter-spacing: 0.01em;
    text-align: left;
}

.product-detail .product-price {
    font-size: 30px;
    font-weight: 850;
    line-height: 20px;
    text-align: center;
    color: var(--primary-brown);
}

.bg-none {
    background: none;
}


.border-primary-brown {
    border-color: var(--primary-brown) !important;
}

.border-primary-red {
    border-color: var(--primary-red) !important;
}

.track {
    top: 0px;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    /* Start from the right */
    to {
        transform: translateX(-50%);
    }

    /* End at the left */
}

.track .content ul li {
    color: #f1cac4 !important;
}

/* Default state: "+" sign */
.toggle-icon::after {
    content: "+";
    font-size: 20px;
    color: brown;
}

a[aria-expanded="true"] .toggle-icon::after {
    font-size: 30px;
    line-height: 0;
    content: "-";
}

.product_details_info {
    padding-top: 67px;
}

* {
    box-sizing: border-box;
    /* Apply box-sizing to all elements */
}


.flex-gap-1{
    gap: 1rem;     
}
.flex-gap-2{
    gap: 2rem;     
}
.flex-gap-3{
    gap: 3rem;     
}
.flex-gap-4{
    gap: 4rem;     
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.front-header-search{
    display:none !important;
}
.front-header-search.active{
    display:block !important;
}

.no-icon::after{
    content: none !important;
}

.landing-text{
    max-width: 1000px;
}

#lang-change {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
#lang-change:hover {
  opacity: 1 !important;
}

/* Hide dots on desktop */
.product-gallery .aiz-carousel .slick-dots {
  display: none !important;
}

/* Show dots on mobile only */
@media (max-width: 768px) {
  .product-gallery .aiz-carousel .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
  }
}

.product-description *{

    color: var(--primary-brown) !important;

}

.product-description .text-white{
    color: var(--third-white) !important;
}


.flag-container{
    display: none;
}

/* ===================================
   MOBILE RESPONSIVE FIXES
   =================================== */

/* Mobile styles - up to 767px */
@media screen and (max-width: 767px) {
    /* Fix landing section */
    .landing {
        min-height: auto !important;
        padding: 40px 0 !important;
        position: relative !important;
    }
    
    .landing>div:first-child {
        position: relative !important;
        padding: 20px 15px !important;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
    }
    
    .landing>div>.title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .landing>div>button {
        margin: 20px 0 !important;
        padding: 12px 24px !important;
        font-size: 14px !important;
        width: auto !important;
    }
    
    /* Fix text-paragraph section */
    .text-paragraph {
        padding: 30px 0 !important;
    }
    
    .text-paragraph>div {
        padding: 20px 15px !important;
        gap: 15px !important;
    }
    
    .text-paragraph>div>div {
        font-size: 22px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }
    
    .text-paragraph>div>p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* Fix text size classes for mobile */
    .text-60 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .text-70 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .text-48 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .text-40 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
    
    .text-30 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    
    .text-20 {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    .text-18 {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* Fix left-image section */
    .left-image {
        padding: 0 !important;
    }
    
    .left-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .left-image .row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .left-image .row > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .left-image .row > div:first-child {
        padding: 30px 20px !important;
        order: 1 !important;
    }
    
    .left-image .row > div:last-child {
        padding: 0 !important;
        order: 2 !important;
    }
    
    .left-image>div>div>h2 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    .left-image>div>div>h5 {
        font-size: 12px !important;
    }
    
    .left-image>div>div>p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* Fix instagram section */
    .instagram {
        padding: 20px 15px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .instagram>div {
        margin-bottom: 20px !important;
    }
    
    .instagram .text-60 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    /* Fix grid container */
    .grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    
    /* Fix product detail */
    .product-detail .product-name {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    .product-detail .product-price {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    /* Fix center section */
    .center-section {
        padding: 30px 15px !important;
        gap: 15px !important;
    }
    
    .center-section .title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .center-section p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* Fix promotion section */
    .promotion-section {
        padding: 30px 0 !important;
    }
    
    /* Background images should not clip content on mobile */
    .right-background-home,
    .right-background-eshop {
        background-size: cover !important;
        background-position: center !important;
    }
    
    /* Ensure all images are responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix any absolute positioned elements */
    section {
        overflow-x: hidden !important;
    }
}

/* Tablet and Desktop styles - 768px and up */
@media screen and (min-width: 768px) {
    /* Reset left-image section for desktop */
    .left-image .row {
        flex-direction: row !important;
    }
    
    .left-image .row > div {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .left-image .row > div:first-child {
        padding: 40px 30px !important;
    }
    
    .left-image .row > div:last-child {
        padding: 0 !important;
    }
    
    .left-image>div>div>h2 {
        font-size: 48px !important;
        line-height: 1.3 !important;
    }
    
    .left-image>div>div>p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* Tablet styles - 768px to 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .landing>div>.title {
        font-size: 42px !important;
        line-height: 1.3 !important;
    }
    
    .text-60 {
        font-size: 42px !important;
        line-height: 1.3 !important;
    }
    
    .text-70 {
        font-size: 48px !important;
        line-height: 1.3 !important;
    }
    
    .text-paragraph>div>div {
        font-size: 32px !important;
        line-height: 1.4 !important;
    }
    
    .grid-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
}

/* Mobile Menu and Language Selector Responsive Fixes */
/* Mobile Menu Sidebar */
.aiz-top-menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1035;
    background: rgba(0, 0, 0, 0.5);
}

.aiz-top-menu-sidebar .collapse-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Language Selector in Mobile Menu */
#lang-change-mobile {
    width: 100%;
}

#lang-change-mobile .dropdown-toggle {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    background: transparent;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#lang-change-mobile .dropdown-toggle:hover,
#lang-change-mobile .dropdown-toggle:focus {
    background: transparent;
    color: var(--primary-brown);
}

#lang-change-mobile .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
}

#lang-change-mobile .dropdown-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    width: 100%;
}

#lang-change-mobile .dropdown-item:hover,
#lang-change-mobile .dropdown-item:focus {
    background-color: #f8f9fa;
    color: var(--primary-brown);
}

#lang-change-mobile .dropdown-item.active {
    background-color: #f0f0f0;
    color: var(--primary-brown);
    font-weight: 600;
}

#lang-change-mobile img {
    flex-shrink: 0;
    object-fit: cover;
}

/* Mobile Menu Header Responsive */
@media (max-width: 991.98px) {
    .header {
        position: relative;
        padding: 0.5rem 0;
    }
    
    .header .right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Ensure hamburger menu button is visible */
    .header button[data-target=".aiz-top-menu-sidebar"] {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    /* Mobile menu close button */
    .hide-top-menu-bar {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
        border-bottom: 1px solid #e9ecef;
    }
    
    /* Language selector positioning in mobile menu */
    #lang-change-mobile {
        margin-bottom: 0;
    }
    
    /* Ensure menu items are properly spaced */
    .aiz-top-menu-sidebar ul {
        padding-left: 0;
    }
    
    .aiz-top-menu-sidebar ul li {
        margin: 0;
    }
    
    .aiz-top-menu-sidebar .header_menu_links {
        padding: 0.875rem 1rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .aiz-top-menu-sidebar .header_menu_links:hover {
        background-color: #f8f9fa;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    .aiz-top-menu-sidebar .collapse-sidebar {
        width: 70%;
        max-width: 400px;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .aiz-top-menu-sidebar .collapse-sidebar {
        width: 90%;
        max-width: 280px;
    }
    
    #lang-change-mobile .dropdown-toggle {
        font-size: 13px;
        padding: 0.625rem 0;
    }
    
    #lang-change-mobile img {
        width: 20px !important;
        height: 15px !important;
    }
}

/* Fix dropdown menu positioning for mobile */
@media (max-width: 991.98px) {
    #lang-change-mobile .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(0.25rem) !important;
        z-index: 1000;
    }
    
    #lang-change-mobile.show .dropdown-menu {
        display: block !important;
    }
}


.flag-container{
    display: none !important;
}

.info-tooltip{
    width: 20px;
    display: inline-flex;
    height: 20px;
    background: black;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* OTP inline helper text under Send OTP (uses theme typography) */
#login-otp-info,
#signup-otp-info {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Purchase history (user panel): LTR / English — keep date and action row on one line */
html:not([dir="rtl"]) .purchase-history-table td.purchase-history-date {
    white-space: nowrap;
    word-break: normal;
}

html:not([dir="rtl"]) .purchase-history-table th.purchase-history-date-col,
html:not([dir="rtl"]) .purchase-history-table td.purchase-history-date {
    min-width: 6.5rem;
}

html:not([dir="rtl"]) .purchase-history-table td.purchase-history-actions-cell {
    white-space: nowrap;
    vertical-align: middle;
}

html:not([dir="rtl"]) .purchase-history-table .purchase-history-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

html:not([dir="rtl"]) .purchase-history-table .purchase-history-actions > a {
    flex-shrink: 0;
}
