
.tienda-section {
    padding: 60px 20px;
    background-color: #0b111a;
    color: #ffffff;
    text-align: center;
}

.tienda-header h2 {
    color: #00d0d4;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tienda-header p {
    color: #a0aabf;
    margin-bottom: 40px;
}


.tienda-categoria-titulo {
    font-size: 22px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 40px auto 20px auto;
    text-align: left;
    max-width: 1000px;
    border-bottom: 2px solid #00d0d4; 
    padding-bottom: 10px;
}


.tienda-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}


.tienda-card {
    background-color: #121a25; 
    border: 1px solid #1e2b3c;
    border-radius: 8px;
    width: 220px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.tienda-card:hover {
    transform: translateY(-5px); 
    border-color: #00d0d4; 
    box-shadow: 0 8px 20px rgba(0, 208, 212, 0.15);
}

.tienda-card img {
    width: 100%;
    height: 280px;
    object-fit: cover; 
}

.tienda-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.tienda-info h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Estilo del precio */
.tienda-info .precio {
    font-size: 18px;
    font-weight: bold;
    color: #00d0d4;
    margin: 0 0 15px 0;
}


.btn-agotado {
    background-color: #2a3545;
    color: #6b7a90; 
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    cursor: not-allowed; 
    border: 1px dashed #6b7a90;
}

