/* Contenedor principal de la tienda */
.store-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative; /* Importante para que quede sobre el fondo */
    z-index: 2;          /* Más alto que cualquier fondo */
}

/* Cada producto */
.store-box {
    background: #1c1c1c;
    padding: 20px;
    margin: 15px;
    border: 2px solid #bfa046;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative; /* Importante para que el z-index funcione */
    z-index: 3;         /* Asegura que quede por encima del fondo */
}

/* Títulos de productos */
.store-box h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

/* Descripción */
.store-box p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Precio */
.store-box .price {
    font-size: 20px;
    color: #bfa046;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

/* Botón de compra */
.store-box .button-gold {
    background: #bfa046;
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 16px;
    width: auto;
    height: auto;
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    opacity: 1 !important;
    border: none;
}

.store-box .button-gold:hover {
    background: #d8b450;
    color: #fff;
}

/* Ajustes móviles */
@media (max-width: 768px) {
    .store-box .button-gold {
        font-size: 14px;
        padding: 10px 20px;
    }
}
