/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 2.2.0
Text Domain: hello-elementor-child
*/

/* =========================================================
   CSS VÁLTOZÓ FALLBACKEK
   (A tényleges értékeket a Customizer inline CSS-ből írja felül.)
   ========================================================= */
:root {
    --hc-header-bg: transparent;
    --hc-header-bg-sticky: rgba(18, 18, 20, 0.95);
    --hc-menu-link: #ffffff;
    --hc-menu-link-hover: #ffd700;
    --hc-submenu-bg: #1c1c1f;
    --hc-submenu-link: #ffffff;
    --hc-submenu-hover-bg: #252528;
    --hc-cta-bg: #ffd700;
    --hc-cta-color: #121214;
    --hc-cta-hover-bg: #facc15;
    --hc-cta-hover-color: #121214;
    --hc-cta-bg-sticky: #ffd700;
    --hc-cta-color-sticky: #121214;
    --hc-cta-radius: 6px;
    --hc-cta-padding-y: 10px;
    --hc-cta-padding-x: 24px;
    --hc-header-radius: 20px;
    --hc-header-max-width: 1300px;
    --hc-header-offset: 20px;
    --hc-content-offset: 0px;
    --hc-sidebar-bg: #131313;
    --hc-sidebar-color: #ffffff;
    --hc-sidebar-hover: #ffd700;
    --hc-menu-font-size: 16px;
    --hc-cta-font-size: 16px;
    --hc-logo-height: 50px;
    --hc-logo-height-mobile: 40px;
}

/* =========================================================
   TARTALOM ELTOLÁS – a fejléc alatti rés (behúzás a menü alá)
   ========================================================= */
/*
   FONTOS: `overflow-x: hidden` helyett `overflow-x: clip` kell!
   CSS spec szerint ha az egyik tengely `hidden` (vagy bármi nem-visible),
   a másik tengely `visible` értéke `auto`-ra számítódik át → az elem
   scroll-konténerré válik, és plusz függőleges scrollbar jelenhet meg.
   A `clip` érték CSAK levágja a túllógó tartalmat, de NEM tesz scroll-konténert,
   így az `overflow-y` megmarad `visible`-nek. Ezért nincs plusz scrollbar.
   Fallback a régi böngészőkhöz: előbb `hidden`, aztán `clip`.
*/


/* =========================================================
   BASE HEADER STYLES
   ========================================================= */

/* A teljes fejléc befoglalója */
.custom-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    background: var(--hc-header-bg) !important;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    pointer-events: none;
    box-sizing: border-box;
    overflow: visible !important;
    transition: all 0.3s ease;
}

/* ---------------------------------------------------------
   TOP BAR STYLES
   --------------------------------------------------------- */
.custom-header-top-bar {
    width: 100%;
    background: transparent;
    padding: 10px 0;
    pointer-events: auto;
    position: relative;
    z-index: 1000;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5px 0px;
    box-sizing: border-box;
}

.top-bar-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-contact li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: color 0.3s;
}

.top-bar-contact li a:hover {
    color: #ffffff;
}

.top-bar-social .header-grid {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.top-bar-social a:hover {
    background: #fff;
}

.top-bar-social svg {
    width: 18px;
    height: 18px;
}

.top-bar-social path {
    transition: fill 0.3s;
}

.custom-header-wrapper.header-on-light .top-bar-contact li a {
    color: #1C191A;
}

.custom-header-wrapper.header-on-light .top-bar-social a {
    background: #fff;
}

.header-divider {
    width: 100%;
    max-width: 1300px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    transition: background-color 0.3s;
}

.custom-header-wrapper.header-on-light .header-divider {
    background-color: #fff;
}

/* ---------------------------------------------------------
   HEADER INNER
   --------------------------------------------------------- */
.custom-header-inner {
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 !important;
    height: var(--hc-header-height);
    border-radius: 0;
    padding: 0 40px;
    box-sizing: border-box;
    background: transparent;
    transition: background 0.3s ease, max-width 0.3s ease, border-radius 0.3s ease, height 0.3s ease;
}

.custom-header-wrapper.header-on-light .custom-header-inner {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-image: none;
}

/* STICKY állapot */
.custom-header-inner.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--hc-header-bg-sticky) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

/* ---------------------------------------------------------
   HEADER CONTAINER
   --------------------------------------------------------- */
.custom-header-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */
.custom-header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 0;
    z-index: 10;
}

.submenu-toggle-link::after {
    margin-left: 8px !important;
    margin-right: unset !important;
}

.custom-header-sidebar ::marker {
    font-size: 0px !important;
}

.custom-header-sidebar-logo img {
    display: none !important;
}

.custom-header-logo img {
    max-height: var(--hc-logo-height) !important;
    width: auto !important;
    height: auto !important;
    display: block;
    filter: none;
    transition: filter 0.3s ease;
    object-fit: contain;
}

.custom-header-logo a {
    display: flex;
}

.custom-header-wrapper.header-on-light .custom-header-logo img {
    filter: invert(1) brightness(0);
}

.custom-header-inner.is-sticky .custom-header-logo img {
    filter: none !important;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */
.custom-header-nav-desktop {
    display: block;
}

/* A fő (jobb oldali) menü alapból jobbra van tolva */
.custom-header-nav-right {
    margin-left: auto;
}

/* =========================================================
   DESKTOP LANG SWITCHER
   ========================================================= */
.custom-header-lang-wrapper {
    display: flex;
    align-items: center;
    margin-left: 25px;
    z-index: 1002;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.custom-header-lang-wrapper .pll-switch {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 6px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 10px 14px;
    line-height: 1;
    transition: all 0.3s ease;
}

.custom-header-lang-wrapper .pll-switch img {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 999px;
}

.custom-header-lang-wrapper .pll-switch__code {
    line-height: 1;
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    font-family: inherit;
    transition: color 0.3s ease;
}

.custom-header-wrapper.header-on-light .custom-header-lang-wrapper .pll-switch__code {
    color: #1C191A;
}

.custom-header-lang-wrapper.is-sticky .pll-switch__code {
    color: #ffffff !important;
}

.custom-header-lang-wrapper.is-sticky .pll-switch {
    background: rgba(19, 19, 19, 0.9);
}

@media(max-width: 1350px) {
    .custom-header-lang-wrapper {
        display: none;
    }

    .custom-header-top-bar {
        display: none;
    }

    .header-divider {
        display: none;
    }

    .custom-header-nav-desktop {
        display: none;
    }
}

/* =========================================================
   DESKTOP STYLES (Min-width: 1201px)
   ========================================================= */
@media (min-width: 1201px) {
    .custom-header-menu-list {
        display: flex;
        gap: 25px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        justify-content: flex-end;
    }

    .custom-header-menu-list>li {
        position: relative;
    }

    .custom-header-menu-list>li::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent;
        pointer-events: auto;
    }

    .custom-header-menu-list li a {
        text-decoration: none;
        color: var(--hc-menu-link);
        font-weight: 400 !important;
        font-style: normal !important;
        font-size: var(--hc-menu-font-size) !important;
        transition: color 0.3s, background-color 0.3s, transform 0.2s;
        font-family: 'Poppins', sans-serif !important;
        white-space: nowrap;
        text-transform: none;
        letter-spacing: normal;
    }

    .custom-header-wrapper.header-on-light .custom-header-menu-list li a {
        color: var(--hc-menu-link);
    }

    /* Sticky módban a normál menüpontok (nem CTA) a menu-link színét kapják. */
    .custom-header-inner.is-sticky .custom-header-menu-list li:not(.CTA) a {
        color: var(--hc-menu-link) !important;
    }

    /* Sticky módban a CTA gomb saját (külön állítható) háttér- és szövegszínt kap. */
    .custom-header-inner.is-sticky .custom-header-menu-list li.CTA a {
        background-color: var(--hc-cta-bg-sticky) !important;
        color: var(--hc-cta-color-sticky) !important;
    }

    /* Sticky CTA hover – továbbra is a közös hover színeket használja. */
    .custom-header-inner.is-sticky .custom-header-menu-list li.CTA a:hover,
    .custom-header-inner.is-sticky .custom-header-menu-list li.CTA:hover>a,
    .custom-header-inner.is-sticky .custom-header-menu-list li.CTA:focus-within>a {
        background-color: var(--hc-cta-hover-bg) !important;
        color: var(--hc-cta-hover-color) !important;
    }

    .custom-header-inner.is-sticky .custom-header-menu-list .sub-menu a {
        color: var(--hc-submenu-link) !important;
    }

    .custom-header-inner.is-sticky .custom-header-menu-list .sub-menu a:hover,
    .custom-header-inner.is-sticky .custom-header-menu-list .sub-menu a:focus {
        color: var(--hc-submenu-link) !important;
    }

    .custom-header-menu-list li a:hover,
    .custom-header-menu-list li:hover>a,
    .custom-header-menu-list li:focus-within>a {
        color: var(--hc-menu-link-hover) !important;
    }

    /* -----------------------------------------------------
       CTA (gomb) menüpont
       ----------------------------------------------------- */
    .custom-header-menu-list li.CTA a {
        background-color: var(--hc-cta-bg) !important;
        color: var(--hc-cta-color) !important;
        padding: var(--hc-cta-padding-y) var(--hc-cta-padding-x) !important;
        border-radius: var(--hc-cta-radius);
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        font-weight: 600 !important;
        font-style: normal !important;
        font-size: var(--hc-cta-font-size) !important;
        line-height: 1;
        text-transform: none;
        letter-spacing: normal;
        font-family: 'Poppins', sans-serif !important;
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .custom-header-menu-list li.CTA a:hover,
    .custom-header-menu-list li.CTA:hover>a,
    .custom-header-menu-list li.CTA:focus-within>a {
        transform: translateY(-3px);
        background-color: var(--hc-cta-hover-bg) !important;
        color: var(--hc-cta-hover-color) !important;
    }

    /* Almenü */
    .custom-header-menu-list li .sub-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 220px;
        padding: 8px;
        margin: 0;
        list-style: none;
        background: var(--hc-submenu-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: none;
        border-radius: 12px;
        box-shadow: 0 20px 25px -5px rgba(19, 19, 19, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.98);
        transform-origin: top left;
        pointer-events: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
    }

    .custom-header-menu-list li:hover>.sub-menu,
    .custom-header-menu-list li:focus-within>.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .custom-header-menu-list li .sub-menu li {
        margin: 0;
        padding: 0;
        position: relative;
    }

    .custom-header-menu-list li .sub-menu li::after {
        display: none;
    }

    .custom-header-menu-list li .sub-menu li+li {
        margin-top: 2px;
    }

    .custom-header-menu-list li .sub-menu a {
        display: block;
        padding: 8px 12px;
        border-radius: 8px;
        text-transform: none;
        font-size: var(--hc-submenu-font-size) !important;
        font-weight: 400;
        color: var(--hc-submenu-link) !important;
        transition: all 0.2s ease;
        white-space: nowrap;
        background: transparent !important;
    }

    .custom-header-menu-list li .sub-menu a:hover,
    .custom-header-menu-list li .sub-menu a:focus {
        background: var(--hc-submenu-hover-bg) !important;
        color: var(--hc-submenu-link) !important;
        transform: translateX(4px);
        outline: none;
    }

    /* Második szint */
    .custom-header-menu-list li .sub-menu li .sub-menu {
        top: 0;
        left: 100%;
        transform: translateX(10px) scale(0.98);
        transform-origin: top left;
    }

    .custom-header-menu-list li .sub-menu li:hover>.sub-menu,
    .custom-header-menu-list li .sub-menu li:focus-within>.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
        pointer-events: auto;
    }

    .custom-header-mobile-toggle {
        display: none;
    }

    /* KOSÁR IKON – Desktop */
    .custom-header-cart {
        display: flex;
        align-items: center;
        margin-left: 20px;
        pointer-events: auto;
    }

    /* Extra shortcode doboz – a menü és a kosár között */
    .custom-header-extra {
        display: flex;
        align-items: center;
        margin-left: 20px;
        pointer-events: auto;
    }
}

/* =========================================================
   LOGO-CENTER ELRENDEZÉS (Desktop)
   Bal menü | Logó | Jobb menü  (kosár nem látszik, szimmetria miatt)
   ========================================================= */
@media (min-width: 1201px) {
    body.hc-layout-logo-center .custom-header-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 20px;
    }

    body.hc-layout-logo-center .custom-header-nav-left {
        grid-column: 1;
        justify-self: start;
        margin-left: 0;
    }

    body.hc-layout-logo-center .custom-header-logo {
        grid-column: 2;
        justify-self: center;
    }

    body.hc-layout-logo-center .custom-header-nav-right {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
    }

    body.hc-layout-logo-center .custom-header-nav-left .custom-header-menu-list {
        justify-content: flex-start;
    }

    body.hc-layout-logo-center .custom-header-nav-right .custom-header-menu-list {
        justify-content: flex-end;
    }

    /* A kosárikont és az extra shortcode-ot elrejtjük a középre igazított logó
       melletti szimmetrikus elrendezés megőrzése érdekében (mobilon így is látszanak). */
    body.hc-layout-logo-center .custom-header-cart,
    body.hc-layout-logo-center .custom-header-extra {
        display: none;
    }
}

/* =========================================================
   BOXED (keretes) MENÜSÁV – max. szélesség + lekerekítés
   ========================================================= */
@media (min-width: 1201px) {
    body.hc-width-boxed .custom-header-wrapper {
        background: transparent !important;
    }

    body.hc-width-boxed .custom-header-inner {
        max-width: var(--hc-header-max-width);
        margin: var(--hc-header-offset) auto 0 !important;
        border-radius: var(--hc-header-radius);
        background: var(--hc-header-bg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    body.hc-width-boxed .custom-header-inner.is-sticky {
        position: fixed;
        top: var(--hc-header-offset);
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: var(--hc-header-max-width);
        border-radius: var(--hc-header-radius);
        background: var(--hc-header-bg-sticky) !important;
    }
}

/* =========================================================
   MOBILE STYLES (Max-width: 1350px)
   ========================================================= */
@media (max-width: 1350px) {
    .custom-header-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        position: fixed;
        background: var(--hc-header-bg) !important;
    }

    /* Mobilon mindig teljes szélességű, a boxed beállítás csak desktopon számít */
    body.hc-width-boxed .custom-header-wrapper {
        background: var(--hc-header-bg) !important;
    }

    body.hc-width-boxed .custom-header-inner {
        max-width: 100%;
        margin: 0 !important;
        border-radius: 0;
        box-shadow: none;
    }

    .custom-header-inner {
        padding: 0 25px;
        border-radius: 0;
    }

    .custom-header-container {
        width: 100%;
        justify-content: space-between;
        display: flex !important;
        grid-template-columns: none !important;
    }

    .custom-header-logo {
        flex-grow: 0;
        order: 1;
        justify-self: start !important;
    }

    .custom-header-logo img {
        max-height: var(--hc-logo-height-mobile) !important;
        width: auto !important;
        height: auto !important;
    }

    /* Mobilon mindkét asztali menü el van rejtve */
    .custom-header-nav-desktop,
    .custom-header-nav-left,
    .custom-header-nav-right {
        display: none !important;
    }

    /* Mobilon a kosár mindig látszik */
    body.hc-layout-logo-center .custom-header-cart {
        display: flex;
    }

    .custom-header-cart {
        order: 2;
        margin-left: auto;
        margin-right: 8px;
        display: flex;
        align-items: center;
        pointer-events: auto;
    }

    /* Extra shortcode mobilon – a kosár elé kerül, ne tolja ki a hamburger-t */
    .custom-header-extra {
        order: 2;
        margin-left: auto;
        margin-right: 8px;
        display: flex;
        align-items: center;
        pointer-events: auto;
    }

    .custom-header-extra+.custom-header-cart {
        margin-left: 0;
    }

    .custom-header-mobile-toggle {
        order: 3;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        background-color: transparent !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1001;
        box-shadow: none !important;
        outline: none !important;
        border: none !important;
    }

    .custom-header-mobile-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background-color: var(--hc-menu-link) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease;
        margin: 0 !important;
    }

    .custom-header-wrapper.header-on-light .custom-header-mobile-toggle span {
        background-color: var(--hc-menu-link) !important;
    }

    .custom-header-inner.is-sticky .custom-header-mobile-toggle span {
        background-color: var(--hc-menu-link) !important;
    }
}

/* =========================================================
   MOBILE SIDEBAR (Off-canvas)
   ========================================================= */
.custom-header-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80vw;
    max-width: 350px;
    height: 100vh;
    background: var(--hc-sidebar-bg);
    backdrop-filter: blur(15px);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    overflow-y: auto;
}

.custom-header-sidebar.is-open {
    transform: translateX(0);
}

.custom-header-sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-header-sidebar-logo img {
    max-height: 65px;
    width: auto !important;
    filter: none !important;
}

.custom-header-sidebar-close {
    background: transparent !important;
    border: none;
    color: var(--hc-sidebar-color) !important;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    width: auto;
    height: auto;
    padding: 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-header-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-header-mobile-list>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-header-mobile-list li a {
    color: var(--hc-sidebar-color);
    text-decoration: none;
    font-size: var(--hc-menu-font-size) !important;
    font-weight: var(--hc-menu-font-weight) !important;
    font-style: var(--hc-menu-font-style) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: inherit !important;
    transition: color 0.2s;
}

.custom-header-mobile-list li a:hover,
.custom-header-mobile-list li a:focus {
    color: var(--hc-sidebar-hover);
}

.custom-header-mobile-list li.menu-item-has-children>a::after {
    content: '' !important;
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    border: 0 !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-right: 5px;
}

.custom-header-mobile-list li.menu-item-has-children>a.is-active::after {
    transform: rotate(-135deg);
    margin-top: 5px;
}

/* =========================================================
   MOBILE SUBMENUS (Accordion)
   ========================================================= */
.custom-header-mobile-list .sub-menu {
    display: none;
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
    border-radius: 8px;
}

.custom-header-mobile-list .sub-menu.is-open {
    display: block;
    animation: fadeIn 0.3s ease;
}

.custom-header-mobile-list .sub-menu li {
    border: none;
    margin: 0;
}

.custom-header-mobile-list .sub-menu a {
    font-size: var(--hc-submenu-font-size) !important;
    padding: 10px 0;
    color: var(--hc-sidebar-color);
    opacity: 0.75;
    justify-content: flex-start;
}

.custom-header-mobile-list .sub-menu a:hover {
    opacity: 1;
    color: var(--hc-sidebar-hover);
}

.custom-header-mobile-list .sub-menu a::after {
    display: none !important;
}

.custom-header-mobile-list .sub-menu .sub-menu {
    padding-left: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 6px 6px 0;
    margin: 2px 0 6px 4px;
}

.custom-header-mobile-list .sub-menu .sub-menu a {
    font-size: 14px;
    opacity: 0.55;
    padding: 12px 0;
}

.custom-header-mobile-list .sub-menu .sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   OVERLAY
   ========================================================= */
.custom-header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 19, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.custom-header-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .custom-header-inner {
        height: var(--hc-header-height);
        border-radius: 0;
    }
}

/* =========================================================
   ILOCKEDYOU DESIGN SYSTEM (ANTIGRAVITY UTILITY CSS)
   ========================================================= */

:root {
    /* Color Tokens */
    --color-primary: #121214;
    --color-primary-dark: #0a0a0b;
    --color-secondary: #e0e0e0;
    --color-muted: #a0a0a5;
    --color-gold-500: #ffd700;
    --color-yellow-400: #facc15;
    --color-card: #1c1c1f;
    --color-surface: #252528;

    /* Font Tokens */
    --font-display: 'Rubik Dirt', cursive, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Poppins', sans-serif;
}

/* Global Reset & Base */
html, body {
    background-color: var(--color-primary) !important;
    color: var(--color-secondary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   ILOCKEDYOU OFFICIAL DESIGN SYSTEM - TYPOGRAPHY
   ========================================================= */

/* 1. Display (Rubik Dirt Regular — 104px, 64px, 40px) */
.font-display,
.font-rubik {
    font-family: 'Rubik Dirt', cursive, sans-serif !important;
    font-weight: 400 !important;
}
.display-hero {
    font-family: 'Rubik Dirt', cursive, sans-serif !important;
    font-size: clamp(3.75rem, 8vw, 6.5rem) !important; /* 104px */
    line-height: 1 !important;
}
.display-xl,
.text-hero-xl {
    font-family: 'Rubik Dirt', cursive, sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4rem) !important; /* 64px */
    line-height: 1 !important;
}
.display-lg {
    font-family: 'Rubik Dirt', cursive, sans-serif !important;
    font-size: 2.5rem !important; /* 40px */
    line-height: 1 !important;
}

/* 2. Heading (JetBrains Mono Bold — 36px, 28px, 20px, 16px) */
.heading-h1, h1.font-jetbrains {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 2.25rem !important; /* 36px */
    line-height: 2.5rem !important; /* 40px */
}
.heading-h2, h2.font-jetbrains {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 1.75rem !important; /* 28px */
    line-height: 2.25rem !important; /* 36px */
}
.heading-h3, h3.font-jetbrains {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important; /* 20px */
    line-height: 1.5rem !important; /* 24px */
}
.heading-h4, h4.font-jetbrains {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 1rem !important; /* 16px */
    line-height: 1.375rem !important; /* 22px */
}

/* 3. Body (Poppins — 18px, 16px, 14px, 12px) */
.font-body,
.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}
.body-lg,
.text-body-lg {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.125rem !important; /* 18px */
    line-height: 1.75rem !important; /* 28px */
}
.body-lg-semibold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important; /* 18px */
    line-height: 1.75rem !important; /* 28px */
}
.body-md,
.text-body-md {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1rem !important; /* 16px */
    line-height: 1.5rem !important; /* 24px */
}
.body-md-semibold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important; /* 16px */
    line-height: 1.5rem !important; /* 24px */
}
.body-sm,
.text-body-sm {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important; /* 14px */
    line-height: 1.375rem !important; /* 22px */
}
.body-sm-semibold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important; /* 14px */
    line-height: 1.375rem !important; /* 22px */
}
.body-xs,
.text-body-xs {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.75rem !important; /* 12px */
    line-height: 1.25rem !important; /* 20px */
}

/* 4. Mono (JetBrains Mono Regular — 16px, 14px, 12px, 10px) */
.font-mono,
.font-jetbrains {
    font-family: 'JetBrains Mono', monospace !important;
}
.mono-lg {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 400 !important;
    font-size: 1rem !important; /* 16px */
    line-height: 1.5rem !important; /* 24px */
}
.mono-md {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important; /* 14px */
    line-height: 1.375rem !important; /* 22px */
}
.mono-sm {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 400 !important;
    font-size: 0.75rem !important; /* 12px */
    line-height: 1.25rem !important; /* 20px */
}
.mono-xs {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 400 !important;
    font-size: 0.625rem !important; /* 10px */
    line-height: 1rem !important; /* 16px */
}

/* 5. Label (JetBrains Mono Bold — 12px, 10px) */
.label-md {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important; /* 12px */
    line-height: 1rem !important; /* 16px */
}
.label-sm {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 0.625rem !important; /* 10px */
    line-height: 0.875rem !important; /* 14px */
}

/* Fallback & Generic Sizing Classes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.15; }
.text-hero { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.08; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.15em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.whitespace-nowrap { white-space: nowrap; }
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Color Utilities */
.bg-primary { background-color: var(--color-primary) !important; }
.bg-primary-dark { background-color: var(--color-primary-dark) !important; }
.bg-card { background-color: var(--color-card) !important; }
.bg-surface { background-color: var(--color-surface) !important; }
.bg-surface\/50 { background-color: rgba(37, 37, 40, 0.5) !important; }
.bg-gold-500 { background-color: var(--color-gold-500) !important; }
.bg-yellow-400 { background-color: var(--color-yellow-400) !important; }
.bg-primary\/50 { background-color: rgba(18, 18, 20, 0.5) !important; }
.bg-primary\/90 { background-color: rgba(18, 18, 20, 0.9) !important; }

.text-primary { color: #ffffff !important; }
.text-primary-dark { color: var(--color-primary-dark) !important; }
.text-secondary { color: var(--color-muted) !important; }
.text-secondary\/60 { color: rgba(160, 160, 165, 0.6) !important; }
.text-gold-500 { color: var(--color-gold-500) !important; }
.text-green-500 { color: #22c55e !important; }
.text-red-500 { color: #ef4444 !important; }

.hover\:bg-gold-500:hover { background-color: var(--color-gold-500) !important; }
.hover\:bg-yellow-400:hover { background-color: var(--color-yellow-400) !important; }
.hover\:bg-primary:hover { background-color: var(--color-primary) !important; }
.hover\:text-gold-500:hover { color: var(--color-gold-500) !important; }
.hover\:text-yellow-400:hover { color: var(--color-yellow-400) !important; }
.hover\:text-primary:hover { color: #ffffff !important; }
.hover\:text-primary-dark:hover { color: var(--color-primary-dark) !important; }
.hover\:border-gold-500:hover { border-color: var(--color-gold-500) !important; }

/* Border Utilities */
.border { border: 1px solid rgba(255, 255, 255, 0.1); }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.border-b { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.border-primary { border-color: #ffffff; }
.border-primary\/10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-primary\/20 { border-color: rgba(255, 255, 255, 0.2) !important; }
.border-secondary\/20 { border-color: rgba(160, 160, 165, 0.2) !important; }
.border-gold-500 { border-color: var(--color-gold-500) !important; }
.border-transparent { border-color: transparent !important; }
.focus\:border-gold-500:focus { border-color: var(--color-gold-500) !important; }

/* Radius Utilities */
.rounded-sm { border-radius: 4px; }
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-\[200px\] { max-width: 200px; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }
.top-1\/2 { top: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.overflow-hidden { overflow: hidden; }

/* Flexbox & Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.grow { flex-grow: 1; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.self-start { align-self: flex-start; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* Gaps (4px scale) */
.gap-xs { gap: 4px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }
.gap-2xl { gap: 48px; }
.gap-3xl { gap: 64px; }

/* Spacing: Padding */
.p-xs { padding: 4px; }
.p-sm { padding: 8px; }
.p-md { padding: 16px; }
.p-lg { padding: 24px; }
.p-xl { padding: 32px; }
.p-2xl { padding: 48px; }
.p-3xl { padding: 64px; }
.p-4xl { padding: 96px; }

.py-xs { padding-top: 4px; padding-bottom: 4px; }
.py-sm { padding-top: 8px; padding-bottom: 8px; }
.py-md { padding-top: 16px; padding-bottom: 16px; }
.py-lg { padding-top: 24px; padding-bottom: 24px; }
.py-xl { padding-top: 32px; padding-bottom: 32px; }
.py-2xl { padding-top: 48px; padding-bottom: 48px; }
.py-3xl { padding-top: 64px; padding-bottom: 64px; }
.py-4xl { padding-top: 96px; padding-bottom: 96px; }

.px-xs { padding-left: 4px; padding-right: 4px; }
.px-sm { padding-left: 8px; padding-right: 8px; }
.px-md { padding-left: 16px; padding-right: 16px; }
.px-lg { padding-left: 24px; padding-right: 24px; }
.px-xl { padding-left: 32px; padding-right: 32px; }

.pt-xs { padding-top: 4px; }
.pt-sm { padding-top: 8px; }
.pt-md { padding-top: 16px; }
.pt-lg { padding-top: 24px; }
.pt-xl { padding-top: 32px; }
.pt-2xl { padding-top: 48px; }
.pt-3xl { padding-top: 64px; }
.pt-4xl { padding-top: 96px; }

.pb-xs { padding-bottom: 4px; }
.pb-sm { padding-bottom: 8px; }
.pb-md { padding-bottom: 16px; }
.pb-lg { padding-bottom: 24px; }
.pb-xl { padding-bottom: 32px; }
.pb-2xl { padding-bottom: 48px; }
.pb-3xl { padding-bottom: 64px; }
.pb-4xl { padding-bottom: 96px; }

/* Spacing: Margin */
.m-xs { margin: 4px; }
.m-sm { margin: 8px; }
.m-md { margin: 16px; }
.m-lg { margin: 24px; }
.m-xl { margin: 32px; }
.m-2xl { margin: 48px; }

.my-xs { margin-top: 4px; margin-bottom: 4px; }
.my-sm { margin-top: 8px; margin-bottom: 8px; }
.my-md { margin-top: 16px; margin-bottom: 16px; }
.my-lg { margin-top: 24px; margin-bottom: 24px; }
.my-xl { margin-top: 32px; margin-bottom: 32px; }
.my-2xl { margin-top: 48px; margin-bottom: 48px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.mt-xs { margin-top: 4px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }
.mt-2xl { margin-top: 48px; }
.-mt-8 { margin-top: -2rem; }

.mb-xs { margin-bottom: 4px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 32px; }
.mb-2xl { margin-bottom: 48px; }
.mb-\[-1rem\] { margin-bottom: -1rem; }

.ml-xs { margin-left: 4px; }
.ml-sm { margin-left: 8px; }
.ml-md { margin-left: 16px; }

/* Shadows, Opacity & Transitions */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5); }
.shadow-\[0_0_15px_rgba\(255\,215\,0\,0\.2\)\] { box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
.shadow-\[0_0_10px_rgba\(255\,215\,0\,0\.5\)\] { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.list-none { list-style: none; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.object-cover { object-fit: cover; }

.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Custom Component Styles */
.hero-section {
    padding-top: calc(var(--hc-header-height, 80px) + 40px);
}

.mask-image-bottom {
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.bg-torn-paper-yellow {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 40' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,20 L30,5 L60,25 L90,10 L120,30 L150,15 L180,35 L210,12 L240,28 L270,8 L300,32 L330,14 L360,26 L390,5 L420,30 L450,15 L480,35 L510,10 L540,28 L570,8 L600,30 L630,12 L660,35 L690,18 L720,30 L750,5 L780,28 L810,12 L840,32 L870,14 L900,30 L930,8 L960,35 L990,15 L1020,30 L1050,10 L1080,28 L1110,15 L1140,35 L1170,12 L1200,25 L1200,0 Z' fill='%23ffd700'/%3E%3C/svg%3E");
    background-size: 1200px 100%;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: inline-flex;
    white-space: nowrap;
    animation: marqueeScroll 80s linear infinite;
}

.marquee-section:hover .animate-marquee {
    animation-play-state: paused;
}

details.group[open] summary .group-open\:rotate-45 {
    transform: rotate(45deg);
}

/* Forms & Inputs */
input, textarea {
    color: #ffffff;
    box-sizing: border-box;
    width: 100%;
}

input::placeholder, textarea::placeholder {
    color: rgba(160, 160, 165, 0.7);
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:block { display: block; }
    .sm\:mt-0 { margin-top: 0; }
    .sm\:ml-md { margin-left: 16px; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:block { display: block; }
    .md\:flex-row { flex-direction: row; }
    .md\:flex-row-reverse { flex-direction: row-reverse; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.15; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
    .md\:text-hero { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.08; }
    .md\:text-\[120px\] { font-size: clamp(3.5rem, 8vw, 7.5rem); line-height: 1; }
    .md\:pr-xl { padding-right: 32px; }
    .md\:pl-xl { padding-left: 32px; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:text-left { text-align: left; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =========================================================
   BUTTON STYLES (UNIVERSAL 6PX RADIUS & POPPINS FONT)
   ========================================================= */
button,
input[type="submit"],
.btn-primary,
.btn-secondary,
.btn-phone,
.custom-header-menu-list li.CTA a,
.room-card a,
.premium-room-card a,
.promo-section a,
.offer-section a,
.site-footer button[type="submit"] {
    font-family: 'Poppins', sans-serif !important;
    border-radius: 6px !important;
}

.hero-section .btn-primary,
.hero-section .btn-secondary {
    padding: 15px 30px !important;
    border-radius: 6px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-section .btn-primary {
    background-color: #ffd700 !important;
    color: #121214 !important;
    border: 2px solid #ffd700 !important;
}

.hero-section .btn-primary:hover {
    background-color: #facc15 !important;
    border-color: #facc15 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.35);
}

.hero-section .btn-secondary {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid #2A2B30 !important;
}

.hero-section .btn-secondary:hover {
    border-color: #ffd700 !important;
    color: #ffd700 !important;
    background-color: rgba(42, 43, 48, 0.5) !important;
    transform: translateY(-2px);
}

.hero-section {
    background-color: #131316 !important;
}

.hero-section .btn-phone {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    color: #ffd700 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-section .btn-phone:hover {
    color: #facc15 !important;
    transform: translateX(3px);
}

.marquee-wrapper {
    position: relative;
    width: 104%;
    margin: 50px -2%;
    overflow: hidden;
    transform: rotate(-2.8deg);
    transform-origin: center center;
}

.marquee-divider-top {
    height: clamp(80px, 8vw, 110px);
    background-image: url('https://ilockedyou.devwebsite.hu/wp-content/uploads/2026/09/elvalaszto-felso-hero.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    width: 100%;
    margin-bottom: -2px;
}

.marquee-divider-bottom {
    height: clamp(80px, 8vw, 110px);
    background-image: url('https://ilockedyou.devwebsite.hu/wp-content/uploads/2026/09/elvalaszto-also-hero.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    width: 100%;
    margin-top: -2px;
}

/* =========================================================
   OFFER CARD - FIGMA EXACT SPECIFICATION
   ========================================================= */
.offer-section {
    width: 100%;
    padding: 30px 0;
}

.offer-card-container {
    background-color: #121214 !important;
    border: 2px dashed #ffd700 !important;
    border-radius: 20px !important;
    padding: 40px 48px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    box-sizing: border-box !important;
}

.offer-card-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    max-width: 720px !important;
    flex: 1 1 auto !important;
}

.offer-badges-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 4px !important;
}

.offer-badge-primary {
    background-color: #ffd700 !important;
    color: #121214 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    line-height: 1 !important;
}

.offer-badge-primary svg {
    width: 13px !important;
    height: 13px !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

.offer-badge-secondary {
    background-color: #222226 !important;
    color: #ffffff !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    line-height: 1 !important;
}

.offer-badge-secondary svg {
    width: 13px !important;
    height: 13px !important;
    color: #ffd700 !important;
    flex-shrink: 0 !important;
}

.offer-card-title {
    font-family: 'Rubik Dirt', cursive, sans-serif !important;
    font-weight: 400 !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.offer-card-desc {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #a0a0a5 !important;
    margin: 0 !important;
}

.offer-coupon-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: 1.5px dashed #ffd700 !important;
    border-radius: 8px !important;
    padding: 8px 14px 8px 16px !important;
    min-height: 48px !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    user-select: none !important;
}

.offer-coupon-box:hover {
    border-color: #ffe033 !important;
    background-color: rgba(255, 215, 0, 0.08) !important;
}

.offer-coupon-label {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 13px !important;
    color: #888888 !important;
}

.offer-coupon-value {
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
    border: 1px dashed rgba(255, 255, 255, 0.3) !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.offer-card-right {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

.offer-cta-button {
    background-color: #ffd700 !important;
    color: #121214 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    text-align: center !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !important;
}

.offer-cta-button:hover {
    background-color: #ffe033 !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35) !important;
}

@media (max-width: 991px) {
    .offer-card-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 28px 24px !important;
        gap: 24px !important;
    }
    .offer-card-right {
        width: 100% !important;
    }
    .offer-cta-button {
        width: 100% !important;
        padding: 14px 20px !important;
    }
}

.hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-main-image,
.hero-image-wrapper img {
    width: 100% !important;
    max-width: 800px !important;
    max-height: 800px !important;
    min-width: 350px;
    height: auto !important;
    object-fit: contain;
    transform: rotate(6deg) scale(1.15);
    transform-origin: center center;
    transition: transform 0.4s ease;
}

@media (max-width: 1024px) {
    .hero-main-image,
    .hero-image-wrapper img {
        transform: rotate(3deg);
        max-width: 100% !important;
        max-height: 550px !important;
        min-width: 0;
    }
}