/* 
 * Guruvayoor Services - Packages Shortcode CSS
 * Only grid layout and cart functionality CSS
 */


/* Main Wrapper */

.wide_gv_packages_wrapper {
    margin: 30px 0;
    width: 100%;
}


/* Packages Grid - 3 items per row on desktop */

.wide_gv_packages_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on desktop */
    gap: 30px;
    padding: 20px 0;
}


/* Fallback Image for Packages */

.wide_gv_no_image_package {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #FF9933 0%, #003366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: inherit;
    font-size: 24px;
    font-weight: bold;
}


/* Cart Notification */

.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;
}

.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 Styles */

@media (max-width: 1200px) {
    .wide_gv_packages_grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .wide_gv_packages_grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 20px;
    }
    .wide_gv_cart_notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .wide_gv_no_image_package {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .wide_gv_no_image_package {
        height: 200px;
        font-size: 20px;
    }
}