/* ==========================================================================
   Explorer - Global Styles
   ========================================================================== */

:root {

    --primary: #087df5;
    --primary-dark: #0667d4;

    --text: #10233f;
    --muted: #64748b;

    --border: #e5eaf0;

    --background: #ffffff;
    --light-bg: #f7f9fc;

    --footer: #06243a;

    --container: 1120px;

    --radius: 12px;

    --shadow:
        0 8px 25px rgba(15, 35, 60, 0.08);

}


* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    font-family:
        'Inter',
        Arial,
        sans-serif;

    color: var(--text);

    background: #fff;

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


.container {

    width: calc(100% - 48px);

    max-width: var(--container);

    margin: 0 auto;

}


/* ==========================================================================
   Header
   ========================================================================== */

.site-header {

    height: 64px;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid var(--border);

    position: relative;

    z-index: 1000;

    transition: box-shadow .2s ease;

}


.site-header.scrolled {

    box-shadow:
        0 4px 20px rgba(15,35,60,.08);

}


.header-inner {

    height: 64px;

    display: flex;

    align-items: center;

    gap: 28px;

}


.site-logo {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 150px;

}


.logo-icon {

    width: 38px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.logo-icon svg {

    width: 34px;

    height: 42px;

    fill: none;

    stroke: var(--primary);

    stroke-width: 1.8;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.logo-text strong {

    font-size: 21px;

    font-weight: 800;

}


.logo-text small {

    font-size: 10px;

    color: var(--muted);

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;

}


.main-nav > a,
.dropdown-trigger {

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

}


.main-nav a:hover {

    color: var(--primary);

}


.nav-dropdown {

    position: relative;

}


.dropdown-trigger {

    display: flex;

    gap: 5px;

    align-items: center;

}


.dropdown-arrow {

    font-size: 14px;

}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: -15px;

    width: 190px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow: var(--shadow);

    padding: 8px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(5px);

    transition: .2s ease;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: block;

    padding: 8px 10px;

    font-size: 13px;

    border-radius: 6px;

}


.dropdown-menu a:hover {

    background: var(--light-bg);

}


.header-search {

    width: 215px;

    height: 38px;

    border: 1px solid #dce3eb;

    border-radius: 22px;

    display: flex;

    align-items: center;

    padding-left: 15px;

}


.header-search input {

    width: 100%;

    border: 0;

    outline: 0;

    font: inherit;

    font-size: 12px;

}


.header-search button {

    width: 42px;

    height: 36px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.header-search svg {

    width: 18px;

    height: 18px;

    fill: none;

    stroke: var(--text);

    stroke-width: 2;

}


.mobile-menu-toggle,
.mobile-nav {

    display: none;

}


/* ==========================================================================
   Hero
   ========================================================================== */

.place-hero {

    position: relative;

    min-height: 430px;

    background-size: cover;

    background-position: center;

    color: #fff;

}


.place-hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,23,42,.90) 0%,
            rgba(5,23,42,.72) 45%,
            rgba(5,23,42,.25) 100%
        );

}


.place-hero-inner {

    position: relative;

    z-index: 2;

    min-height: 430px;

    padding-top: 24px;

    padding-bottom: 48px;

}


.breadcrumbs {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    font-size: 12px;

    color: rgba(255,255,255,.75);

    margin-bottom: 30px;

}


.breadcrumbs a:hover {

    color: #fff;

}


.breadcrumb-separator {

    opacity: .5;

}


.hero-content {

    max-width: 610px;

}


.category-badge {

    display: inline-flex;

    align-items: center;

    padding: 5px 12px;

    background: var(--primary);

    border-radius: 5px;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.hero-content h1 {

    font-size: clamp(34px, 5vw, 48px);

    line-height: 1.12;

    margin: 0 0 8px;

    font-weight: 800;

    letter-spacing: -1.5px;

}


.hero-location {

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 22px;

}


.hero-description {

    font-size: 15px;

    font-weight: 500;

    max-width: 570px;

    margin-bottom: 25px;

}


.hero-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn {

    min-height: 42px;

    padding: 10px 18px;

    border-radius: 6px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-size: 13px;

    font-weight: 700;

    border: 1px solid transparent;

}


.btn-primary {

    background: var(--primary);

    color: #fff;

}


.btn-primary:hover {

    background: var(--primary-dark);

}


.btn-outline {

    border-color: rgba(255,255,255,.8);

    color: #fff;

    background: rgba(0,0,0,.1);

}


.btn-outline:hover {

    background: rgba(255,255,255,.15);

}


/* ==========================================================================
   Hero Information Card
   ========================================================================== */

.hero-info-card {

    position: absolute;

    z-index: 3;

    right: 0;

    bottom: 52px;

    width: 350px;

    background: #fff;

    color: var(--text);

    border-radius: 10px;

    padding: 12px 20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.22);

}


.info-row {

    min-height: 52px;

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 12px;

    align-items: center;

    border-bottom: 1px solid #edf0f3;

    font-size: 12px;

}


.info-row:last-child {

    border-bottom: 0;

}


.info-label {

    font-weight: 700;

}


.info-value {

    color: #374151;

}


.info-value a {

    color: var(--primary);

}


/* ==========================================================================
   Main Content
   ========================================================================== */

.main-content {

    padding: 40px 0 70px;

}


.around-header {

    margin-bottom: 20px;

}


.around-header h2 {

    margin: 0;

    font-size: 22px;

    letter-spacing: -.5px;

}


.around-header p {

    margin: 2px 0 0;

    color: var(--muted);

    font-size: 13px;

}


/* ==========================================================================
   Quick Category Cards
   ========================================================================== */

.category-cards {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 1px;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(15,35,60,.05);

    margin-bottom: 42px;

}


.category-card {

    padding: 16px 12px;

    background: #fff;

    min-height: 120px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.category-icon {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf5ff;

    color: var(--primary);

    font-size: 20px;

    margin-bottom: 7px;

}


.category-card-count {

    font-size: 21px;

    font-weight: 800;

    line-height: 1;

}


.category-card-name {

    font-size: 11px;

    font-weight: 700;

    margin-top: 4px;

}


.category-card-link {

    margin-top: auto;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

}


/* ==========================================================================
   Nearby Section
   ========================================================================== */

.nearby-section {

    margin-bottom: 42px;

}


.section-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 16px;

}


.section-heading h2 {

    margin: 0;

    font-size: 20px;

}


.section-heading p {

    margin: 2px 0 0;

    color: var(--muted);

    font-size: 12px;

}


.view-all {

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

}


.place-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 16px;

}


.place-card {

    border: 1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    background: #fff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.place-card:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}


.place-card-image {

    width: 100%;

    height: 130px;

    object-fit: cover;

    background: #eef2f6;

}


.place-card-content {

    padding: 12px;

}


.place-card-title {

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


.place-card-meta {

    margin-top: 4px;

    font-size: 11px;

    color: var(--muted);

}


.place-card-distance {

    color: var(--text);

}


/* ==========================================================================
   Nearby List Cards
   ========================================================================== */

.nearby-panels {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-top: 30px;

}


.nearby-panel {

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 16px;

}


.nearby-panel h3 {

    margin: 0;

    font-size: 14px;

}


.nearby-panel-subtitle {

    font-size: 11px;

    color: var(--muted);

    margin-bottom: 12px;

}


.nearby-list {

    list-style: none;

    padding: 0;

    margin: 0;

}


.nearby-list li {

    display: flex;

    justify-content: space-between;

    gap: 8px;

    padding: 7px 0;

    border-bottom: 1px solid #f0f2f4;

    font-size: 11px;

}


.nearby-list li:last-child {

    border-bottom: 0;

}


.nearby-list a:hover {

    color: var(--primary);

}


.nearby-distance {

    color: var(--muted);

    white-space: nowrap;

}


.panel-view-all {

    display: inline-block;

    margin-top: 12px;

    font-size: 11px;

    font-weight: 700;

    color: var(--primary);

}


/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {

    background: var(--footer);

    color: #fff;

    padding: 50px 0 20px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr
        repeat(4, 1fr);

    gap: 45px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

}


.footer-logo .logo-icon svg {

    stroke: #4da1ff;

}


.footer-logo strong {

    display: block;

    font-size: 20px;

}


.footer-logo small {

    display: block;

    font-size: 10px;

    color: #9db0c0;

}


.footer-brand p {

    color: #aab9c7;

    font-size: 12px;

    line-height: 1.7;

    max-width: 230px;

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 18px;

}


.social-links a {

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.footer-column h3 {

    margin: 0 0 8px;

    font-size: 13px;

}


.footer-column a {

    color: #aab9c7;

    font-size: 11px;

}


.footer-column a:hover,
.footer-highlight {

    color: #4da1ff !important;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.12);

    margin-top: 40px;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    color: #8195a7;

    font-size: 10px;

}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1050px) {

    .main-nav {

        gap: 15px;

    }

    .header-search {

        width: 180px;

    }

    .place-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .category-cards {

        grid-template-columns:
            repeat(4, 1fr);

    }

}


@media (max-width: 850px) {

    .main-nav,
    .header-search {

        display: none;

    }

    .mobile-menu-toggle {

        display: flex;

        margin-left: auto;

        width: 40px;

        height: 40px;

        border: 0;

        background: transparent;

        flex-direction: column;

        justify-content: center;

        gap: 5px;

    }

    .mobile-menu-toggle span {

        display: block;

        width: 22px;

        height: 2px;

        background: var(--text);

    }

    .mobile-nav {

        display: none;

        position: fixed;

        top: 64px;

        left: 0;

        right: 0;

        background: #fff;

        z-index: 999;

        padding: 20px 24px;

        box-shadow: var(--shadow);

    }

    body.menu-open .mobile-nav {

        display: flex;

        flex-direction: column;

        gap: 15px;

    }

    .hero-info-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 30px;

        width: 100%;

    }

    .place-hero {

        min-height: auto;

    }

    .place-hero-inner {

        min-height: auto;

    }

    .hero-content {

        max-width: 100%;

    }

    .nearby-panels {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .container {

        width: calc(100% - 30px);

    }

    .place-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .category-cards {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .nearby-panels {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px;

    }

    .footer-brand {

        grid-column: 1 / -1;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }

    .hero-content h1 {

        font-size: 34px;

    }

}


@media (max-width: 400px) {

    .place-grid {

        grid-template-columns: 1fr;

    }

}

/* ==========================================================================
   City Page
   ========================================================================== */

.city-hero {

    position: relative;

    background:
        linear-gradient(
            135deg,
            #06243a 0%,
            #0b4164 55%,
            #087df5 100%
        );

    color: #fff;

    overflow: hidden;

}


.city-hero::after {

    content: '';

    position: absolute;

    width: 420px;

    height: 420px;

    right: -120px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

}


.city-hero .container {

    position: relative;

    z-index: 2;

    min-height: 340px;

    padding-top: 24px;

    padding-bottom: 55px;

}


.city-hero .breadcrumbs {

    margin-bottom: 45px;

}


.city-hero-content {

    max-width: 700px;

}


.city-hero-content h1 {

    margin: 0 0 15px;

    font-size:
        clamp(36px, 5vw, 54px);

    line-height: 1.1;

    letter-spacing: -1.8px;

    font-weight: 800;

}


.city-hero-content h1::first-line {

    color: #fff;

}


.city-hero-description {

    max-width: 620px;

    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.82);

}


.city-hero-stat {

    position: absolute;

    right: 0;

    bottom: 55px;

    width: 230px;

    min-height: 120px;

    padding: 20px 24px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        rgba(255,255,255,.10);

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 12px;

    backdrop-filter:
        blur(10px);

}


.city-hero-stat strong {

    font-size: 34px;

    line-height: 1;

    font-weight: 800;

}


.city-hero-stat span {

    margin-top: 8px;

    font-size: 12px;

    color:
        rgba(255,255,255,.75);

}


/* ==========================================================================
   City Intro
   ========================================================================== */


.city-intro {

    margin-bottom: 22px;

}


.city-intro .around-header {

    margin-bottom: 0;

}


.city-intro .around-header h2 {

    font-size: 26px;

}


.city-intro .around-header p {

    margin-top: 7px;

    font-size: 13px;

}


/* ==========================================================================
   City Category Grid
   ========================================================================== */


.city-category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 55px;

}


.city-category-card {

    background: #fff;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 5px 20px
        rgba(15,35,60,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.city-category-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(15,35,60,.12);

}


/* ==========================================================================
   Category Image
   ========================================================================== */


.city-category-image {

    position: relative;

    display: block;

    height: 175px;

    overflow: hidden;

    background:
        #eef2f6;

}


.city-category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;

}


.city-category-card:hover
.city-category-image img {

    transform:
        scale(1.05);

}


.city-category-image::after {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,23,42,.55),
            rgba(5,23,42,0)
        );

}


.city-category-icon {

    position: absolute;

    left: 16px;

    bottom: 14px;

    z-index: 2;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.95);

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 5px 15px
        rgba(0,0,0,.18);

}


/* ==========================================================================
   Category Content
   ========================================================================== */


.city-category-content {

    min-height: 92px;

    padding:
        15px 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.city-category-content h3 {

    margin: 0;

    font-size: 15px;

    font-weight: 750;

    line-height: 1.3;

}


.city-category-content h3 a:hover {

    color:
        var(--primary);

}


.city-category-content p {

    margin: 5px 0 0;

    color:
        var(--muted);

    font-size: 11px;

}


.city-category-arrow {

    width: 34px;

    height: 34px;

    flex:
        0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #edf5ff;

    color:
        var(--primary);

    font-size: 18px;

    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease;

}


.city-category-arrow:hover {

    background:
        var(--primary);

    color:
        #fff;

}


/* ==========================================================================
   City Summary
   ========================================================================== */


.city-summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        35px 40px;

    margin-top: 10px;

    margin-bottom: 10px;

    background:
        var(--light-bg);

    border:
        1px solid
        var(--border);

    border-radius: 14px;

}


.city-summary > div:first-child {

    max-width: 720px;

}


.city-section-label {

    display: inline-block;

    margin-bottom: 5px;

    color:
        var(--primary);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.city-summary h2 {

    margin:
        0 0 8px;

    font-size: 25px;

    letter-spacing:
        -.5px;

}


.city-summary p {

    margin: 0;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


.city-summary-number {

    flex:
        0 0 150px;

    text-align: center;

    padding:
        15px 20px;

    border-left:
        1px solid
        var(--border);

}


.city-summary-number strong {

    display: block;

    color:
        var(--primary);

    font-size: 30px;

    line-height: 1;

    font-weight: 800;

}


.city-summary-number span {

    display: block;

    margin-top: 6px;

    color:
        var(--muted);

    font-size: 11px;

    font-weight: 600;

}


/* ==========================================================================
   City Responsive
   ========================================================================== */


@media (max-width: 1050px) {

    .city-category-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .city-hero-stat {

        right: 24px;

    }

}


@media (max-width: 850px) {

    .city-hero .container {

        min-height: auto;

        padding-bottom: 35px;

    }


    .city-hero .breadcrumbs {

        margin-bottom: 30px;

    }


    .city-hero-stat {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 30px;

        width: 100%;

        min-height: 90px;

    }


    .city-category-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .city-summary {

        padding: 28px;

    }

}


@media (max-width: 600px) {

    .city-hero-content h1 {

        font-size: 36px;

    }


    .city-hero-description {

        font-size: 14px;

    }


    .city-category-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .city-category-image {

        height: 190px;

    }


    .city-summary {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        padding: 25px;

    }


    .city-summary-number {

        width: 100%;

        border-left: 0;

        border-top:
            1px solid
            var(--border);

        padding-top: 20px;

    }

}

/* ==========================================================================
   Category Listing Page
   ========================================================================== */

.category-hero {

    position: relative;

    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #eef5fc 100%
        );

    border-bottom: 1px solid var(--border);

}


.category-hero-inner {

    padding-top: 20px;

    padding-bottom: 42px;

}


.category-hero .breadcrumbs {

    color: var(--muted);

    margin-bottom: 30px;

}


.category-hero .breadcrumbs a:hover {

    color: var(--primary);

}


.category-hero-grid {

    display: grid;

    grid-template-columns:
        1.25fr
        .75fr;

    gap: 50px;

    align-items: center;

}


.category-hero-content {

    max-width: 650px;

}


.category-hero-content .category-badge {

    margin-bottom: 16px;

}


.category-hero-content h1 {

    margin: 0 0 18px;

    font-size:
        clamp(
            36px,
            5vw,
            54px
        );

    line-height: 1.08;

    letter-spacing: -1.8px;

}


.category-hero-description {

    margin: 0;

    max-width: 620px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

}


.category-hero-count {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding: 10px 16px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 8px;

    box-shadow:
        0 5px 18px
        rgba(15,35,60,.05);

}


.category-hero-count strong {

    font-size: 22px;

    line-height: 1;

}


.category-hero-count span {

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;

}


.category-hero-image {

    position: relative;

    height: 290px;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 18px 45px
        rgba(15,35,60,.16);

}


.category-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.category-hero-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 30%,
            rgba(0,0,0,.72) 100%
        );

}


.category-hero-image-label {

    position: absolute;

    left: 20px;

    right: 20px;

    bottom: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

}


.category-hero-image-label > span {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.18);

    backdrop-filter:
        blur(8px);

    border-radius: 50%;

    font-size: 20px;

}


.category-hero-image-label strong {

    display: block;

    font-size: 15px;

}


.category-hero-image-label small {

    display: block;

    margin-top: 2px;

    font-size: 11px;

    opacity: .8;

}


/* ==========================================================================
   Category Intro
   ========================================================================== */

.category-intro {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 32px 0;

    border-bottom:
        1px solid var(--border);

}


.city-section-label {

    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.category-intro h2 {

    margin: 0;

    font-size: 24px;

    letter-spacing: -.6px;

}


.category-intro p {

    margin: 5px 0 0;

    color: var(--muted);

    font-size: 13px;

}


.category-result-count {

    min-width: 140px;

    padding: 15px 20px;

    background: var(--light-bg);

    border: 1px solid var(--border);

    border-radius: 10px;

    text-align: center;

}


.category-result-count strong {

    display: block;

    font-size: 24px;

    line-height: 1.1;

}


.category-result-count span {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

}


/* ==========================================================================
   Explore Categories
   ========================================================================== */

.category-explore {

    padding: 35px 0 42px;

}


.category-explore .section-heading {

    margin-bottom: 18px;

}


.category-explore-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 12px;

}


.category-explore-card {

    position: relative;

    min-width: 0;

    border:
        1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    background: #fff;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;

}


.category-explore-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        var(--shadow);

}


.category-explore-card.active {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 2px
        rgba(8,125,245,.08);

}


.category-explore-card-image {

    position: relative;

    height: 92px;

    overflow: hidden;

}


.category-explore-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .3s ease;

}


.category-explore-card:hover
.category-explore-card-image img {

    transform:
        scale(1.05);

}


.category-explore-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.5)
        );

}


.category-explore-icon {

    position: absolute;

    left: 9px;

    bottom: 8px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.92);

    border-radius: 50%;

    font-size: 15px;

}


.category-explore-card-content {

    padding: 10px;

}


.category-explore-card-content strong {

    display: block;

    overflow: hidden;

    font-size: 11px;

    white-space: nowrap;

    text-overflow: ellipsis;

}


.category-explore-card-content span {

    display: block;

    margin-top: 3px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

}


/* ==========================================================================
   Category Places
   ========================================================================== */

.category-places-section {

    padding:
        10px
        0
        70px;

}


.category-places-section
.section-heading {

    margin-bottom: 18px;

}


.category-place-grid {

    grid-template-columns:
        repeat(5, 1fr);

}


.category-place-grid
.place-card {

    min-width: 0;

}


.category-place-grid
.place-card-title a {

    transition:
        color .2s ease;

}


.category-place-grid
.place-card-title a:hover {

    color: var(--primary);

}


.place-card-category {

    display: inline-block;

    margin-top: 7px;

    padding:
        3px
        7px;

    background:
        #edf5ff;

    color:
        var(--primary);

    border-radius: 4px;

    font-size: 9px;

    font-weight: 700;

}


/* ==========================================================================
   Empty State
   ========================================================================== */

.category-empty {

    padding:
        65px
        25px;

    text-align: center;

    background:
        var(--light-bg);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

}


.category-empty-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0
        auto
        15px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 50%;

    font-size: 22px;

}


.category-empty h3 {

    margin:
        0
        0
        5px;

    font-size: 18px;

}


.category-empty p {

    margin:
        0
        20px;

    color: var(--muted);

    font-size: 13px;

}


/* ==========================================================================
   Pagination
   ========================================================================== */

.category-pagination {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 35px;

    flex-wrap: wrap;

}


.category-pagination a,
.category-pagination strong,
.category-pagination .pagination-dots {

    min-width: 36px;

    height: 36px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0
        10px;

    border:
        1px solid var(--border);

    border-radius: 6px;

    background: #fff;

    font-size: 12px;

    font-weight: 700;

}


.category-pagination a:hover {

    border-color:
        var(--primary);

    color:
        var(--primary);

}


.category-pagination strong.active {

    background:
        var(--primary);

    border-color:
        var(--primary);

    color:
        #fff;

}


.category-pagination
.pagination-arrow {

    padding:
        0
        14px;

}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1050px) {

    .category-hero-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 30px;

    }


    .category-explore-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .category-place-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 850px) {

    .category-hero-grid {

        grid-template-columns:
            1fr;

    }


    .category-hero-image {

        height: 260px;

    }


    .category-explore-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .category-intro {

        align-items:
            flex-start;

    }

}


@media (max-width: 600px) {

    .category-hero-inner {

        padding-top: 15px;

        padding-bottom: 30px;

    }


    .category-hero-content h1 {

        font-size: 34px;

    }


    .category-hero-description {

        font-size: 14px;

    }


    .category-hero-image {

        height: 220px;

    }


    .category-intro {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .category-result-count {

        width: 100%;

    }


    .category-explore-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .category-place-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .category-places-section {

        padding-bottom: 45px;

    }

}


@media (max-width: 400px) {

    .category-explore-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 8px;

    }


    .category-place-grid {

        grid-template-columns:
            1fr;

    }


    .category-pagination
    .pagination-arrow {

        width: 100%;

    }

}

/* ==========================================================================
   Category Explore Grid
   ========================================================================== */

.category-explore {

    margin-top: 50px;
    margin-bottom: 55px;

}


.category-explore-header {

    margin-bottom: 22px;

}


.category-section-label {

    display: inline-block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.category-explore-header h2 {

    margin: 0;

    font-size: 24px;

    line-height: 1.25;

    letter-spacing: -.5px;

}


.category-explore-header p {

    margin: 5px 0 0;

    color: var(--muted);

    font-size: 13px;

}


/* Grid */

.category-explore-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

}


/* Card */

.category-explore-card {

    position: relative;

    min-height: 125px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 18px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 12px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;

}


.category-explore-card:hover {

    transform: translateY(-3px);

    border-color: #d5e5f7;

    box-shadow:
        0 10px 28px rgba(15, 35, 60, .09);

}


/* Icon */

.category-explore-icon {

    flex: 0 0 44px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf5ff;

    border-radius: 10px;

    font-size: 22px;

}


/* Content */

.category-explore-content {

    min-width: 0;

    padding-right: 15px;

}


.category-explore-content h3 {

    margin: 1px 0 4px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.3;

    font-weight: 750;

}


.category-explore-content p {

    margin: 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;

}


/* Arrow */

.category-explore-arrow {

    position: absolute;

    right: 15px;

    bottom: 13px;

    color: var(--primary);

    font-size: 16px;

    font-weight: 700;

    transition: transform .2s ease;

}


.category-explore-card:hover
.category-explore-arrow {

    transform: translateX(3px);

}


/* ==========================================================================
   Category Explore Responsive
   ========================================================================== */

@media (max-width: 1000px) {

    .category-explore-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 750px) {

    .category-explore-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 500px) {

    .category-explore {

        margin-top: 35px;

    }

    .category-explore-grid {

        grid-template-columns: 1fr;

    }

}

/* ==========================================================================
   Nearby Category Page
   ========================================================================== */

.nearby-breadcrumb {

    background: var(--light-bg);

    border-bottom: 1px solid var(--border);

}


.nearby-breadcrumb .breadcrumbs {

    min-height: 52px;

    margin: 0;

    color: var(--muted);

}


.nearby-breadcrumb .breadcrumbs a {

    color: var(--text);

}


.nearby-breadcrumb .breadcrumbs a:hover {

    color: var(--primary);

}


/* ==========================================================================
   Nearby Hero
   ========================================================================== */

.nearby-hero {

    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #eef5fc 100%
        );

    border-bottom: 1px solid var(--border);

}


.nearby-hero > .container {

    min-height: 280px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding-top: 45px;

    padding-bottom: 45px;

}


.nearby-hero-content {

    max-width: 760px;

}


.nearby-label {

    display: inline-flex;

    align-items: center;

    padding: 6px 12px;

    margin-bottom: 14px;

    border-radius: 6px;

    background: #e5f1ff;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.nearby-hero h1 {

    margin: 0 0 14px;

    font-size: clamp(
        32px,
        4vw,
        46px
    );

    line-height: 1.12;

    letter-spacing: -1.5px;

}


.nearby-hero-content p {

    max-width: 700px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;

}


.nearby-hero-content strong {

    color: var(--text);

}


/* Hero count */

.nearby-hero-stat {

    flex: 0 0 180px;

    min-height: 150px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(
            15,
            35,
            60,
            .06
        );

}


.nearby-hero-stat strong {

    color: var(--primary);

    font-size: 38px;

    line-height: 1;

    font-weight: 800;

}


.nearby-hero-stat span {

    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;

}


/* ==========================================================================
   Nearby Main
   ========================================================================== */

.nearby-main {

    padding: 50px 0 75px;

    background: #fff;

}


.nearby-section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;

}


.nearby-section-label {

    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.nearby-section-heading h2 {

    margin: 0;

    font-size: 25px;

    line-height: 1.25;

    letter-spacing: -.6px;

}


.nearby-section-heading p {

    margin: 5px 0 0;

    color: var(--muted);

    font-size: 13px;

}


.nearby-count-badge {

    flex-shrink: 0;

    padding: 8px 14px;

    border-radius: 20px;

    background: var(--light-bg);

    border: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;

    font-weight: 700;

}


/* ==========================================================================
   Nearby Place Grid
   ========================================================================== */

.nearby-place-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


/* ==========================================================================
   Nearby Place Card
   ========================================================================== */

.nearby-place-card {

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 12px;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;

}


.nearby-place-card:hover {

    transform: translateY(-4px);

    border-color: #d8e5f2;

    box-shadow:
        0 12px 30px rgba(
            15,
            35,
            60,
            .10
        );

}


/* Card Image */

.nearby-place-card-image {

    position: relative;

    display: block;

    height: 170px;

    overflow: hidden;

    background: #eef2f6;

}


.nearby-place-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;

}


.nearby-place-card:hover
.nearby-place-card-image img {

    transform: scale(1.04);

}


/* Distance badge */

.nearby-distance {

    position: absolute;

    right: 10px;

    bottom: 10px;

    padding: 5px 9px;

    border-radius: 5px;

    background: rgba(
        5,
        23,
        42,
        .85
    );

    color: #fff;

    font-size: 10px;

    font-weight: 700;

}


/* Card Content */

.nearby-place-card-content {

    padding: 15px;

}


.nearby-place-card-content h3 {

    margin: 0;

    font-size: 15px;

    line-height: 1.35;

}


.nearby-place-card-content h3 a {

    color: var(--text);

}


.nearby-place-card-content h3 a:hover {

    color: var(--primary);

}


.nearby-place-address {

    min-height: 38px;

    margin: 8px 0 12px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

}


.nearby-place-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding-top: 11px;

    border-top: 1px solid #eef1f4;

}


.nearby-place-category {

    color: var(--muted);

    font-size: 10px;

    font-weight: 700;

}


.nearby-view-link {

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

}


.nearby-view-link:hover {

    color: var(--primary-dark);

}


/* ==========================================================================
   Empty State
   ========================================================================== */

.nearby-empty {

    max-width: 600px;

    margin: 20px auto 40px;

    padding: 60px 30px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--light-bg);

}


.nearby-empty-icon {

    width: 55px;

    height: 55px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f3ff;

    font-size: 24px;

}


.nearby-empty h2 {

    margin: 0 0 8px;

    font-size: 20px;

}


.nearby-empty p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;

}


/* ==========================================================================
   Back Link
   ========================================================================== */

.nearby-back {

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1050px) {

    .nearby-place-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 850px) {

    .nearby-hero > .container {

        min-height: auto;

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

    }


    .nearby-hero-stat {

        width: 100%;

        min-height: auto;

        flex-direction: row;

        gap: 12px;

        justify-content: flex-start;

        padding: 15px 20px;

    }


    .nearby-hero-stat strong {

        font-size: 26px;

    }


    .nearby-hero-stat span {

        margin-top: 0;

    }


    .nearby-place-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .nearby-hero > .container {

        padding-top: 35px;

        padding-bottom: 35px;

    }


    .nearby-hero h1 {

        font-size: 32px;

    }


    .nearby-section-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .nearby-place-grid {

        grid-template-columns: 1fr;

    }


    .nearby-place-card-image {

        height: 190px;

    }

}
.nearby-place-card-image{display:none}

/* =========================================================
   RELATIONSHIP PAGE
========================================================= */

.relationship-page {
    padding: 30px 0 70px;
}


/* =========================================================
   BREADCRUMBS
========================================================= */

.relationship-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
    font-size: 14px;
    line-height: 1.5;
}

.relationship-breadcrumbs a {
    text-decoration: none;
}

.relationship-breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    opacity: 0.5;
}


/* =========================================================
   INTRO
========================================================= */

.relationship-intro {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.relationship-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.7;
}

.relationship-intro h1 {
    margin: 0 0 20px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
}

.relationship-intro-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
}


/* =========================================================
   STATS
========================================================= */

.relationship-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}

.relationship-stat {
    min-width: 190px;
    padding: 20px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
}

.relationship-stat strong {
    display: block;
    margin-bottom: 5px;
    font-size: 28px;
    line-height: 1.2;
}

.relationship-stat span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}


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

.relationship-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.relationship-results-header h2 {
    margin: 0 0 5px;
    font-size: 28px;
}

.relationship-results-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.65;
}


/* =========================================================
   RELATIONSHIP GRID
========================================================= */

.relationship-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}


/* =========================================================
   RELATIONSHIP CARD
========================================================= */

.relationship-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.relationship-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


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

.relationship-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.relationship-card-category {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.6;
}

.relationship-card h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
}

.relationship-card h2 a {
    text-decoration: none;
}

.relationship-card h2 a:hover {
    text-decoration: underline;
}


/* =========================================================
   RELATIONSHIP COUNT
========================================================= */

.relationship-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
}


/* =========================================================
   ADDRESS
========================================================= */

.relationship-address {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}


/* =========================================================
   NEARBY TITLE
========================================================= */

.relationship-nearby-title {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   NEARBY LIST
========================================================= */

.relationship-nearby-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 15px 0 20px;
    padding: 0;
    list-style: none;
}

.relationship-nearby-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.relationship-nearby-list li a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
}

.relationship-nearby-list li a:hover {
    text-decoration: underline;
}

.relationship-nearby-list li span {
    flex-shrink: 0;
    font-size: 13px;
    opacity: 0.6;
}


/* =========================================================
   VIEW PLACE LINK
========================================================= */

.relationship-view-place {
    display: inline-block;
    margin-top: auto;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.relationship-view-place:hover {
    text-decoration: underline;
}


/* =========================================================
   PAGINATION
========================================================= */

.relationship-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
}

.relationship-pagination a,
.relationship-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
    text-decoration: none;
}

.relationship-pagination span {
    border-color: transparent;
}

.relationship-pagination span.active {
    font-weight: 700;
}

.relationship-pagination .pagination-prev,
.relationship-pagination .pagination-next {
    padding: 0 16px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.relationship-empty {
    max-width: 650px;
    margin: 50px auto;
    padding: 60px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    text-align: center;
}

.relationship-empty-icon {
    margin-bottom: 20px;
    font-size: 40px;
}

.relationship-empty h2 {
    margin: 0 0 15px;
    font-size: 28px;
}

.relationship-empty p {
    margin: 0 auto 25px;
    max-width: 500px;
    line-height: 1.7;
    opacity: 0.7;
}

.relationship-back-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}


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

@media (max-width: 800px) {

    .relationship-page {
        padding: 20px 0 50px;
    }

    .relationship-intro {
        margin-bottom: 40px;
    }

    .relationship-intro h1 {
        font-size: 34px;
    }

    .relationship-intro-text {
        font-size: 16px;
    }

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

}


@media (max-width: 600px) {

    .relationship-breadcrumbs {
        font-size: 13px;
    }

    .relationship-intro h1 {
        font-size: 30px;
    }

    .relationship-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .relationship-stat {
        min-width: 0;
        padding: 16px;
    }

    .relationship-stat strong {
        font-size: 24px;
    }

    .relationship-card {
        padding: 20px;
    }

    .relationship-card h2 {
        font-size: 20px;
    }

    .relationship-results-header h2 {
        font-size: 24px;
    }

    .relationship-pagination {
        gap: 5px;
    }

}


/* =========================================================
   RELATIONSHIP PAGE
   ========================================================= */

.relationship-page {
    padding: 40px 20px 70px;
}

.relationship-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.relationship-breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: #6b7280;
}

.relationship-breadcrumb a {
    color: #4f46e5;
    text-decoration: none;
}

.relationship-breadcrumb a:hover {
    text-decoration: underline;
}

.relationship-breadcrumb .separator {
    margin: 0 8px;
    color: #9ca3af;
}


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

.relationship-hero {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 45px 40px;
    margin-bottom: 30px;
}

.relationship-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    letter-spacing: .03em;
}

.relationship-hero h1 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.15;
    color: #111827;
}

.relationship-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}


/* =========================================================
   SUMMARY BOXES
   ========================================================= */

.relationship-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.relationship-summary-card {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.relationship-summary-number {
    display: block;
    margin-bottom: 6px;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #111827;
}

.relationship-summary-label {
    font-size: 15px;
    color: #6b7280;
}


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

.relationship-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.relationship-results-header h2 {
    margin: 0;
    font-size: 28px;
    color: #111827;
}

.relationship-results-count {
    font-size: 14px;
    color: #6b7280;
}


/* =========================================================
   RELATIONSHIP CARDS
   ========================================================= */

.relationship-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.relationship-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.relationship-card:hover {
    transform: translateY(-3px);
    border-color: #d1d5db;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}


/* =========================================================
   CARD CATEGORY
   ========================================================= */

.relationship-card-category {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: .05em;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.relationship-card h2 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.3;
}

.relationship-card h2 a {
    color: #111827;
    text-decoration: none;
}

.relationship-card h2 a:hover {
    color: #4f46e5;
}


/* =========================================================
   CARD ADDRESS
   ========================================================= */

.relationship-card-address {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}


/* =========================================================
   NEARBY SECTION
   ========================================================= */

.relationship-card-nearby {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.relationship-card-nearby-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.relationship-card-nearby-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.relationship-card-nearby-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
}

.relationship-card-nearby-list a {
    color: #374151;
    text-decoration: none;
}

.relationship-card-nearby-list a:hover {
    color: #4f46e5;
}

.relationship-distance {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}


/* =========================================================
   VIEW PLACE LINK
   ========================================================= */

.relationship-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
}

.relationship-card-link:hover {
    color: #3730a3;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.relationship-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
}

.relationship-pagination a,
.relationship-pagination span,
.relationship-pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.relationship-pagination a {
    color: #374151;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.relationship-pagination a:hover {
    background: #f8fafc;
    border-color: #c7d2fe;
    color: #4f46e5;
}

.relationship-pagination strong {
    color: #ffffff;
    background: #4f46e5;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.relationship-empty {
    padding: 50px 30px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.relationship-empty h2 {
    margin: 0 0 10px;
}

.relationship-empty p {
    margin: 0;
    color: #6b7280;
}


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

@media (max-width: 900px) {

    .relationship-page {
        padding: 30px 16px 50px;
    }

    .relationship-hero {
        padding: 35px 25px;
    }

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

    .relationship-results {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .relationship-hero {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .relationship-hero h1 {
        font-size: 28px;
    }

    .relationship-hero p {
        font-size: 15px;
    }

    .relationship-summary {
        grid-template-columns: 1fr;
    }

    .relationship-results-header {
        display: block;
    }

    .relationship-results-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .relationship-card {
        padding: 22px;
    }

}

/* =========================================================
   HOMEPAGE
========================================================= */


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

.home-hero {
    position: relative;
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        #f5f7f2 0%,
        #eef3ed 100%
    );
    overflow: hidden;
}


.home-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    top: -180px;
    right: -100px;
}


.home-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    bottom: -150px;
    left: -80px;
}


.home-hero-inner {
    position: relative;
    z-index: 2;
}


.home-hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}


.home-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e2e8e2;
    color: #526356;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}


.home-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -2px;
    color: #1d2920;
}


.home-hero h1 span {
    display: block;
    color: #607764;
}


.home-hero-description {
    max-width: 680px;
    margin: 26px auto 0;
    font-size: 18px;
    line-height: 1.75;
    color: #68736a;
}


.home-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}


/* =========================================================
   BUTTONS
========================================================= */

.home-hero .btn,
.home-final-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.home-hero .btn:hover,
.home-final-cta .btn:hover {
    transform: translateY(-2px);
}


.home-hero .btn-primary,
.home-final-cta .btn-primary {
    background: #344b39;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(52,75,57,0.15);
}


.home-hero .btn-primary:hover,
.home-final-cta .btn-primary:hover {
    background: #293d2e;
}


.home-hero .btn-secondary {
    background: #ffffff;
    color: #344b39;
    border: 1px solid #dce4dc;
}


.home-hero .btn-secondary:hover {
    background: #f7f9f7;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.main-content {
    padding: 70px 20px;
}


.main-content > .container {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HOME SECTIONS
========================================================= */

.home-section {
    margin-bottom: 90px;
}


.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}


.home-section-header-centered {
    display: block;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.home-section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #718174;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.home-section-header h2 {
    margin: 0;
    color: #202a22;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.7px;
}


.home-section-header p {
    max-width: 680px;
    margin: 12px 0 0;
    color: #727b74;
    line-height: 1.7;
    font-size: 16px;
}


.home-section-header-centered p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SECTION COUNT
========================================================= */

.home-section-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 14px 20px;
    background: #f5f7f4;
    border: 1px solid #e5eae5;
    border-radius: 12px;
}


.home-section-count strong {
    color: #344b39;
    font-size: 26px;
    line-height: 1;
}


.home-section-count span {
    margin-top: 5px;
    color: #7a837c;
    font-size: 12px;
}


/* =========================================================
   EXPLORE LOCAL PLACES GRID
========================================================= */

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.home-category-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 120px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5e9e5;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(25,40,28,0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.home-category-card:hover {
    transform: translateY(-4px);
    border-color: #cbd7cc;
    box-shadow: 0 14px 30px rgba(25,40,28,0.09);
}


.home-category-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f5f1;
    border-radius: 14px;
    font-size: 25px;
}


.home-category-content {
    flex: 1;
    min-width: 0;
}


.home-category-content h3 {
    margin: 0;
    color: #29352c;
    font-size: 17px;
}


.home-category-content p {
    margin: 6px 0 0;
    color: #7a827c;
    font-size: 13px;
    line-height: 1.45;
}


.home-category-arrow {
    flex: 0 0 auto;
    color: #819083;
    font-size: 22px;
    transition: transform 0.2s ease;
}


.home-category-card:hover .home-category-arrow {
    transform: translateX(4px);
}


/* =========================================================
   BROWSE CITIES
========================================================= */

.home-cities-section {
    padding: 70px 0;
    border-top: 1px solid #edf0ed;
    border-bottom: 1px solid #edf0ed;
}


.home-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.home-city-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 110px;
    padding: 22px;
    background: #f7f9f7;
    border: 1px solid #e4e9e4;
    border-radius: 16px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.home-city-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(25,40,28,0.08);
}


.home-city-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8e2;
    font-size: 24px;
}


.home-city-content {
    flex: 1;
}


.home-city-content h3 {
    margin: 0;
    color: #29352c;
    font-size: 18px;
}


.home-city-content p {
    margin: 6px 0 0;
    color: #7a827c;
    font-size: 13px;
}


.home-city-arrow {
    color: #819083;
    font-size: 22px;
    transition: transform 0.2s ease;
}


.home-city-card:hover .home-city-arrow {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY CITIES
========================================================= */

.home-empty-cities {
    padding: 55px 25px;
    text-align: center;
    background: #f7f9f7;
    border: 1px dashed #d8e0d8;
    border-radius: 16px;
}


.home-empty-icon {
    font-size: 36px;
    margin-bottom: 12px;
}


.home-empty-cities h3 {
    margin: 0;
    color: #29352c;
}


.home-empty-cities p {
    max-width: 500px;
    margin: 10px auto 0;
    color: #7a827c;
    line-height: 1.6;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.home-how-section {
    padding: 20px 0 30px;
}


.home-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}


.home-how-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e9e5;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(25,40,28,0.035);
}


.home-how-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #d9e1da;
    font-size: 14px;
    font-weight: 800;
}


.home-how-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #f2f5f1;
    border-radius: 14px;
    font-size: 25px;
}


.home-how-card h3 {
    margin: 0;
    color: #29352c;
    font-size: 19px;
}


.home-how-card p {
    margin: 10px 0 0;
    color: #747d76;
    font-size: 14px;
    line-height: 1.7;
}


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

.home-final-cta {
    margin-top: 50px;
    padding: 70px 30px;
    background: #f3f6f2;
    border: 1px solid #e4e9e4;
    border-radius: 20px;
    text-align: center;
}


.home-final-cta-content {
    max-width: 650px;
    margin: 0 auto;
}


.home-final-cta h2 {
    margin: 0;
    color: #29352c;
    font-size: clamp(28px, 4vw, 40px);
}


.home-final-cta p {
    margin: 14px auto 28px;
    color: #747d76;
    line-height: 1.7;
}


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

@media (max-width: 900px) {

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


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


    .home-how-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .home-hero {
        padding: 65px 20px;
    }


    .home-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }


    .home-hero-description {
        font-size: 16px;
    }


    .home-hero-actions {
        flex-direction: column;
    }


    .home-hero .btn {
        width: 100%;
    }


    .main-content {
        padding: 50px 16px;
    }


    .home-section {
        margin-bottom: 65px;
    }


    .home-section-header {
        display: block;
    }


    .home-section-count {
        display: inline-flex;
        margin-top: 20px;
    }


    .home-category-grid {
        grid-template-columns: 1fr;
    }


    .home-city-grid {
        grid-template-columns: 1fr;
    }


    .home-cities-section {
        padding: 55px 0;
    }


    .home-how-card {
        padding: 25px;
    }


    .home-final-cta {
        padding: 50px 22px;
        border-radius: 16px;
    }
}