.tour-landing-page {
    background-color: #f7f9fc;
    color: #1f2a44;
}

.tour-landing-page .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.tour-landing-page .section-heading h2 {
    font-size: 28px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tour-landing-view-all {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #d35400;
    font-weight: 600;
}

.tour-landing-hero {
    position: relative;
    background-color: #1d4d7b;
    background-size: cover;
    background-position: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    color: #fff;
}

.tour-landing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}

.tour-landing-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.tour-landing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.tour-landing-breadcrumb a {
    color: #ffd37a;
}

.tour-landing-hero__title {
    font-size: 42px;
    margin-bottom: 12px;
}

.tour-landing-hero__excerpt {
    font-size: 18px;
    line-height: 1.6;
}

.tour-landing-category-grid {
    padding: 60px 0 40px;
}

.tour-landing-category-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.tour-landing-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    text-decoration: none;
    background: #1d4d7b;
}

.tour-landing-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-landing-category-card__name {
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.tour-landing-category-card:hover img {
    transform: scale(1.08);
}

.tour-landing-icons {
    padding: 20px 0 40px;
}

.tour-landing-icons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.tour-landing-icon-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(29, 77, 123, 0.12);
}

.tour-landing-icon-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 12px;
    background: #f2f6ff;
    color: #d35400;
    font-size: 22px;
}

.tour-landing-icon-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tour-landing-icon-card p {
    font-size: 14px;
    margin: 0;
    color: #4e5d78;
}

.tour-landing-content {
    padding: 20px 0 10px;
}

.tour-landing-content__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tour-landing-content__main {
    padding: 32px;
}

.tour-landing-content__main p {
    line-height: 1.8;
    margin-bottom: 18px;
    color: #2b364f;
}

.tour-landing-content__aside {
    background: linear-gradient(180deg, #ffb347 0%, #ff7733 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(255, 119, 51, 0.25);
}

.tour-landing-content__aside h3 {
    margin-top: 0;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tour-landing-content__highlight {
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 8px;
}

/* Destination Title & Rating */
.tour-landing-destination-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #1f2a44;
    line-height: 1.3;
}

.tour-landing-destination-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8ecf1;
}

.rating-label {
    font-size: 14px;
    color: #5c6b88;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    font-size: 18px;
    color: #ddd;
}

.rating-stars .star.filled {
    color: #ffc107;
}

.rating-stars .star.half {
    color: #ffc107;
    opacity: 0.5;
}

.rating-text {
    font-size: 14px;
    color: #5c6b88;
    margin-left: 4px;
}

.tour-landing-destination-content {
    font-size: 15px;
    line-height: 1.8;
    color: #2b364f;
    margin-bottom: 20px;
}

.tour-landing-view-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1976d2;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.tour-landing-view-more:hover {
    color: #1565c0;
}

.tour-landing-view-more .chevron {
    font-size: 12px;
    transition: transform 0.2s;
}

.tour-landing-view-more:hover .chevron {
    transform: translateY(2px);
}

/* Weather Widget - weatherwidget.io */
.tour-landing-weather-widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin-top: 40px;
}

.weather-widget-embed {
    width: 100%;
    min-height: 200px;
}

/* WeatherWidget.io specific styles */
.weather-widget-embed iframe,
.weather-widget-embed div[id*="weather"],
.weather-widget-embed div[id*="weatherWidget"],
.weather-widget-embed div[class*="weather"],
.weather-widget-embed a.weatherwidget-io {
    width: 100% !important;
    max-width: 100% !important;
}

/* Ensure weatherwidget.io widget displays correctly */
#weatherWidget,
#weatherWidgetInner {
    width: 100% !important;
    max-width: 100% !important;
}

.weather-widget-embed #weatherWidget {
    border-radius: 16px;
    overflow: hidden;
}

.tour-landing-content__full {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e8ecf1;
}

.tour-landing-product-section {
    padding: 15px 0 20px;
}

/* Sort Bar */
.tour-landing-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: var(--primary-color, #538D46);
    border-radius: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tour-landing-sort__label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.tour-landing-sort__options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-landing-sort__option {
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tour-landing-sort__option:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tour-landing-sort__option.is-active {
    background-color: #fff;
    color: var(--primary-color, #538D46);
    font-weight: 600;
}

.tour-landing-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.tour-landing-products-grid .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-landing-empty {
    text-align: center;
    padding: 40px 0;
    font-style: italic;
    color: #5c6b88;
}

.tour-landing-articles {
    padding: 15px 0 25px;
    background: #ffffff;
}

.tour-landing-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.tour-landing-article-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(12, 37, 63, 0.12);
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-landing-article-card__thumb img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.tour-landing-article-card__content {
    padding: 18px 20px 22px;
}

.tour-landing-article-card__date {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #d35400;
}

.tour-landing-article-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.tour-landing-article-card p {
    font-size: 14px;
    color: #485674;
    margin: 0;
}

@media (max-width: 1024px) {
    .tour-landing-content__inner {
        grid-template-columns: 1fr;
    }

    .tour-landing-content__aside {
        order: -1;
    }

    .tour-landing-weather-widget {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .tour-landing-hero__title {
        font-size: 32px;
    }

    .tour-landing-hero {
        min-height: 220px;
    }

    .tour-landing-category-grid__items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .tour-landing-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .tour-landing-destination-title {
        font-size: 24px;
    }

    .tour-landing-destination-rating {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .tour-landing-page .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-landing-category-card {
        min-height: 120px;
    }

    .tour-landing-icons__grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

