@charset "UTF-8";
/* ==========================================================
   Shop page - owner CTA block
   Displayed only for free plan shops (plan = 0)
   Depends on CSS variables defined in shop.css
   ========================================================== */

.owner-cta {
    margin: 32px 0 8px;
    text-align: center;
    padding: 22px 20px;
}

.owner-cta__label {
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--shop-text-mute);
    margin-bottom: 10px;
}

.owner-cta__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--shop-text);
    margin: 0 0 12px;
    line-height: 1.5;
}

.owner-cta__lead {
    font-size: 13px;
    line-height: 1.9;
    color: var(--shop-text-dim);
    margin: 0 0 10px;
}

.owner-cta__offer {
    color: var(--shop-gold-soft);
    font-weight: 600;
}

.owner-cta__price {
    color: var(--shop-gold);
}

.owner-cta__sub {
    font-size: 12px;
    line-height: 1.8;
    color: var(--shop-text-mute);
    margin: 0 0 18px;
}

.owner-cta__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.owner-cta__btn {
    display: inline-block;
    font-size: 13px;
    padding: 11px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity .2s ease, background-color .2s ease;
}

.owner-cta__btn:hover {
    opacity: .85;
}

.owner-cta__btn--primary {
    background: var(--shop-gold);
    color: #241d14;
    font-weight: 500;
}

.owner-cta__btn--ghost {
    border: 1px solid var(--shop-border);
    color: var(--shop-text-dim);
}

.owner-cta__note {
    font-size: 11px;
    line-height: 1.7;
    color: var(--shop-text-mute);
    margin: 0;
}

@media (max-width: 600px) {
    .owner-cta {
        padding: 18px 16px;
    }

    .owner-cta__actions {
        flex-direction: column;
    }

    .owner-cta__btn {
        text-align: center;
    }
}
