/* .container-fluid {
    max-width: 100%;
    padding: 0 40px;
} */

.topbar {
    padding: 7px 0;
    background: #fffbf2;
}

.topbar .box-left .text {
    font-size: 14px;
    color: #333;
    display: flex;
    gap: 5px;
    align-items: center;
}

.topbar .box-left .text img {
    width: 16px;
}

.seclect-language button img,
.seclect-language .dropdown-menu img {
    width: 25px !important;
}

.seclect-language button {
    color: #FFF;
    transform: translateY(3px);
}

.seclect-language button:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: 6px;
    content: "";
    border-top: 4.8px solid;
    border-right: 4.8px solid transparent;
    border-bottom: 0;
    border-left: 4.8px solid transparent;
}

.seclect-language .dropdown-menu {
    display: none;
}

.seclect-language.active .dropdown-menu {
    display: block;
}

.seclect-language .dropdown-menu {
    width: max-content;
    z-index: 102;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    left: unset !important;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.seclect-language .dropdown-menu li {
    padding: 5px 15px;
}

.topbar .seclect-language .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.topbar .box-right>ul {
    display: flex;
    justify-content: end;
}

.topbar .box-right>ul>li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    font-size: 14px;
    color: #333;
}

.topbar .box-right>ul>li img {
    width: 17px;
}

.topbar .box-right>ul>li:not(:last-child) {
    margin-right: 32px;
}

.topbar .box-right>ul>li:not(:last-child):after {
    content: "";
    height: 15px;
    width: 1px;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    background: #cfcfcf;
    right: -19px;
}

.header-menu {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    margin-top: 20px;
}

.header-menu .inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.header-menu.affix {
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 101;
    margin-top: 0;
    background-color: #000;
    padding: 5px 0;
}

/* .header-menu.affix .search-icon svg,
.header-menu.affix .header-right .cart {
    color: #000;
} */

.header-menu ul li {
    list-style: none;
    position: relative;
}

.logo img {
    max-width: 95px;
}

.menu .level1 {
    display: flex;
    gap: 10px 15px;
    align-items: center;
    background-color: #FFF;
    padding: 12px 14px;
    border-radius: 50px;
}

.menu .item-level1.active .name-level1 {
    background: linear-gradient(0deg, rgba(231, 156, 22, 1) 0%, rgba(255, 228, 160, 1) 100%);
    color: #000 !important;
}

.menu .item-level1 .name-level1 {
    display: inline-flex;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    gap: 2px;
    padding: 6px 14px;
}

.menu .item-level1 .name-level1:hover {
    background: linear-gradient(0deg, rgba(231, 156, 22, 1) 0%, rgba(255, 228, 160, 1) 100%);
    color: #000;
}

.icon-arrow {
    display: flex;
}

.icon-arrow svg {
    width: 20px;
    height: 20px;
    transform: translateY(2px);
}

.name-level1>.icon-arrow svg path {
    stroke: currentColor;
}

.header-menu .header-right ul li img,
.header-menu .header-right ul li svg {
    width: 15px;
    height: 15px;
}

.header-menu .header-right ul li a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.062745098);
    border-radius: 50%;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    position: relative;
    z-index: 1;
}

.header-menu .header-right ul li a::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #65442b;
    opacity: 0.06;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.header-menu .header-right ul li a:hover:after {
    opacity: 1;
    transform: scale(1);
}

.level2 {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* min-width: 200px; */
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10;
    border-radius: 5px;
    width: max-content;
}

.level2 .item-level2 {
    padding: 5px 20px;
}

.name-level2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

.name-level2 .icon-arrow {
    transform: rotate(-90deg);
}

.level3 {
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10;
    background-color: #FFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* min-width: 200px; */
    padding: 5px 0;
    border-radius: 5px;
    width: max-content;
}

.level3 .item-level3 {
    padding: 5px 10px;

}

.header-menu .header-right .icon-menu-m {
    color: #FFF;
    display: none;
}

/* .header-menu.affix .header-right .icon-menu-m {
    color: #000;
} */

.header-menu .header-right .icon-menu-m svg {
    width: 25px;
    height: 25px;
}

.search-icon {
    position: relative;
    cursor: pointer;
}

.search-icon svg {
    width: 24px;
    height: 24px;
    color: #FFF;
}

.search-icon svg path {
    stroke: currentColor;
}

.header-search {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: .3s;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
}

.header-search.active {
    opacity: 1;
    visibility: visible;
}

.header-search input {
    width: 300px;
    padding: 12px 35px 12px 15px;
}

.header-search button {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    padding: 0;
    align-items: center;
}

.header-search button svg path {
    stroke: #000;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.model-forms-search {
    display: flex;
}

.header-right .cart {
    display: flex;
    align-items: center;
    color: #FFF;
}

.header-right .cart .icon {
    position: relative;
    display: flex;
}

.header-right .cart svg {
    width: 25px;
    height: 25px;
}

.header-right .cart svg path {
    stroke: currentColor;
}

.header-right .cart .count {
    position: absolute;
    top: -4px;
    right: -7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 10px;
    color: #000;
    background: linear-gradient(0deg, rgba(231, 156, 22, 1) 0%, rgba(255, 228, 160, 1) 100%);
}

.header-right .dots-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right .dots-btn svg {
    width: 16px;
    height: 16px;
    fill: #FFF;
}


/* ── OVERLAY ── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 100;
    display: none;
}

.sidebar-overlay.open {
    display: block;
}

/* ── SIDEBAR ── */
.sidebar-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 370px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);
}

.sidebar-menu.open {
    transform: translateX(0);
}

.sidebar-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu .close-btn svg {
    width: 14px;
    height: 14px;
    stroke: #444;
    fill: none;
    stroke-width: 2.2;
}

.sidebar-menu .s-logo {
    margin-bottom: 18px;
}

.sidebar-menu .s-logo img {
    max-width: 125px;
    width: 100%;
}

.sidebar-menu .s-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 28px;
}

.sidebar-menu .s-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sidebar-menu .s-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.sidebar-menu .s-contact-item .icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu .s-contact-item .icon img {
    width: 26px;
    height: 26px;
    stroke: #f47b20;
    fill: none;
    stroke-width: 1.5;
}

.sidebar-menu .s-contact-item .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-menu .s-contact-item .info h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    padding-left: 0px;
}

.sidebar-menu .s-contact-item .info p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.sidebar-menu .s-socials ul {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.sidebar-menu .s-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
}

.sidebar-menu .s-socials a img {
    width: 19px !important;
    stroke: #444;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 1400px) {
    .menu .item-level1 .name-level1 {
        font-size: 14px;
    }

    .menu .level1 {
        gap: 10px 3px;
    }
}

@media (min-width: 1200px) {

    .close-menu-mb,
    .logo-menu,
    .svg-icon {
        display: none;
    }

    .item-level1:hover .level2 {
        opacity: 1;
        visibility: visible;
    }

    .item-level2:hover .level3 {
        opacity: 1;
        visibility: visible;
    }

}

@media (max-width: 1200px) {
    .header-right .dots-btn {
        display: none;
    }

    .menu .item-level1 {
        border-bottom: 1px solid #ffffff24;
        padding: 8px 0;
    }

    .svg-icon {
        width: 18px;
        height: 18px;
        /* fill: #FFF; */
        position: absolute;
        top: 14px;
        right: 0px;
    }

    .level2,
    .level3 {
        position: unset;
        background-color: transparent;
        box-shadow: none;
        margin-left: 15px;
        width: 100%;
        transition: 0s;
        display: none;
        opacity: 1;
        visibility: visible;
        padding-left: 16px;
    }

    .level2 .item-level2 {
        padding: 5px 25px 5px 0px;
        color: #000;
        list-style: disc;
    }

    .level2 .item-level2 .svg-icon {
        top: 8px;
        right: 11px;
    }

    .level3 .item-level3 {
        list-style: circle;
        padding: 5px 0px;
    }

    /* .name-level2,
    .name-level3 {
        color: #FFF;
    } */

    .svg-icon.active .icon-plus-x {
        transform: scaleY(0);
    }

    .svg-icon rect,
    .svg-icon path {
        transition: all cubic-bezier(.12, .67, .53, 1) .3s;
        transform-origin: center;
    }

    .icon-arrow {
        display: none;
    }

    .header-menu .header-right .icon-menu-m {
        display: flex;
    }

    .overlay-m {
        background: #000;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .overlay-m.active {
        opacity: .5;
        visibility: visible;
    }

    .menu {
        background: #FFF;
        border-color: rgba(0, 0, 0, 0.1);
        color: #fff;
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

    .menu.active {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .menu .name-level1 {
        color: #65442b;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .menu .name-level1 img {
        width: 22px;
    }

    .menu .level1 {
        display: block;
        padding: 0;
    }

    .menu .item-level1 .name-level1 {
        display: inline-block;
        padding: 0;
        background: transparent !important;
        color: #65442b !important;
        font-size: 16px;
    }

    .menu .close-menu-mb {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .menu .close-menu-mb svg {
        width: 25px;
        height: 25px;
    }

    .logo-menu {
        margin-bottom: 15px;
    }

    .logo-menu img {
        max-width: 95px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .topbar .box-left {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar .box-right>ul>li:first-child {
        display: none;
    }

    .header-right .cart .text {
        display: none;
    }

    .header-right .cart {
        background-color: transparent;
        padding: 0;
    }

    .header-right {
        gap: 5px 20px;
    }

    .header-right .cart .count {
        color: #FFF;
        background-color: #000000;
    }

    .header-menu {
        border-radius: 0px;
        padding: 10px 0;
        margin-top: 0;
    }

    .header-search {
        right: -50px;
        top: calc(100% + 25px);
    }
}

@media (max-width: 575px) {
    .logo img {
        max-width: 70px;
    }

}

@media (max-width: 375px) {
    .header-search {
        right: -90px;
    }
}


/* ── Trigger button (demo) ── */
.demo-trigger {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 36px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.demo-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════
       MODAL OVERLAY
    ════════════════════════════ */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.38s ease;
}

.search-modal.open {
    opacity: 1;
    pointer-events: all;
}

/* Blurred backdrop */
.search-modal .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 9, 7, 0.72);
    backdrop-filter: blur(14px) saturate(0.7);
    -webkit-backdrop-filter: blur(14px) saturate(0.7);
    cursor: pointer;
}

/* ── Search panel ── */
.search-modal .search-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    transform: translateY(-24px);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-modal.open .search-panel {
    transform: translateY(0);
}

/* Top strip */
.search-modal .search-panel .panel-top {
    background: #FFF;
    padding: 40px 48px 44px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

/* Input row */
.search-modal .search-panel .panel-top .input-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1.5px solid rgba(180, 140, 130, 0.22);
    padding-bottom: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.search-modal .search-panel .panel-top .input-row input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.search-modal .search-panel .panel-top .input-row .btn-search {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, transform 0.18s;
    box-shadow: 0 8px 24px rgba(232, 136, 122, 0.35);
}


.search-modal .search-panel .panel-top .input-row .btn-search svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
