/* ===== FORMULARIO REGISTRO ===== */
.registro-container {
    max-width: 500px;
    margin: 80px auto;
}

.registro-card {
    background-color: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.registro-card h3 {
    color: #fff;
}

/* Inputs */
.form-control {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

.form-control:focus {
    background-color: transparent !important;
    border: 1px solid #fff !important;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Checkboxes */
.form-check-label {
    color: #ccc;
}

.form-check-input {
    background-color: transparent;
    border: 1px solid #fff;
}

/* CHECKBOX NORMAL */
.form-check-input {
    background-color: transparent;
    border: 1px solid #fff;
    cursor: pointer;
}

/* CUANDO ESTÁ MARCADO */
.form-check-input:checked {
    background-color: #00ff88;
    border-color: #00ff88;
}

/* EFECTO AL HACER CLICK */
.form-check-input:focus {
    box-shadow: 0 0 5px #00ff88;
    border-color: #00ff88;
}

/* Links */
a {
    color: #00ff88;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* ===== GENERAL ===== */
body {
    background-color: #040e18; /* tu color original */
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #040e18 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== CARDS ===== */
.card {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.card:hover {
    border: 1px solid rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.card-body {
    background-color: transparent !important;
    color: #fff;
}

.card img {
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ===== BOTONES ===== */
.btn-dark,
.btn-success {
    background-color: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    transition: 0.3s ease;
}

.btn-dark:hover,
.btn-success:hover {
    background-color: #fff !important;
    color: #000 !important;
}

/* ===== TEXTOS ===== */
.text-success {
    color: #00ff88 !important;
}

h5 {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== MODAL ===== */
.modal-content {
    background-color: #0b0b0b;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.4);
}


/* ===== PRODUCTO DETALLE ===== */
.producto-container {
    max-width: 1000px;
    margin: 80px auto;
}

.producto-card {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.producto-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.producto-info h2 {
    margin-bottom: 15px;
}

.producto-precio {
    font-size: 24px;
    color: #00ff88;
    font-weight: bold;
}

.producto-descripcion {
    color: #ccc;
}

/* SELECT OSCURO */
.form-select {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

.form-select:focus {
    border: 1px solid #fff !important;
    box-shadow: none !important;
}

/* OPCIONES (al abrir) */
.form-select option {
    background-color: #0b0b0b;
    color: #fff;
}