/* Itinerary Preview Styles */
.item-tour .itinerary-preview {
    margin: 0 15px 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    margin-top: 12px;
}

.item-tour .itinerary-preview .itinerary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    cursor: pointer;
}

.item-tour .itinerary-preview .itinerary-title {
    font-size: 14px;
    font-weight: 600;
    color: #4A4A48;
    margin: 0;
}

.item-tour .itinerary-preview .itinerary-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    color: #5191fa;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.item-tour .itinerary-preview .itinerary-toggle i {
    transition: all 0.3s;
}

.item-tour .itinerary-preview .itinerary-toggle.open i {
    transform: rotate(45deg);
}

.item-tour .itinerary-preview .itinerary-items {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.item-tour .itinerary-preview .itinerary-items.closed {
    max-height: 0;
}

.item-tour .itinerary-preview .itinerary-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.item-tour .itinerary-preview .itinerary-item:last-child {
    border-bottom: none;
}

.item-tour .itinerary-preview .itinerary-item-title {
    font-size: 13px;
    color: #343f46;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.item-tour .itinerary-preview .itinerary-item-title i {
    color: #5191fa;
    font-size: 14px;
    flex-shrink: 0;
}

/* Mobile responsive */
@media(max-width: 766px) {
    .item-tour .itinerary-preview .itinerary-items {
        max-height: 0;
    }

    .item-tour .itinerary-preview .itinerary-items.open {
        max-height: 1000px;
    }

    .item-tour .itinerary-preview .itinerary-item-title {
        font-size: 12px !important;
    }
}
