/* Tiendas Template Styles - Adapted from previous theme */
.tienda-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    overflow: hidden;
    padding: 2.5rem;
}

.tienda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    /* Centramos verticalmente para mayor simetría */
}

.tienda-image {
    height: 100%;
}

.tienda-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tienda-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tienda-titulo {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-primary, #333333);
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.tienda-titulo-decor {
    width: 50px;
    height: 4px;
    background: var(--color-accent, #ef8c00);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.tienda-texto {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tienda-item {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    color: var(--color-text-gray-600, #4b5563);
    font-size: 1.05rem;
    line-height: 1.6;
}

.tienda-label {
    min-width: 90px;
    font-weight: 700;
    color: var(--color-primary, #1a1a1a);
    text-transform: capitalize;
}

.tienda-value {
    flex-grow: 1;
}

.tienda-value a {
    color: var(--color-accent, #ef8c00);
    text-decoration: none;
    font-weight: 600;
}

.tienda-value a:hover {
    text-decoration: underline;
}

.tienda-mapas {
    display: flex;
    flex-direction: column;
}

.mapa-iframe {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.waze-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background-color: #33CCFF;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: 100%;
    /* Botón a ancho completo para mejor balance */
    box-shadow: 0 4px 12px rgba(51, 204, 255, 0.2);
}

.waze-link:hover {
    background-color: #29B3E6;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(51, 204, 255, 0.3);
}

.waze-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive Tiendas */
@media (max-width: 991px) {
    .tienda-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .tienda-card {
        padding: 2rem;
    }

    .tienda-info {
        padding-right: 0;
    }

    .tienda-image img {
        height: auto;
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .tienda-titulo {
        font-size: 1.5rem;
    }

    .tienda-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .tienda-label {
        min-width: unset;
    }
}