.pwa-ad-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pwa-ad-image {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f6f6 0%, #ededed 100%);
}

.pwa-ad-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.pwa-ad-image-placeholder {
    background: linear-gradient(180deg, #f1f1f1 0%, #e9e9e9 100%);
}

.pwa-ad-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.pwa-ad-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

.pwa-ad-price {
    font-size: 18px;
    font-weight: 700;
    color: #0a7f3f;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 24px;
}

.pwa-ad-installments {
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.35;
}

.pwa-ad-cta {
    display: inline-block;
    padding: 10px 14px;
    background: #ff9900;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: auto;
}

.pwa-ad-cta:hover {
    opacity: 0.9;
}

.pwa-ad-empty {
    font-size: 13px;
    color: #666;
}

.pwa-carousel {
    position: relative;
}

.pwa-carousel-track {
    position: relative;
    width: 100%;
}

.pwa-slide {
    display: none;
}

.pwa-slide.is-active {
    display: block;
    animation: pwa-fade-in 420ms ease;
}

.pwa-carousel-controls {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.pwa-nav {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    line-height: 1;
    padding: 9px 11px;
    cursor: pointer;
}

.pwa-nav:hover {
    background: #f7f7f7;
}

.pwa-carousel-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pwa-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #c9c9c9;
    cursor: pointer;
    padding: 0;
}

.pwa-dot.is-active {
    background: #ff9900;
}

@keyframes pwa-fade-in {
    from {
        opacity: 0.35;
    }

    to {
        opacity: 1;
    }
}
