:root {
    --bg-main: #eef4fb;
    --bg-card: #ffffff;
    --bg-section: #f5f9ff;
    --accent: #3b82f6;
    --accent-soft: #dbeafe;
    --accent-hover: #2563eb;
    --gold: #f59e0b;
    --gold-soft: #fef3c7;
    --text-primary: #0f1f3d;
    --text-secondary: #4b6080;
    --text-muted: #94a3b8;
    --border: #d1dff0;
    --shadow-sm: 0 2px 8px rgba(59,130,246,0.07);
    --shadow-md: 0 6px 24px rgba(59,130,246,0.12);
    --shadow-lg: 0 16px 48px rgba(59,130,246,0.16);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-main);
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.main--hub {
    background: var(--bg-main);
    min-height: 100vh;
    max-width: 1280px;
    width: 100%;
    margin-top: 80px;
}

.hub-container {
    max-width: 1280px;
    margin: 0px auto;
    width: 100%;
    padding: 0 20px 60px;
}

/* ============================================
   SECTION TITLE
   ============================================ */

.hub-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

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

.hub-hero {
    padding: 48px 0 40px;
    position: relative;
}

.hub-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    max-width: 700px;
}

.hub-hero__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #93c5fd);
    border-radius: 2px;
    margin-top: 16px;
}

.hub-hero__description {
    max-width: 600px;
}

.hub-hero__description p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   CITIES SECTION
   ============================================ */

.cities-section {
    margin-bottom: 52px;
}

.cities-section .hub-section-title {
    margin-bottom: 24px;
}

.cities-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.city-card {
    flex:1 0 200px;
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.city-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.city-card:hover .city-card__icon {
    background: var(--accent);
    color: #fff;
}

.city-card__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 12px;
}

.city-card__name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.city-card__count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.city-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

/* ============================================
   LOCATION / SWIPER SECTION
   ============================================ */

.location-section {
    margin-bottom: 52px;
}

.location-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    padding: 8px 16px;
    border: 1.5px solid var(--accent);
    border-radius: 50px;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: var(--accent);
    color: #fff;
}

.swiper-container-wrapper {
    position: relative;
}

.location-swiper {
    overflow: hidden;
    border-radius: var(--radius);
}

.swiper-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 44px !important;
    height: 44px !important;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--accent) !important;
    transition: all 0.2s ease;
    top: 40% !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--accent);
    color: #fff !important;
    border-color: var(--accent);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    margin-bottom: 52px;
}

.reviews-section .hub-section-title {
    margin-bottom: 24px;
}

.reviews-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.review-card {
    flex: 1 0 290px;
    width: 100%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-card__stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 16px;
    color: var(--border);
    transition: color 0.2s;
}

.star.active {
    color: var(--gold);
}

.review-card__time {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.review-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.review-card__link:hover {
    border-color: var(--accent);
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-section {
    margin-bottom: 52px;
}

.newsletter-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e4d8c 50%, #1a6bb5 100%);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.newsletter-card__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.newsletter-card__text {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.newsletter-form__input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: background 0.2s;
}

.newsletter-form__input::placeholder {
    color: rgba(255,255,255,0.55);
}

.newsletter-form__input:focus {
    background: rgba(255,255,255,0.22);
}

.newsletter-form__btn {
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    background: var(--gold);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-form__btn:hover {
    background: #fbbf24;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */

.content_section {
    margin-top: 16px;
}

.sweet_seo_text {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: var(--shadow-sm);
}

.sweet_seo_text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-primary);
    font-weight: 700;
    margin: 32px 0 14px;
}

.sweet_seo_text h2:first-child {
    margin-top: 0;
}

.sweet_seo_text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
    font-weight: 300;
}

.sweet_seo_text ul {
    margin: 12px 0 16px 0;
    padding-left: 0;
    list-style: none;
}

.sweet_seo_text ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    font-weight: 300;
}

.sweet_seo_text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: var(--accent);
    border-radius: 50%;
}

.sweet_seo_text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--accent-soft);
    transition: border-color 0.2s;
}

.sweet_seo_text a:hover {
    border-color: var(--accent);
}

/* SEO Table */
.sweet_seo_text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--border);
}

.sweet_seo_text table tr:first-child {
    background: linear-gradient(90deg, var(--accent) 0%, #2563eb 100%);
}

.sweet_seo_text table tr:first-child td p {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.sweet_seo_text table tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.sweet_seo_text table tr:not(:first-child):hover {
    background: var(--accent-soft);
}

.sweet_seo_text table td {
    padding: 13px 20px;
    font-size: 14px;
}

.sweet_seo_text table td p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */

.fade-in {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .hub-container {
        padding: 0 14px 40px;
    }

    .hub-hero {
        padding: 28px 0 28px;
    }

    .cities-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .reviews-flex {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        padding: 32px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form__input,
    .newsletter-form__btn {
        width: 100%;
        border-radius: 12px;
    }

    .sweet_seo_text {
        padding: 24px 20px;
    }

    .location-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cities-flex {
        grid-template-columns: 1fr 1fr;
    }

    .city-card__inner {
        padding: 14px 16px;
    }
}
.swiper-slide{
    max-width: 300px;
}
.sweet-girl-card:hover{
        transform: translateY(-0px) !important;
        cursor: pointer;
}
.home-search-section {
    margin-bottom: 52px;
}

.home-search__inner {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
}

.home-search__label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.home-search__form {
    display: flex;
    gap: 10px;
    position: relative;
}

.home-search__input {
    flex: 1;
    padding: 13px 20px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background: var(--bg-main);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.home-search__input:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.home-search__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.home-search__btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* Результаты */
.home-search__results {
    margin-top: 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.home-search__results[hidden] {
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item[aria-selected="true"] {
    background: var(--accent-soft);
}

.search-result-item__name {
    font-weight: 500;
    font-size: 14px;
}

.search-result-item__city {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.search-result-empty {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}