/* MAV-shop Custom Theme CSS 
   Bestand: mav-style.css
   Layout: 3-Layer Header met Search LINKS en Utils RECHTS in de bovenbalk
   FIX: Logo naar links uitgelijnd, Menu font verkleind & Roze menu separators
   UPDATE: Alle roze elementen gesynchroniseerd naar één consistente huisstijlkleur
*/

:root {
    --mav-pink: #E6007E;
    --mav-pink-hover: #C5006D;
}

/* --- 1. HEADER BASIS --- */
#header {
    background: #fff;
    position: relative;
    z-index: 1000;
}

/* LAAG 1: Functionele bovenbalk */
.header-nav {
    background: #f8f8f8 !important;
    border-bottom: 1px solid #eeeeee;
    padding: 8px 0 !important;
    min-height: 50px !important;
}

.nav-functional-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
}

/* Zoekbalk styling (Links) */
.search-top {
    display: flex !important;
    align-items: center;
    min-width: 300px;
    margin-left: 20px !important;
    margin-top: -9px !important;
}

.search-top #search_widget {
    margin: 0 !important;
    width: 100%;
}

.search-top #search_widget form {
    display: flex !important;
    background: #fff !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px;
    height: 36px !important;
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s ease;
}

.search-top #search_widget form:focus-within {
    border-color: var(--mav-pink) !important;
}

.search-top #search_widget input[type="text"] {
    border: none !important;
    padding: 0 15px 0 30px !important;
    font-size: 14px !important;
    flex: 1 !important;
    outline: none !important;
    height: 100% !important;
    background: #fff !important;
    color: #333 !important;
}

/* Zoekknop nu ook in MAV-roze voor eenheid */
.search-top #search_widget button[type="submit"] {
    background: var(--mav-pink) !important;
    color: #fff !important;
    width: 45px !important;
    border: none !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.search-top #search_widget button[type="submit"]:hover {
    background: var(--mav-pink-hover) !important;
}

.search-top #search_widget button[type="submit"] i,
.search-top #search_widget button[type="submit"] .material-icons {
    position: static !important;
    font-size: 20px;
}

/* Utils Groep (Taal, Login, Cart) aan de rechterkant */
.utils-top {
    display: flex !important;
    align-items: center !important;
    gap: 15px;
    font-size: 12px;
}

.utils-top .user-info, 
.utils-top .language-selector, 
.utils-top .currency-selector {
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* Winkelwagen button styling (MAV-roze) */
.utils-top .blockcart {
    margin: 0 !important;
    padding: 6px 15px !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: var(--mav-pink) !important;
    color: #ffffff !important;
    border: 1px solid var(--mav-pink);
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.utils-top .blockcart a, 
.utils-top .blockcart i, 
.utils-top .blockcart span {
    color: #ffffff !important;
}

.utils-top .blockcart:hover {
    background: var(--mav-pink-hover) !important;
    border-color: var(--mav-pink-hover);
}

.utils-top a {
    color: #666 !important;
    text-decoration: none !important;
}

.utils-top a:hover {
    color: var(--mav-pink) !important;
}

/* Verberg dubbele zoekbalken */
.header-top-logo-row #search_widget,
.header-menu-row #search_widget {
    display: none !important;
}

/* LAAG 2: Logo Sectie */
.header-top-logo-row {
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

#_desktop_logo {
    text-align: left;
}

#_desktop_logo img {
    max-width: 150px !important;
    height: auto;
    margin: 0;
}

/* LAAG 3: Menu Sectie */
.header-menu-row {
    background: #ffffff;
    border-bottom: 2px solid #f8f8f8;
}

.top-menu {
    display: flex !important;
    align-items: center;
}

.top-menu > li {
    border-right: 1px solid var(--mav-pink);
}

.top-menu > li:last-child {
    border-right: none;
}

.top-menu a[data-depth="0"] {
    padding: 12px 20px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    display: inline-block;
    color: #333 !important;
    transition: color 0.2s ease;
}

.top-menu a[data-depth="0"]:hover {
    color: var(--mav-pink) !important;
}

/* --- 2. EXTRA PRODUCT & FOOTER STYLING --- */
.product-miniature {
    transition: border-color 0.3s ease;
}

.product-miniature:hover {
    border-color: var(--mav-pink) !important;
}

.product-miniature img {
    transition: transform 0.5s ease;
}

.product-miniature:hover img {
    transform: scale(1.1);
}

#footer {
    background-color: #111111 !important;
    color: #ffffff !important;
    padding-top: 50px;
}

#footer h1, #footer h2, #footer h3, #footer h4, #footer .h3, 
#footer .block-contact, 
#footer .block-contact i, 
#footer .block-contact .label,
#footer .block-contact * {
    color: #ffffff !important;
}

/* Copyright tekst in MAV-roze */
#footer .footer-after,
#footer .footer-after p,
#footer .footer-after a,
#footer .copyright-text,
#footer .copyright-text a {
    color: var(--mav-pink) !important;
}

#footer a {
    color: #ffffff !important;
}

#footer a:hover {
    color: var(--mav-pink) !important;
}

/* Nieuwsbrief banner styling */
#footer .block_newsletter {
    background: #fff;
    padding: 30px !important;
    border-radius: 4px;
    width: 48% !important; 
    max-width: 100% !important;
    margin: 10px 0 10px 2% !important;
    display: inline-block !important;
    vertical-align: top;
    float: right !important;
}

#footer .col-md-12.block_newsletter,
#footer .block_newsletter.links {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    float: right !important;
}

/* Nieuwsbrief Button (MAV-roze) */
#footer .block_newsletter button,
#footer .block_newsletter input[type="submit"] {
    background: var(--mav-pink) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

#footer .block_newsletter button:hover,
#footer .block_newsletter input[type="submit"]:hover {
    background: var(--mav-pink-hover) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#footer .block_newsletter form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

#footer .block_newsletter input[type="email"] {
    flex: 1;
    min-width: 180px;
}

/* --- 3. SLIDER STYLING --- */
.homeslider-container {
    border-bottom: 3px solid var(--mav-pink);
    background: #fff;
    width: 66% !important;
    float: left !important;
    margin-right: 2% !important;
    margin-bottom: 30px !important;
}

.homeslider-container + .banner,
.homeslider-container + div[class*="banner"] {
    width: 32% !important;
    float: left !important;
    display: inline-block !important;
    margin-bottom: 30px !important;
}

.homeslider-description {
    border-left: 4px solid var(--mav-pink) !important;
    padding-left: 25px !important;
    background: rgba(255, 255, 255, 0.8);
}

.homeslider-description h2 {
    color: #111 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

/* Slider dots in MAV-roze */
.homeslider-container .owl-dots .owl-dot.active span,
.direction .dot.active {
    background: var(--mav-pink) !important;
    border-color: var(--mav-pink) !important;
}

.homeslider-container .owl-dots .owl-dot span {
    background: #ccc;
    transition: background 0.3s ease;
}

/* --- 4. RESPONSIVE --- */
@media (max-width: 767px) {
    .nav-functional-wrapper {
        display: none !important;
    }
    .top-menu > li {
        border-right: none;
    }
    #footer .block_newsletter,
    #footer .col-md-12.block_newsletter {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        float: none !important;
        margin: 10px 0 !important;
    }
    .homeslider-container,
    .homeslider-container + .banner,
    .homeslider-container + div[class*="banner"] {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }
}