 h2, h4 {
            color: #333;
            text-align: center;
        }
.title-products {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: block;
        }

        .title-products::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--warning-color);
            border-radius: 2px;
        }

        .section {
            background-color: var(--bg-white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .form-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            min-width: 150px;
        }
        
        .form-full-width {
            flex-grow: 1;
            width: 100%;
        }

        label {
            margin-bottom: 5px;
            font-weight: bold;
            font-size: 14px;
        }

        input[type="text"],
        input[type="url"],
        input[type="number"] {
            padding: 8px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 14px;
        }

        .btn {
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            color: var(--bg-white);
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary-color);
        }

        .btn-warning {
            background-color: var(--warning-color);
        }

        .btn-danger {
            background-color: var(--danger-color);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
        }
        
        .btn:hover {
            opacity: 0.8;
        }

        /* Estilos de la lista tipo Ionic */
       .product-list1 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reducido el espacio para que se vean más como una lista compacta */
    margin-top: 20px;
}

.list-item1 {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px; /* Ajustado el padding para el diseño tipo lista */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.list-item1:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.item-content1 {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Permite que el contenido ocupe el espacio restante */
}

.item-image1 {
    width: 60px; /* Tamaño de imagen más pequeño, como en el ejemplo */
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-info1 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Alinea el texto verticalmente */
    flex-grow: 1;
    text-transform: uppercase;
}

.item-info1 strong {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px; /* Reducido el espacio entre las líneas */
}

.item-info1 span {
    font-size: 12px;
    color: #666;
}

.price-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Espacio entre los badges */
}

/* Estilos para cada badge de precio */
.price-badge {
    background-color: #e9ecef; /* Color de fondo */
    color: #495057; /* Color del texto */
    padding: 4px 8px; /* Espacio interno */
    border-radius: 12px; /* Esquinas redondeadas */
    font-size: 12px; /* Tamaño de fuente */
    font-weight: bold;
    white-space: nowrap; /* Evita que el texto se divida */
}

.item-actions1 {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
    margin-left: 15px;
}

.item-actions1 button {
    padding: 8px; /* Botones más pequeños, como iconos */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-warning-icon {
    background-color: var(--warning-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-danger-icon {
    background-color: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .form-grid {
        flex-direction: column;
    }
    .list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .item-info {
        align-items: center;
        margin: 10px 0;
    }
    .item-image {
        margin-right: 0;
    }
}