/* ═══════════════════════════════════════════════════════ */
/* OPTIMIZED LAYOUT — 4-screen structure                  */
/* ═══════════════════════════════════════════════════════ */

/* ─── SCREEN 1: Hero ─── */
.screen-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 30%, #ffedd5 60%, #fff 100%);
    overflow: hidden;
}

.screen-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, .08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, .06) 0%, transparent 50%);
    pointer-events: none;
}

.screen-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 56rem;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.screen-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #78350f;
    margin-bottom: 1rem;
    animation: slideUp 0.6s ease-out;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.screen-hero__accent {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.screen-hero__subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    color: #78716c;
    margin-bottom: 1.5rem;
    animation: slideUp 0.6s ease-out 0.1s both;
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
}

.screen-hero__subtitle strong {
    color: #92400e;
    font-weight: 600;
}

.screen-hero__geo {
    display: block;
    font-size: 0.8rem;
    color: #a89880;
    margin-bottom: 2rem;
    animation: slideUp 0.6s ease-out 0.15s both;
}

.screen-hero__search {
    width: 100%;
    max-width: 42rem;
    animation: slideUp 0.6s ease-out 0.2s both;
}

.screen-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.screen-hero__scroll-hint span {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.screen-hero__scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

/* ─── SCREEN 2: Categories ─── */
.screen-categories {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
}

.screen-categories__header {
    text-align: center;
    margin-bottom: 2rem;
}

.screen-categories__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #78350f;
}

.screen-categories__belt {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screen-categories__belt::-webkit-scrollbar {
    display: none;
}

.screen-categories__card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border: 2px solid #fde68a;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    scroll-snap-align: start;
    min-width: 120px;
}

.screen-categories__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.15);
    border-color: #fbbf24;
}

.screen-categories__card--empty {
    opacity: 0.5;
    pointer-events: none;
}

.screen-categories__emoji {
    font-size: 2rem;
}

.screen-categories__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #78350f;
    text-align: center;
    white-space: nowrap;
}

.screen-categories__count {
    font-size: 0.75rem;
    color: #a8a29e;
    font-weight: 500;
}

/* Popular cities */
.screen-categories__cities-header {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.screen-categories__cities-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #78350f;
}

.screen-categories__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.screen-city-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 2px solid #fef3c7;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.screen-city-chip:hover {
    border-color: #fbbf24;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.screen-city-chip__name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #78350f;
}

.screen-city-chip__country {
    font-size: 0.75rem;
    color: #a8a29e;
    margin-top: 0.25rem;
}

/* ─── SCREEN 3: Featured Tours ─── */
.screen-featured {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.screen-featured__header {
    text-align: center;
    margin-bottom: 3rem;
}

.screen-featured__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.screen-featured__desc {
    color: #8a7560;
    font-size: 1rem;
    max-width: 36rem;
    margin: 0 auto;
}

.screen-featured__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .screen-featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .screen-featured__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.screen-featured__cta {
    text-align: center;
}

.screen-featured__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.screen-featured__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.screen-featured__cta-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ─── SCREEN 4: Reviews (Rmosaic fullscreen) ─── */
.screen-reviews {
    min-height: 100vh;
    padding: 4rem 0;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.screen-reviews__header {
    text-align: center;
    margin-bottom: 3rem;
    flex-shrink: 0;
}

.screen-reviews__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.screen-reviews__icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #d97706;
}

.screen-reviews__desc {
    color: #92400e;
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.screen-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-flow: dense;
    flex: 1;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .screen-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .screen-reviews__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.screen-reviews__card {
    display: flex;
    border-radius: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.6s ease-out both;
}

.screen-reviews__card:hover {
    transform: translateY(-6px) scale(1.02);
}

.screen-reviews__card--tall {
    grid-row: span 2;
}

.screen-reviews__card--amber {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.28), rgba(245, 158, 11, 0.18));
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.18), 0 0 0 2px rgba(245, 158, 11, 0.25);
}

.screen-reviews__card--amber:hover {
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25), 0 0 0 2px rgba(245, 158, 11, 0.4);
}

.screen-reviews__card--rose {
    background: linear-gradient(145deg, rgba(244, 63, 94, 0.22), rgba(225, 29, 72, 0.12));
    box-shadow: 0 8px 32px rgba(244, 63, 94, 0.15), 0 0 0 2px rgba(244, 63, 94, 0.2);
}

.screen-reviews__card--rose:hover {
    box-shadow: 0 20px 50px rgba(244, 63, 94, 0.22), 0 0 0 2px rgba(244, 63, 94, 0.35);
}

.screen-reviews__card--gold {
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.22), rgba(202, 138, 4, 0.12));
    box-shadow: 0 8px 32px rgba(234, 179, 8, 0.15), 0 0 0 2px rgba(234, 179, 8, 0.2);
}

.screen-reviews__card--gold:hover {
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.22), 0 0 0 2px rgba(234, 179, 8, 0.35);
}

.screen-reviews__card:nth-child(1) { animation-delay: 0s; }
.screen-reviews__card:nth-child(2) { animation-delay: 0.08s; }
.screen-reviews__card:nth-child(3) { animation-delay: 0.16s; }
.screen-reviews__card:nth-child(4) { animation-delay: 0.24s; }
.screen-reviews__card:nth-child(5) { animation-delay: 0.32s; }
.screen-reviews__card:nth-child(6) { animation-delay: 0.4s; }
.screen-reviews__card:nth-child(7) { animation-delay: 0.48s; }
.screen-reviews__card:nth-child(8) { animation-delay: 0.56s; }
.screen-reviews__card:nth-child(9) { animation-delay: 0.64s; }
.screen-reviews__card:nth-child(10) { animation-delay: 0.72s; }
.screen-reviews__card:nth-child(11) { animation-delay: 0.8s; }
.screen-reviews__card:nth-child(12) { animation-delay: 0.88s; }

.screen-reviews__card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.screen-reviews__timestamp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #475569;
}

.screen-reviews__emoji {
    font-size: 1.4rem;
}

.screen-reviews__stars {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #f59e0b;
    font-weight: 700;
}

.screen-reviews__date {
    margin-left: auto;
    font-size: 0.8125rem;
    color: #64748b;
}

.screen-reviews__tour-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.screen-reviews__bubble {
    flex: 1;
    font-size: 1rem;
    line-height: 1.75;
    color: #1e293b;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
    margin-bottom: 1rem;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.screen-reviews__author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: right;
    letter-spacing: 0.02em;
}

.screen-reviews__cta {
    text-align: center;
    flex-shrink: 0;
}

.screen-reviews__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.screen-reviews__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.screen-reviews__cta-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ─── TOURS PAGE: Header + Sticky Filters ─── */
.tours-header-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem 0 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.tours-header-section__content {
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.tours-header-section__title-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tours-header-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #78350f;
    margin: 0;
}

.tours-header-section__count {
    font-size: 0.95rem;
    color: #8a7560;
}

.tours-header-section__breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.tours-header-section__crumb {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.tours-header-section__crumb:hover {
    color: #d97706;
}

.tours-header-section__crumb--active {
    color: #78350f;
    font-weight: 600;
    pointer-events: none;
}

.tours-header-section__sep {
    color: #d4c4a8;
}

/* Sticky filters */
.tours-filters-sticky {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: box-shadow 0.3s;
}

.tours-filters-sticky--active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tours-filters-sticky__inner {
    max-width: 7xl;
    margin: 0 auto;
    padding: 1rem;
}

.tours-filters-sticky__chips {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    scrollbar-width: none;
    border-bottom: 1px solid #f3f4f6;
}

.tours-filters-sticky__chips::-webkit-scrollbar {
    display: none;
}

.tours-filters-sticky__chip {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.tours-filters-sticky__chip:hover {
    border-color: #d97706;
    color: #d97706;
}

.tours-filters-sticky__chip--active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-color: transparent;
}

.tours-filters-sticky__chip--active:hover {
    color: #fff;
}

.tours-filters-sticky__controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.tours-filters-sticky__search {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.tours-filters-sticky__search-icon {
    position: absolute;
    left: 0.75rem;
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    pointer-events: none;
}

.tours-filters-sticky__input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.tours-filters-sticky__input:focus {
    border-color: #f59e0b;
}

.tours-filters-sticky__clear {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tours-filters-sticky__clear:hover {
    color: #374151;
}

.tours-filters-sticky__sort,
.tours-filters-sticky__city {
    flex-shrink: 0;
}

.tours-filters-sticky__select {
    padding: 0.625rem 2rem 0.625rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #fff;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.tours-filters-sticky__select:focus {
    border-color: #f59e0b;
}

/* ─── TOURS PAGE: Compact Grid ─── */
.tours-grid-section {
    padding: 2rem 0 4rem;
    background: #faf8f3;
    min-height: 60vh;
}

.tours-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tours-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tours-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Compact tour card */
.tour-card-compact {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tour-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.12);
}

.tour-card-compact__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card-compact__image-wrap {
    height: 12rem;
    position: relative;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    overflow: hidden;
}

.tour-card-compact__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-compact__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-card-compact__emotion {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-card-compact__body {
    padding: 1rem;
}

.tour-card-compact__rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.tour-card-compact__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tour-card-compact__star {
    width: 0.875rem;
    height: 0.875rem;
    color: #fbbf24;
}

.tour-card-compact__rating-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.tour-card-compact__reviews {
    font-size: 0.75rem;
    color: #9ca3af;
}

.tour-card-compact__title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.tour-card-compact__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.tour-card-compact__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.tour-card-compact__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-top: 1px solid #f3f4f6;
}

.tour-card-compact__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.tour-card-compact__price-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f59e0b;
}

.tour-card-compact__price-curr {
    font-size: 0.875rem;
    color: #a8a29e;
}

.tour-card-compact__btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
}

.tour-card-compact__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ─── TOURS PAGE: Compact Pagination ─── */
.tours-pagination-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

.tours-pagination-compact__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.tours-pagination-compact__link:hover {
    border-color: #d97706;
    color: #d97706;
}

.tours-pagination-compact__link--active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-color: transparent;
    pointer-events: none;
}

.tours-pagination-compact__pages {
    display: flex;
    gap: 0.25rem;
}

.tours-pagination-compact__ellipsis {
    padding: 0.5rem 0.5rem;
    color: #9ca3af;
}

.tours-pagination-compact__arrow {
    width: 1rem;
    height: 1rem;
}

/* ─── TOURS PAGE: Empty State ─── */
.tours-empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.tours-empty-state__icon {
    color: #d4c4a8;
    margin-bottom: 1.5rem;
}

.tours-empty-state__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.tours-empty-state__text {
    color: #8a7560;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.tours-empty-state__btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.tours-empty-state__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.tours-empty-state__suggestions {
    margin-top: 3rem;
}

.tours-empty-state__suggestions-title {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.tours-empty-state__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tours-empty-state__city-chip {
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.tours-empty-state__city-chip:hover {
    border-color: #d97706;
    color: #d97706;
}

/* ─── MOBILE ADAPTATIONS ─── */
@media (max-width: 768px) {
    .screen-hero {
        min-height: 85vh;
        padding: 2rem 0;
    }

    .screen-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .screen-hero__subtitle {
        font-size: 1rem;
    }

    .screen-categories {
        padding: 3rem 0;
    }

    .screen-categories__card {
        min-width: 100px;
        padding: 1rem;
    }

    .screen-categories__emoji {
        font-size: 1.5rem;
    }

    .screen-categories__name {
        font-size: 0.75rem;
    }

    .screen-categories__cities {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex-wrap: nowrap;
    }

    .screen-city-chip {
        flex-shrink: 0;
    }

    .screen-featured {
        padding: 3rem 0;
    }

    .screen-featured__grid {
        gap: 1.5rem;
    }

    .screen-reviews {
        padding: 3rem 0;
        min-height: auto;
    }

    .screen-reviews__grid {
        gap: 1rem;
    }

    .screen-reviews__card {
        padding: 1.25rem;
    }

    .screen-reviews__bubble {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .tours-filters-sticky__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .tours-filters-sticky__search {
        min-width: 100%;
    }

    .tours-filters-sticky__sort,
    .tours-filters-sticky__city {
        width: 100%;
    }

    .tours-filters-sticky__select {
        width: 100%;
    }

    .tours-grid-compact {
        gap: 1rem;
    }

    .tour-card-compact__image-wrap {
        height: 10rem;
    }

    .tours-pagination-compact {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .screen-hero__scroll-hint {
        display: none;
    }

    .screen-categories__belt {
        gap: 0.75rem;
    }

    .screen-categories__card {
        min-width: 90px;
        padding: 0.75rem;
    }

    .screen-reviews__card--tall {
        grid-row: span 1;
    }
}
