/* Contenedor principal del producto */
.woocommerce div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* Galería de imágenes */
.woocommerce-product-gallery {
    width: 49% !important;
}



/* Estilos del formulario */
#product-778-form {
    width: 100%;
    margin: 0;
}

#product-778-form .option-group {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#product-778-form .option-group.valid {
    border-left: 4px solid #4CAF50;
}

#product-778-form .option-group.invalid {
    border-left: 4px solid #f44336;
}

#product-778-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

#product-778-form input[type="text"] {
    width: 100%;
    padding: 15px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    transition: all 0.3s ease;
}

#product-778-form input[type="text"]:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.2);
}

/* Precio actual */
.price-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    margin: 30px 0;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

/* Botones */
.buttons-container {
    margin-top: 30px;
    text-align: center;
}

.buttons-container button {
    background-color: #4a90e2;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    min-width: 200px;
}

.buttons-container button:hover {
    background-color: #357abd;
}

/* Notificaciones */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    padding: 16px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    z-index: 999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}

.snackbar.show {
    visibility: visible;
    opacity: 1;
}

.snackbar.error {
    background-color: #f44336;
}

.snackbar.success {
    background-color: #4CAF50;
}
.woocommerce-page div.product div.summary {
    width: 40% !important;
    margin: auto;
    text-align: center;
}
/* Responsive */
@media (max-width: 768px) {
    .woocommerce div.product {
        flex-direction: column;
    }
    
    .woocommerce-product-gallery,
    .product-customizer-container {
        width: 100% !important;
    }
    
    .product-customizer-container {
        margin-top: 20px;
    }
    
    .buttons-container button {
        width: 100%;
        min-width: auto;
    }
    
    .price-info {
        margin: 15px 0;
        padding: 15px;
        font-size: 18px;
    }
    .woocommerce-page div.product div.summary {
        width: 100% !important;
        margin: auto !important;
        text-align: center !important;
    }
} 

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
   width: 100% !important;
}
#product-778-form > div.buttons-container > button {
    float: none !important;
}