/* ===== City detail – UI mới theo template (scoped, prefix .city-) ===== */
.city-page { color: #111111; }

/* Hero */
.city-hero {
    background: #000;
    color: #fff;
    padding: 96px 0;
    text-align: center;
}
.city-hero__inner { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.city-hero__title {
    font-family: "Domaine", Georgia, serif;
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
}
.city-hero__title .city-gold { color: #d4af37; }
.city-hero__subtitle {
    font-size: 20px;
    max-width: 640px;
    margin: 0 auto 36px;
    opacity: .95;
}
.city-hero__cta {
    display: inline-block;
    background: #fff;
    color: #000;
    font-weight: 500;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 18px;
    text-decoration: none;
    transition: background .2s ease;
}
.city-hero__cta:hover { background: #fbbf24; color: #000; }

/* Intro */
.city-intro {
    max-width: 768px;
    margin: 0 auto;
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.city-intro .city-intro__text,
.city-intro .city-intro__text * {
    font-family: 'Domaine', Georgia, serif !important;
    font-size: 18px;
    line-height: 1.6;
    color: #111111;
}
.city-intro .city-intro__text p { margin: 0 0 10px; }
.city-intro .city-intro__text p:last-child { margin-bottom: 0; }

/* Grid */
.city-resto-section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.city-resto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Load more */
.city-loadmore-wrap { text-align: center; margin-top: 48px; }
.city-loadmore-btn {
    background: #000;
    color: #fff;
    border: none;
    font-family: 'Domaine', Georgia, serif;
    font-size: 16px;
    padding: 14px 48px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease;
}
.city-loadmore-btn:hover { background: #d4af37; color: #000; }
.city-loadmore-btn[disabled] { opacity: .6; cursor: default; }

/* Card */
.city-resto-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}
.city-resto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}
.city-resto-card__img { width: 100%; height: 256px; overflow: hidden; }
.city-resto-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.city-resto-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.city-resto-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}
.city-resto-card__title {
    font-family: "Domaine", Georgia, serif;
    font-size: 24px;
    margin: 0;
}
.city-resto-card__title a { color: inherit; text-decoration: none; }
.city-resto-card__title a:hover { color: #d4af37; }
.city-resto-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.city-stars {
    position: relative;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}
.city-stars__base { color: #d1d5db; }
.city-stars__fill {
    color: #fbbf24;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}
.city-resto-card__rating-num { font-size: 13px; color: #6b7280; font-weight: 600; }
.city-resto-card__meta { font-size: 14px; color: #6b7280; margin: 0 0 16px; }
.city-resto-card__desc {
    color: #374151;
    flex-grow: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.city-resto-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    margin-top: 24px;
    text-decoration: none;
    transition: background .2s ease;
}
.city-resto-card__cta:hover { background: #1f2937; color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .city-resto-grid { grid-template-columns: repeat(2, 1fr); }
    .city-hero__title { font-size: 44px; }
}
@media (max-width: 640px) {
    .city-resto-grid { grid-template-columns: 1fr; }
    .city-hero { padding: 64px 0; }
    .city-hero__title { font-size: 34px; }
    .city-resto-section { padding: 48px 16px; }
}
