@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
    --white: #FFFFFF;
    --off-white: #F7F7F5;
    --navy: #0B2340;
    --steel: #3E6B96;
    --ink: #111111;
    --line: #E4E4E0;
    --grey: #6B6B66;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
}

h1, h2, h3, .display {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
}

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

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    border-bottom: 1px solid var(--line);
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--navy);
}

.logo span { color: var(--steel); }

.logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 2px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 6px;
}

.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--grey); align-items: center; }
.nav-links a:hover { color: var(--navy); }
.mobile-menu-btn { display: none; }

.currency-select {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

/* Custom dropdown — replaces native <select> so mobile browsers don't substitute
   their own OS-styled popover (wrong font, wrong position, dark background). */
.dropdown { position: relative; display: inline-block; }

.dropdown-toggle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dropdown-toggle::after {
    content: '';
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--grey);
    margin-left: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(11,35,64,0.14);
    z-index: 30;
    overflow: hidden;
}

.dropdown-menu.open { display: block; }

.dropdown-item {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
}

.dropdown-item:hover { background: var(--off-white); }
.dropdown-item.active { color: var(--navy); font-weight: 600; }

/* Contextual sizing so the dropdown fits each spot it's used in */
.nav-links .dropdown-toggle { padding: 6px 10px; font-size: 13px; border-radius: 6px; }
.search-float .dropdown { flex: 1 1 200px; }
.search-float .dropdown-toggle { width: 100%; padding: 13px 18px; border-radius: 10px; justify-content: space-between; box-sizing: border-box; }
.search-float .dropdown-menu { left: 0; right: auto; width: 100%; }

/* Hero */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,35,64,0.35) 0%, rgba(11,35,64,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 48px 100px;
    max-width: 720px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--white);
}

.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-top: 18px;
    max-width: 480px;
}

/* Floating search card — overlaps the bottom edge of the hero */
.search-float-wrap {
    position: relative;
    padding: 0 48px;
    margin-top: -40px;
    z-index: 3;
}

.search-float {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(11,35,64,0.18);
    padding: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 820px;
}

.search-float input, .search-float select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 13px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
}

.search-float input { flex: 1; min-width: 220px; }
.search-float select { cursor: pointer; }

.search-btn {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
}

.search-btn:hover { background: #0d2a4d; }

/* Category quick-filter pills below the search card */
.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.category-pill {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.15s ease;
}

.category-pill:hover { border-color: var(--steel); color: var(--steel); }

.category-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* Search / filter bar */
.filter-bar {
    display: flex;
    gap: 12px;
    padding: 0 48px 40px;
    flex-wrap: wrap;
}

.filter-bar input, .filter-bar select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
}

.filter-bar input { flex: 1; min-width: 220px; }

.filter-bar select { cursor: pointer; }

/* Listings grid */
.listings-section { padding: 48px 48px 80px; }

.rail-section { margin-bottom: 44px; }

.rail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rail-header h2 {
    font-size: 22px;
    color: var(--navy);
}

.rail-arrows { display: flex; gap: 8px; }

.rail-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rail-arrow:hover { background: var(--off-white); border-color: var(--steel); }

.rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.rail::-webkit-scrollbar { display: none; }

.rail-card {
    flex: 0 0 240px;
    cursor: pointer;
    position: relative;
}

.rail-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-weight: 600;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.rating-filter {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.stars {
    color: #C9A227;
    font-size: 13px;
    letter-spacing: 1px;
}

.stars-empty { color: var(--line); }

.difficulty-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--grey);
    margin-top: 4px;
    cursor: pointer;
}

.difficulty-info-icon {
    color: var(--steel);
    font-size: 13px;
}

/* Difficulty scale legend popup */
.legend-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,35,64,0.45);
    align-items: center;
    justify-content: center;
    z-index: 60;
    padding: 24px;
}

.legend-overlay.open { display: flex; }

.legend-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(11,35,64,0.25);
    max-height: 80vh;
    overflow-y: auto;
}

.legend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.legend-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--navy);
    margin: 0;
}

.legend-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--grey);
    cursor: pointer;
    line-height: 1;
}

.legend-row {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.legend-row:first-of-type { border-top: none; }

.legend-row.current {
    background: var(--off-white);
    border-radius: 8px;
    margin: 0 -8px;
    padding: 10px 8px;
    border-top: none;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.legend-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.legend-you {
    font-size: 11px;
    font-weight: 400;
    color: var(--steel);
}

.legend-desc {
    font-size: 12px;
    color: var(--grey);
    margin-top: 2px;
    line-height: 1.5;
}

.difficulty-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.section-title {
    font-size: 15px;
    color: var(--grey);
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 28px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px 28px;
}

.card {
    cursor: pointer;
    position: relative;
}

.bucket-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--navy);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bucket-btn.active { color: #A23B3B; }
.bucket-btn:hover { transform: scale(1.08); }

.modal .bucket-btn {
    position: static;
    width: 36px;
    height: 36px;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: none;
    border: 1px solid var(--line);
    background: var(--white);
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--off-white) center/cover no-repeat;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    transition: transform 0.25s ease;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.card:hover .card-image { transform: translateY(-2px); }

.highlight-tag {
    background: rgba(11,35,64,0.85);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    margin: 10px;
    max-width: calc(100% - 20px);
}

.card-category {
    font-size: 12px;
    color: var(--steel);
    margin-bottom: 4px;
}

.card-rating {
    font-size: 12px;
    color: var(--grey);
    margin-bottom: 2px;
}

.card h3 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 4px;
}

.card-meta {
    font-size: 13px;
    color: var(--grey);
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.card-price { color: var(--navy); font-weight: 600; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,35,64,0.45);
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal {
    background: var(--white);
    max-width: 560px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(11,35,64,0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    cursor: pointer;
    font-size: 22px;
    color: var(--grey);
    background: none;
    border: none;
}

.modal-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--off-white) center/cover no-repeat;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal h2 { font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.modal .modal-partner { font-size: 14px; color: var(--grey); margin-bottom: 18px; }
.modal .modal-desc { font-size: 15px; color: var(--ink); margin-bottom: 20px; }

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.info-row span:first-child { color: var(--grey); }

/* Booking form */
.booking-form { margin-top: 24px; }

.booking-form label {
    display: block;
    font-size: 13px;
    color: var(--grey);
    margin: 14px 0 6px;
}

.booking-form input, .booking-form textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

/* iOS Safari renders date/time inputs with its own native chrome, ignoring
   background/border unless -webkit-appearance is explicitly reset — without
   this they show as a flat grey block instead of matching the rest of the form. */
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form input[type="datetime-local"] {
    -webkit-appearance: none;
    appearance: none;
    background: var(--white);
    color: var(--ink);
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

.btn:hover { background: #0d2a4d; }

.form-note {
    font-size: 13px;
    color: var(--grey);
    margin-top: 12px;
}

.form-success {
    display: none;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-size: 14px;
}

.form-success.open { display: block; }

footer {
    padding: 40px 48px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--grey);
    position: relative;
}

.footer-version {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 10px;
    color: #B8B8B0;
    letter-spacing: 0.03em;
}

/* Plain content pages — About, Contact */
.page-content {
    padding: 70px 48px 80px;
    max-width: 640px;
}

.page-content h1 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.page-body {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    gap: 48px;
    margin: 32px 0 8px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-details strong { font-size: 13px; color: var(--grey); font-weight: 500; }
.contact-details a { color: var(--navy); font-size: 15px; }

/* Listing detail page */
.listing-page {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding: 44px 48px 80px;
    max-width: 1180px;
    margin: 0 auto;
}

.listing-hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--off-white) center/cover no-repeat;
    border-radius: 14px;
    margin-bottom: 28px;
    border: 1px solid var(--line);
}

.back-link {
    display: inline-block;
    font-size: 13px;
    color: var(--grey);
    margin-bottom: 20px;
}

.back-link:hover { color: var(--navy); }

/* Events page — full-width bubble cards */
.event-bubble {
    display: block;
    width: 100%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.event-bubble-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 44px;
    color: var(--white);
}

.event-bubble-date {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.event-bubble h2 {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    margin: 0 0 8px;
}

.event-bubble-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.event-bubble-footer {
    display: flex;
    gap: 20px;
    align-items: center;
}

.event-bubble-price {
    font-family: 'Fraunces', serif;
    font-size: 18px;
}

.event-bubble-capacity {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

@media (max-width: 640px) {
    .event-bubble { min-height: 280px; }
    .event-bubble-content { padding: 24px; }
    .event-bubble h2 { font-size: 22px; }
}

/* Partners page */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.partner-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
    box-shadow: 0 10px 26px rgba(11,35,64,0.09);
    transform: translateY(-2px);
}

.partner-card-photo {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    background: var(--off-white) center/cover no-repeat;
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.partner-card-body {
    flex: 1;
    min-width: 0;
}

.partner-card h3 {
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 4px;
}

.partner-card-location {
    font-size: 12px;
    color: var(--steel);
    margin-bottom: 6px;
}

.partner-card-desc {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Partner detail page */
.partner-profile-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
}

.partner-profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--off-white) center/cover no-repeat;
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.listing-main h1 {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 8px;
}

.listing-meta {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 16px;
}

.listing-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    margin: 20px 0 28px;
}

.listing-description ul, .listing-description ol { padding-left: 22px; margin: 10px 0; }
.listing-description p { margin: 0 0 12px; }

.best-value-badge {
    display: inline-block;
    background: #DCEEE3;
    color: #2E6B4F;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
}

.listing-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.listing-info-item .label { font-size: 12px; color: var(--grey); margin-bottom: 4px; }
.listing-info-item .value { font-size: 15px; color: var(--ink); }

.included-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 16px;
}

.included-list li {
    font-size: 14px;
    color: var(--ink);
    padding-left: 18px;
    position: relative;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--steel);
    font-size: 12px;
}

.booking-panel {
    position: sticky;
    top: 24px;
    align-self: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(11,35,64,0.06);
}

.booking-panel-price {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 4px;
}

.booking-panel-price-note { font-size: 13px; color: var(--grey); margin-bottom: 20px; }

.tier-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.tier-option {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.tier-option:hover { border-color: var(--steel); }
.tier-option.selected { border-color: var(--navy); background: var(--off-white); }

.tier-option-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.tier-option-desc { font-size: 12px; color: var(--grey); margin-top: 2px; }
.tier-option-price { font-size: 13px; color: var(--navy); font-weight: 600; margin-top: 4px; }
.tier-option-unit { font-size: 11px; color: var(--grey); font-weight: 400; }

@media (max-width: 860px) {
    .listing-page { grid-template-columns: 1fr; padding: 32px 20px 60px; }
    .booking-panel { position: static; }
}

@media (max-width: 640px) {
    .site-header, .listings-section, footer, .page-content { padding-left: 20px; padding-right: 20px; }
    .hero-content { padding: 60px 20px 90px; }
    .hero { min-height: 420px; }
    .hero h1 { font-size: 30px; }
    .hero-slide { background-position: right center; }
    .search-float-wrap { padding: 0 20px; margin-top: -32px; }
    .search-float { flex-direction: column; }
    .search-btn { width: 100%; }
    .contact-details { flex-direction: column; gap: 16px; }
    .rail-card { flex: 0 0 200px; }
    .rail-header h2 { font-size: 18px; }

    /* Mobile nav — real hamburger drawer instead of hiding links entirely */
    .site-header { position: relative; flex-wrap: wrap; }
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--navy);
        cursor: pointer;
        padding: 4px 8px;
        order: 2;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 12px 24px rgba(11,35,64,0.12);
        padding: 8px 20px 16px;
        z-index: 40;
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-links a:last-of-type { border-bottom: none; }
    .nav-links #currencySelect { margin-top: 12px; }
    .nav-links .dropdown-toggle { width: 100%; justify-content: space-between; padding: 10px 14px; }
    .nav-links .dropdown-menu { right: 0; left: 0; }
}
