:root {
    --beez-theme-text: #101018;
    --beez-theme-muted: #5f6075;
    --beez-theme-border: #eceaf0;
    --beez-theme-primary: #f71355;
    --beez-theme-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--beez-theme-bg);
    color: var(--beez-theme-text);
    font-family: Raleway, "Segoe UI", Arial, sans-serif;
    margin: 0;
}

a {
    color: inherit;
}

.beez-theme-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--beez-theme-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-bar .beez-theme-header {
    top: 32px;
}

.beez-theme-header__inner {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1140px;
    min-height: 68px;
    padding: 0 20px;
}

.beez-theme-brand {
    align-items: center;
    color: var(--beez-theme-text);
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    font-size: 12px;
    line-height: 1.12;
    min-width: 210px;
    text-decoration: none;
}

.beez-theme-brand strong {
    font-weight: 900;
}

.beez-theme-brand img {
    background: #050505;
    display: block;
    height: 42px;
    object-fit: contain;
    width: 42px;
}

.beez-theme-nav {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 32px;
    justify-content: center;
}

.beez-theme-nav a {
    color: #45465a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.beez-theme-nav a:hover {
    color: var(--beez-theme-primary);
}

.beez-theme-cta {
    background: var(--beez-theme-primary);
    border-radius: 9px;
    box-shadow: 0 12px 24px rgba(247, 19, 85, 0.18);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    padding: 12px 18px;
    text-decoration: none;
    white-space: nowrap;
}

.beez-theme-main {
    min-height: calc(100vh - 141px);
}

.beez-theme-content {
    margin: 0;
    padding: 0;
}

.beez-theme-page {
    margin: 0;
}

.beez-theme-footer {
    border-top: 1px solid var(--beez-theme-border);
    color: var(--beez-theme-muted);
    font-size: 13px;
}

.beez-theme-footer__inner {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1140px;
    padding: 26px 20px;
}

.beez-theme-footer-brand {
    align-items: center;
    display: flex;
    gap: 14px;
}

.beez-theme-footer-brand img {
    background: #050505;
    height: 48px;
    object-fit: contain;
    width: 48px;
}

.beez-theme-contact {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.beez-theme-footer a {
    color: var(--beez-theme-primary);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 760px) {
    .beez-theme-header__inner {
        min-height: 64px;
    }

    .beez-theme-nav {
        display: none;
    }

    .beez-theme-brand {
        min-width: 0;
    }

    .beez-theme-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .beez-theme-contact {
        align-items: flex-start;
    }
}

@media (max-width: 782px) {
    .admin-bar .beez-theme-header {
        top: 46px;
    }
}
