/* Tour Slider Styles - Point 24: Update colors */
.tt-tour-slider-wrapper {
    position: relative;
    margin: 30px 0;
}

.tt-tour-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 5px 20px;
}

.tt-tour-slide {
    flex: 0 0 auto;
    width: calc(25% - 15px);
    scroll-snap-align: start;
}

.tt-tour-card {
    background-color: transparent;
    border-radius: 0; /* Remove rounded corners */
    overflow: hidden;
    border: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: none; /* Remove animations */
    box-shadow: none; /* Remove shadow */
}

.tt-tour-card:hover {
    transform: none; /* Remove animations */
    box-shadow: none; /* Remove shadow */
}

.tt-badge {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #00a884; /* Sea pickle green */
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    z-index: 2;
    border-radius: 0; /* Remove rounded corners */
}

.tt-badge.best-seller {
    background-color: #00a884; /* Sea pickle green */
}

.tt-badge.guided-tour {
    background-color: #00a884; /* Sea pickle green */
}

.tt-badge.ticket-only {
    background-color: #00a884; /* Sea pickle green */
    color: white;
}

.tt-badge.best-of {
    background-color: #00a884; /* Sea pickle green */
}

.tt-tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tt-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none; /* Remove animations */
}

.tt-tour-card:hover .tt-tour-image img {
    transform: none; /* Remove animations */
}

.tt-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 168, 132, 0.8); /* Sea pickle green */
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    font-weight: bold;
}

.tt-tour-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tt-tour-title {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 8px;
    line-height: 1.3;
}

.tt-tour-title a {
    color: #333;
    text-decoration: none;
}

.tt-tour-title a:hover {
    color: #00a884; /* Sea pickle green */
}

.tt-tour-location {
    font-size: 13px;
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.tt-tour-location i {
    color: #00a884; /* Sea pickle green */
    margin-right: 5px;
    margin-top: 3px;
}

.tt-tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.tt-meta-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.tt-meta-item i {
    margin-right: 5px;
}

.tt-tour-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.tt-stars {
    color: #ffc107;
    font-size: 14px;
}

.tt-review-count {
    font-size: 13px;
    color: #666;
}

.tt-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.tt-tour-price {
    display: flex;
    flex-direction: column;
}

.tt-from {
    font-size: 12px;
    color: #888;
}

.tt-price {
    font-size: 18px;
    font-weight: 700;
    color: #00a884; /* Sea pickle green */
}

.tt-book-btn {
    display: inline-block;
    background-color: #00a884; /* Sea pickle green */
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 8px 12px;
    border-radius: 0; /* Remove rounded corners */
    text-decoration: none;
    transition: none; /* Remove animations */
    border: none; /* Remove border */
}

.tt-book-btn:hover {
    background-color: #008f72; /* Darker green on hover */
    color: white;
    transform: none; /* Remove animations */
}

.tt-slider-prev,
.tt-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 168, 132, 0.8); /* Sea pickle green */
    border: none;
    border-radius: 0; /* Remove rounded corners */
    cursor: pointer;
    z-index: 5;
    font-size: 16px;
    box-shadow: none; /* Remove shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tt-slider-prev {
    left: -15px;
}

.tt-slider-next {
    right: -15px;
}

.tt-slider-prev:hover,
.tt-slider-next:hover {
    background-color: #00a884; /* Sea pickle green */
    box-shadow: none; /* Remove shadow */
    transform: none; /* Remove animations */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tt-tour-slide {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .tt-tour-slide {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .tt-tour-slide {
        width: 100%;
    }
} 