.moment-carousel {
    min-width: 0;
    overflow: hidden;
    padding: 7px;
}

.moment-topline,
.seller-head {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 3px 6px 5px;
}

.moment-topline h2,
.seller-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--home-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 0.95rem + 0.45vw, 1.35rem);
    line-height: 1;
}

.moment-topline h2::before,
.seller-head h2::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--home-terra);
    box-shadow: 0 0 0 4px rgba(200, 97, 56, 0.1);
}

.home-carousel-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-carousel-control {
    min-width: 44px;
    min-height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--home-line);
    border-radius: 50%;
    color: var(--home-green);
    background: #fff;
    cursor: pointer;
}

.home-carousel-control:hover {
    color: #fff;
    background: var(--home-terra);
}

.home-carousel-control .ui-icon {
    width: 17px;
    height: 17px;
}

.home-carousel-pause {
    width: auto;
    min-width: 52px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
}

.home-carousel-count {
    min-width: 42px;
    color: var(--home-muted);
    font-size: 0.72rem;
    font-weight: 850;
    text-align: center;
}

.moment-viewport {
    min-width: 0;
    overflow: hidden;
    border-radius: 13px;
}

.moment-track {
    display: flex;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
    touch-action: pan-y;
}

.moment-slide {
    width: 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.moment-offer {
    min-width: 0;
    min-height: 92px;
    display: grid;
    grid-template-columns: minmax(76px, 38%) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(37, 63, 45, 0.1);
    border-radius: 13px;
    color: var(--home-ink);
    background: #fff;
    text-decoration: none;
}

.moment-media {
    min-width: 0;
    overflow: hidden;
    background: var(--home-paper-2);
}

.moment-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 360ms ease;
}

.moment-offer:hover .moment-image,
.moment-offer:focus-visible .moment-image {
    transform: scale(1.05);
}

.moment-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
}

.moment-availability {
    overflow: hidden;
    color: var(--home-terra-dark);
    font-size: clamp(0.54rem, 1.8vw, 0.7rem);
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.moment-info strong {
    display: -webkit-box;
    overflow: hidden;
    margin: 5px 0;
    color: var(--home-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.75rem, 2.6vw, 1.02rem);
    line-height: 1.05;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.moment-price {
    color: var(--home-green);
    font-size: clamp(0.7rem, 2.2vw, 0.88rem);
    font-weight: 900;
}

.moment-info small {
    overflow: hidden;
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 739px) {
    .home-carousel-control {
        min-width: 42px;
        min-height: 42px;
    }

    .home-carousel-pause {
        min-width: 48px;
        padding-inline: 6px;
        font-size: .62rem;
    }
}

@media (min-width: 740px) {
    .moment-carousel {
        padding: 8px;
    }

    .moment-offer {
        min-height: 108px;
        grid-template-columns: minmax(110px, 31%) minmax(0, 1fr);
    }
}

@media (min-width: 1220px) {
    .moment-offer {
        min-height: 118px;
        grid-template-columns: minmax(150px, 34%) minmax(0, 1fr);
    }
}
