.elementor-24 .elementor-element.elementor-element-6513c61{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-9639197 *//* ==================================================
   GLOBAL RESET
================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 140px; /* Topbar + Header magasság */
    font-family: inherit;
}

/* ==================================================
   HEADER WRAPPER (FIXED SYSTEM)
================================================== */

.qulo-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* ==================================================
   TOP BAR (BLACK)
================================================== */

.qulo-top-bar {
    background: #44322c;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #fff;
    transition: all 0.4s ease;
}

.qulo-top-left {
    letter-spacing: 2px;
    font-weight: 500;
}

.qulo-top-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.qulo-top-item i {
    margin-right: 6px;
}

.qulo-socials i {
    margin-left: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.qulo-socials i:hover {
    color: #CBAB8D;
}

/* ==================================================
   MAIN HEADER (WHITE)
================================================== */

.qulo-header {
    background: #fff;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: all 0.4s ease;
}

/* Scroll state */

.qulo-header-wrapper.scrolled .qulo-top-bar {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.qulo-header-wrapper.scrolled .qulo-header {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ==================================================
   LOGO
================================================== */

.qulo-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.qulo-logo-img {
    height: 120px;
    width: 120px;
    display: block;
}

.qulo-logo-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
}

/* ==================================================
   NAVIGATION
================================================== */

.qulo-nav {
    display: flex;
    gap: 35px;
}

.qulo-nav a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.qulo-nav a:hover {
    color: #CBAB8D;
}

/* ==================================================
   RIGHT SIDE
================================================== */

.qulo-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.qulo-contact-btn {
    padding: 10px 22px;
    border-radius: 25px;
    border: 2px solid #CBAB8D;
    text-decoration: none;
    font-weight: 600;
    color: #444;
    transition: 0.3s;
}

.qulo-contact-btn:hover {
    background: #44322c;
    color: #fff;
}

/* ==================================================
   CART
================================================== */

.qulo-cart {
    position: relative;
    font-size: 20px;
    cursor: pointer;
}

.qulo-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #CBAB8D;
    color: #fff;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================================================
   MOBILE TOGGLE
================================================== */

.qulo-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/* ==================================================
   MOBILE CONTACT BUTTON IN MENU
================================================== */

.qulo-mobile-contact {
    margin-top: auto;
    padding: 14px;
    text-align: center;
    background: #CBAB8D;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
}

/* ====================================
   MOBILE NAV CLOSE BUTTON
==================================== */

.qulo-nav-close {
    display: none;
}

@media (max-width: 1024px) {

    .qulo-nav-close {
        display: flex;
        justify-content: flex-end;
        font-size: 22px;
        cursor: pointer;
        margin-bottom: 20px;
    }

}
/* Desktopon ne látszódjon a mobile contact */
@media (min-width: 1025px) {
    .qulo-mobile-contact {
        display: none;
    }
}

/* ==================================================
   CART ALWAYS VISIBLE
================================================== */

/* Ne tűnjön el mobilon a jobb oldal */
@media (max-width: 1024px) {

    .qulo-header-right {
        display: flex;
        gap: 15px;
    }

    /* Kontakt gomb mobilon ne legyen a headerben */
    .qulo-header-right .qulo-contact-btn {
        display: none;
    }
}


/* ==================================================
   TABLET + MOBILE (1024px alatt)
================================================== */

@media (max-width: 1024px) {

    body {
        padding-top: 130px;
    }

    .qulo-top-bar,
    .qulo-header {
        padding: 15px 20px;
    }

    /* HEADER FLEX LAYOUT */
    .qulo-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* LOGO */
    .qulo-logo {
        order: 1;
    }

    /* KOSÁR */
    .qulo-header-right {
        order: 2;
        display: flex;
        align-items: center;
        gap: 6px; /* közelebb a hamburgerhez */
    }

    /* Desktop kontakt eltűnik */
    .qulo-header-right .qulo-contact-btn {
        display: none;
    }

    /* HAMBURGER */
    .qulo-mobile-toggle {
        order: 3;
        display: block;
        margin-left: 6px;
    }

    /* MOBILE NAV */
    .qulo-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #fff;
        flex-direction: column;
        padding: 100px 30px 30px 30px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.3s ease;
        z-index: 10000;
        display: flex;
    }

    .qulo-nav.active {
        right: 0;
    }

    /* X GOMB */
    .qulo-nav-close {
        display: flex;
        justify-content: flex-end;
        font-size: 22px;
        cursor: pointer;
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {

    body {
        padding-top: 150px;
    }

    .qulo-top-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 10px 15px;
    }

    .qulo-header {
        padding: 15px;
    }

    .qulo-logo-text {
        font-size: 18px;
    }
}/* End custom CSS */