.sidebar-search-results {
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.sidebar-search-results.show {
    display: block;
}
.sidebar-search-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-search-item:hover {
    background: #f8f9fa;
}
.sidebar-search-item:last-child {
    border-bottom: none;
}
.sidebar-search-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.sidebar-search-content {
    flex: 1;
    text-align: left;
    min-width: 0;
}
.sidebar-search-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-search-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sidebar-search-type {
    font-size: 0.65rem;
    color: #ff6b35;
    text-transform: uppercase;
    font-weight: 600;
    background: #fff0eb;
    padding: 2px 6px;
    border-radius: 20px;
    display: inline-block;
}
.sidebar-search-days {
    font-size: 0.65rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.loading-results-small {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}
.no-results-small {
    padding: 15px;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
}
.sidebar-search-results::-webkit-scrollbar {
    width: 3px;
}
.sidebar-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.sidebar-search-results::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}


/*--------------------------------------------------------------------*/



/* Star Rating Styles - Improved */
.star-rating {
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
}
.star-rating .star {
    font-size: 1.5rem;
    transition: all 0.2s ease;
    color: #ddd;
}
.star-rating .star:hover {
    transform: scale(1.15);
    color: #ffc107;
}
.star-rating .star.rated {
    color: #ffc107 !important;
}
.star-rating .star.hovered {
    color: #ffc107;
}
.star-rating.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.star-rating.disabled .star {
    cursor: not-allowed;
}
.rate-package-section {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
}


/*------------------------------------------------ */


/* Package Loader Custom Styles */
.package-gallery-img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}
.package-gallery-img:hover {
    transform: scale(1.02);
    opacity: 0.95;
}
.share-btn {
    transition: all 0.3s ease;
}
.share-btn:hover {
    transform: translateY(-2px);
}
.social-share-icons a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-share-icons a:hover {
    transform: translateY(-3px);
}
.sticky-sidebar {
    position: sticky;
    top: 100px;
}
.service-item-card {
    transition: all 0.2s ease;
}
.service-item-card:hover {
    background-color: #f8f9fa;
}
.itinerary-day {
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}
.itinerary-day:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.price-tag {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}
.quick-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@media (max-width: 768px) {
    .quick-book-btn {
        display: block;
    }
}
/* Star Rating Styles */
.star-rating {
    cursor: pointer;
}
.star-rating i {
    transition: all 0.2s ease;
}
.star-rating i:hover {
    transform: scale(1.1);
}
.star-rating i.rated {
    color: #ffc107 !important;
}
/* Modal Styles */
.booking-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}
.booking-option {
    cursor: pointer;
    transition: all 0.3s ease;
}
.booking-option:hover {
    transform: translateY(-5px);
    background-color: #f8f9fa;
}
