:root {
    /* Theme colors (can be overridden by website_diy.theme) */
    --theme-primary: #FD4621;
    --theme-primary-hover: #e03e1f;
    --theme-primary-rgb: 253, 70, 33;
    --theme-secondary: #0f172a;
    --theme-secondary-hover: #1f2937;
    --theme-secondary-rgb: 15, 23, 42;
    /* Legacy aliases (unified with theme.*) */
    --primary-color: var(--theme-primary);
    --primary-hover: var(--theme-primary-hover);
    --primary-hover-color: var(--theme-primary-hover);
    --secondary-color: var(--theme-secondary);
    --secondary-hover: var(--theme-secondary-hover);
    
    /* Neutral text & surfaces */
    --text-dark: #222222;
    --text-grey: #717171;
    --text-light: #B0B0B0;
    
    --bg-white: #FFFFFF;
    --bg-light: #F7F7F7;
    --border-color: #DDDDDD;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    --modal-radius: 20px;
    --modal-radius-lg: 24px;
    
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* Consistent Typography */

    /* Header vertical rhythm (topbar + navbar share same values in default/scrolled states) */
    --header-inline-padding: 32px;
    --header-inline-padding-mobile: 20px;
    --header-inline-padding-compact: 16px;
    --header-topbar-padding-y: 8px;
    --header-navbar-padding-top: 16px;
    --header-navbar-padding-bottom: 14px;
    --header-body-offset: 72px;
    --header-body-offset-mobile: 64px;
    --header-mobile-topbar-padding-y: 10px;
    --header-mobile-navbar-padding-y: 12px;
    --header-mobile-drawer-padding-y: 20px;
    --header-mobile-nav-link-padding-y: 14px;
    --hero-banner-offset: 96px;
    --hero-banner-offset-mobile: 56px;
    --hero-banner-min-height: 600px;
    --hero-banner-min-height-tablet: 540px;
    --hero-banner-min-height-mobile: 480px;
    --hero-banner-min-height-compact: 440px;
    --hero-banner-padding-bottom: 56px;
    --hero-banner-padding-bottom-tablet: 48px;
    --hero-banner-padding-bottom-mobile: 40px;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.trip-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
    padding: 12px 18px;
    background: var(--theme-secondary, #0f172a);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm, 8px);
    font-weight: 600;
}

.trip-skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    overflow: visible;
    outline: 2px solid var(--theme-primary, #FD4621);
    outline-offset: 2px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
    color: var(--text-dark); /* Keep it black on hover, just fade */
}

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

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    outline: none;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

.section {
    padding: 80px 0; /* More breathing room */
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: left; /* Minimalist alignment */
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 48px;
    font-weight: 400;
    text-align: left;
}

/* Navbar City Selector */
.navbar-city-selector {
    display: flex;
    align-items: center;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    background: transparent;
    cursor: pointer;
    margin-right: 0;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid transparent;
}

.navbar-city-selector.is-active {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.navbar-city-selector:hover {
    background: #f7f7f7;
}

.navbar-city-selector i {
    color: var(--text-dark); /* Black Icon */
    margin-right: 8px;
    font-size: 16px;
}

.navbar-city-text {
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.has-togo-header {
    padding-top: var(--header-body-offset);
}

.togo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.togo-topbar {
    display: none;
}

.togo-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.togo-header .togo-topbar-inner.container {
    padding-top: var(--header-topbar-padding-y);
    padding-bottom: var(--header-topbar-padding-y);
    padding-left: var(--header-inline-padding);
    padding-right: var(--header-inline-padding);
}

.togo-topbar-left {
    display: flex;
    gap: 18px;
    align-items: center;
    min-width: 0;
}

.togo-topbar-left a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.35;
}

.togo-topbar-left a:hover {
    color: #fff;
}

.togo-topbar-center {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
}

.togo-topbar-center a {
    color: #fff;
    text-decoration: underline;
}

.togo-topbar-right {
    display: none;
}

.togo-topbar-social {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.togo-topbar-social:hover {
    color: #fff;
    text-decoration: none;
}

.brand-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.brand-icon-img {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    object-fit: contain;
}

.togo-topbar-social .togo-topbar-social-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    background-color: currentColor;
    border-radius: 4px;
}

.togo-topbar-social .brand-icon-img,
.footer-socials-text a .brand-icon-img,
.togo-mobile-social .brand-icon-img {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    border-radius: 4px;
    object-fit: cover;
}

.togo-topbar-social .brand-icon-img {
    opacity: 0.82;
    transition: opacity 0.2s ease;
}

.togo-topbar-social:hover .brand-icon-img {
    opacity: 1;
}

.footer-payment-chip .brand-icon-img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    border-radius: 0;
    object-fit: contain;
}

.footer-socials-text .brand-icon,
.footer-payment-chip .brand-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    border-radius: 4px;
}

.footer-payment-chip .brand-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    border-radius: 0;
}

.togo-topbar-social span,
.footer-socials-text a span,
.footer-payment-chip span {
    line-height: 1;
}

.togo-navbar {
    position: relative;
    overflow: visible;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.togo-navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
    opacity: 0.72;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.togo-navbar.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.togo-navbar.scrolled .togo-navbar-inner {
    padding-top: var(--header-navbar-padding-top);
    padding-bottom: var(--header-navbar-padding-bottom);
}

.togo-navbar.scrolled::before {
    opacity: 0.92;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.togo-navbar-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.togo-navbar-leading {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
}

.togo-navbar-leading .navbar-city-selector--leading {
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin-right: 0;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    border: none;
    background: #fff;
    box-shadow: none;
}

.togo-navbar-leading .navbar-city-selector--leading::before {
    content: '';
    position: absolute;
    inset: -120%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 120deg,
        rgba(var(--theme-primary-rgb), 0.06) 145deg,
        rgba(var(--theme-primary-rgb), 0.18) 175deg,
        rgba(var(--theme-primary-rgb), 0.38) 210deg,
        var(--theme-primary) 255deg,
        rgba(var(--theme-primary-rgb), 0.52) 290deg,
        rgba(var(--theme-primary-rgb), 0.28) 320deg,
        rgba(var(--theme-primary-rgb), 0.1) 345deg,
        transparent 360deg
    );
    animation: navbar-border-beam-spin 2.6s linear infinite;
    z-index: -2;
}

.togo-navbar-leading .navbar-city-selector--leading::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: #fff;
    z-index: -1;
    transition: background 0.2s ease;
}

.togo-navbar-leading .navbar-city-selector--leading:hover {
    background: #fff;
}

.togo-navbar-leading .navbar-city-selector--leading:hover::after {
    background: #f7f7f7;
}

.togo-navbar-leading .navbar-city-selector--leading.is-active::after {
    background: #fff;
}

@keyframes navbar-border-beam-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .togo-navbar-leading .navbar-city-selector--leading::before {
        animation: none;
        inset: -1px;
        background: rgba(var(--theme-primary-rgb), 0.42);
    }

    .togo-navbar-leading .navbar-city-selector--leading::after {
        inset: 1px;
    }
}

.togo-navbar-leading .navbar-city-selector--leading i {
    margin-right: 6px;
    font-size: 13px;
}

.togo-navbar-leading .navbar-city-text {
    max-width: 96px;
}

.togo-header .togo-navbar-inner.container {
    padding-top: var(--header-navbar-padding-top);
    padding-bottom: var(--header-navbar-padding-bottom);
    padding-left: var(--header-inline-padding);
    padding-right: var(--header-inline-padding);
}

.togo-header .togo-nav-actions {
    gap: 16px;
    flex-shrink: 0;
}

.togo-header .togo-nav-actions .navbar-city-selector {
    padding: 10px 16px;
}

.togo-header .togo-nav-actions .btn-pill {
    padding: 8px 20px;
    font-size: 13px;
}

.togo-header .togo-nav-actions .btn-pill.btn-outline {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: none;
    background: transparent;
}

.togo-header .togo-nav-actions .btn-pill.btn-outline::before {
    content: '';
    position: absolute;
    inset: -120%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 120deg,
        rgba(221, 221, 221, 0.12) 145deg,
        rgba(221, 221, 221, 0.45) 175deg,
        var(--border-color) 210deg,
        #e8e8e8 255deg,
        var(--border-color) 290deg,
        rgba(221, 221, 221, 0.35) 320deg,
        rgba(221, 221, 221, 0.1) 345deg,
        transparent 360deg
    );
    animation: navbar-border-beam-spin 2.6s linear infinite;
    z-index: -2;
}

.togo-header .togo-nav-actions .btn-pill.btn-outline::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: #fff;
    z-index: -1;
    transition: background 0.2s ease;
}

.togo-header .togo-nav-actions .btn-pill.btn-outline:hover {
    border-color: transparent;
    background: transparent;
}

.togo-header .togo-nav-actions .btn-pill.btn-outline:hover::after {
    background: rgba(15, 23, 42, 0.04);
}

@media (prefers-reduced-motion: reduce) {
    .togo-header .togo-nav-actions .btn-pill.btn-outline::before {
        animation: none;
        inset: -1px;
        background: var(--border-color);
    }
}

body.home-v2 {
    --header-inline-padding: 28px;
}

.togo-brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    line-height: 1.25;
    padding: 2px 0;
}

.togo-brand i {
    font-size: 24px;
    color: #fff;
}

.togo-brand-logo {
    display: none;
    width: auto;
    height: 28px;
    max-width: 180px;
    object-fit: contain;
}

.togo-brand.has-brand-logo .togo-brand-logo {
    display: block;
}

.togo-brand.has-brand-logo .togo-brand-icon-font {
    display: none;
}

.togo-navbar.scrolled .togo-brand {
    color: var(--primary-color);
}

.togo-navbar.scrolled .togo-brand i {
    color: var(--primary-color);
}

.togo-nav-toggle,
.togo-auth-menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.togo-nav-toggle {
    display: none;
}

.togo-auth-menu-toggle {
    display: inline-flex;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.togo-nav-toggle i,
.togo-auth-menu-toggle i {
    font-size: 16px;
    line-height: 1;
}

.togo-navbar.scrolled .togo-nav-toggle,
.togo-navbar.scrolled .togo-auth-menu-toggle {
    border-color: rgba(15, 23, 42, 0.15);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
}

.togo-nav-drawer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1;
    min-width: 0;
}

.togo-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    min-width: 0;
}

.togo-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.togo-nav-dropdown-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.togo-nav-dropdown-caret {
    font-size: 10px;
    opacity: 0.78;
    transition: transform 0.2s ease;
}

.togo-nav-dropdown.open .togo-nav-dropdown-caret,
.togo-nav-dropdown:hover .togo-nav-dropdown-caret,
.togo-nav-dropdown:focus-within .togo-nav-dropdown-caret {
    transform: rotate(180deg);
}

.togo-nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 188px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    z-index: 30;
}

.togo-nav-sublink {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.togo-nav-sublink:hover,
.togo-nav-sublink.active {
    background: rgba(var(--theme-secondary-rgb, 15, 23, 42), 0.08);
    color: var(--theme-secondary, #0f172a);
}

@media (min-width: 993px) {
    .togo-nav-dropdown:hover .togo-nav-submenu,
    .togo-nav-dropdown:focus-within .togo-nav-submenu {
        display: block;
    }

    .togo-nav-dropdown.has-active-child > .togo-nav-dropdown-toggle,
    .togo-nav-dropdown.active > .togo-nav-dropdown-toggle {
        color: #fff;
    }

    .togo-navbar.scrolled .togo-nav-dropdown.has-active-child > .togo-nav-dropdown-toggle,
    .togo-navbar.scrolled .togo-nav-dropdown.active > .togo-nav-dropdown-toggle {
        color: var(--text-dark);
    }
}

.togo-nav-link {
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
    line-height: 1.5;
}

.togo-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
    transition: width 0.3s ease;
}

.togo-nav-link:hover::after,
.togo-nav-link.active::after {
    width: 100%;
}

.togo-nav-link.active {
    color: #fff;
}

.togo-navbar.scrolled .togo-nav-link {
    color: var(--text-dark);
    font-weight: 500;
}

.togo-navbar.scrolled .togo-nav-link::after {
    background: var(--text-dark);
}

.togo-navbar.scrolled .togo-nav-link.active {
    font-weight: 600;
}

.togo-nav-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    white-space: nowrap;
}

.togo-mobile-utility {
    display: none;
}

.togo-mobile-utility-title {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.togo-mobile-contact-list {
    display: grid;
    gap: 8px;
}

.togo-mobile-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.togo-mobile-contact-item i {
    width: 16px;
    text-align: center;
    color: var(--theme-secondary);
}

.togo-mobile-social-title {
    margin-top: 14px;
}

.togo-mobile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.togo-mobile-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.togo-navbar:not(.scrolled) .navbar-city-selector {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.togo-navbar:not(.scrolled) .navbar-city-selector:hover {
    background: rgba(255, 255, 255, 0.22);
}

.togo-navbar:not(.scrolled) .navbar-city-selector i {
    color: rgba(255, 255, 255, 0.92);
}

.togo-navbar:not(.scrolled) .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.06);
}

.togo-navbar:not(.scrolled) .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
}

body.has-togo-header .togo-navbar {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

body.has-togo-header .togo-navbar::before {
    opacity: 0.92;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 100%);
}

body.has-togo-header .togo-brand,
body.has-togo-header .togo-brand i {
    color: var(--theme-primary);
}

body.has-togo-header .togo-nav-link {
    color: var(--text-dark);
    font-weight: 500;
}

body.has-togo-header .togo-nav-link::after {
    background: var(--text-dark);
}

body.has-togo-header .togo-nav-link.active {
    color: var(--text-dark);
}

body.has-togo-header .togo-nav-toggle,
body.has-togo-header .togo-auth-menu-toggle {
    border-color: rgba(15, 23, 42, 0.15);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
}

body.has-togo-header .navbar-city-selector {
    background: #fff;
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.has-togo-header .navbar-city-selector i {
    color: var(--text-dark);
}

body.has-togo-header .btn-outline {
    border-color: var(--border-color);
    color: var(--text-dark);
    background: transparent;
}

body.has-togo-header .btn-outline:hover {
    border-color: var(--text-dark);
    background: rgba(15, 23, 42, 0.04);
}

@media (max-width: 992px) {
    body.has-togo-header {
        padding-top: var(--header-body-offset-mobile);
    }

    .togo-topbar {
        display: none;
    }

    .togo-topbar .container.togo-topbar-inner {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px 12px;
        padding-top: var(--header-mobile-topbar-padding-y) !important;
        padding-bottom: var(--header-mobile-topbar-padding-y) !important;
        padding-left: var(--header-inline-padding-mobile) !important;
        padding-right: var(--header-inline-padding-mobile) !important;
    }

    .togo-navbar .container.togo-navbar-inner {
        padding-top: var(--header-mobile-navbar-padding-y) !important;
        padding-bottom: var(--header-mobile-navbar-padding-y) !important;
        padding-left: var(--header-inline-padding-mobile) !important;
        padding-right: var(--header-inline-padding-mobile) !important;
    }

    body.home-v2 .togo-navbar .container.togo-navbar-inner {
        padding-top: var(--header-mobile-navbar-padding-y) !important;
        padding-bottom: var(--header-mobile-navbar-padding-y) !important;
    }

    body.home-v2 .togo-brand-logo {
        height: 28px;
        max-width: 156px;
    }

    .togo-nav-toggle,
    .togo-auth-menu-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .togo-nav-toggle i,
    .togo-auth-menu-toggle i {
        font-size: 15px;
        line-height: 1;
    }

    .togo-topbar-left,
    .togo-topbar-right {
        width: 100%;
    }

    .togo-topbar-left {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .togo-topbar-left a {
        font-size: 12px;
        line-height: 1.4;
    }

    .togo-topbar-center {
        display: none;
    }

    .togo-topbar-right {
        justify-content: flex-start;
        gap: 8px;
    }

    .togo-topbar-social {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
    }

    .togo-nav-drawer {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 20;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        padding: var(--header-mobile-drawer-padding-y) 20px calc(var(--header-mobile-drawer-padding-y) + 4px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .togo-navbar.open .togo-nav-drawer {
        display: flex;
    }

    .togo-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .togo-nav-item,
    .togo-nav-dropdown {
        width: 100%;
    }

    .togo-nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .togo-nav-submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        padding: 0 0 0 12px;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .togo-nav-dropdown.open .togo-nav-submenu {
        display: block;
    }

    .togo-nav-sublink {
        width: 100%;
        padding: var(--header-mobile-nav-link-padding-y) 0;
        border-radius: 0;
        background: transparent;
    }

    .togo-nav-sublink:hover,
    .togo-nav-sublink.active {
        background: transparent;
        color: var(--theme-secondary, #0f172a);
    }

    .togo-nav-link {
        color: var(--text-dark);
        width: 100%;
        padding: var(--header-mobile-nav-link-padding-y) 0;
    }

    .togo-nav-link::after {
        background: var(--text-dark);
    }

    .togo-nav-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .togo-navbar-leading {
        gap: 8px;
        max-width: calc(100% - 88px);
    }

    .togo-navbar-leading .navbar-city-selector--leading {
        padding: 5px 10px;
        font-size: 12px;
    }

    .togo-navbar-leading .navbar-city-selector--leading i {
        font-size: 12px;
        margin-right: 5px;
    }

    .togo-navbar-leading .navbar-city-text {
        max-width: 72px;
    }

    .togo-navbar-leading .navbar-city-selector--leading::after {
        inset: 1px;
    }

    .togo-mobile-utility {
        display: block;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        padding-top: var(--header-mobile-drawer-padding-y);
    }

    .togo-navbar:not(.scrolled) .navbar-city-selector,
    .togo-navbar:not(.scrolled) .btn-outline {
        color: var(--text-dark);
        border-color: rgba(15, 23, 42, 0.15);
        background: rgba(255, 255, 255, 0.7);
    }

    .togo-navbar:not(.scrolled) .navbar-city-selector i {
        color: var(--text-dark);
    }
}

@media (max-width: 576px) {
    .togo-header .togo-topbar-inner.container,
    .togo-topbar .container.togo-topbar-inner {
        padding-left: var(--header-inline-padding-compact) !important;
        padding-right: var(--header-inline-padding-compact) !important;
    }

    .togo-header .togo-navbar-inner.container,
    .togo-navbar .container.togo-navbar-inner {
        padding-left: var(--header-inline-padding-compact) !important;
        padding-right: var(--header-inline-padding-compact) !important;
    }

    body.home-v2 .togo-navbar .container.togo-navbar-inner {
        padding-left: var(--header-inline-padding-compact) !important;
        padding-right: var(--header-inline-padding-compact) !important;
    }

    .togo-topbar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .togo-topbar-left a {
        white-space: normal;
        word-break: break-all;
    }
}

/* Navbar */
.trip-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: transparent; /* Transparent initially */
}

.trip-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    color: var(--primary-color) !important;
}

.navbar-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-dark);
    font-weight: 600;
}

.navbar-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn-pill {
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    opacity: 0.92;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background-color: transparent;
}

body.home-v2.has-togo-header .hero-section {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-sizing: border-box;
    min-height: var(--hero-banner-min-height);
    height: auto;
    padding-top: 0;
    padding-bottom: var(--hero-banner-padding-bottom);
}

body.home-v2.has-togo-header .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: clamp(140px, 30vh, 240px);
    padding-left: var(--header-inline-padding);
    padding-right: var(--header-inline-padding);
}

@media (max-width: 992px) {
    body.home-v2.has-togo-header .hero-section {
        min-height: var(--hero-banner-min-height-tablet);
        padding-top: 0;
        padding-bottom: var(--hero-banner-padding-bottom-tablet);
    }

    body.home-v2.has-togo-header .hero-content {
        margin-top: clamp(108px, 26vh, 188px);
    }
}

@media (max-width: 768px) {
    body.home-v2.has-togo-header .hero-section {
        min-height: var(--hero-banner-min-height-mobile);
    }
}

@media (max-width: 576px) {
    body.home-v2.has-togo-header .hero-section {
        min-height: var(--hero-banner-min-height-compact);
        padding-top: 0;
        padding-bottom: var(--hero-banner-padding-bottom-mobile);
    }

    body.home-v2.has-togo-header .hero-content {
        margin-top: clamp(80px, 20vh, 148px);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)); /* Lighter overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 56px;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Search Bar (Floating & Frosted) */
.search-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
    max-width: 720px;
    margin: 0 auto;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-bar:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.search-input-group {
    flex: 1;
    padding: 12px 32px;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: background 0.2s;
}

.search-input-group:hover {
    background: rgba(0,0,0,0.03);
}

.search-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.search-input {
    width: 100%;
    border: none;
    font-size: 16px;
    color: var(--text-grey);
    background: transparent;
    font-weight: 500;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    transition: all 0.2s ease;
    font-size: 20px;
}

.search-btn:hover {
    background: var(--primary-hover);
    opacity: 0.92;
}

/* Categories */
.categories-section {
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    background: white;
    position: sticky;
    top: 72px; /* Sticky below navbar */
    z-index: 900;
}

.categories-list {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 0 24px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-grey);
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

.category-item:hover, .category-item.active {
    opacity: 1;
    color: var(--text-dark);
    border-bottom-color: var(--text-dark); /* Black underline */
}

.category-icon-img {
    width: 24px; 
    height: 24px; 
    margin-bottom: 8px;
    object-fit: contain;
    filter: grayscale(100%); /* Force icons to be B&W */
    opacity: 0.6;
    transition: all 0.2s;
}

.category-item:hover .category-icon-img {
    filter: grayscale(0%);
    opacity: 1;
}

.category-text {
    font-size: 12px;
    font-weight: 600;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Listing page header — dynamics / joyguide / blog */
.page-header {
    padding: 120px 0 36px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light, #f7f7f7) 100%);
    border-bottom: 1px solid var(--border-color, #eee);
}

.page-header .section-title,
.page-header .section-subtitle {
    text-align: center;
}

.page-header .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Listing empty state — shared across list pages */
.grid-3 > .listing-empty,
.grid-3 > .dynamic-empty,
.grid-4 > .listing-empty,
.grid-4 > .home-section-empty,
.partner-list-wrap > .partner-empty,
.h5-package-grid > .package-empty {
    grid-column: 1 / -1;
    width: 100%;
}

.listing-empty,
.partner-empty,
.service-empty,
.store-empty,
.store-loading,
.package-empty,
.dynamic-empty,
.home-section-empty {
    text-align: center;
    padding: 64px 20px 72px;
    color: var(--text-grey, #717171);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.listing-empty-icon,
.partner-empty-icon,
.service-empty-icon,
.store-empty-icon,
.package-empty-icon,
.dynamic-empty-icon,
.home-section-empty-icon {
    margin: 0 auto 16px;
    color: #d1d5db;
    font-size: 48px;
    line-height: 1;
}

.listing-empty h3,
.partner-empty h3,
.service-empty h3,
.store-empty h3,
.package-empty h3,
.dynamic-empty h3,
.home-section-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.listing-empty p,
.partner-empty p,
.service-empty p,
.store-empty p,
.package-empty p,
.dynamic-empty p,
.home-section-empty p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 420px;
    text-align: center;
    width: 100%;
}

.listing-empty-link,
.partner-empty .store-h5-btn,
.service-empty .store-h5-btn,
.store-empty .store-h5-btn,
.package-empty .store-h5-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.listing-empty-link:hover,
.partner-empty .store-h5-btn:hover,
.service-empty .store-h5-btn:hover,
.store-empty .store-h5-btn:hover,
.package-empty .store-h5-btn:hover {
    background: transparent;
    color: var(--theme-primary, #fd4621);
    transform: none;
}

/* Minimalist Cards */
.card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent; /* No background by default */
    border: none; /* No border */
    box-shadow: none; /* No shadow by default */
}

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

.card-image-wrapper {
    position: relative;
    padding-top: 100%; /* Square Aspect Ratio for modern look */
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    background: #f0f0f0;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.03);
}

.card-content {
    padding: 4px 0 0 0; /* Remove side padding */
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 6px;
    font-weight: 400;
}

.card-rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.star {
    color: var(--text-dark); /* Black Star */
    font-size: 12px;
    margin-right: 4px;
}

/* Featured Section (Value Props) */
.features-section {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}

.feature-box {
    padding: 20px;
}

.feature-icon {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.6;
}

/* Standardized Footer Styles - Togo Light V1 (Fixed) */
.footer-top-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background: #e5e2dc;
}

.footer {
    background: #fff;
    border-top: 0;
    color: var(--theme-secondary);
    padding-top: 64px;
    font-family: "DM Sans", sans-serif;
}

.footer .container {
    max-width: 1320px;
    padding: 0 24px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--theme-secondary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul a,
.footer-contact-item a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-col ul a:hover,
.footer-contact-item a:hover {
    color: var(--theme-primary);
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--theme-secondary);
    font-size: 18px;
    margin-top: 4px;
}

.footer-btn {
    display: inline-block;
    background: var(--theme-primary);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.footer-btn:hover,
.footer-btn:focus,
.footer-btn:active {
    background: var(--theme-primary-hover);
    color: #fff !important;
    text-decoration: none;
}

.footer-newsletter p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-follow-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.footer-follow-btn {
    height: 40px;
    border-radius: 999px;
    border: 1px solid #cfd4dc;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer-follow-primary {
    background: var(--theme-primary);
    color: #fff;
    border-color: var(--theme-primary);
}

.footer-follow-primary:hover {
    background: var(--theme-primary-hover);
    border-color: var(--theme-primary-hover);
    color: #fff;
}

.footer-follow-ghost {
    background: #fff;
    color: var(--theme-secondary);
    border: 1px solid rgba(15, 23, 42, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.footer-follow-ghost:hover {
    border-color: rgba(var(--theme-primary-rgb), 0.45);
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.04);
}

.footer-input-group {
    position: relative;
    margin-bottom: 30px;
}

.footer-input {
    width: 100%;
    height: 54px;
    border: 1px solid #e5e5e5;
    border-radius: 99px;
    padding: 0 60px 0 24px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.footer-input:focus {
    border-color: var(--theme-primary);
}

.footer-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--theme-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wechat-follow-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.56);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

body.wechat-follow-modal-open {
    overflow: hidden;
}

.wechat-follow-modal.is-open {
    display: flex;
}

.wechat-follow-dialog {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: var(--modal-radius);
    padding: 24px 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.3);
}

.wechat-follow-close {
    position: absolute;
    right: 12px;
    top: 10px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.wechat-follow-title {
    margin: 2px 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-secondary);
}

.wechat-follow-qr-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.wechat-follow-qr {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wechat-follow-account {
    margin: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-all;
}

/* Auth guide — PC modal + nav trigger */
.togo-navbar-trailing {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.togo-auth-menu-toggle:hover {
    opacity: 0.88;
}

.auth-guide-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.56);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

body.auth-guide-modal-open {
    overflow: hidden;
}

.auth-guide-modal.is-open {
    display: flex;
}

.auth-guide-dialog {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: var(--modal-radius);
    padding: 28px 24px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.3);
}

.auth-guide-close {
    position: absolute;
    right: 12px;
    top: 10px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.auth-guide-title {
    margin: 2px 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-secondary);
}

.auth-guide-desc {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.65;
}

.auth-guide-qr-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.auth-guide-qr {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-guide-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.auth-guide-qr-empty {
    padding: 0 16px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.auth-guide-tip {
    margin: 0 0 18px;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.5;
}

.auth-guide-actions {
    display: flex;
    justify-content: center;
}

.auth-guide-action.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    text-decoration: none;
}

.footer-social-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: var(--theme-secondary);
    font-size: 18px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--theme-primary);
}

.footer-socials-text {
    gap: 10px;
}

.footer-socials-text i {
    font-size: 12px;
}

.footer-socials-text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
    color: var(--theme-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-socials-text a:hover {
    color: var(--theme-secondary);
    background: #eceff3;
}

.footer-payments {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 24px;
    object-fit: contain;
}

.footer-payments-text {
    align-items: center;
}

.footer-payment-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f7f7f7;
    color: var(--theme-secondary);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #e8e8e8;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.footer-bottom-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.footer-bottom-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer-bottom-social .footer-socials {
    margin-bottom: 0;
    gap: 14px;
}

.footer-bottom-social .footer-social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-social .footer-social-icon-link:hover {
    color: var(--theme-secondary, #0f172a);
}

.footer-bottom-social .footer-social-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    background-color: currentColor;
    border-radius: 4px;
}

.footer-bottom-social .footer-social-icon.brand-icon-img {
    background-color: transparent;
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.footer-bottom-social .footer-social-icon-link:hover .footer-social-icon.brand-icon-img {
    opacity: 1;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
}

.footer-legal-links a {
    color: #6b7280;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--theme-secondary, #111827);
}

.footer-legal-sep {
    color: #d1d5db;
    user-select: none;
    margin: 0 0.4em;
}

.footer-record-lines {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.footer-record-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #666;
    text-decoration: none;
}

.footer-record-item:hover {
    color: var(--theme-primary);
}

.footer-record-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-bottom .copyright {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom .copyright span {
    color: var(--theme-primary);
}

.footer-copyright-bar {
    border-top: 1px solid #f0f0f0;
    padding: 16px 0 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.footer-copyright-bar .copyright {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.footer-copyright-bar .copyright span {
    color: var(--theme-primary);
}

.footer-copyright-bar .footer-record-lines {
    justify-content: center;
}

.footer-lang-btn {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .footer-bottom-meta {
        align-items: flex-start;
    }

    .footer-bottom-social {
        justify-content: flex-start;
    }

    .footer-copyright-bar {
        align-items: flex-start;
        text-align: left;
    }

    .footer-copyright-bar .footer-record-lines {
        justify-content: flex-start;
    }
}

/* City Modal - Modern */
.city-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.42);
    z-index: 3000;
}

body.city-modal-open {
    overflow: hidden;
}

.city-modal-content {
    width: min(960px, 92vw);
    max-height: 84vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: var(--modal-radius-lg);
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}

.city-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 12px;
    border-bottom: 1px solid #eee;
}

.city-modal-header-copy h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.city-modal-header-copy p {
    margin: 6px 0 0;
    font-size: 12px;
    color: #777;
}

.city-modal-header h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.close-city-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #777;
    cursor: pointer;
    user-select: none;
    font-size: 22px;
    line-height: 1;
}

.close-city-modal:hover {
    background: #f3f3f3;
    color: #000;
}

.city-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-bottom: 1px solid #eee;
}

.city-search-box i {
    color: #999;
}

#city-filter-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
}

.city-modal-body {
    padding: 12px 22px 20px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    gap: 14px;
    align-items: start;
}

.city-modal-main {
    min-width: 0;
}

.current-location {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fafafa;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.current-location:hover {
    background: #f5f5f5;
    border-color: #e6e6e6;
}

.current-location i {
    color: var(--primary-color);
    font-size: 18px;
    flex: 0 0 auto;
}

.current-location-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.current-location-copy span {
    font-weight: 700;
}

.current-location-copy small {
    margin-top: 4px;
    color: #888;
    font-size: 12px;
}

.city-list-group-title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
}

.city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 8px;
}

.city-tag {
    appearance: none;
    padding: 10px 12px;
    border: 1px solid #eee;
    background: #fff;
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
}

.city-tag:hover {
    border-color: #000;
    background: #f7f7f7;
    color: #000;
    box-shadow: none;
}

.city-tag.is-active {
    border-color: var(--primary-color);
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--primary-color);
    font-weight: 700;
}

.city-loading-state,
.city-empty-state {
    padding: 20px 10px;
    text-align: center;
    color: #999;
}

.city-index {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0 8px 8px;
}

.city-index-item {
    appearance: none;
    width: 40px;
    height: 28px;
    border: none;
    border-radius: 999px;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.city-index-item:hover {
    background: rgba(var(--theme-primary-rgb), 0.12);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 48px; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 48px 0; }
    .hero-section { height: 70vh; min-height: 500px; }
    .hero-title { font-size: 36px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 18px; margin-bottom: 32px; }
    
    .search-bar { 
        flex-direction: column; 
        padding: 16px; 
        width: 100%; 
        border-radius: 24px; 
        background: white;
    }
    
    .search-input-group { 
        width: 100%; 
        padding: 12px 0; 
        border-bottom: 1px solid #eee; 
        border-radius: 0;
    }
    
    .search-input-group:last-of-type { border-bottom: none; }
    .search-input-group:hover { background: transparent; }
    
    .search-btn { 
        width: 100%; 
        border-radius: 12px; 
        margin: 16px 0 0; 
        height: 48px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .navbar-actions { display: none; }
    .city-modal {
        padding: 16px;
        align-items: center;
    }
    .city-modal-content {
        width: 100%;
        height: auto;
        max-height: min(88vh, 720px);
        border-radius: var(--modal-radius);
    }
    .city-modal-body {
        grid-template-columns: 1fr;
    }
    .city-index {
        display: none;
    }

    /* Listing / content page headers — mobile rhythm under fixed nav */
    .page-header,
    .store-page-header,
    .package-page-header,
    .partner-page-header,
    .service-page-header {
        padding: 88px 0 24px !important;
    }

    .page-header .section-title,
    .store-page-header .section-title,
    .package-page-header .section-title,
    .partner-page-header .section-title,
    .service-page-header .section-title {
        font-size: 28px;
    }

    .page-header .section-subtitle,
    .store-page-header .section-subtitle,
    .package-page-header .section-subtitle,
    .partner-page-header .section-subtitle,
    .service-page-header .section-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-hero {
        height: auto;
        min-height: 280px;
        padding: 88px 16px 48px;
        box-sizing: border-box;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-desc {
        font-size: 15px;
    }

    .team-hero {
        padding: 88px 16px 48px;
    }

    .team-hero-title {
        font-size: 32px;
    }

    .team-hero-desc {
        font-size: 16px;
    }

    .join-hero {
        padding: 88px 16px 48px;
    }

    .join-hero h1 {
        font-size: 32px;
    }

    .join-hero p {
        font-size: 16px;
    }
}

/* Transparent Navbar Override (For Dark Hero Backgrounds) */
.trip-navbar:not(.scrolled) .nav-link {
    color: white;
}

.trip-navbar:not(.scrolled) .nav-link::after {
    background-color: white;
}

.trip-navbar:not(.scrolled) .navbar-brand {
    color: white;
}

.trip-navbar:not(.scrolled) .navbar-brand i {
    color: white !important;
}

.trip-navbar:not(.scrolled) .navbar-city-selector {
    color: white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-color: rgba(255,255,255,0.2);
}

.trip-navbar:not(.scrolled) .navbar-city-selector:hover {
    background: rgba(255,255,255,0.25);
}

.trip-navbar:not(.scrolled) .navbar-city-selector i {
    color: white;
}

.trip-navbar:not(.scrolled) .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.trip-navbar:not(.scrolled) .btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
    border-color: white;
}

/* Popup surfaces — unified rounded UI */
.confirm_box,
.YiJia_message,
.store-mobile-panel,
.mobile-order-panel {
    border-radius: var(--modal-radius) !important;
    overflow: hidden;
}

.confirm_btns button {
    border-radius: var(--radius-md) !important;
}

.confirm_btns button.btns_primary {
    background: var(--theme-primary, #FD4621);
    border-color: var(--theme-primary, #FD4621);
}

.confirm_btns button.btns_default:hover {
    color: var(--theme-primary, #FD4621);
    border-color: var(--theme-primary, #FD4621);
}
