/* ==========================================================================
   Theme CSS
   ========================================================================== */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 992px) {
    .table-hover {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .copy-row {
        margin-left: 0;
        margin-right: 0;
    }

    .copy-row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .search-box {
        width: 100% !important;
        left: 0 !important;
        margin-left: 0 !important;
    }
}

/* --------------------------------------------------------------------------
   Mobile Navbar Layout
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .navbar-header {
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 70px;
        width: auto !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding: 0 15px !important;
    }

    .navbar-header::before,
    .navbar-header::after {
        display: none !important;
    }

    .navbar-brand {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-brand img {
        max-height: 42px !important;
    }

    .navbar-toggle {
        float: none !important;
        margin: 0 !important;
        z-index: 101;
        padding: 0 !important;
        border: none !important;
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .search-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        float: none !important;
        z-index: 101;
    }

    .search-desktop {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .search-mobile {
        display: none !important;
    }

    .navbar-brand {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .fullscreen-menu {
        display: none !important;
    }

    .search-desktop .btn-search {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 24px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        transition: opacity 0.25s ease;
    }

    .search-desktop .btn-search:hover {
        opacity: 0.7;
        background: none !important;
    }

    .search-desktop .btn-search .search-icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        position: relative;
        overflow: visible;
    }

    .search-desktop .btn-search .search-icon .search-icon-circle {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    .search-desktop .btn-search .search-icon .search-icon-handle {
        top: 12px;
        left: 12px;
        width: 9px;
        height: 2px;
    }

    header.bg-transparent .search-desktop .btn-search .search-icon {
        color: #ffffff;
    }

    header.scroll-css .search-desktop .btn-search {
        margin-top: 8px !important;
    }

    header.scroll-css .search-desktop .btn-search .search-icon {
        color: #1a1a1a;
    }
}

@media (min-width: 993px) {
    .footer-parallax {
        z-index: 0;
    }

    body.inner-page .footer-parallax-container {
        position: relative;
        z-index: 2;
    }

    body.inner-page .header-title,
    body.inner-page .section-empty,
    body.inner-page .section-bg-color,
    body.inner-page .section-bg-image,
    body.inner-page .section-map,
    body.inner-page .section-item {
        position: relative;
        z-index: 2;
    }

    body.inner-page footer.footer-parallax {
        z-index: 1;
    }
}

/* --------------------------------------------------------------------------
   Home reservation form refresh
   -------------------------------------------------------------------------- */
.reservation-modern {
    padding: 16px;
    border: 1px solid #dfe3ea;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.reservation-form-feedback {
    display: none;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.reservation-form-feedback.is-visible {
    display: block;
}

.reservation-form-feedback.is-success {
    background-color: #ecfdf3;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.reservation-form-feedback.is-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 190px;
    gap: 12px;
    align-items: end;
}

.reservation-control label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #6b7280;
}

.reservation-input-error {
    min-height: 18px;
    margin: 6px 2px 0;
    color: #dc2626;
    font-size: 12px;
    line-height: 1.35;
}

.reservation-field {
    position: relative;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-field i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 14px;
    pointer-events: none;
}

.reservation-field.has-chevron::after {
    content: "\25BE";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 11px;
    pointer-events: none;
}

.reservation-field input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 12px 0 16px;
    color: #1f2937;
    font-size: 16px;
    line-height: 48px;
}

.reservation-field input[type="date"] {
    padding: 0 12px 0 36px;
    cursor: pointer;
}

.reservation-custom-select {
    position: relative;
}

.reservation-field select[data-custom-select] {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 34px 0 36px;
    color: #1f2937;
    font-size: 16px;
    line-height: 48px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.reservation-field select[data-custom-select].reservation-native-hidden {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.reservation-custom-trigger {
    width: 100%;
    height: 48px;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0 34px 0 16px;
    color: #1f2937;
    font-size: 16px;
    line-height: 48px;
    cursor: pointer;
}

.reservation-custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
    max-height: 220px;
    overflow-y: auto;
}

.reservation-custom-option {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.35;
    color: #1f2937;
    cursor: pointer;
    outline: none;
}

.reservation-custom-option:hover,
.reservation-custom-option:focus {
    background-color: #f3f4f6;
}

.reservation-custom-option.is-selected {
    background-color: #eef2ff;
    color: #1e3a8a;
    font-weight: 600;
}

.reservation-field:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.reservation-control.has-error .reservation-field {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.16);
}

.reservation-control-submit {
    align-self: end;
}


.reservation-submit {
    width: 100%;
    height: 48px;
    border: 1px solid #1f2937;
    border-radius: 10px;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.reservation-submit:hover,
.reservation-submit:focus {
    background-color: #111827;
    border-color: #111827;
    color: #ffffff;
}

.reservation-submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

@media (max-width: 1199px) {
    .reservation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reservation-control-submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .reservation-modern {
        padding: 14px;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Hover Backgrounds for Mobile Icons
   -------------------------------------------------------------------------- */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus,
.navbar .navbar-toggle:hover,
.navbar .navbar-toggle:focus,
.navbar-header .navbar-toggle:hover,
.navbar-header .navbar-toggle:focus {
    background-color: transparent !important;
}

/* --------------------------------------------------------------------------
   Mobile Search Styling
   -------------------------------------------------------------------------- */
.search-mobile .navbar-toggle {
    margin: 0 !important;
    width: 44px;
    height: 44px;
    overflow: visible;
}

/* ==========================================================================
   Search Icon (CSS-only magnifying glass)
   ========================================================================== */
.search-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    overflow: visible;
}

.search-icon-circle {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box;
}

.search-icon-handle {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transform: rotate(45deg);
    transform-origin: 0 50%;
}

.search-mobile .search-box {
    display: none;
    position: absolute;
    right: 15px;
    top: 50px;
    left: auto;
}

.search-mobile.active .search-box {
    display: block;
}

/* --------------------------------------------------------------------------
   Search Mobile Initial State
   -------------------------------------------------------------------------- */
.search-box-menu.search-mobile-hidden {
    display: none;
}

/* --------------------------------------------------------------------------
   Search Mobile Button Display
   -------------------------------------------------------------------------- */
.search-mobile .btn-search-visible {
    display: block;
}

/* ==========================================================================
   Hamburger Icon
   ========================================================================== */
.hamburger-icon {
    display: inline-block;
    width: 20px;
    height: 14px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    bottom: 0;
}

/* Hamburger transform when menu is open */
.mobile-menu-open .hamburger-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-open .hamburger-icon span:nth-child(2) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ==========================================================================
   Fullscreen Mobile Menu Overlay
   ========================================================================== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-open .fullscreen-menu {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   Overlay Inner Layout
   -------------------------------------------------------------------------- */
.fullscreen-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 100px 30px 40px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.fullscreen-menu-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Menu Links
   -------------------------------------------------------------------------- */
.fullscreen-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.fullscreen-menu-links > li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-open .fullscreen-menu-links > li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-open .fullscreen-menu-links > li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu-open .fullscreen-menu-links > li:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu-open .fullscreen-menu-links > li:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu-open .fullscreen-menu-links > li:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu-open .fullscreen-menu-links > li:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu-open .fullscreen-menu-links > li:nth-child(6) { transition-delay: 0.38s; }

.fullscreen-menu-links > li:last-child {
    border-bottom: none;
}

.fullscreen-menu-links > li > a,
.fullscreen-menu-links > li > .menu-item-row > a {
    display: block;
    padding: 18px 0;
    font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* --------------------------------------------------------------------------
   Menu Item Row (link + toggle side by side)
   -------------------------------------------------------------------------- */
.menu-item-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-item-row > a {
    flex: 1;
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.submenu-toggle span {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    display: block;
    transition: transform 0.3s ease;
}

.submenu-toggle.active span {
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Sub Menu (Accordion)
   -------------------------------------------------------------------------- */
.fullscreen-menu-links .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu-links .submenu.open {
    max-height: 400px;
    padding-bottom: 12px;
}

.fullscreen-menu-links .submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    color: #666666;
    text-decoration: none;
    transition: color 0.25s ease;
}

.fullscreen-menu-links .submenu li a:hover {
    color: #1a1a1a;
}

/* --------------------------------------------------------------------------
   Menu Footer (Social Icons)
   -------------------------------------------------------------------------- */
.fullscreen-menu-footer {
    padding: 30px 0;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.mobile-menu-open .fullscreen-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu-social {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.fullscreen-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #1a1a1a;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* ==========================================================================
   Header State: Transparent (before scroll, before menu open)
   ========================================================================== */
@media (max-width: 992px) {
    header.bg-transparent:not(.mobile-menu-open) .navbar-toggle .hamburger-icon span {
        background-color: #ffffff !important;
    }

    header.bg-transparent:not(.mobile-menu-open) .search-mobile .navbar-toggle .search-icon {
        color: #ffffff !important;
    }
}

/* ==========================================================================
   Header State: Mobile Menu Open
   ========================================================================== */
@media (max-width: 992px) {
    .mobile-menu-open .navbar.navbar-fixed-top {
        position: relative !important;
        z-index: 200 !important;
    }

    .mobile-menu-open .fullscreen-menu {
        top: 70px;
        height: calc(100dvh - 70px);
        align-items: stretch;
        justify-content: flex-start;
        z-index: 190;
    }

    .mobile-menu-open .fullscreen-menu-inner {
        justify-content: flex-start;
        padding: 24px 30px max(24px, env(safe-area-inset-bottom));
    }

    .mobile-menu-open .fullscreen-menu-nav {
        flex: 1 1 auto;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    .mobile-menu-open .fullscreen-menu-footer {
        margin-top: auto;
        margin-bottom: 0;
        padding: 24px 0;
    }

    .mobile-menu-open .navbar-header {
        background-color: #ffffff !important;
    }

    .mobile-menu-open .navbar-header .navbar-toggle {
        color: #1a1a1a !important;
    }

    .mobile-menu-open .navbar-header .navbar-toggle .hamburger-icon span {
        background-color: #1a1a1a !important;
    }

    .mobile-menu-open .search-mobile .navbar-toggle .search-icon {
        color: #1a1a1a !important;
    }

    .mobile-menu-open .navbar-brand .logo-default.scroll-hide {
        display: none !important;
    }

    .mobile-menu-open .navbar-brand .logo-retina {
        display: none !important;
    }

    .mobile-menu-open .navbar-brand .logo-default.scroll-show {
        display: block !important;
    }

    .mobile-menu-open .navbar-collapse {
        display: none !important;
    }

    body.mobile-menu-body-lock {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
}

/* ==========================================================================
   Fullscreen Search Overlay
   ========================================================================== */
.fullscreen-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.fullscreen-search.is-open {
    opacity: 1;
    visibility: visible;
}

/* Search overlay logo */
.fullscreen-search-logo {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-search-logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

.fullscreen-search-close {
    position: absolute;
    top: 13px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.3s ease;
}

.fullscreen-search-close:hover {
    transform: rotate(90deg);
}

.fullscreen-search-close span {
    display: block;
    position: absolute;
    width: 20px;
    height: 1.5px;
    background-color: #1a1a1a;
    border-radius: 2px;
}

.fullscreen-search-close span:first-child {
    transform: rotate(45deg);
}

.fullscreen-search-close span:last-child {
    transform: rotate(-45deg);
}

/* Inner layout */
.fullscreen-search-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    box-sizing: border-box;
    position: relative;
}

.fullscreen-search-content {
    width: 100%;
    max-width: 620px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.fullscreen-search.is-open .fullscreen-search-content {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.fullscreen-search-title {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
    margin: 0 0 40px;
}

/* Form */
.fullscreen-search-form {
    position: relative;
}

.fullscreen-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fullscreen-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    padding: 12px 0;
    letter-spacing: 1px;
    caret-color: #1a1a1a;
}

.fullscreen-search .fullscreen-search-input {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a;
    opacity: 1;
}

.fullscreen-search .fullscreen-search-input:-webkit-autofill,
.fullscreen-search .fullscreen-search-input:-webkit-autofill:hover,
.fullscreen-search .fullscreen-search-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #1a1a1a !important;
}

.fullscreen-search .fullscreen-search-input::placeholder {
    color: #cccccc;
    font-weight: 300;
}

.fullscreen-search .fullscreen-search-input::-webkit-input-placeholder {
    color: #cccccc;
    -webkit-text-fill-color: #cccccc;
    opacity: 1;
}

.fullscreen-search-submit {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #000000 !important;
    opacity: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fullscreen-search-submit:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.fullscreen-search-submit .search-icon {
    width: 24px;
    height: 24px;
    color: #000000 !important;
}

.fullscreen-search-submit .search-icon-circle {
    width: 16px;
    height: 16px;
    border-width: 2.4px;
    border-color: #000000 !important;
}

.fullscreen-search-submit .search-icon-handle {
    top: 12px;
    left: 12px;
    width: 9px;
    height: 2.4px;
    background-color: #000000 !important;
}

/* Animated underline */
.fullscreen-search-line {
    height: 2px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.fullscreen-search-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #1a1a1a;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-search-input:focus ~ .fullscreen-search-line::after,
.fullscreen-search-input-wrap:focus-within + .fullscreen-search-line::after {
    width: 100%;
}

/* Tags */
.fullscreen-search-tags {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999999;
    margin-right: 4px;
}

.search-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #666666;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    transition: all 0.25s ease;
}

.search-tag:hover {
    color: #ffffff;
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    text-decoration: none;
}

body.search-overlay-open {
    overflow: hidden !important;
}

html.search-overlay-open {
    overflow: hidden !important;
}

/* ==========================================================================
   Mobile Sticky Header
   ========================================================================== */
@media (max-width: 992px) {
    .scroll-top-mobile {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .scroll-top-mobile.show {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    header.fixed-top,
    header.fixed-top.menu-transparent {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 995 !important;
        height: 0 !important;
    }

    header.fixed-top > .navbar.navbar-fixed-top {
        position: relative !important;
        transform: none !important;
    }

    header.fixed-top.scroll-css .navbar-main {
        background-color: #ffffff !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    }

    header.fixed-top.bg-transparent:not(.scroll-css) .navbar-main {
        background-color: transparent !important;
    }

    header.fixed-top.scroll-css .navbar-brand .logo-default.scroll-hide {
        display: none !important;
    }

    header.fixed-top.scroll-css .navbar-brand .logo-default.scroll-show {
        display: block !important;
    }

    header.fixed-top.scroll-css .navbar-toggle .hamburger-icon span {
        background-color: #1a1a1a !important;
    }

    header.fixed-top.scroll-css .search-mobile .navbar-toggle .search-icon {
        color: #1a1a1a !important;
    }
}

/* --------------------------------------------------------------------------
   Fullscreen Search Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .fullscreen-search-input {
        font-size: 22px;
    }

    .fullscreen-search-title {
        font-size: 12px;
        margin-bottom: 28px;
    }

    .fullscreen-search-content {
        max-width: 90%;
    }

    .fullscreen-search-logo {
        top: 35px;
    }

    .fullscreen-search-logo img {
        max-height: 42px;
    }

    .fullscreen-search-close {
        top: 13px;
        right: 18px;
    }
}

@media (max-width: 992px) {
    body.search-overlay-open .navbar.navbar-fixed-top {
        position: relative !important;
        z-index: 10020 !important;
    }

    body.search-overlay-open .navbar-header,
    body.search-overlay-open .navbar-brand {
        position: relative;
        z-index: 10021 !important;
    }

    body.search-overlay-open .navbar-header {
        background-color: #ffffff !important;
    }

    /* Show only logo in search overlay header. */
    body.search-overlay-open #hamburger-toggle,
    body.search-overlay-open .navbar-header .search-mobile {
        display: none !important;
    }

    body.search-overlay-open .navbar-brand .logo-default.scroll-hide {
        display: none !important;
    }

    body.search-overlay-open .navbar-brand .logo-retina {
        display: none !important;
    }

    body.search-overlay-open .navbar-brand .logo-default.scroll-show {
        display: block !important;
    }

    body.search-overlay-open .navbar-header .navbar-toggle .hamburger-icon span {
        background-color: #1a1a1a !important;
    }

    body.search-overlay-open .search-mobile .navbar-toggle .search-icon {
        color: #1a1a1a !important;
    }
}

@media (min-width: 993px) {
    body.search-overlay-open .navbar.navbar-fixed-top {
        position: relative !important;
        z-index: 10020 !important;
        box-shadow: none !important;
        border: none !important;
    }

    body.search-overlay-open .navbar-header,
    body.search-overlay-open .navbar-brand {
        position: relative;
        z-index: 10021 !important;
    }

    body.search-overlay-open header.menu-transparent.bg-transparent .navbar,
    body.search-overlay-open header.menu-transparent.bg-transparent > .navbar,
    body.search-overlay-open header.menu-transparent.bg-transparent .navbar-main {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    body.search-overlay-open header.menu-transparent.bg-transparent .navbar::before,
    body.search-overlay-open header.menu-transparent.bg-transparent .navbar::after {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    body.search-overlay-open header > .navbar,
    body.search-overlay-open .subline-bar {
        box-shadow: none !important;
        border: none !important;
        border-bottom: none !important;
    }

    body.search-overlay-open .subline-bar {
        display: none !important;
    }

    body.search-overlay-open .fullscreen-search {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: #ffffff;
    }

    body.search-overlay-open .navbar-main,
    body.search-overlay-open .navbar-header {
        background-color: #ffffff !important;
        box-shadow: none !important;
        border: none !important;
    }

    body.search-overlay-open .navbar-collapse,
    body.search-overlay-open .search-desktop,
    body.search-overlay-open #hamburger-toggle,
    body.search-overlay-open .search-mobile {
        display: none !important;
    }

    body.search-overlay-open .navbar-brand .logo-default.scroll-hide,
    body.search-overlay-open .navbar-brand .logo-retina {
        display: none !important;
    }

    body.search-overlay-open .navbar-brand .logo-default.scroll-show {
        display: block !important;
    }

    body.search-overlay-open .fullscreen-search-logo {
        top: 41px;
    }

    body.search-overlay-open .fullscreen-search-logo img {
        max-height: 66px;
    }
}
