/* ONYBEE public design system — isolated from legacy style.css */

:root {
    --onybee-green: #006838;
    --onybee-green-dark: #005530;
    --onybee-green-light: #E8F5EE;
    --onybee-green-muted: rgba(0, 104, 56, 0.08);
    --onybee-gray-900: #1A1A1A;
    --onybee-gray-700: #4B5563;
    --onybee-gray-600: #6B7280;
    --onybee-gray-400: #9CA3AF;
    --onybee-gray-200: #E5E7EB;
    --onybee-gray-100: #F3F4F6;
    --onybee-gray-50: #F9FAFB;
    --onybee-white: #FFFFFF;
    --onybee-bg: #EEEBE1;
    --onybee-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --onybee-container: 1200px;
    --onybee-header-h: 72px;
    --onybee-radius-sm: 8px;
    --onybee-radius-md: 12px;
    --onybee-radius-lg: 16px;
    --onybee-radius: var(--onybee-radius-sm);
    --onybee-transition: 0.22s ease;
    --onybee-section-y: clamp(3.75rem, 6vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    overflow-x: hidden;
    max-width: 100%;
    background: var(--onybee-bg);
}

body.onybee-body {
    margin: 0;
    font-family: var(--onybee-font);
    font-size: 16px;
    line-height: 1.67;
    color: var(--onybee-gray-900);
    background: var(--onybee-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.onybee-body main {
    overflow-x: clip;
    max-width: 100%;
}

body.onybee-body.page-home { padding-top: 0; }

.onybee-container {
    width: min(100% - 2.5rem, var(--onybee-container));
    margin-inline: auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* Skip link */
.onybee-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--onybee-green);
    color: var(--onybee-white);
    text-decoration: none;
}
.onybee-skip:focus { left: 1rem; top: 1rem; }

/* Header logo */
.onybee-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}
.onybee-logo img {
    display: block;
    width: clamp(120px, 10vw, 158px);
    height: auto;
    max-height: 34px;
    object-fit: contain;
}

/* Footer wordmark (legacy text lockup) */
.onybee-wordmark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    line-height: 1;
}
.onybee-wordmark__ony { color: var(--onybee-gray-700); }
.onybee-wordmark__bee { color: var(--onybee-green); }

/* Header */
.onybee-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--onybee-white);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    height: var(--onybee-header-h);
}
.onybee-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--onybee-header-h);
    gap: 1.5rem;
}
.onybee-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.onybee-nav a {
    color: var(--onybee-gray-900);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--onybee-transition);
}
.onybee-nav a:hover,
.onybee-nav a.is-active { color: var(--onybee-green); }
.onybee-header__actions {
    display: none;
    align-items: center;
    gap: 1rem;
}
.onybee-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--onybee-gray-200);
    background: var(--onybee-white);
    border-radius: var(--onybee-radius);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.onybee-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--onybee-gray-900);
    position: relative;
}
.onybee-menu-toggle span::before,
.onybee-menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--onybee-gray-900);
}
.onybee-menu-toggle span::before { top: -6px; }
.onybee-menu-toggle span::after { top: 6px; }

@media (max-width: 991px) {
    .onybee-header {
        --onybee-header-h: 60px;
    }

    .onybee-logo img {
        width: clamp(118px, 34vw, 148px);
        max-height: 32px;
        min-height: 24px;
    }

    .onybee-menu-toggle {
        width: 40px;
        height: 40px;
        border-color: transparent;
        background: transparent;
    }

    .onybee-menu-toggle span,
    .onybee-menu-toggle span::before,
    .onybee-menu-toggle span::after {
        width: 16px;
        height: 1.5px;
    }

    .onybee-menu-toggle span::before { top: -5px; }
    .onybee-menu-toggle span::after { top: 5px; }
}

.onybee-mobile-nav {
    display: none;
    border-top: 1px solid var(--onybee-gray-200);
    background: var(--onybee-white);
    padding: 1rem 0 1.25rem;
}
.onybee-mobile-nav.is-open { display: block; }
.onybee-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.onybee-mobile-nav a {
    display: block;
    padding: 0.65rem 0;
    color: var(--onybee-gray-900);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--onybee-gray-100);
}
.onybee-mobile-nav a.is-active { color: var(--onybee-green); }

@media (min-width: 992px) {
    .onybee-nav { display: flex; }
    .onybee-header__actions { display: flex; }
    .onybee-menu-toggle { display: none; }
    .onybee-mobile-nav { display: none !important; }
}

/* Buttons & links */
.onybee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--onybee-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--onybee-transition), color var(--onybee-transition), border-color var(--onybee-transition), transform var(--onybee-transition);
    font-family: inherit;
    line-height: 1.2;
}
.onybee-btn--primary {
    background: var(--onybee-green);
    color: var(--onybee-white);
    border-color: var(--onybee-green);
}
.onybee-btn--primary:hover { background: var(--onybee-green-dark); border-color: var(--onybee-green-dark); color: var(--onybee-white); }
.onybee-btn--outline {
    background: transparent;
    color: var(--onybee-green);
    border-color: var(--onybee-green);
}
.onybee-btn--outline:hover { background: var(--onybee-green-light); border-color: var(--onybee-green); }
.onybee-btn--compact {
    min-height: 40px;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
}
.onybee-btn--pill {
    border-radius: 22px;
}
.onybee-link {
    color: var(--onybee-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--onybee-transition), opacity var(--onybee-transition);
}
.onybee-link:hover { color: var(--onybee-green-dark); }
.onybee-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: transform var(--onybee-transition);
}
.onybee-link-arrow::after { content: '→'; }
.onybee-link-arrow:hover { transform: translateX(3px); text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
    .onybee-btn,
    .onybee-link-arrow { transition: none; }
    .onybee-link-arrow:hover { transform: none; }
}

/* Typography helpers */
.onybee-eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--onybee-gray-600);
    margin-bottom: 0.875rem;
}
.onybee-section-title {
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 600;
    line-height: 1.22;
    color: var(--onybee-gray-900);
    margin: 0 0 0.875rem;
    letter-spacing: -0.025em;
}
.onybee-section-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--onybee-gray-600);
    max-width: 36rem;
    margin: 0;
}
.onybee-section-head {
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.onybee-section-head--center { text-align: center; }
.onybee-section-head--center .onybee-section-lead { margin-inline: auto; }

/* Sections — subtle rhythm, no harsh zebra */
.onybee-section { padding: var(--onybee-section-y) 0; }
.onybee-section--alt { background: var(--onybee-bg); }
.onybee-section--soft { background: var(--onybee-bg); }
.onybee-section--categories { background: var(--onybee-bg); }
.onybee-section--green-tint { background: linear-gradient(180deg, var(--onybee-green-light) 0%, #F5F7F6 100%); }

/* Hero — geometry: constrained inner container, two-column content */
.onybee-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: stretch;
    background: var(--onybee-bg);
    overflow: hidden;
    isolation: isolate;
}
.onybee-hero__wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.85;
}
.onybee-hero__wave-svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18%;
    width: 100%;
    height: 52%;
    max-width: 100%;
}
.onybee-hero__shell {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: calc(100% - 48px);
    max-width: 1180px;
    margin-inline: auto;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding-block: 2.5rem 3.25rem;
}
.onybee-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    width: 100%;
}
.onybee-hero__content {
    min-width: 0;
    max-width: 520px;
}
.onybee-hero__slides {
    position: relative;
    width: 100%;
}
.onybee-hero__slide {
    display: none;
    text-align: left;
    padding: 0;
    max-width: 100%;
}
.onybee-hero__slide.is-active { display: block; }
.onybee-hero__title {
    font-size: clamp(2rem, 4.3vw, 3.875rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--onybee-gray-900);
    margin: 0 0 0.875rem;
    max-width: 100%;
}
.onybee-hero__title-accent {
    color: var(--onybee-green);
}
.onybee-hero__text {
    font-size: 1rem;
    line-height: 1.62;
    color: var(--onybee-gray-600);
    margin: 0 0 1.125rem;
    max-width: 32rem;
}
.onybee-hero__cta {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(0, 104, 56, 0.35);
}
.onybee-hero__cta:hover {
    border-bottom-color: var(--onybee-green);
}
.onybee-hero__mark {
    display: none;
    min-width: 0;
    justify-self: end;
    align-self: center;
}
.onybee-hero__mark-img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    object-position: center right;
    opacity: 0.94;
}
.onybee-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
}
.onybee-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--onybee-gray-400);
    cursor: pointer;
    transition: background var(--onybee-transition), transform var(--onybee-transition);
}
.onybee-hero__dot.is-active { background: var(--onybee-green); transform: scale(1.1); }
.onybee-hero__dot:focus-visible { outline: 2px solid var(--onybee-green); outline-offset: 2px; }

@media (min-width: 992px) {
    .onybee-hero:not(.onybee-hero--no-logo) .onybee-hero__grid {
        grid-template-columns: minmax(0, 45%) minmax(0, 55%);
        column-gap: 48px;
        row-gap: 0;
        max-width: none;
    }
    .onybee-hero:not(.onybee-hero--no-logo) .onybee-hero__mark {
        display: block;
    }
    .onybee-hero--no-logo .onybee-hero__content {
        max-width: 40rem;
    }
    .onybee-hero__title {
        font-size: clamp(3rem, 4.3vw, 3.875rem);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .onybee-hero,
    .onybee-hero__shell {
        min-height: 400px;
    }
    .onybee-hero:not(.onybee-hero--no-logo) .onybee-hero__grid {
        grid-template-columns: minmax(0, 45%) minmax(0, 55%);
        column-gap: 32px;
        max-width: none;
    }
    .onybee-hero:not(.onybee-hero--no-logo) .onybee-hero__mark {
        display: block;
    }
    .onybee-hero__mark-img {
        max-width: 340px;
    }
    .onybee-hero__title {
        font-size: clamp(2rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 991px) {
    .onybee-hero__wave {
        opacity: 0.65;
    }
    .onybee-hero__wave-svg {
        bottom: 12%;
        height: 46%;
    }
}

@media (max-width: 767px) {
    .onybee-hero {
        min-height: 0;
    }
    .onybee-hero__shell {
        min-height: 0;
        width: calc(100% - 2.5rem);
        max-width: none;
        padding-block: 1rem 2.5rem;
        align-items: flex-start;
    }
    .onybee-hero__grid {
        gap: 0;
        max-width: none;
    }
    .onybee-hero__mark {
        display: none !important;
    }
    .onybee-hero__content {
        max-width: none;
    }
    .onybee-hero__title {
        font-size: clamp(1.625rem, 6.8vw, 2rem);
        line-height: 1.16;
        margin-bottom: 0.75rem;
    }
    .onybee-hero__text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
        line-height: 1.55;
        max-width: none;
    }
    .onybee-hero__dots {
        bottom: 14px;
    }
    .onybee-hero__cta {
        min-height: 44px;
        align-items: center;
    }
    .onybee-hero__wave {
        opacity: 0.45;
    }
}

@media (prefers-reduced-motion: reduce) {
    .onybee-hero__slide { transition: none; }
}

.onybee-text-green { color: var(--onybee-green); }

/* Homepage brand logo carousel — compact strip */
.onybee-brand-band {
    position: relative;
    background: var(--onybee-white);
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(229, 231, 235, 0.55);
    border-bottom: 1px solid rgba(229, 231, 235, 0.45);
}
.onybee-brand-band__inner {
    min-height: 72px;
    max-height: 84px;
    display: flex;
    align-items: center;
    padding-block: 0.625rem;
}
.onybee-brand-band::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg, rgba(236, 246, 240, 0.22) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0) 65%, rgba(243, 244, 246, 0.18) 100%);
}

.onybee-brand-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
}

.onybee-brand-carousel__viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding-inline: 0.25rem;
}

.onybee-brand-carousel__track,
.onybee-brand-carousel__static {
    list-style: none;
    margin: 0;
    padding: 0;
}

.onybee-brand-carousel__track > li,
.onybee-brand-carousel__static > li {
    list-style: none;
}

.onybee-brand-carousel__track {
    display: flex;
    align-items: center;
    width: max-content;
    padding-inline: 1.25rem;
    animation: onybee-brand-scroll 36s linear infinite;
    will-change: transform;
}

.onybee-brand-carousel:hover .onybee-brand-carousel__track {
    animation-play-state: paused;
}

.onybee-brand-carousel.is-paused .onybee-brand-carousel__track {
    animation-play-state: paused;
}

@keyframes onybee-brand-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.onybee-brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.75rem;
    border-right: 1px solid rgba(229, 231, 235, 0.9);
}

.onybee-brand-logo:last-child {
    border-right: none;
}

.onybee-brand-logo img {
    display: block;
    max-width: 88px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity var(--onybee-transition);
}

/* Optical logo balance */
.onybee-brand-logo--samsung img { max-height: 24px; max-width: 96px; }
.onybee-brand-logo--sony img { max-height: 20px; }
.onybee-brand-logo--canon img { max-height: 22px; }
.onybee-brand-logo--huawei img { max-height: 26px; max-width: 82px; }
.onybee-brand-logo--apple img { max-height: 26px; }
.onybee-brand-logo--xiaomi img { max-height: 24px; }
.onybee-brand-logo--lenovo img { max-height: 22px; }
.onybee-brand-logo--dji img { max-height: 22px; }
.onybee-brand-logo--philips img { max-height: 24px; }
.onybee-brand-logo--jbl img { max-height: 26px; }

.onybee-brand-carousel:hover .onybee-brand-logo img {
    opacity: 1;
}

.onybee-brand-carousel__wordmark {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--onybee-gray-600);
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
}

.onybee-brand-logo--placeholder img {
    opacity: 0.45;
}

.onybee-brand-carousel__static {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.25rem;
    align-items: center;
    justify-items: center;
    width: min(100% - 2.5rem, var(--onybee-container));
    margin-inline: auto;
}

@media (min-width: 768px) {
    .onybee-brand-band__inner {
        min-height: 80px;
        max-height: 88px;
        padding-block: 0.75rem;
    }

    .onybee-brand-logo {
        height: 44px;
        padding: 0 2rem;
    }

    .onybee-brand-logo img {
        max-width: 96px;
        max-height: 30px;
    }

    .onybee-brand-carousel__static {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .onybee-brand-carousel__viewport {
        display: none;
    }

    .onybee-brand-carousel__static {
        display: grid;
    }

    .onybee-brand-carousel__track {
        animation: none;
    }
}

/* Inner /brands page grid */
.onybee-section--brands,
.onybee-container--brands {
    overflow-x: clip;
    max-width: 100%;
}

.onybee-brand-grid,
.onybee-brand-grid--page {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.onybee-brand-grid > .onybee-brand-item,
.onybee-brand-grid--page > .onybee-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    min-height: 58px;
    padding: 0.5rem 0.375rem;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 10px;
    background: var(--onybee-white);
}

.onybee-brand-grid .onybee-brand-item__logo-box,
.onybee-brand-grid--page .onybee-brand-item__logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 36px;
    overflow: hidden;
}

.onybee-brand-grid .onybee-brand-item__logo,
.onybee-brand-grid--page .onybee-brand-item__logo,
.onybee-brand-grid .onybee-brand-item > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 28px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.onybee-brand-grid .onybee-brand-wordmark,
.onybee-brand-grid--page .onybee-brand-wordmark {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--onybee-gray-700);
    letter-spacing: 0.01em;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.25;
    padding-inline: 0.2rem;
}

@media (min-width: 768px) {
    .onybee-brand-grid,
    .onybee-brand-grid--page {
        gap: 0.875rem 1rem;
    }
    .onybee-brand-grid > .onybee-brand-item,
    .onybee-brand-grid--page > .onybee-brand-item {
        min-height: 68px;
        padding: 0.625rem 0.5rem;
    }
    .onybee-brand-grid .onybee-brand-item__logo-box,
    .onybee-brand-grid--page .onybee-brand-item__logo-box {
        height: 40px;
    }
    .onybee-brand-grid .onybee-brand-item__logo,
    .onybee-brand-grid--page .onybee-brand-item__logo,
    .onybee-brand-grid .onybee-brand-item > img {
        max-height: 32px;
    }
}

@media (min-width: 992px) {
    .onybee-brand-grid,
    .onybee-brand-grid--page {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* About teaser — left-aligned hierarchy */
.onybee-about-teaser {
    text-align: left;
    max-width: 640px;
    margin: 0;
    padding: 0;
}
.onybee-section--about-home {
    padding-top: clamp(3rem, 4.5vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    background: var(--onybee-bg);
}
.onybee-about-teaser__title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.04em;
    margin: 0 0 0.75rem;
}
.onybee-about-teaser__title-muted {
    color: var(--onybee-gray-700);
}
.onybee-about-teaser__title-accent {
    color: var(--onybee-green);
    margin-left: 0.35rem;
}
.onybee-about-teaser__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--onybee-gray-900);
    margin: 0 0 0.875rem;
    letter-spacing: -0.015em;
}
.onybee-about-teaser__text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--onybee-gray-600);
    margin: 0 0 1.25rem;
    max-width: 34rem;
}
.onybee-about-teaser__cta {
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .onybee-section--about-home {
        padding-top: 3rem;
        padding-bottom: 2.5rem;
    }
}

/* Category cards — compact homepage grid */
.onybee-section--categories {
    padding-top: clamp(2.5rem, 4vw, 3.25rem);
    padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
}
.onybee-section-head--compact {
    margin-bottom: 1.5rem;
}
.onybee-section-title--compact {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0;
}
.onybee-section-head--compact .onybee-section-lead {
    margin-top: 0.55rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 38rem;
    text-transform: none;
    letter-spacing: 0;
}
.onybee-home-more {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 0;
}

.onybee-cat-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.onybee-cat-grid--home {
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .onybee-cat-grid,
    .onybee-cat-grid--home { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 992px) {
    .onybee-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .onybee-cat-grid--home { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.onybee-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 132px;
    padding: 1.375rem 1.5rem 1.25rem;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    background: var(--onybee-white);
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.22s ease, transform 0.22s ease;
}
.onybee-cat-card::before {
    content: '';
    position: absolute;
    right: -8%;
    bottom: -22%;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 104, 56, 0.08) 0%, transparent 62%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.onybee-cat-card::after {
    content: '';
    position: absolute;
    right: 6%;
    bottom: 8%;
    width: 42%;
    height: 28%;
    border: none;
    border-bottom: 1px solid rgba(0, 104, 56, 0.1);
    border-radius: 0 0 100% 100% / 0 0 80% 80%;
    box-shadow:
        0 10px 0 -8px rgba(107, 114, 128, 0.06),
        0 20px 0 -17px rgba(0, 104, 56, 0.05);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}
.onybee-cat-card:hover {
    border-color: rgba(0, 104, 56, 0.45);
    transform: translateY(-2px);
}
.onybee-cat-card__name,
.onybee-cat-card__brands,
.onybee-cat-card__link {
    position: relative;
    z-index: 1;
}
.onybee-cat-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: var(--onybee-gray-900);
    letter-spacing: -0.015em;
}
.onybee-cat-card__brands {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--onybee-gray-600);
    margin: 0 0 auto;
    padding-bottom: 0.75rem;
}
.onybee-cat-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--onybee-green);
    transition: transform 0.22s ease, color 0.22s ease;
}
.onybee-cat-card:hover .onybee-cat-card__link {
    color: var(--onybee-green-dark);
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .onybee-cat-card,
    .onybee-cat-card__link { transition: none; }
    .onybee-cat-card:hover { transform: none; }
    .onybee-cat-card:hover .onybee-cat-card__link { transform: none; }
}

.onybee-section--categories .onybee-section-head {
    max-width: none;
}

.onybee-section--oem-home {
    padding-top: clamp(2.5rem, 4vw, 3.25rem);
    padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

/* Homepage OEM — compact horizontal feature panel */
.onybee-oem-panel--band {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 0;
    padding: 1.5rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--onybee-white) 0%, #F5F7F6 52%, #EEF5F1 100%);
    border: 1px solid rgba(229, 231, 235, 0.85);
    overflow: hidden;
    isolation: isolate;
}
.onybee-oem-panel__wave {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(26%, 180px);
    height: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}
.onybee-oem-panel__wave svg {
    display: block;
    width: 100%;
    height: 100%;
}
.onybee-oem-panel--band .onybee-oem-panel__content,
.onybee-oem-panel--band .onybee-oem-panel__action,
.onybee-oem-panel--band .onybee-oem-panel__divider {
    position: relative;
    z-index: 1;
}
.onybee-oem-panel__title {
    font-size: clamp(1.375rem, 2.2vw, 1.875rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    white-space: nowrap;
}
.onybee-oem-panel__title-muted {
    color: var(--onybee-gray-700);
}
.onybee-oem-panel__title-accent {
    color: var(--onybee-green);
    margin-left: 0.2rem;
}
.onybee-oem-panel__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--onybee-gray-600);
    max-width: none;
}
.onybee-oem-panel__divider {
    display: none;
}
.onybee-oem-panel__action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.onybee-oem-panel__cta {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .onybee-oem-panel.onybee-oem-panel--band {
        grid-template-columns: minmax(0, 1fr) 1px auto;
        gap: 0 2rem;
        min-height: 140px;
        max-height: none;
        padding: 1.75rem 2.25rem;
        align-items: center;
    }
    .onybee-oem-panel--band .onybee-oem-panel__content {
        max-width: none;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        gap: 0;
    }
    .onybee-oem-panel__text {
        max-width: 46rem;
    }
    .onybee-oem-panel__divider {
        display: block;
        width: 1px;
        height: 56%;
        min-height: 48px;
        max-height: 72px;
        align-self: center;
        justify-self: center;
        background: #DDE2DF;
    }
    .onybee-oem-panel__action {
        justify-content: flex-end;
        align-self: center;
        padding-left: 0.25rem;
    }
}

@media (min-width: 992px) {
    .onybee-oem-panel.onybee-oem-panel--band {
        min-height: 148px;
        padding: 1.875rem 2.5rem;
        gap: 0 2.25rem;
    }
    .onybee-oem-panel__title {
        font-size: clamp(1.75rem, 2.2vw, 2.125rem);
        margin-bottom: 0.625rem;
    }
    .onybee-oem-panel__text {
        font-size: 1rem;
        line-height: 1.65;
    }
}

@media (max-width: 767px) {
    .onybee-oem-panel--band {
        padding: 0.875rem 1rem;
    }
    .onybee-oem-panel__title {
        white-space: normal;
    }
    .onybee-oem-panel__wave {
        width: 32%;
        opacity: 0.4;
    }
}

@media (max-width: 430px) {
    .onybee-oem-panel__wave {
        display: none;
    }
}

/* Legacy OEM panel (inner pages) */
.onybee-oem-panel {
    position: relative;
    display: grid;
    gap: 1.75rem;
    align-items: center;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3rem);
    border-radius: var(--onybee-radius-lg);
    background: linear-gradient(135deg, #F7FAF8 0%, #F3F4F6 58%, #FAFBFC 100%);
    border: 1px solid rgba(229, 231, 235, 0.9);
    overflow: hidden;
    isolation: isolate;
}
.onybee-oem-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -8%;
    width: 45%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 104, 56, 0.06) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.onybee-oem-panel::after {
    content: '';
    position: absolute;
    right: -6%;
    bottom: -40%;
    width: 38%;
    height: 95%;
    border-radius: 50%;
    border: 1px solid rgba(0, 104, 56, 0.08);
    box-shadow: 0 -18px 0 -14px rgba(107, 114, 128, 0.06);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}
.onybee-oem-panel__content,
.onybee-oem-panel__action {
    position: relative;
    z-index: 1;
}
.onybee-oem-panel__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin: 0 0 0.875rem;
    color: var(--onybee-gray-900);
}
.onybee-oem-panel__content .onybee-section-lead {
    max-width: 38rem;
    margin: 0;
}
.onybee-oem-panel__action {
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .onybee-oem-panel:not(.onybee-oem-panel--band) {
        grid-template-columns: 1fr auto;
        gap: 2.5rem;
    }
    .onybee-oem-panel__action {
        justify-content: flex-end;
    }
}

/* Legacy OEM block (inner pages) */
.onybee-oem-teaser {
    border-left: 2px solid var(--onybee-green);
    padding: 2rem 0 2rem 1.75rem;
    max-width: 640px;
}
.onybee-oem-teaser h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

/* Network teaser */
.onybee-network-teaser {
    max-width: 640px;
    padding-top: 0.25rem;
}
.onybee-network-teaser__divider {
    width: 100%;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--onybee-green) 0%, rgba(229, 231, 235, 0.4) 100%);
    margin: 0 0 1.5rem;
    border: none;
}
.onybee-network-teaser__locations {
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--onybee-gray-900);
    margin: 0 0 0.875rem;
}
.onybee-network-teaser .onybee-section-lead {
    max-width: 34rem;
}

/* Contact CTA band */
.onybee-cta-band.onybee-cta-band--compact {
    position: relative;
    text-align: center;
    padding: clamp(2rem, 3.5vw, 2.75rem) 0;
    background: var(--onybee-bg);
    overflow: hidden;
}
.onybee-cta-band--compact::before {
    display: none;
}
.onybee-cta-band--compact .onybee-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
}
.onybee-cta-band__title {
    font-size: clamp(1.625rem, 2.5vw, 2.125rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    max-width: 24ch;
    letter-spacing: -0.02em;
}
.onybee-cta-band__lead {
    margin: 0;
    max-width: 34rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--onybee-gray-600);
}
.onybee-cta-band__btn {
    min-height: 42px;
    padding-inline: 1.35rem;
}

.onybee-cta-band {
    position: relative;
    text-align: center;
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: var(--onybee-bg);
    overflow: hidden;
}
.onybee-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 50% 100%, rgba(0, 104, 56, 0.05) 0%, transparent 70%),
        linear-gradient(105deg, transparent 49.8%, rgba(107, 114, 128, 0.025) 50%, transparent 50.2%);
    background-size: 100% 100%, 120px 120px;
    pointer-events: none;
}
.onybee-cta-band::after {
    content: '';
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 680px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 231, 235, 0.8), transparent);
    pointer-events: none;
}
.onybee-cta-band .onybee-container {
    position: relative;
    z-index: 1;
}
.onybee-cta-band h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 auto 1rem;
    max-width: 22ch;
    letter-spacing: -0.025em;
}
.onybee-cta-band p {
    color: var(--onybee-gray-600);
    line-height: 1.65;
    max-width: 34rem;
    margin: 0 auto 1.75rem;
}

/* Footer — brand + Explore / Legal */
.onybee-footer {
    background: var(--onybee-white);
    border-top: 1px solid rgba(229, 231, 235, 0.9);
    padding: clamp(2rem, 4vw, 2.75rem) 0 1.25rem;
}
.onybee-footer__grid {
    display: grid;
    gap: 1.75rem 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .onybee-footer__grid { grid-template-columns: 1fr 1fr; }
    .onybee-footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 992px) {
    .onybee-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .onybee-footer__brand { grid-column: auto; }
}
.onybee-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
}
.onybee-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}
.onybee-footer__contact a {
    color: var(--onybee-gray-900);
    text-decoration: none;
}
.onybee-footer__contact a:hover {
    color: var(--onybee-green);
}
.onybee-footer__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--onybee-gray-900);
}
.onybee-footer__logo {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}
.onybee-footer__logo img {
    display: block;
    width: clamp(118px, 10vw, 152px);
    height: auto;
    max-height: 32px;
    object-fit: contain;
}
.onybee-footer h3 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--onybee-gray-900);
    margin: 0 0 1rem;
}
.onybee-footer p,
.onybee-footer li,
.onybee-footer a {
    font-size: 0.9375rem;
    color: var(--onybee-gray-900);
    line-height: 1.65;
}
.onybee-footer ul { list-style: none; margin: 0; padding: 0; }
.onybee-footer li { margin-bottom: 0.45rem; }
.onybee-footer li:last-child { margin-bottom: 0; }
.onybee-footer a { text-decoration: none; transition: color var(--onybee-transition); }
.onybee-footer a:hover { color: var(--onybee-green); }
.onybee-footer__desc { margin: 1rem 0 0; max-width: 22rem; font-size: 0.875rem; line-height: 1.65; }
.onybee-footer__bottom {
    margin-top: 1.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.85);
    font-size: 0.8125rem;
    color: var(--onybee-gray-900);
    text-align: center;
}
.onybee-footer__copy,
.onybee-footer__credit {
    margin: 0;
}
.onybee-footer__credit {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--onybee-gray-600);
}
.onybee-footer__credit a {
    color: var(--onybee-gray-900);
    font-weight: 500;
}
.onybee-placeholder-note {
    font-size: 0.8125rem;
    color: var(--onybee-gray-400);
    font-style: italic;
}

/* Inner pages */
.onybee-page-hero {
    padding: 3.5rem 0 2.5rem;
    background: var(--onybee-bg);
    border-bottom: 1px solid var(--onybee-gray-200);
    text-align: center;
}
body.onybee-body:not(.page-home) .onybee-page-hero .onybee-section-lead {
    margin-inline: auto;
}
.onybee-page-hero .onybee-container {
    max-width: 46rem;
}
.onybee-page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin: 0 auto;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.onybee-page-hero .onybee-section-lead {
    margin-inline: auto;
}
.onybee-page-hero .onybee-eyebrow {
    margin-bottom: 0.75rem;
}
.onybee-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    color: var(--onybee-gray-600);
}
.onybee-breadcrumb a { color: var(--onybee-gray-600); text-decoration: none; }
.onybee-breadcrumb a:hover { color: var(--onybee-green); }
.onybee-breadcrumb span { color: var(--onybee-gray-400); margin: 0 0.35rem; }

.onybee-content-stack {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
.onybee-page-feature {
    margin: 0 auto 2.5rem;
    max-width: 56rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--onybee-gray-100, #f3f4f6);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.onybee-page-feature img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}
.onybee-page-article {
    max-width: 42rem;
    margin-inline: auto;
}
.onybee-page-body {
    max-width: none;
    color: var(--onybee-gray-600);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0;
    text-align: left;
}
.onybee-page-body:last-child {
    margin-bottom: 0;
}
.onybee-page-body--contact {
    margin-bottom: 0;
}
.onybee-page-article + .onybee-contact-grid,
.onybee-page-article + .onybee-location-card,
.onybee-page-feature + .onybee-contact-grid {
    margin-top: 2.5rem;
}
.onybee-page-cta {
    margin: 2.25rem 0 0;
    text-align: center;
}
.onybee-page-body > p:first-child {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--onybee-gray-700, #374151);
}
.onybee-page-body h2,
.onybee-richtext h2 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 2rem 0 0.75rem;
    color: var(--onybee-gray-900);
}
.onybee-page-body h2 {
    position: relative;
    padding-left: 0.9rem;
}
.onybee-page-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.28em;
    width: 3px;
    height: 0.85em;
    background: var(--onybee-green);
    border-radius: 2px;
}
.onybee-page-body h2:first-child,
.onybee-richtext h2:first-child {
    margin-top: 0;
}
.onybee-page-body h3,
.onybee-richtext h3 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 1.5rem 0 0.625rem;
    color: var(--onybee-gray-900);
}
@media (min-width: 768px) {
    .onybee-content-stack {
        gap: 2rem 2.5rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .onybee-content-stack .onybee-content-block:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}
.onybee-content-block {
    max-width: none;
    margin-bottom: 0;
}
.onybee-content-block h2 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem;
    color: var(--onybee-gray-900);
}
.onybee-content-block p,
.onybee-richtext p {
    color: var(--onybee-gray-600);
    margin: 0 0 1rem;
    line-height: 1.65;
}
.onybee-content-block p:last-child,
.onybee-richtext p:last-child {
    margin-bottom: 0;
}
.onybee-content-block .onybee-richtext + .onybee-richtext {
    margin-top: 1rem;
}
.onybee-content-block ul,
.onybee-content-block ol,
.onybee-richtext ul,
.onybee-richtext ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    line-height: 1.65;
    color: var(--onybee-gray-600);
}
.onybee-content-block ul:last-child,
.onybee-content-block ol:last-child,
.onybee-richtext ul:last-child,
.onybee-richtext ol:last-child {
    margin-bottom: 0;
}
.onybee-content-block a,
.onybee-richtext a {
    color: var(--onybee-green);
}
.onybee-section-lead.onybee-richtext {
    max-width: 42rem;
}
.onybee-section-lead.onybee-richtext p {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0 0 0.75rem;
}
.onybee-section-lead.onybee-richtext p:last-child {
    margin-bottom: 0;
}

.onybee-filter {
    margin-bottom: 2rem;
    max-width: 280px;
}
.onybee-filter label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--onybee-gray-600);
    margin-bottom: 0.35rem;
}
.onybee-filter select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--onybee-gray-200);
    border-radius: var(--onybee-radius);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--onybee-gray-900);
    background: var(--onybee-white);
}

.onybee-location-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--onybee-gray-200);
}
.onybee-location-card:last-child { border-bottom: none; }
.onybee-location-card h2,
.onybee-location-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--onybee-gray-900);
}

/* Contact page */
.onybee-contact-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 992px) {
    .onybee-contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.onybee-contact-form {
    background: var(--onybee-white);
    border: 1px solid var(--onybee-gray-200);
    border-radius: var(--onybee-radius);
    padding: 2rem;
}
.onybee-form-group { margin-bottom: 1.25rem; }
.onybee-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--onybee-gray-700);
}
.onybee-form-group input,
.onybee-form-group textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--onybee-gray-200);
    border-radius: var(--onybee-radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--onybee-gray-900);
    background: var(--onybee-white);
}
.onybee-form-group input:focus,
.onybee-form-group textarea:focus,
.onybee-filter select:focus {
    outline: 2px solid var(--onybee-green);
    outline-offset: 1px;
    border-color: var(--onybee-green);
}
.onybee-form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 576px) {
    .onybee-form-row { grid-template-columns: 1fr 1fr; }
}
.onybee-alert {
    padding: 0.875rem 1rem;
    border-radius: var(--onybee-radius);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}
.onybee-alert--success {
    background: var(--onybee-green-light);
    color: var(--onybee-green);
    border: 1px solid rgba(0, 104, 56, 0.2);
}
.onybee-alert--error {
    background: var(--onybee-gray-100);
    color: var(--onybee-gray-700);
    border: 1px solid var(--onybee-gray-200);
}
.onybee-form-error {
    font-size: 0.8125rem;
    color: var(--onybee-gray-700);
    margin-top: 0.25rem;
}
.onybee-form-group input.is-invalid,
.onybee-form-group textarea.is-invalid {
    border-color: var(--onybee-gray-700);
}

/* Focus visible globally */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--onybee-green);
    outline-offset: 2px;
}

/* Utility */
.onybee-text-center { text-align: center; }
.onybee-mt-section { margin-top: 2rem; }
.onybee-hidden { display: none !important; }
.onybee-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 767px) {
    .onybee-cat-grid,
    .onybee-cat-grid--home {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.625rem;
    }
    .onybee-cat-grid .onybee-cat-card {
        min-width: 0;
        width: auto;
    }
    .onybee-brand-grid,
    .onybee-brand-grid--page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .onybee-brand-grid > .onybee-brand-item,
    .onybee-brand-grid--page > .onybee-brand-item {
        min-height: 52px;
        padding: 0.4375rem 0.3125rem;
    }
    .onybee-brand-grid .onybee-brand-item__logo-box,
    .onybee-brand-grid--page .onybee-brand-item__logo-box {
        height: 30px;
    }
    .onybee-brand-grid .onybee-brand-item__logo,
    .onybee-brand-grid--page .onybee-brand-item__logo,
    .onybee-brand-grid .onybee-brand-item > img {
        max-height: 22px;
    }
    .onybee-brand-grid .onybee-brand-wordmark,
    .onybee-brand-grid--page .onybee-brand-wordmark {
        font-size: 0.6875rem;
    }
    .onybee-filter {
        max-width: 100%;
    }
    .onybee-cat-card {
        min-height: 0;
        padding: 1rem 0.875rem 0.875rem;
    }
    .onybee-cat-card__name {
        font-size: 0.9375rem;
        margin-bottom: 0.35rem;
    }
    .onybee-cat-card__brands {
        font-size: 0.6875rem;
        line-height: 1.45;
        padding-bottom: 0.5rem;
    }
    .onybee-cat-card__link {
        font-size: 0.8125rem;
    }
    .onybee-cat-card::before {
        opacity: 0.35;
        right: -20%;
        bottom: -35%;
    }
    .onybee-cat-card::after {
        opacity: 0.45;
        width: 48%;
        height: 36%;
    }
    .onybee-oem-panel {
        padding: 1.625rem 1.375rem;
    }
    .onybee-oem-panel__action {
        justify-content: flex-start;
    }
    .onybee-oem-panel__action .onybee-btn {
        min-height: 44px;
        width: 100%;
        max-width: 280px;
    }
    .onybee-cta-band h2 {
        max-width: none;
    }

    .onybee-brand-band::before,
    .onybee-brand-band::after {
        opacity: 0.55;
    }
}

@media (max-width: 320px) {
    .onybee-container {
        width: min(100% - 1.5rem, var(--onybee-container));
    }
}

.onybee-brand-grid[data-filter-active] .onybee-brand-item.is-hidden { display: none; }

/* Cookie / KVKK first-visit bar */
.onybee-cookie {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: var(--onybee-white);
    border-top: 1px solid rgba(229, 231, 235, 0.95);
    box-shadow: 0 -8px 28px rgba(26, 26, 26, 0.08);
    padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
}
.onybee-cookie.is-visible {
    display: block;
}
.onybee-cookie__inner {
    width: min(100% - 2.5rem, var(--onybee-container));
    margin-inline: auto;
    display: grid;
    gap: 0.75rem 1.25rem;
}
.onybee-cookie__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--onybee-gray-700);
}
.onybee-cookie__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.8125rem;
}
.onybee-cookie__links a {
    color: var(--onybee-green);
    text-decoration: none;
    font-weight: 500;
}
.onybee-cookie__links a:hover {
    text-decoration: underline;
}
.onybee-cookie__links span {
    color: var(--onybee-gray-400);
}
.onybee-cookie__prefs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem 0.875rem;
    background: var(--onybee-gray-50);
    border: 1px solid var(--onybee-gray-200);
    border-radius: var(--onybee-radius-sm);
}
.onybee-cookie__prefs[hidden] {
    display: none !important;
}
.onybee-cookie__opt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--onybee-gray-700);
}
.onybee-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .onybee-cookie__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }
    .onybee-cookie__links {
        grid-column: 1;
    }
    .onybee-cookie__prefs {
        grid-column: 1 / -1;
    }
    .onybee-cookie__actions {
        grid-column: 2;
        grid-row: 1 / span 2;
        justify-content: flex-end;
        align-self: center;
    }
}
