/* Features Tour Slider Styles */
.features-tour-section {
    padding: 60px 0;
    width: 100%;
}

.features-tour-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;

}

.features-tour-header-title {
    background-color: #fff;
    box-shadow: var(--box-shadow-inset);
    padding: 16px;
    border-radius: 36px;
    border: 1.5px solid var(--brand-primary);
    text-align: center;
}

.features-tour-header-link a {
    color: var(--brand-primary) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.features-tour-header-link a:hover {
    color: var(--brand-primary) !important;
    font-weight: 800 !important;
    transform: translateY(-4px);
}

@media (min-width: 768px) {
    .features-tour-header {
        flex-direction: row;
        align-items: center;
        justify-content: start;
    }
}

.tour-slider-container {
    overflow: hidden;
    padding: 20px 0 40px;
    margin: 0 -15px;
    position: relative;
}

.tour-slider-wrapper {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-right: 30px;
    /* Essential for seamless looping with gap */
    animation: slide-left 40s linear infinite;
}

.tour-slider-wrapper:hover {
    animation-play-state: paused;
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
        /* Slide by one full set (1/3 of the tripled content) */
    }
}

/* Clay Card Design */
.clay-card {
    flex: 0 0 320px;
    background: #ffffff;
    border-radius: 36px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--box-shadow-inset);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    user-select: none;
}

@media (max-width: 480px) {
    .clay-card {
        flex: 0 0 280px;
    }
}

.clay-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.tour-image-box {
    width: 100%;
    height: 200px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.tour-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.clay-card:hover .tour-image-box img {
    transform: scale(1.1);
}

.clay-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-high);
    margin-bottom: 8px;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.tour-rating-stars {
    color: #FACC15;
    display: flex;
    gap: 2px;
}

.tour-rating-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-low);
}

.tour-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 20px;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    margin-top: auto;
}

.tour-price-box {
    display: flex;
    flex-direction: column;
}

.tour-price-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-primary);
}

.tour-price-label {
    font-size: 11px;
    color: var(--text-low);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-details-btn {
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.tour-details-btn:hover {
    color: #2563eb;
}

.tour-type {
    font-size: 10px;
    font-weight: 500;
    color: white;
    background-color: #5399de;
    padding: 3px 7px;
    max-width: 80px;
    text-align: center;
    border-radius: 50px;
}