/* Niche Product Card - Safari Tour Widget Styles */

.safari-tour-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safari-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.safari-tour-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.safari-tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.safari-tour-card:hover .safari-tour-image {
    transform: scale(1.05);
}

.safari-tour-discount {
    position: absolute;
    top: 15px;
    left: -30px;
    background-color: #ff3366;
    color: #fff;
    padding: 8px 50px;
    font-weight: bold;
    transform: rotate(-45deg);
    transform-origin: center;
    font-size: 12px;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 100px;
    line-height: 1;
}

.safari-tour-content {
    padding: 20px;
}

.safari-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.safari-tour-meta span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.safari-tour-meta i {
    margin-right: 5px;
    color: #f7b731;
    font-size: 14px;
}

.safari-tour-rating {
    display: flex;
    align-items: center;
}

.safari-tour-rating i {
    color: #f7b731;
    font-size: 14px;
    margin-right: 2px;
}

.safari-tour-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.safari-tour-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.safari-tour-location i {
    margin-right: 5px;
    color: #777;
    font-size: 14px;
}

.safari-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.safari-tour-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.safari-tour-price-label {
    font-size: 14px;
    color: #777;
    margin-right: 5px;
}

.safari-tour-current-price {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.safari-tour-original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    position: relative;
}

.safari-tour-original-price::before {
    content: '$';
}

.safari-tour-explore-button {
    background-color: transparent;
    border: 2px solid #f7b731;
    color: #f7b731;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.safari-tour-explore-button:hover {
    background-color: #f7b731;
    color: #fff;
    transform: translateX(3px);
    text-decoration: none;
}

.safari-tour-explore-button i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.safari-tour-explore-button:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .safari-tour-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .safari-tour-meta {
        justify-content: flex-start;
    }
    
    .safari-tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .safari-tour-price {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .safari-tour-content {
        padding: 15px;
    }
    
    .safari-tour-title {
        font-size: 18px;
    }
    
    .safari-tour-current-price {
        font-size: 20px;
    }
    
    .safari-tour-meta {
        font-size: 12px;
        gap: 8px;
    }
    
    /* Maintain horizontal alignment for all meta items including rating icons */
    .safari-tour-meta span {
        display: flex;
        align-items: center;
        flex-direction: row;
    }
    
    .safari-tour-meta i {
        margin-right: 5px;
    }
    
    /* Ensure rating stars stay in a horizontal row */
    .safari-tour-rating {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.safari-tour-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.safari-tour-explore-button:focus {
    outline: 2px solid #f7b731;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .safari-tour-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .safari-tour-discount {
        background-color: #000 !important;
        color: #fff !important;
    }
}
