/* =============================
   ESTILO PARA NUESTRAS TIENDAS
============================= */

:root {
    --dorado: #bf9b30;
    --dorado-oscuro: #9e7c20;
    --negro: #111;
    --gris-texto: #555;
}

/* =============================
   CONTENEDOR GENERAL
============================= */

.tiendas-container {
    margin-top: 4rem;
}

/* =============================
   TÍTULOS
============================= */

/* Línea dorada premium bajo el título */
.linea-dorada {
    width: 600px;
    height: 4px;
    background: linear-gradient(to right,
        transparent,
        var(--dorado),
        transparent
    );
    margin: 8px auto 25px auto;
    border-radius: 20px;
}

.titulo-premium {
    font-size: 3rem;
    font-weight: 300;
    color: var(--negro);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}


.subtitulo-premium {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* =============================
   TARJETAS
============================= */

.tienda-card {
    border: 1px solid rgba(191,155,48,0.35);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* ← Estabiliza todas las cards */
}

.tienda-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* =============================
   IMÁGENES
============================= */

.tienda-card .carousel,
.tienda-card .carousel-inner,
.tienda-card .carousel-item {
    height: 260px !important; /* Altura fija */
    overflow: hidden;
}

/* Imagen Fija y centrada */
.tienda-card .carousel-item img,
.tienda-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* =============================
   TEXTOS DE LAS TARJETAS
============================= */

.tienda-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--negro);
}

.tienda-texto {
    color: var(--gris-texto);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* =============================
   BOTÓN
============================= */

.btn-premium {
    background: var(--dorado);
    color: var(--negro);
    padding: 11px 30px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
}

.btn-premium:hover {
    background: var(--dorado-oscuro);
    transform: translateY(-3px);
}

/* Que el body crezca parejo */
.tienda-card .card-body {
    flex-grow: 1;
}
