/* --- ESTILOS TIENDA --- */
.shop-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #141e19;
    border: 1px solid #2a3a30;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.product-img {
    background: #050a07;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-emoji {
    font-size: 6rem;
    filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.3));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-yellow);
    color: #000;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    padding: 5px 10px;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    height: 40px; /* Alinea los textos */
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Press Start 2P', cursive;
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.btn-buy {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

.btn-buy:hover {
    background: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.4);
}