/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}


/* Style the product list in a 4-column grid */
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
}

.product-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

.product-title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.product-status {
    display: block;
    font-size: 14px;
    color: #28a745; /* Green for selected status */
    font-weight: bold;
    margin-top: 5px;
}

.product-item label {
    display: block;
    cursor: pointer;
}

.product-item input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

button[type="submit"] {
    margin-top: 20px;
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

button[type="submit"]:hover {
    background-color: #005bb5;
}
.woocommerce-additional-fields {
    display: none !important;
}