/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f4ed;
    color: #222;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

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

button,
input,
select {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.detail-header {
    background: rgba(17, 17, 17, .97);
    border-bottom: 1px solid #2b2b2b;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d6d6d6;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.back-link:hover {
    color: #d4af37;
}

.header-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-brand strong {
    color: #d4af37;
    font-size: 18px;
    line-height: 1.2;
}

.header-brand span {
    color: #aaa;
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================================
   HERO
========================================================= */

.detail-top {
    background: #f7f4ed;
    padding: 30px 0 35px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #777;
}

.breadcrumb a:hover {
    color: #9a7410;
}

.detail-heading {
    margin-bottom: 25px;
}

.detail-category {
    display: inline-block;
    color: #9a7410;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.detail-heading h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: #111;
    margin-bottom: 13px;
}

.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #666;
    font-size: 14px;
}

.detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.detail-meta i {
    color: #c9a227;
}


/* =========================================================
   GALLERY
========================================================= */

.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 480px;
    min-height: 0;
    background: transparent;
    padding: 0;
    border-radius: 18px;
    overflow: visible;
}

.gallery-main {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #e8e2d6;
}

.gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 18px;
    transition: transform .5s ease;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    min-height: 0;
    overflow: visible;
}

.gallery-side img {
    display: block;
    width: 100%;
    max-width: 210px;
    aspect-ratio: 1 / 1;
    height: auto;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 18px;
    transition: transform .5s ease;
}

.gallery-side img:hover {
    transform: scale(1.03);
}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.quick-info-item {
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.quick-info-item > i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f4e7bd;
    color: #9a7410;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-info-item small {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 2px;
}

.quick-info-item strong {
    display: block;
    color: #222;
    font-size: 14px;
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.booking-section {
    background: #fff;
    padding: 65px 0;
}

.booking-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-label {
    display: inline-block;
    color: #9a7410;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.booking-heading h2 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 10px;
}

.booking-heading p {
    color: #777;
    font-size: 14px;
}


/* =========================================================
   BOOKING LAYOUT
========================================================= */

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 25px;
    align-items: start;
}

.booking-form-area {
    min-width: 0;
}

.booking-sidebar {
    position: sticky;
    top: 25px;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 18px;
}

.booking-card-title {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 22px;
}

.booking-card-title .number {
    width: 34px;
    height: 34px;
    background: #c9a227;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.booking-card-title h3 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #111;
    margin-bottom: 3px;
}

.booking-card-title p {
    color: #888;
    font-size: 13px;
}


/* =========================================================
   FORM
========================================================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #ddd6c8;
    border-radius: 10px;
    padding: 0 14px;
    background: #fff;
    color: #222;
    outline: none;
    font-size: 14px;
    transition: .2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .10);
}

.form-grid .form-group:last-child {
    grid-column: span 2;
    max-width: 50%;
}


/* =========================================================
   PACKAGE CHOICE
========================================================= */

.package-choice {
    display: grid;
    gap: 12px;
}

.package-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #e5dfd0;
    border-radius: 12px;
    padding: 17px;
    cursor: pointer;
    transition: .2s ease;
}

.package-option:hover {
    border-color: #d4af37;
}

.package-option:has(input:checked) {
    border-color: #d4af37;
    background: #fffaf0;
}

.package-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-radio {
    width: 19px;
    height: 19px;
    border: 2px solid #cfc7b6;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-option input:checked + .custom-radio,
.addon-option input:checked + .custom-radio {
    border-color: #c9a227;
}

.package-option input:checked + .custom-radio::after,
.addon-option input:checked + .custom-radio::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background: #c9a227;
    border-radius: 50%;
    left: 3px;
    top: 3px;
}

.package-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-option-content strong {
    color: #222;
    font-size: 14px;
}

.package-option-content small {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   ATV CHOICE
========================================================= */

.addon-choice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.addon-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #e5dfd0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: .2s ease;
}

.addon-option:hover {
    border-color: #d4af37;
}

.addon-option:has(input:checked) {
    border-color: #d4af37;
    background: #fffaf0;
}

.addon-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-option strong {
    font-size: 14px;
    color: #222;
}


/* =========================================================
   HOTEL OPTIONS
========================================================= */

#hotel-options {
    display: none;
}

#hotel-options.show {
    display: block;
}


/* =========================================================
   PRICE SUMMARY
========================================================= */

.booking-summary {
    background: #f7f4ed;
}

.booking-summary h3 {
    font-family: "Poppins", sans-serif;
    color: #111;
    font-size: 19px;
    margin-bottom: 18px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.summary-row span {
    color: #666;
    font-size: 14px;
}

.summary-row strong {
    color: #222;
    font-size: 14px;
}

.summary-divider {
    height: 1px;
    background: #e2dccf;
    margin: 10px 0;
}

.summary-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #c9a227;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    background: #fff;
}

.summary-total-row span {
    color: #222;
    font-size: 15px;
    font-weight: 700;
}

.summary-total-row strong {
    color: #9a7410;
    font-size: 20px;
    font-weight: 800;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.desktop-booking-button {
    margin-top: 5px;
}

.book-now-btn {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    background: #c9a227;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .25s ease;
}

.book-now-btn:hover {
    background: #b08b1e;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar-card {
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 16px;
    padding: 23px;
    margin-bottom: 18px;
}

.sidebar-card h3 {
    font-family: "Poppins", sans-serif;
    color: #111;
    font-size: 18px;
    margin-bottom: 16px;
}

.sidebar-card p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.sidebar-card li:last-child {
    margin-bottom: 0;
}

.sidebar-card li i {
    color: #9a7410;
    margin-top: 4px;
}

.sidebar-whatsapp {
    width: 100%;
    min-height: 46px;
    background: #22c55e;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.sidebar-whatsapp:hover {
    background: #16a34a;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.seo-content {
    background: #f7f4ed;
    padding: 65px 0;
}

.seo-content .container {
    max-width: 900px;
}

.seo-content article {
    margin-bottom: 55px;
}

.seo-content article:last-child {
    margin-bottom: 0;
}

.seo-content h2 {
    font-family: "Poppins", sans-serif;
    color: #111;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.seo-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-content ul,
.seo-content ol {
    color: #555;
    padding-left: 22px;
}

.seo-content li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
}

.seo-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.seo-content ul li i {
    color: #9a7410;
    margin-top: 5px;
    flex-shrink: 0;
}

.seo-content ol {
    padding-left: 20px;
}

.seo-content ol li {
    padding-left: 5px;
}

.seo-content ol li strong {
    color: #222;
    display: block;
    margin-bottom: 3px;
}

.seo-content ol li p {
    margin-bottom: 10px;
}


/* =========================================================
   PICKUP TABLE
========================================================= */

.pickup-table {
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.pickup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e5dfd0;
}

.pickup-row:last-child {
    border-bottom: 0;
}

.pickup-row strong,
.pickup-row span {
    padding: 13px 15px;
    font-size: 13px;
}

.pickup-row strong {
    color: #333;
}

.pickup-row span {
    color: #777;
}


/* =========================================================
   FAQ
========================================================= */

.faq details {
    background: #fff;
    border: 1px solid #e5dfd0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 17px 18px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-right: 45px;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 13px;
    color: #9a7410;
    font-size: 22px;
    font-weight: 400;
}

.faq details[open] summary::after {
    content: "−";
}

.faq details p {
    padding: 0 18px 17px;
    margin: 0;
    color: #777;
    font-size: 13px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.final-cta .section-label {
    color: #d4af37;
}

.final-cta h2 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 10px;
    background: #22c55e;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transition: .25s ease;
}

.cta-whatsapp:hover {
    background: #16a34a;
}


/* =========================================================
   FOOTER
========================================================= */

.detail-footer {
    background: #111;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
    padding: 55px 0;
}

.detail-footer h3 {
    color: #d4af37;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.detail-footer h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}

.detail-footer p {
    color: #999;
    font-size: 13px;
    line-height: 1.7;
    max-width: 440px;
}

.detail-footer a {
    display: block;
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
    transition: .2s ease;
}

.detail-footer a:hover {
    color: #d4af37;
}

.footer-bottom {
    background: #0d0d0d;
    border-top: 1px solid #242424;
    text-align: center;
    padding: 18px 20px;
}

.footer-bottom p {
    max-width: none;
    color: #777;
    font-size: 12px;
}


/* =========================================================
   MOBILE BOOKING BAR
========================================================= */

.mobile-booking-bar {
    display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
    }

    .quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-gallery {
        height: 400px;
    }

    .gallery-side {
        gap: 10px;
    }

    .gallery-side img {
        max-width: 180px;
    }

    .gallery-main {
        min-height: 0;
    }

    .gallery-main img {
        min-height: 0;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .header-brand {
        display: none;
    }

    .detail-top {
        padding: 22px 0 25px;
    }

    .detail-heading h1 {
        font-size: 31px;
    }

    /* GALLERY MOBILE */
    .detail-gallery {
        grid-template-columns: 1.65fr 1fr;
        gap: 7px;
        height: 280px;
        padding: 0;
        background: transparent;
        border-radius: 12px;
        overflow: visible;
    }

    .gallery-main {
        min-width: 0;
        min-height: 0;
        border-radius: 12px;
        overflow: hidden;
    }

    .gallery-main img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center 70%;
        border-radius: 12px;
    }

    .gallery-side {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-width: 0;
        min-height: 0;
        overflow: visible;
    }

    .gallery-side img {
        width: 100%;
        max-width: none;
        aspect-ratio: 1 / 1;
        height: auto;
        min-width: 0;
        min-height: 0;
        object-fit: cover;
        object-position: center 70%;
        border-radius: 12px;
    }

    .quick-info {
        grid-template-columns: 1fr 1fr;
    }

    .quick-info-item {
        padding: 14px;
    }

    .booking-section,
    .seo-content {
        padding: 45px 0;
    }

    .booking-heading h2 {
        font-size: 27px;
    }

    .booking-card {
        padding: 19px;
    }

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

    .form-grid .form-group:last-child {
        grid-column: auto;
        max-width: none;
    }

    .addon-choice {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }

    .seo-content h2 {
        font-size: 24px;
    }

    .final-cta {
        padding: 55px 0 100px;
    }

    .final-cta h2 {
        font-size: 27px;
    }

    /* MOBILE BOOKING BAR */

    .mobile-booking-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid #e5dfd0;
        box-shadow: 0 -5px 20px rgba(0,0,0,.08);
        padding: 10px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .mobile-price {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .mobile-price small {
        color: #888;
        font-size: 10px;
    }

    .mobile-price strong {
        color: #9a7410;
        font-size: 17px;
        line-height: 1.2;
    }

    .mobile-price span {
        color: #999;
        font-size: 10px;
    }

    .mobile-book-now {
        border: 0;
        background: #c9a227;
        color: #111;
        min-height: 45px;
        padding: 0 17px;
        border-radius: 9px;
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
        cursor: pointer;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(100% - 22px, 1180px);
    }

    .back-link {
        font-size: 12px;
    }

    .detail-heading h1 {
        font-size: 27px;
    }

    .detail-meta {
        gap: 10px;
        font-size: 12px;
    }

    /* GALLERY SMALL MOBILE */

    .detail-gallery {
        height: 240px;
        grid-template-columns: 1.65fr 1fr;
        gap: 7px;
    }

    .gallery-main,
    .gallery-main img,
    .gallery-side img {
        border-radius: 11px;
    }

    .gallery-side {
        gap: 7px;
    }

    .gallery-side img {
        width: 100%;
        max-width: 116px;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
        object-position: center 70%;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    .quick-info-item {
        padding: 13px;
    }

    .booking-card {
        padding: 16px;
        border-radius: 13px;
    }

    .booking-card-title h3 {
        font-size: 16px;
    }

    .summary-total-row {
        padding: 13px;
    }

    .summary-total-row strong {
        font-size: 17px;
    }

    .pickup-row {
        grid-template-columns: 1fr;
    }

    .pickup-row strong {
        padding-bottom: 4px;
    }

    .pickup-row span {
        padding-top: 4px;
    }

    .mobile-booking-bar {
        padding: 9px 10px;
    }

    .mobile-book-now {
        padding: 0 13px;
    }
}


/* =========================================================
   INPUT FIX - MOBILE
========================================================= */

input,
select,
textarea {
    font-size: 16px !important;
}

/* =========================================================
   LANGUAGE FLOAT
========================================================= */

.language-float {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
}

.language-float-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    font-size: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-menu {
    display: none;
    position: absolute;
    top: 62px;
    right: 0;
    width: 190px;
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .20);
}

.language-menu.show {
    display: flex !important;
    flex-direction: column;
}

.language-menu button {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 12px;
    text-align: left;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.language-menu button:hover {
    background: #f2f2f2;
}

@media (max-width: 600px) {
    
    .language-float {
        top: 12px;
        right: 12px;
    }
    
    .language-float-btn {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }
    
    .language-menu {
        top: 58px;
        width: 180px;
    }
}
/* FIX LANGUAGE BUTTON - DETAIL PAGE */
.language-float {
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

.language-float-btn {
    position: relative !important;
    z-index: 100000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.language-menu {
    position: absolute !important;
    z-index: 100001 !important;
    pointer-events: auto !important;
}

.language-menu button {
    pointer-events: auto !important;
    cursor: pointer !important;
}