/* Advertiser cards in listing grids */
.product-card--ad {
    border: 1px solid rgba(13, 110, 110, 0.22);
    background: linear-gradient(180deg, rgba(13, 110, 110, 0.06) 0%, var(--color-surface, #fff) 100%);
}

.product-card--ad-default {
    border-style: dashed;
}

.product-card__image--ad {
    background: #f3f6f6;
}

.product-card__ad-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__badge--ad {
    background: rgba(13, 110, 110, 0.92);
    color: #fff;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Public ads landing */
.ads-landing {
    max-width: 960px;
    margin: 0 auto;
}

.ads-landing__hero {
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.ads-landing__logo-wrap {
    margin: 0 auto 1.25rem;
    max-width: min(100%, 420px);
}

.ads-landing__logo {
    display: block;
    width: 100%;
    height: auto;
}

.ads-landing__hero h1 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.ads-landing__preview {
    margin: 1.75rem auto 0;
    max-width: min(100%, 22rem);
}

.ads-landing__preview-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg, 16px);
    border: 1px solid rgba(13, 110, 110, 0.18);
    box-shadow: var(--shadow-lg, 0 4px 20px rgba(0, 0, 0, 0.1));
}

.ads-landing__preview-caption {
    margin-top: 0.65rem;
    font-size: 0.82rem;
    color: var(--color-text-muted, #6b7280);
}

.ads-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.ads-plan-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--color-surface);
    box-shadow: var(--shadow);
}

.ads-plan-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0.5rem 0;
}

.advertiser-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.85rem;
    margin: 1rem 0 1.5rem;
}

.advertiser-stat-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    background: var(--color-surface);
}

.advertiser-stat-card strong {
    display: block;
    font-size: 1.35rem;
    color: var(--color-primary-dark);
}

.advertiser-ad-thumb {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--color-border);
}

.advertiser-status {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.advertiser-status--active { background: #dcfce7; color: #166534; }
.advertiser-status--pending_approval { background: #fef3c7; color: #92400e; }
.advertiser-status--paused { background: #e5e7eb; color: #374151; }
.advertiser-status--rejected { background: #fee2e2; color: #991b1b; }
.advertiser-status--expired,
.advertiser-status--draft { background: #f3f4f6; color: #6b7280; }
