ul.mmn-main-menu > li > a {
    padding: 18px 0;
    display: block;
    color: #333;
    font-family: "Outfit", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* === BASE NAV === */
.mmn-nav {
    position: relative;
    font-family: inherit;
    z-index: 50;
}

.mmn-main-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
        justify-content: space-between;

    padding: 0;
}

.mmn-item {
    position: relative;
}

.mmn-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0.75rem 0;
    color: #333;
    display: inline-flex;
    align-items: center;
}

.mmn-link:hover {
    color: #111;
}

/* === DROPDOWN WRAPPER === */
.mmn-has-dropdown .mmn-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 1.75rem 6vw;
    display: none;
    overflow: hidden;
}

.mmn-has-dropdown:hover .mmn-dropdown {
    display: block;
}

.mmn-has-dropdown {
    position: static; /* so absolute can escape cleanly */
}

.mmn-has-dropdown .mmn-dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 100vw;         /* full viewport width */
    max-width: calc( 100vw - 16px );
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 3.5rem 6vw;
    display: none;
        background-image: url(http://bloopers.ro/wp-content/uploads/2025/11/bg-header.png);
    background-size: cover;
    background-color: rgb(255 255 255 / 80%);
    background-blend-mode: lighten;
    font-family: 'Outfit';
}

/* Arch container inside dropdown */
.mmn-dropdown-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.75rem;
}

/* === COLUMNS (LEFT SIDE) === */
.mmn-columns {
    display: flex;
    flex: 2 1 0;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.mmn-column {
    flex: 1 1 0;
    min-width: 160px;
    display: flex;
    flex-direction: column;
}

/* equal height within row via align-stretch on parent (default) */

.mmn-age-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.25rem;
}

.mmn-gender-link {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.mmn-gender-link:hover {
    color: #000;
}

.mmn-subcat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mmn-subcat-item {
    margin: 0.15rem 0;
}

.mmn-subcat-item a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
}

.mmn-subcat-item a:hover {
    color: #000;
}

/* === CAROUSEL WRAP (RIGHT SIDE) === */
.mmn-carousel-wrap {
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 30%;
}

/* === CAROUSEL CORE === */
.mmn-carousel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.mmn-carousel-track-wrapper {
    flex: 1 1 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.mmn-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.mmn-carousel-item {
    flex: 0 0 180px;
    background: #faf7f3;
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
}

.mmn-carousel-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mmn-carousel-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.mmn-carousel-meta {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
}

.mmn-carousel-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #222;
}

.mmn-carousel-price {
    font-size: 12px;
    font-weight: 600;
    color: #a8743b; /* accent (change to your beige/gold) */
}

/* === CAROUSEL ARROWS === */
.mmn-carousel-arrow {
    border: none;
    background: #f1ede7;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.mmn-carousel-arrow:hover {
    background: #e5ded2;
}


/* === FEATURED 2-PRODUCT PANEL === */
.mmn-featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 260px;
    padding-left: 1rem;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.mmn-featured-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 0.25rem;
}

.mmn-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mmn-featured-item {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    padding: 0.5rem;
    background: #faf7f3;
    border-radius: 10px;
    transition: background 0.2s ease;
        align-items: center;
}

.mmn-featured-item:hover {
    background: #f0ebe4;
}

.mmn-featured-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.mmn-featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mmn-featured-name {
    font-family: 'Outfit';
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    margin-bottom: 3px;
    line-height: 1.3;
    
}

.mmn-featured-price {
    font-size: 12px;
    font-weight: 600;
    color: #a8743b;
    font-family: 'Outfit';
}

.button-mmn-fke {
    background-color: #333;
    font-family: 'Outfit';
    font-weight: 500;
    color: #fff;
    border-radius: 0px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .mmn-has-dropdown .mmn-dropdown {
        max-width: 100%;
    }

    .mmn-dropdown-inner {
        flex-direction: column;
    }

    .mmn-carousel-wrap {
        order: -1; /* carousel on top on small screens */
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .mmn-main-menu {
        gap: 1rem;
    }

    .mmn-columns {
        flex-wrap: wrap;
    }

    .mmn-column {
        min-width: 45%;
    }
}

@media (max-width: 480px) {
    .mmn-column {
        min-width: 100%;
    }

    .mmn-has-dropdown .mmn-dropdown {
        padding: 1.25rem 1.25rem;
    }
}


/* Creativitate: tighter multi-column layout */
.mmn-columns-creative {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
}

.mmn-column-creative {
    flex: 1 1 0;
    min-width: 20%;

}

/* Product list under each subcategory */
.mmn-subcat-products {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mmn-subcat-product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    background: #faf7f3;
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.mmn-subcat-product:hover {
    background: #f0ebe4;
    transform: translateY(-1px);
}

.mmn-subcat-product-thumb img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.mmn-subcat-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mmn-subcat-product-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.mmn-subcat-product-price {
    font-size: 12px;
    font-weight: 600;
    color: #a8743b; /* adjust to your accent */
}

/* View all button */
.mmn-viewall-btn {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 13px;
    font-weight: 600;
    color: #a8743b;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.mmn-viewall-btn:hover {
    color: #8b6232;
}

/* Vertical separators between creative columns */
.mmn-columns-creative {
    position: relative;
    display: flex;
    gap: 2rem;
        flex-wrap: wrap;
}

.mmn-column-creative {
    position: relative;
    padding-right: 1rem;
}

/* Separator line except the last column */
.mmn-column-creative:not(:last-child)::after, .mmn-column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(0, 0, 0, 0.08); /* subtle vertical line */
}

/* responsive: allow wrapping on smaller screens */
@media (max-width: 1024px) {
    .mmn-columns-creative {
        flex-wrap: wrap;
    }

    .mmn-column-creative {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .mmn-column-creative {
        min-width: 100%;
    }
}


/* HIDE desktop menu below tablet */
@media (max-width: 1024px) {
    .mmn-nav {
        display: none;
    }
}

/* SHOW mobile menu toggle */
.mmn-mobile-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .mmn-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        cursor: pointer;
        padding: 8px 12px;
        z-index: 99999;
    }
}


/* ======================
   MOBILE MENU — MATCH DESKTOP STYLE
   ====================== */

.mmn-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85vw;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 4px 0 35px rgba(0,0,0,0.12);
    padding: 0;
    z-index: 999999;
    transition: left 0.25s ease;
    overflow-y: auto;
    font-family: "Outfit", sans-serif;
}

.mmn-mobile-menu.open {
    left: 0;
}

/* HEADER */
.mmn-mobile-menu-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #faf7f3; /* soft beige like dropdown */
}

.mmn-mobile-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mmn-mobile-close {
    font-size: 28px;
    cursor: pointer;
    padding: 0 6px;
    color: #333;
}

/* LIST */
.mmn-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0px;
}

/* MAIN ITEMS (accordion buttons) */
.mmn-mobile-accordion {
    width: 100%;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    background: none;
    border: none;
    color: #333;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 1rem;
}

.mmn-mobile-accordion.active {
    color: #000;
}

li.mmn-mobile-item a {
    padding: 14px 20px;
}

button.mmn-mobile-accordion:hover, button.mmn-mobile-accordion:active , button.mmn-mobile-accordion:focus , li.mmn-mobile-item a:focus, li.mmn-mobile-item a:hover, li.mmn-mobile-item:active{
    background: #f2ece5;
    color:#333;
}

/* SIMPLE LINK ITEMS */
.mmn-mobile-item a {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #333;
    text-decoration: none;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mmn-mobile-item a:hover {
    color: #111;
}

/* SUBMENU */
.mmn-mobile-submenu {
    list-style: none;
    padding: 0px;
    border-left: 1px solid rgba(0,0,0,0.08);
    display: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mmn-mobile-submenu li a {
    font-size: 13px;
    color: #555;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.4rem 0;
    border-bottom: none;
}

ul.mmn-mobile-submenu li a {
    padding: 8px 30px;
}

ul.mmn-mobile-subsubmenu li a {
    padding: 8px 50px;
}

.mmn-mobile-submenu li a:hover {
    color: #000;
}

/* MOBILE TOGGLE */
.mmn-mobile-toggle {
    font-size: 26px;
    cursor: pointer;
    padding: 12px;
    display: none;
    color: #333;
}

button.mmn-mobile-subaccordion {
    color: #555;
    border: unset !important;
    padding: 8px 25px 8px 30px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 600;
}

button.mmn-mobile-subaccordion:hover, button.mmn-mobile-subaccordion:focus{
    background:#f2ece5;
    color:#555 !important;
}

ul.mmn-mobile-subsubmenu {
    list-style: unset !important;
        padding: 0px;
}

@media (max-width: 1024px) {
    .mmn-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.mmn-mobile-accordion,
.mmn-mobile-subaccordion {
    position: relative;
    padding-right: 24px;
}

button.mmn-mobile-accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mmn-mobile-accordion.active .mmn-chevron,
.mmn-mobile-subaccordion.active .mmn-chevron {
    opacity: 1;
}

.mmn-chevron {
    display: flex;
}

.mmn-chevron svg {
    fill: #5b5b5b;
}

/* closed = pointing down */
.mmn-chevron.chev-closed {
    transform: rotateX(0deg);
}

/* open = rotate 180deg to point up */
.mmn-chevron.chev-open {
    transform: rotateX(180deg);
}

button.mmn-mobile-subaccordion span.mmn-chevron {
    transform: rotate(270deg);
}

button.mmn-mobile-subaccordion span.mmn-chevron.chev-open {
    transform: rotate(90deg);
}

.mmn-mobile-subsubmenu {
    padding-left: 1.5rem;
    margin: 0.4rem 0 0.7rem;
    display: none;
}





/* SEARCH BAR */


button.vl-fsps2-trigger svg {
    width: 22px;
    height: 22px;
}

.vl-fsps2-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin-left: 12px;
}
button.vl-fsps2-trigger:hover{
    background-color:#fff;
}

button.vl-fsps2-trigger:hover svg{
    fill: #e76f2d;
    
    
}
.vl-fsps2-overlay.is-open {
    font-family: 'Outfit';
}

ul.vl-fsps2-suggest li a {
    display: flex
;
    flex-direction: row;
    gap: 10px;
}

.vl-fsps2-trigger svg{fill:#333;display:block}
.vl-fsps2-overlay{position:fixed;inset:0;background:rgba(0,0,0,.85);backdrop-filter:saturate(120%) blur(2px);z-index:999999;display:none}
.vl-fsps2-overlay.is-open {
    display: flex
;
    justify-content: center;
    align-items: center;
}

.vl-fsps2-wrap {
    max-width: 820px;
    width: 80%;
    margin: 10vh auto 0;
    padding: 24px;
    position: relative;
}
.vl-fsps2-close {
    position: absolute;
    right: 24px;
    background: transparent;
    border: 0;
    color: #ffffff00;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    background:#ffffff00
}.vl-fsps2-form{margin:0}
.vl-fsps2-input{width:100%;font-size:22px;line-height:1.35;padding:16px 18px;border-radius:12px;border:0;outline:none; font-family:'Outfit';}
.vl-fsps2-suggest{list-style:none;margin:10px 0 0;padding:0;border-radius:12px;max-height:50vh;overflow:auto}
.vl-fsps2-suggest li{display:flex;align-items:center;gap:10px;padding:10px 12px;border-top:1px solid rgba(255,255,255,.06)}
.vl-fsps2-suggest li:first-child{border-top:0}
.vl-fsps2-suggest a{flex:1 1 auto;color:#333;text-decoration:none}
.vl-fsps2-sku{opacity:.75;font-size:12px}
.vl-fsps2-thumb{width:40px;height:40px;flex:0 0 40px;background:#0c0c0c;border-radius:8px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.vl-fsps2-thumb img{max-width:100%;max-height:100%;display:block}
.vl-fsps2-empty{color:#fff;opacity:.85;padding:10px 2px}

@media only screen and (max-width: 767px) {

.vl-fsps2-wrap {
    width: 90%;
    margin-bottom: 40vh;
}

input.vl-fsps2-input {
    font-size: 16px;
}

.vl-fsps2-suggest {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    border-radius: 12px;
    max-height: 60vh;
    overflow: auto;
}

ul.vl-fsps2-suggest {
    font-size: 14px;
}

}

/* MAIN WRAPPER */
.vl-search-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* SEARCH BAR */
.vl-fsps2-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 17px;
    background: #fafafa;
}

.vl-fsps2-input:focus {
    border-color: #000;
    background: #fff;
}

input.vl-fsps2-input {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.6px;
}
/* DROPDOWN */
.vl-search-mega {
        position: fixed !important;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;

    top: calc(var(--search-bar-bottom, 100px)); /* will update via JS */

    background: #fff;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
    padding: 28px 40px;
    z-index: 99999;

    display: none;
        margin-top: -13px;
        background-image: url(http://bloopers.ro/wp-content/uploads/2025/11/bg-header.png);
    background-size: cover;
    background-color: rgb(255 255 255 / 80%);
    background-blend-mode: lighten;

}

.vl-search-container.is-open .vl-search-mega {
    display: flex;
    font-family:'Outfit';
}

/* LEFT COLUMN (20%) */
.vl-search-left {
    width: 22%;
    min-width: 140px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.vl-block h4 {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.6;
    text-transform: uppercase;
}

.vl-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.vl-block li {
    margin: 6px 0;
}

.vl-block a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.vl-block a:hover {
    color: #e76f2d;
}

/* RIGHT COLUMN (80%) */
.vl-search-right {
    width: 78%;
    padding-left: 20px;
}

.vl-search-meta {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* RESULTS LIST */
.vl-fsps2-suggest li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.vl-fsps2-suggest img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: contain;
}


.mmn-no-scroll {
    overflow: hidden;
    height: 100vh;
}




/* MOBILE */
@media(max-width: 768px) {
    .vl-search-mega {
        flex-direction: column;
    }
    .vl-search-left, .vl-search-right {
        width: 100%;
        border: none;
        padding: 0;
    }
    .vl-search-mega{
        margin-top:25px;
        flex-direction:column-reverse;
    }
    .search-mmn-no-scroll{
    overflow: hidden;
    height: 100vh;
}
.vl-search-left.vl-hide-mobile{
    display: none;
}
}





.right-container-accordion {
    display: flex;
}