:root {
    --bg: #07080c;
    --panel: #11131a;
    --panel-2: #161821;
    --border: #292c37;
    --pink: #ff2586;
    --pink-light: #ff72b3;
    --purple: #a84cff;
    --text: #f5f5f7;
    --muted: #9b9da8;
    --gold: #ffc928;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% -10%, #21101b 0, transparent 34%),
        var(--bg);
    color: var(--text);
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-header {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 0 34px;
    background: rgba(7, 8, 12, .96);
    border-bottom: 1px solid #1c1e27;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    width: 185px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: .9;
}

.brand-main {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand-sub {
    width: max-content;
    margin-left: 34px;
    margin-top: 5px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--pink);
    font-size: 11px;
    letter-spacing: 3px;
    color: #ddd;
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 100%;
}

.main-nav a {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #e6e6ea;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--pink);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--pink);
    border-radius: 4px 4px 0 0;
}

.hot-badge {
    position: absolute;
    top: 11px;
    right: -20px;
    padding: 3px 7px;
    border-radius: 10px;
    background: var(--pink);
    color: white;
    font-size: 8px;
    font-weight: 900;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid #2d303a;
    border-radius: 12px;
    text-decoration: none;
    background: #0c0d12;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    height: 40px;
    padding: 0 18px;
    border-radius: 9px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.page-container {
    width: min(1215px, calc(100% - 64px));
    margin: 0 auto;
}

.hero {
    min-height: 350px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid #292c34;
    border-radius: 14px;
    background:
        linear-gradient(
            90deg,
            #0b0c11 0%,
            #0b0c11 38%,
            rgba(11,12,17,.6) 58%,
            rgba(11,12,17,.08) 100%
        ),
        var(--hero-image, linear-gradient(135deg,#24111c,#11131a));
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,6,9,.97) 0%,
            rgba(5,6,9,.88) 34%,
            rgba(5,6,9,.2) 72%,
            rgba(5,6,9,.6) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 350px;
    display: grid;
    grid-template-columns: 1fr 285px;
    gap: 30px;
    align-items: center;
    padding: 34px 25px;
}

.hero-copy {
    max-width: 650px;
}

.hero-kicker {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero-copy > p {
    color: #c3c3c9;
    margin: 14px 0 25px;
    font-size: 15px;
}

.hero-search {
    display: flex;
    width: min(610px, 100%);
    gap: 9px;
}

.hero-search input {
    flex: 1;
    height: 48px;
    padding: 0 17px;
    border: 1px solid #343742;
    border-radius: 9px;
    outline: none;
    background: rgba(17,18,24,.92);
    color: white;
}

.hero-search input:focus {
    border-color: var(--pink);
}

.hero-search button {
    height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 9px;
    background: var(--pink);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.popular-search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #9d9fa8;
    font-size: 11px;
}

.popular-search a {
    border: 1px solid #71324e;
    border-radius: 15px;
    padding: 6px 11px;
    color: #f5a5c7;
    text-decoration: none;
}

.hero-notices {
    padding: 17px;
    border: 1px solid #343640;
    border-radius: 16px;
    background: rgba(15,16,22,.91);
    backdrop-filter: blur(14px);
}

.notice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.notice-head strong {
    font-size: 13px;
}

.notice-head a {
    color: var(--pink);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.notice-item {
    display: grid;
    grid-template-columns: 38px 1fr 6px;
    align-items: center;
    gap: 9px;
    padding: 12px 0;
    border-top: 1px solid #252730;
}

.notice-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.notice-icon.pink {
    background: #45132c;
}

.notice-icon.purple {
    background: #28164b;
}

.notice-icon.green {
    background: #153a2b;
}

.notice-item strong {
    display: block;
    font-size: 11px;
}

.notice-item small {
    display: block;
    margin-top: 4px;
    color: #90939e;
    font-size: 9px;
    line-height: 1.35;
}

.notice-item > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 12px;
    left: 50%;
    display: flex;
    gap: 8px;
}

.hero-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #aaa;
}

.hero-dots span.active {
    width: 22px;
    border-radius: 10px;
    background: var(--pink);
}

.section {
    margin-top: 24px;
}

.section-title h2,
.section-heading h2 {
    margin: 0;
    font-size: 18px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 14px;
}

.section-heading p {
    margin: 6px 0 0;
    color: #858792;
    font-size: 11px;
}

.section-heading > a {
    color: #ddd;
    font-size: 12px;
    text-decoration: none;
}

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

.feature-card {
    min-height: 218px;
    position: relative;
    overflow: hidden;
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border: 1px solid #3a2030;
    border-radius: 11px;
    background:
        radial-gradient(circle at 75% 25%, rgba(255,37,134,.18), transparent 30%),
        linear-gradient(135deg,#1a1018,#11131a);
    text-decoration: none;
    transition: transform .2s, border-color .2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
}

.feature-number {
    position: absolute;
    top: 13px;
    left: 13px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--pink),#ff4da0);
    font-size: 10px;
    font-weight: 900;
}

.feature-icon {
    position: absolute;
    top: 30px;
    right: 24px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,37,134,.2);
    font-size: 25px;
}

.feature-info {
    position: relative;
    z-index: 2;
}

.feature-info h3 {
    margin: 0 0 7px;
    font-size: 15px;
}

.feature-info p {
    max-width: 210px;
    min-height: 38px;
    margin: 0 0 12px;
    color: #a7a9b2;
    font-size: 10px;
    line-height: 1.5;
}

.feature-button {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 18px;
    background: var(--pink);
    color: white;
    font-size: 10px;
    font-weight: 800;
}

.feature-region {
    border-color: #55336e;
}

.feature-hot {
    border-color: #6d4c19;
}

.feature-contact {
    border-color: #4f253b;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 11px;
}

.profile-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #292c35;
    border-radius: 10px;
    background: #111319;
}

.profile-photo {
    display: block;
    height: 218px;
    position: relative;
    overflow: hidden;
    background: #1b1d25;
    text-decoration: none;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s;
}

.profile-card:hover .profile-photo img {
    transform: scale(1.04);
}

.no-photo {
    height: 100%;
    display: grid;
    place-items: center;
    color: #777a85;
    font-size: 11px;
}

.profile-hot,
.profile-online {
    position: absolute;
    top: 9px;
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 900;
}

.profile-hot {
    left: 9px;
    background: var(--pink);
}

.profile-online {
    right: 9px;
    background: #193321;
    color: #57e77d;
}

.profile-online i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 3px;
    border-radius: 50%;
    background: #48ed70;
}

.profile-body {
    padding: 10px;
}

.profile-name-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.profile-name-row h3 {
    margin: 0;
    font-size: 13px;
}

.profile-name-row p {
    margin: 3px 0 0;
    color: #a3a5ae;
    font-size: 10px;
}

.heart-button {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--pink);
    font-size: 24px;
    cursor: pointer;
}

.profile-location {
    margin-top: 8px;
    color: #c0c1c8;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
    color: #888b95;
    font-size: 9px;
}

.profile-meta span:first-child {
    color: var(--gold);
}

.view-profile {
    display: block;
    margin-top: 10px;
    padding: 8px;
    border-radius: 7px;
    background: #21101a;
    color: #ff78b5;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
}

.empty-state {
    padding: 50px;
    text-align: center;
    border: 1px dashed #333640;
    border-radius: 12px;
    color: #777a85;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1050px) {

    .site-header {
        gap: 20px;
        padding: 0 18px;
    }

    .main-nav {
        gap: 18px;
    }

    .profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

}

@media (max-width: 760px) {

    body {
        padding-bottom: 68px;
    }

    .site-header {
        height: 62px;
        padding: 0 13px;
        gap: 10px;
    }

    .brand {
        width: 110px;
    }

    .brand-main {
        font-size: 18px;
    }

    .brand-sub {
        margin-left: 20px;
        font-size: 8px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .search-icon {
        width: 37px;
        height: 37px;
    }

    .login-btn {
        min-width: 83px;
        height: 37px;
        padding: 0 10px;
        font-size: 11px;
    }

    .page-container {
        width: calc(100% - 20px);
    }

    .hero {
        min-height: 510px;
    }

    .hero-content {
        min-height: 510px;
        grid-template-columns: 1fr;
        padding: 28px 18px 55px;
        align-items: start;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-notices {
        display: none;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .feature-card {
        min-height: 185px;
        padding: 12px;
    }

    .feature-icon {
        top: 23px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .feature-info h3 {
        font-size: 12px;
    }

    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .profile-photo {
        height: 210px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        height: 65px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        background: rgba(14,15,21,.98);
        border-top: 1px solid #292c35;
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        color: #888b95;
        text-decoration: none;
        font-size: 18px;
    }

    .mobile-bottom-nav small {
        font-size: 8px;
    }

    .mobile-bottom-nav a.active {
        color: var(--pink);
    }

}

@media (max-width: 430px) {

    .feature-card {
        min-height: 165px;
    }

    .profile-photo {
        height: 190px;
    }

    .hero h1 {
        font-size: 29px;
    }

}

/* ===== AUTH PAGE UI ===== */

.topbar {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 0 34px;
    background: rgba(7, 8, 12, .96);
    border-bottom: 1px solid #1c1e27;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar .logo {
    width: 185px;
    display: flex;
    flex-direction: column;
    line-height: .9;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.topbar .logo span {
    width: max-content;
    margin-left: 34px;
    margin-top: 6px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--pink);
    color: #ddd;
    font-size: 11px;
    letter-spacing: 3px;
}

.topbar nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.topbar nav a {
    color: #e6e6ea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.topbar nav a:hover {
    color: var(--pink);
}

.auth-page {
    width: min(500px, calc(100% - 30px));
    margin: 55px auto 90px;
}

.auth-box {
    background: rgba(20, 21, 28, .96);
    border: 1px solid #30323b;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.auth-box h1 {
    color: var(--pink-light);
    margin: 0 0 18px;
    font-size: 32px;
}

.auth-box p {
    color: var(--muted);
    margin-bottom: 24px;
}

.auth-box label {
    display: block;
    margin: 18px 0 8px;
    color: #eee;
    font-weight: 600;
}

.auth-box input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 9px;
    border: 1px solid #383a45;
    background: #08090d;
    color: #fff;
    outline: none;
}

.auth-box input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 37, 134, .12);
}

.auth-box button {
    width: 100%;
    min-height: 46px;
    margin-top: 25px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.auth-box button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.auth-links {
    margin-top: 22px;
    text-align: center;
    color: var(--muted);
}

.auth-links a {
    color: var(--pink-light);
    text-decoration: none;
    font-weight: 700;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-message {
    padding: 12px;
    border-radius: 9px;
    margin-bottom: 15px;
    border: 1px solid #ff4b4b;
    background: rgba(255, 75, 75, .08);
    color: #ffb3b3;
}

@media (max-width: 760px) {
    .topbar {
        min-height: 62px;
        padding: 0 13px;
        gap: 12px;
    }

    .topbar .logo {
        width: 110px;
        font-size: 18px;
    }

    .topbar .logo span {
        margin-left: 20px;
        font-size: 8px;
    }

    .topbar nav {
        gap: 12px;
        justify-content: flex-end;
    }

    .topbar nav a {
        font-size: 11px;
    }

    .auth-page {
        margin-top: 25px;
    }

    .auth-box {
        padding: 22px;
    }
}


/* ================================
   CONTACT FLOATING WIDGET
================================ */

.contact-float-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff2586, #a84cff);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(255, 37, 134, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(168, 76, 255, .35);
}

.contact-float-btn .contact-icon {
    font-size: 19px;
}

.contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 22px;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(4px);
}

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

.contact-popup {
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    background: #14151c;
    border: 1px solid #30323b;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
    animation: contactPopupIn .2s ease;
}

@keyframes contactPopupIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 22px;
    border-bottom: 1px solid #292c37;
}

.contact-popup-title {
    margin: 0;
    color: #ff72b3;
    font-size: 21px;
    font-weight: 900;
}

.contact-close {
    width: 36px;
    height: 36px;
    border: 1px solid #383a45;
    border-radius: 10px;
    background: #08090d;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.contact-popup-body {
    padding: 20px 22px 22px;
}

.contact-content {
    margin: 0 0 18px;
    color: #bfc0ca;
    line-height: 1.6;
}

.contact-list {
    display: grid;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 10px 13px;
    border: 1px solid #292c37;
    border-radius: 12px;
    background: #0c0d12;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}

.contact-item:hover {
    border-color: #ff2586;
    transform: translateX(2px);
}

.contact-item-icon {
    width: 32px;
    text-align: center;
    font-size: 19px;
}

.contact-item-text {
    min-width: 0;
}

.contact-item-label {
    display: block;
    color: #8f919d;
    font-size: 11px;
    margin-bottom: 2px;
}

.contact-item-value {
    display: block;
    color: #fff;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-qr {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #292c37;
    text-align: center;
}

.contact-qr img {
    display: block;
    max-width: 220px;
    max-height: 220px;
    width: auto;
    height: auto;
    margin: 10px auto 0;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.contact-loading,
.contact-empty {
    color: #9b9da8;
    text-align: center;
    padding: 20px 5px;
}

@media (max-width: 760px) {

    .contact-float-btn {
        right: 14px;
        bottom: 76px;
        height: 46px;
        padding: 0 15px;
    }

    .contact-overlay {
        align-items: flex-end;
        padding: 10px;
    }

    .contact-popup {
        width: 100%;
        max-height: calc(100vh - 90px);
        border-radius: 16px;
    }

}

/* =========================================================
   LOCATION SEARCH UI - SYNC WITH EXISTING HERO
   ========================================================= */

.hero-location-search{
    width:100%;
    margin:0 0 14px 0;
}

.hero-location-row{
    display:grid;
    grid-template-columns:1fr 1fr auto;
    gap:10px;
    width:100%;
    align-items:end;
}

.location-select-wrap{
    min-width:0;
}

.location-select-wrap label{
    display:block;
    margin:0 0 7px;
    color:#d9d9e2;
    font-size:12px;
    font-weight:700;
}

.location-select-wrap select{
    width:100%;
    height:48px;
    padding:0 42px 0 15px;
    border:1px solid #343442;
    border-radius:12px;
    background:#09090f;
    color:#fff;
    font-size:14px;
    font-weight:600;
    outline:none;
    cursor:pointer;
    appearance:auto;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.location-select-wrap select:hover{
    border-color:#ff1684;
}

.location-select-wrap select:focus{
    border-color:#ff1684;
    box-shadow:0 0 0 3px rgba(255,22,132,.12);
}

.location-select-wrap select:disabled{
    opacity:.55;
    cursor:not-allowed;
}

#heroLocationSearch{
    height:48px;
    padding:0 25px;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,#ff1684,#ff3a9b);
    color:#fff;
    font-size:15px;
    font-weight:800;
    white-space:nowrap;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(255,22,132,.18);
    transition:transform .2s ease, box-shadow .2s ease;
}

#heroLocationSearch:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 28px rgba(255,22,132,.28);
}

#heroLocationSearch:active{
    transform:translateY(0);
}

/* Search tên vẫn giữ đúng giao diện cũ */
.hero-location-search + .hero-search{
    margin-top:0;
}

@media (max-width:760px){

    .hero-location-row{
        grid-template-columns:1fr;
        gap:9px;
    }

    #heroLocationSearch{
        width:100%;
    }

    .location-select-wrap select{
        height:46px;
    }

}


/* =========================================================
   LOCATION SEARCH UI - SYNC WITH EXISTING HERO
   ========================================================= */

.hero-location-search{
    width:100%;
    margin:0 0 14px 0;
}

.hero-location-row{
    display:grid;
    grid-template-columns:1fr 1fr auto;
    gap:10px;
    width:100%;
    align-items:end;
}

.location-select-wrap{
    min-width:0;
}

.location-select-wrap label{
    display:block;
    margin:0 0 7px;
    color:#d9d9e2;
    font-size:12px;
    font-weight:700;
}

.location-select-wrap select{
    width:100%;
    height:48px;
    padding:0 42px 0 15px;
    border:1px solid #343442;
    border-radius:12px;
    background:#09090f;
    color:#fff;
    font-size:14px;
    font-weight:600;
    outline:none;
    cursor:pointer;
    appearance:auto;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.location-select-wrap select:hover{
    border-color:#ff1684;
}

.location-select-wrap select:focus{
    border-color:#ff1684;
    box-shadow:0 0 0 3px rgba(255,22,132,.12);
}

.location-select-wrap select:disabled{
    opacity:.55;
    cursor:not-allowed;
}

#heroLocationSearch{
    height:48px;
    padding:0 25px;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,#ff1684,#ff3a9b);
    color:#fff;
    font-size:15px;
    font-weight:800;
    white-space:nowrap;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(255,22,132,.18);
    transition:transform .2s ease, box-shadow .2s ease;
}

#heroLocationSearch:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 28px rgba(255,22,132,.28);
}

#heroLocationSearch:active{
    transform:translateY(0);
}

/* Search tên vẫn giữ đúng giao diện cũ */
.hero-location-search + .hero-search{
    margin-top:0;
}

@media (max-width:760px){

    .hero-location-row{
        grid-template-columns:1fr;
        gap:9px;
    }

    #heroLocationSearch{
        width:100%;
    }

    .location-select-wrap select{
        height:46px;
    }

}

