/* Store banner zones — full-width hero + catalog strips */

.store-banner-zone {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f1f5f9;
}

.store-banner-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.store-banner-slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.store-banner-img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Altura fixa; largura da imagem segue a proporção (letterbox nas laterais se preciso) */
.store-banner-hero .store-banner-slide {
    height: clamp(220px, 38vw, 560px);
}

.store-banner-strip {
    max-width: min(1180px, calc(100% - 2rem));
    margin: 1rem auto 0;
    border-radius: 8px;
}

.store-banner-strip .store-banner-slide {
    height: clamp(140px, 22vw, 280px);
    border-radius: 8px;
}

.store-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.store-banner-nav.prev {
    left: 12px;
}

.store-banner-nav.next {
    right: 12px;
}

.store-banner-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.store-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(15, 23, 42, 0.35);
    cursor: pointer;
}

.store-banner-dot.is-active {
    background: #0f172a;
    transform: scale(1.15);
}

@media (max-width: 640px) {
    .store-banner-nav {
        display: none;
    }
}
