/**
 * Guruvayoor Services - Destinations CSS
 * Styles for destinations shortcode
 * 
 * Features:
 * - Grid layout for destination cards
 * - Cart notification styles
 * - Button hover effects
 * - Responsive design
 * 
 * @version 1.0
 */


/* Destinations Grid Layout */

.wide_gv_destinations_wrapper {
    font-family: inherit;
    margin: 30px 0;
    width: 100%;
}

.wide_gv_destinations_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.wide_gv_no_destinations {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #515962;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    border: 2px dashed #f3bafd;
    font-family: inherit;
}

.wide_gv_no_template {
    text-align: center;
    padding: 20px;
    color: #dc2626;
    background: #fef2f2;
    border-radius: 8px;
    font-family: inherit;
}


/* Cart Notification - Shared with other shortcodes */

.wide_gv_cart_notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a875a;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    font-family: inherit;
}

.wide_gv_cart_notification.show {
    transform: translateY(0);
    opacity: 1;
}

.wide_gv_cart_notification.hide {
    transform: translateY(100px);
    opacity: 0;
}

.wide_gv_cart_icon {
    font-size: 20px;
}

.wide_gv_cart_message {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .wide_gv_destinations_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .wide_gv_cart_notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}