/* GeneratePress child theme custom styles */

/* ============================================================
   Top bar
   ============================================================ */
.site-topbar {
    background: #333;
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-topbar a {
    color: #fff;
    text-decoration: none;
}

.site-topbar a:hover {
    text-decoration: underline;
}

.topbar-contacts {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar-hours {
    opacity: 0.85;
}

/* ============================================================
   Branding accent
   ============================================================ */
.site-title .accent {
    color: #0073aa;
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
    background: #f0f7ff;
    border: 1px solid #c8ddf0;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}

.cta-banner p {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
}

.messenger-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.messenger-link:hover {
    opacity: 0.85;
    color: #fff;
    text-decoration: none;
}

.messenger-link.telegram { background: #0088cc; }
.messenger-link.whatsapp { background: #25d366; }
.messenger-link.max      { background: #168de2; }
.messenger-link.viber    { background: #665cac; }
