/* Tour Show Page Styles */
.read-more-wrapper .read-more-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.read-more-wrapper .read-more-content.expanded {
    max-height: none !important;
}

.read-more-toggle {
    cursor: pointer;
}

.tour-details-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.tour-details-section h2 {
    color: #265471;
    font-weight: 600;
    margin-bottom: 15px;
}

.tour-highlights {
    list-style: none;
    padding-left: 0;
}

.tour-highlights li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tour-highlights li:before {
    content: "✓";
    color: #f28c5b;
    font-weight: bold;
    margin-right: 10px;
}

/* Fix for tour-details list - prevent text overlap */
.tour-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #FFF8F1;
    transition: all 0.3s ease;
}

.tour-details li:hover {
    background: #FFE8D1;
    transform: translateX(5px);
}

.tour-details li img {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tour-details li span {
    flex-shrink: 0;
    white-space: nowrap;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    min-width: 120px;
}

.tour-details li strong {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: left;
    color: #1b1b1b;
    font-size: 15px;
    font-weight: 600;
}

.tour-details li div {
    flex: 1;
    min-width: 0;
}

.tour-details li div strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: block;
    text-align: left;
    color: #1b1b1b;
    font-size: 15px;
    font-weight: 600;
}

/* Increase gap between booking buttons on mobile */
@media (max-width: 576px) {
    .d-flex.justify-content-between.align-items-center {
        gap: 12px;
    }
}

/* Mobile responsive adjustments for tour details list */
@media (max-width: 767px) {
    .tour-details li {
        padding: 12px 16px;
        margin-bottom: 8px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .tour-details li img {
        width: 24px;
        height: 24px;
        margin-top: 0;
    }

    .tour-details li span {
        font-size: 13px;
        color: #666;
        min-width: 90px;
    }

    .tour-details li strong {
        font-size: 14px;
        color: #1b1b1b;
        text-align: left;
    }

    .tour-details li div strong {
        font-size: 14px;
        text-align: right;
    }
}

/* Fix orange dot in date input */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

input[type="date"]::-webkit-clear-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
}

/* Remove any validation/decoration indicators */
input[type="date"]:invalid,
input[type="date"]:valid {
    background-image: none !important;
}

/* Ensure clean appearance */
input[type="date"] {
    position: relative;
    background: transparent;
    font-size: 14px;
    color: #666;
    text-align: left;
    padding-left: 0;
}

/* Style the selected date text */
input[type="date"]::-webkit-datetime-edit {
    color: #666;
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #666;
    padding: 0 2px;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #666;
}
