/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.single-tour {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Tour Layout */
.tt-tour-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    width: var(--tt-tour-page-width);
    max-width: var(--tt-max-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Tour Content */
.tt-tour-content {
    background: transparent;
}

/* Tour Header - Remove white background and make flat */
.tt-tour-header {
    background: transparent;
    padding: 60px 0 0 0;
    border-radius: 0;
    margin-bottom: 2rem;
    border: none;
    border-top: none !important;
}

.tt-tour-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.tt-tour-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    color: #666;
}

.tt-tour-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tt-tour-meta .dashicons {
    color: #00a884;
    /* Sea pickle green */
    font-size: 1.2rem;
    width: auto;
    height: auto;
}

.tt-tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tt-tour-rating .star {
    color: #00a884;
    /* Sea pickle green */
}

/* Tour Sections - Remove white background and make flat */
.tt-tour-section {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: none;
    box-shadow: none;
}

.tt-section-title {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: none;
}

/* Tour Description */
.tt-tour-description {
    color: #444;
    line-height: 1.8;
}

/* Tour Itinerary */
.tt-tour-itinerary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tt-itinerary-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.tt-itinerary-item:hover {
    transform: translateX(5px);
}

.tt-itinerary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00a884;
    /* Sea pickle green */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tt-itinerary-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Tour Highlights - Flat design */
.tt-tour-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.tt-tour-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: transparent;
    border-radius: 0;
}

.tt-tour-highlights .dashicons {
    color: #00a884;
    /* Sea pickle green */
}

/* Inclusions/Exclusions - Side by side, unified */
.tt-tour-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tt-includes-list,
.tt-excludes-list {
    list-style: none;
}

.tt-includes-list li,
.tt-excludes-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    background: transparent;
    padding: 4px 0;
    border-radius: 0;
}

.tt-includes-list .dashicons {
    color: #00a884;
    background: #00a884;
    mask-image: none; /* Remove icon */
    -webkit-mask-image: none; /* Remove icon */
    mask-size: 16px;
    -webkit-mask-size: 16px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    width: 16px;
    height: 16px;
}

.tt-excludes-list .dashicons {
    color: #ffffff;
    background: #c10000; /* Red background for excludes */
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
    mask-size: 16px;
    -webkit-mask-size: 16px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    width: 16px;
    height: 16px;
}

/* Tour Sidebar */
.tt-tour-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.tt-tour-booking-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tt-tour-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.tt-tour-price-label {
    display: block;
    color: #666;
    margin-bottom: 0.25rem;
}

.tt-tour-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.tt-tour-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.tt-tour-info .dashicons {
    color: #00a884;
    /* Sea pickle green */
}

.tt-book-button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 1.5rem 0;
    background: #00a884; /* Sea pickle green */
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 0; /* Flat design */
    font-weight: 600;
    transition: none; /* Remove animations */
    border: none; /* Remove border */
    box-shadow: none; /* Remove shadow */
}

.tt-book-button:hover {
    background: #008f72; /* Darker sea pickle green */
    color: #fff;
    text-decoration: none;
    transform: none; /* Remove animations */
}

.tt-tripadvisor-badge {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.tt-tripadvisor-badge img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

/* WhatsApp Button */
.tt-whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.tt-whatsapp-button:hover {
    transform: scale(1.1);
}

.tt-whatsapp-button .dashicons {
    font-size: 2rem;
    width: auto;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tt-tour-container {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .tt-tour-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .tt-tour-includes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tt-tour-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .tt-tour-includes {
        grid-template-columns: 1fr;
    }
}

/* Tour Meta Display Styles */
.tour-meta-info {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.tour-location {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
}

.location-icon {
    color: var(--tt-skyblue-500);
    margin-right: 8px;
    font-size: 18px;
}

.tour-additional-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.tour-flexibility {
    color: var(--tt-yellow-700);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tour-flexibility i {
    margin-left: 5px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars {
    color: #f9a825;
}

.rating-text {
    font-weight: 500;
}

.reviews-link {
    color: #2980b9;
    text-decoration: none;
    margin-left: 5px;
}

.reviews-link:hover {
    text-decoration: underline;
}

.tour-duration, .tour-flexibility-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.duration-icon {
    color: #2980b9;
}

.tour-company {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.company-icon {
    color: #7f8c8d;
}