/* Estilos para el formulario de contacto de WhatsApp Orders */
.wc-wa-contact-fields {
    display: none; /* Oculto por defecto, se revela dinámicamente */
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #fbfbfb;
    box-sizing: border-box;
    width: 100%;
}

.wc-wa-contact-fields h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-wa-field-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.wc-wa-field-row:last-child {
    margin-bottom: 0;
}

.wc-wa-field {
    flex: 1 1 calc(50% - 8px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
}

.wc-wa-field label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.wc-wa-field label .required {
    color: #e53e3e;
    margin-left: 2px;
}

.wc-wa-field input {
    border: 1px solid #cccccc;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    height: 42px;
}

.wc-wa-field input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wc-wa-field input::placeholder {
    color: #aaa;
}

/* Responsive adjustment for very small screens */
@media (max-width: 480px) {
    .wc-wa-field {
        flex: 1 1 100%;
    }
}

/* Estilos personalizados para el botón de PEDIR */
.woocommerce div.product form.cart .button,
.woocommerce .products .product .button,
form.cart .single_add_to_cart_button.button {
    background-color: #fece00 !important;
    color: #353930 !important;
    border-color: #fece00 !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce .products .product .button:hover,
form.cart .single_add_to_cart_button.button:hover {
    background-color: #d8af01 !important;
    color: #353930 !important;
    border-color: #d8af01 !important;
}
