/* --- VARIABLES DE COLOR POIEIN --- */
:root {
    --oro: #d4af37;
    --oro-brillo: #f5e3a8;
    --fondo-oscuro: #050505;
    --tarjeta-bg: rgba(20, 20, 20, 0.6);
}

body {
    background-color: var(--fondo-oscuro);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* --- ESTILO VISTA RESTRINGIDA --- */
.restricted-view {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.restricted-icon {
    font-size: 3.5rem;
    color: var(--oro);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.restricted-view h1 {
    font-family: 'Playfair Display', serif;
    color: var(--oro);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.restricted-view p {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 30px;
}

/* --- CONTENEDOR Y GRID (Se mantienen de tu código) --- */
.container-productos {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.header-seccion {
    text-align: left;
    border-left: 4px solid var(--oro);
    padding-left: 20px;
    margin-bottom: 50px;
}

.header-seccion h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--oro);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

/* --- TARJETA LUXURY (Se mantienen de tu código) --- */
.card-legado {
    background: var(--tarjeta-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px;
    transition: 0.5s all ease;
    backdrop-filter: blur(5px);
}

.card-legado:hover {
    border-color: var(--oro);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.img-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #000;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.info-producto h3 {
    font-family: 'Playfair Display', serif;
    color: var(--oro);
    font-size: 1.4rem;
}

.price-tag {
    color: var(--oro-brillo);
}

/* --- BOTONES --- */
.btn-accion {
    background: transparent;
    border: 1px solid var(--oro);
    color: var(--oro);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-accion:hover {
    background: var(--oro);
    color: #000;
}

.btn-delete {
    color: #888;
    font-size: 0.7rem;
    text-decoration: underline;
    cursor: pointer;
}