/* Destination Hub Styling */

.destination-collections {
    padding: 60px 0;
    background: #f8f9fa;
}

.collection-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.collection-header i {
    font-size: 24px;
    color: #ff6b35;
    margin-right: 12px;
}

.collection-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.collection-products {
    margin-bottom: 20px;
}

.mini-product {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mini-product:hover {
    background: #f8f9fa;
}

.mini-product img {
    border-radius: 4px;
    margin-right: 12px;
    object-fit: cover;
}

.mini-product-info h4 {
    font-size: 14px;
    margin: 0 0 4px 0;
    font-weight: 500;
}

.mini-rating {
    font-size: 12px;
}

.mini-rating i {
    color: #ffc107;
}

.mini-rating i.text-muted {
    color: #dee2e6 !important;
}

/* Practical Info Section */
.practical-info {
    padding: 60px 0;
}

.info-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.info-card i {
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* FAQ Section */
.destination-faq {
    padding: 60px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* Seasonal Content */
.seasonal-content {
    padding: 40px 0;
}

.seasonal-highlights {
    margin-top: 15px;
}

.seasonal-highlights .badge {
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 6px 12px;
    font-size: 12px;
}

.seasonal-cta {
    text-align: center;
    padding: 20px;
}

/* Category Page Styling */
.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-3px);
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-rating {
    margin-bottom: 10px;
    font-size: 14px;
}

.tour-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.tour-rating span {
    color: #6c757d;
    margin-left: 5px;
}

.tour-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    flex: 1;
}

.tour-content h3 a {
    color: #333;
    text-decoration: none;
}

.tour-content h3 a:hover {
    color: #ff6b35;
}

.tour-location, .tour-duration {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.tour-location i, .tour-duration i {
    margin-right: 5px;
    color: #ff6b35;
}

.tour-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin: 15px 0;
}

/* Inline Product Cards for Blog */
.inline-product-card, .inline-attraction-card, .inline-destination-card {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #ff6b35;
}

.product-image, .attraction-image, .destination-image {
    flex-shrink: 0;
    margin-right: 15px;
}

.product-image img, .attraction-image img, .destination-image img {
    border-radius: 6px;
    object-fit: cover;
}

.product-info, .attraction-info, .destination-info {
    flex: 1;
}

.product-title, .attraction-title, .destination-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-title a, .attraction-title a, .destination-title a {
    color: #333;
    text-decoration: none;
}

.product-title a:hover, .attraction-title a:hover, .destination-title a:hover {
    color: #ff6b35;
}

.product-rating, .attraction-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.stars {
    margin-right: 8px;
}

.stars i {
    color: #ffc107;
    margin-right: 1px;
}

.stars i.empty {
    color: #dee2e6;
}

.rating-text {
    color: #6c757d;
}

.product-price {
    margin: 8px 0;
    font-weight: 600;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 8px;
}

.current-price {
    color: #ff6b35;
}

.product-btn, .attraction-btn, .destination-btn {
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collection-card {
        padding: 20px;
    }
    
    .mini-product {
        flex-direction: column;
        text-align: center;
    }
    
    .mini-product img {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .inline-product-card, .inline-attraction-card, .inline-destination-card {
        flex-direction: column;
    }
    
    .product-image, .attraction-image, .destination-image {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .faq-question h4 {
        font-size: 14px;
    }
}

/* Last-minute tours styling */
.last-minute-tour {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.last-minute-tour h4 {
    color: #856404;
    margin-bottom: 8px;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}