.manage-product-form { max-width: 800px; margin: 20px auto; background:#fff; padding:15px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.1);}
.crud-section { border:1px solid #ddd; margin-bottom:15px; border-radius:6px; overflow:hidden; }
.crud-toggle { background:#f7f7f7; padding:10px; margin:0; font-size:16px; font-weight:bold; cursor:pointer; }
.crud-content { padding:15px; display:none; }
.crud-row { display:flex; flex-direction:column; margin-bottom:10px; }

#attributes-container, #variations-container { margin-bottom:10px; }
.attribute-item, .variation-item { background:#f9f9f9; padding:8px; margin-bottom:5px; border:1px dashed #ccc; }

.product-cats { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:10px; }
.product-cat-label { background:#fdf1d0; padding:5px 10px; border-radius:6px; cursor:pointer; display:flex; align-items:center; font-weight:500; }
.product-cat-label input[type="checkbox"] { margin-right:5px; }

.button-secondary { background:#f0f0f0; border:1px solid #ccc; padding:8px 12px; border-radius:4px; cursor:pointer; }
.button-primary { background:#0073aa; color:#fff; border:none; padding:10px 15px; border-radius:4px; cursor:pointer; }

button, input[type="submit"] {
    background: #d4af37; /* dorado */
    color: #fff;
    border: none;
    border-radius: 4px;
    margin: 6px;
    padding: 8px 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover, input[type="submit"]:hover {
    background: #b9922e; /* dorado más oscuro */
}

/* Botones dorados de subir imagen */
button.upload-image {
    background-color: #d4af37; /* color dorado */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
    margin-bottom: 10px;
}

button.upload-image:hover {
    background-color: #b9922e; /* dorado más oscuro */
}

.form-row { margin-bottom: 15px; }
.form-row label { display:block; font-weight:bold; margin-bottom:5px; }
    input[type="text"], input[type="number"], textarea, select {
        width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 5px;
    }
    .image-upload { margin-bottom:15px; }
    .preview-img { max-width:150px; border-radius:10px; display:block; margin-bottom:8px; }
    .tipos-comida-grid {
        display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:10px;
    }
    .checkbox-item { display:flex; align-items:center; gap:8px; }

    .product-type-block {
    margin-bottom: 15px;
}

.menu-title {
    background:#fdf1d0; 
    color: #333;
    padding:5px 10px; 
    margin-bottom: 20px;
    border-radius:6px; 
    display:flex; 
    align-items:center; 
    font-size: 24px;
    font-weight:bold; 
    gap: 10px;
}

.menu-title .restaurant-name {
    font-size: 22px;
    color: #ff5722; /* Un color destacado */
    font-weight: normal;
}

.manage-product-form { max-width: 800px; margin: 20px auto; background:#fff; padding:15px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.1);}
.form-row { margin-bottom: 15px; }
.form-row label { display:block; font-weight:bold; margin-bottom:5px; }
input[type="text"], input[type="number"], textarea, select {
    width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 5px;
}
.variation-item, .extra-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 6px;
}
.remove-variation, .remove-extra {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
}
button, input[type="submit"] {
    background: #d4af37; color: #fff; border: none; border-radius: 4px; padding: 8px 14px; font-weight: bold; cursor: pointer;
}
button:hover, input[type="submit"]:hover { background: #b9922e; }
