/**
 * Store Teaser Section Styles
 * @package TubaraoCente
 */

.store-teaser {
    background: var(--color-light-gray);
}

.store-teaser .section-header {
    margin-bottom: 0;
    text-align: left;
}

.store-teaser .section-title {
    color: var(--color-black);
}

.store-teaser .store-teaser-media img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
}

.store-teaser .store-teaser-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-teaser .store-description {
    color: var(--color-dark-gray);
    line-height: 1.7;
}

.store-teaser .store-description p:last-child {
    margin-bottom: 0;
}

/* Store Info Items - Estilo Minimal */
.store-teaser .store-info-item {
    padding: 0;
    background: transparent;
    border: none;
    margin-bottom: 1.5rem;
}

.store-teaser .info-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: transparent;
    color: var(--color-primary);
    border-radius: 0;
    margin-right: 1rem;
    flex-shrink: 0;
    padding-top: 0.125rem;
}

.store-teaser .info-icon i {
    font-size: 1.25rem;
}

.store-teaser .store-info-item strong {
    color: var(--color-black);
    font-weight: var(--font-weight-medium);
    font-size: 0.9375rem;
}

.store-teaser .store-info-item address {
    font-style: normal;
    color: var(--color-dark-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Horários Table */
.store-teaser .table-horarios {
    width: 100%;
    border-collapse: collapse;
}

.store-teaser .table-horarios td {
    padding: 0.5rem 0;
    color: var(--color-dark-gray);
    font-size: 0.9375rem;
    vertical-align: top;
}

.store-teaser .table-horarios tr:not(:last-child) td {
    border-bottom: 1px solid var(--color-light-gray);
}

.store-teaser .table-horarios td:first-child {
    color: var(--color-gray);
    padding-right: 2rem;
}

.store-teaser .table-horarios td:last-child {
    text-align: right;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-dark);
}

/* Google Maps */
.store-teaser .store-map {
    margin-top: 3rem;
}

.store-teaser .map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--color-white);
}

.store-teaser .map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .store-teaser .store-teaser-media {
        margin-bottom: 2rem;
    }

    .store-teaser .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .store-teaser .store-info-item {
        margin-bottom: 1.25rem;
    }

    .store-teaser .info-icon i {
        font-size: 1.125rem;
    }

    .store-teaser .map-wrapper {
        height: 250px;
    }

    .store-teaser .table-horarios td:first-child {
        padding-right: 1rem;
    }
}
