body {
    margin: 0;
    padding: 0;
    background: #f4f6f8;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.site-width {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    box-sizing: border-box;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-desktop {
    height: 34px;
    width: auto;
    display: block;
}

.logo-mobile {
    height: 30px;
    width: auto;
    display: none;
}

.page-wrap {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 12px 40px 12px;
    box-sizing: border-box;
}

/* HERO */
.hero {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.hero img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-content {
    padding: 14px 12px;
}

.hero-content h1 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.hero-content p {
    margin: 0;
    color: #5c6470;
    font-size: 14px;
    line-height: 1.5;
}

.block {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.block h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.2;
}

.block p.block-text {
    margin: 0 0 12px 0;
    color: #5f6773;
    line-height: 1.5;
    font-size: 14px;
}

.map-preview-image {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.map-preview-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.button-row a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    margin: 4px 8px 0 0;
}

.btn-dark {
    background: #111111;
    color: #ffffff;
}

.btn-light {
    background: #edf0f3;
    color: #222222;
}

.section-block {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.section-title {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.section-intro {
    margin: 0 0 12px 0;
    color: #5f6773;
    font-size: 14px;
    line-height: 1.5;
}

.parent-cta-weather-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.parent-box,
.cta-box,
.weather-box {
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 14px;
    box-sizing: border-box;
}

.parent-box {
    flex: 1 1 260px;
}

.cta-box {
    flex: 1.2 1 320px;
}

.weather-box {
    flex: 0.9 1 220px;
}

.weather-placeholder {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .parent-cta-weather-grid {
        gap: 12px;
    }

    .parent-box,
    .cta-box,
    .weather-box {
        width: 100%;
        padding: 12px;
        border-radius: 14px;
    }
}


.weather-now {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.weather-icon {
    font-size: 28px;
    line-height: 1;
}

.weather-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.weather-temp {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
}

.weather-label {
    font-size: 13px;
    color: #5f6773;
    font-weight: 600;
}

.weather-extra {
    font-size: 13px;
    color: #5f6773;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .weather-icon {
        font-size: 24px;
    }

    .weather-temp {
        font-size: 20px;
    }

    .weather-label,
    .weather-extra {
        font-size: 12px;
    }
}


/* BUSINESS + EXPLORE GRIDS */
.cards,
.mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card,
.mini-card {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.mini-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.card-content,
.mini-card-content {
    padding: 12px;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.card-title,
.mini-card-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.card-description,
.mini-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 12px 0;
    min-height: auto;
}

.card-button,
.mini-card-button {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    background: #111111;
}

.site-footer {
    margin-top: 30px;
    background: #111111;
    color: #ffffff;
}

.site-footer-inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px 16px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}

/* BREADCRUMBS */
.breadcrumb-wrap {
    padding: 0 12px;
    margin: 14px 0 16px 0;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-sizing: border-box;
}

.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    line-height: 1.5;
    font-size: 14px;
    color: #5f6773;
}

.breadcrumb-link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #9aa3ad;
}

.breadcrumb-current {
    color: #5f6773;
    font-weight: 700;
}

.breadcrumb-children {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #eef1f4;
}

.breadcrumb-child-btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #cfd6df;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    white-space: nowrap;
}

.breadcrumb-child-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* MOBILE */
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .header-inner {
        padding: 6px 10px;
    }

    .header-right {
        gap: 6px;
    }

    .admin-nav-btn {
        padding: 7px 9px;
        font-size: 12px;
    }

    .page-wrap {
        padding: 0 10px 30px 10px;
    }

    .block {
        padding: 14px 12px;
        border-radius: 16px;
    }

    .hero {
        border-radius: 0 0 16px 16px;
    }

    .hero img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center center;
    }

    .map-preview-image img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        object-position: center center;
    }

    .cards,
    .mini-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .card,
    .mini-card {
        width: 100%;
    }

    .card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        
        background: #ffffff;
    }

    .mini-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        
        background: #ffffff;
    }

    .card-content,
    .mini-card-content {
        padding: 12px;
    }

    .card-button,
    .mini-card-button {
        font-size: 13px;
        padding: 9px 12px;
    }

    .breadcrumb-wrap {
        padding: 0 10px;
        margin: 12px 0 14px 0;
    }

    .breadcrumb-inner {
        max-width: 100%;
        padding: 12px 10px;
        border-radius: 10px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        box-sizing: border-box;
    }

    .breadcrumb-trail {
        font-size: 13px;
        gap: 5px;
        line-height: 1.4;
    }

    .breadcrumb-children {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eef1f4;
    }

    .breadcrumb-child-btn {
        display: inline-block;
        padding: 7px 10px;
        border-radius: 9px;
        background: #ffffff;
        border: 1px solid #cfd6df;
        color: #111;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        white-space: nowrap;
    }
}

/* DESKTOP */
@media only screen and (min-width: 900px) {
    .page-wrap {
        padding: 0 16px 50px 16px;
    }

    .hero img {
        height: 360px;
    }

    .map-preview-image img {
        height: 310px;
    }

    .card {
        width: calc(33.333% - 8px);
    }

    .mini-card {
        width: calc(25% - 9px);
    }
}


.header-search {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
}

.header-search input[type="text"] {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    border: 1px solid #d8dde3;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.header-search button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}

.header-search button:hover {
    background: #333;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
    }

    .header-search input[type="text"] {
        font-size: 13px;
        padding: 8px 10px;
    }

    .header-search button {
        font-size: 12px;
        padding: 8px 10px;
    }
    
  .search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.search-tag {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef2f6;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}  
    
}
