:root {
    --core-e-header-h: 82px;
    --core-e-charcoal: #15191d;
    --core-e-black: #0a0c0f;
    --core-e-blue: #477895;
    --core-e-orange: #f47b20;
    --core-e-white: #ffffff;
    --core-e-border: #dfe5e8;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--core-e-charcoal);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

body.admin-bar .core-e-site-header {
    top: 32px;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.core-e-skip {
    position: absolute;
    left: 16px;
    top: -120px;
    z-index: 999;
    background: var(--core-e-orange);
    color: var(--core-e-black);
    padding: 10px 14px;
    border-radius: 6px;
}

.core-e-skip:focus {
    top: 16px;
}

.core-e-site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(21, 25, 29, 0.1);
    backdrop-filter: blur(12px);
}

.core-e-header-inner {
    min-height: var(--core-e-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 max(20px, calc((100vw - 1180px) / 2));
}

.core-e-brand img,
.custom-logo {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 58px;
    object-fit: contain;
}

.core-e-nav,
.core-e-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.core-e-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.core-e-menu a {
    text-decoration: none;
    font-weight: 750;
    font-size: 0.96rem;
}

.core-e-header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--core-e-orange);
    color: var(--core-e-black);
    padding: 10px 16px;
    font-weight: 850;
    text-decoration: none;
}

.core-e-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--core-e-border);
    border-radius: 6px;
    background: #ffffff;
    padding: 11px;
}

.core-e-menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--core-e-charcoal);
}

.core-e-site-main {
    min-height: 60vh;
}

.core-e-site-footer {
    background: var(--core-e-black);
    color: var(--core-e-white);
}

.core-e-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    padding: 44px max(24px, calc((100vw - 1180px) / 2));
}

.core-e-footer-logo img {
    width: 180px;
    max-height: 70px;
    object-fit: contain;
    border-radius: 6px;
}

.core-e-footer-inner nav {
    display: grid;
    gap: 10px;
}

.core-e-footer-inner a {
    text-decoration: none;
}

.core-e-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px max(24px, calc((100vw - 1180px) / 2));
    color: rgba(255, 255, 255, 0.72);
}

.core-e-mobile-contact {
    display: none;
}

.woocommerce div.product {
    padding: clamp(32px, 5vw, 72px) max(24px, calc((100vw - 1180px) / 2));
}

.woocommerce div.product div.images img {
    border-radius: 8px;
}

.woocommerce div.product .product_title {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

@media (max-width: 782px) {
    body.admin-bar .core-e-site-header {
        top: 46px;
    }
}

@media (max-width: 900px) {
    .core-e-menu-toggle {
        display: inline-block;
    }

    .core-e-nav {
        position: fixed;
        inset: var(--core-e-header-h) 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        background: #ffffff;
        padding: 22px 24px;
        border-bottom: 1px solid var(--core-e-border);
        box-shadow: 0 16px 38px rgba(20, 25, 30, 0.12);
    }

    .core-e-nav.is-open {
        display: flex;
    }

    .core-e-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .core-e-header-cta {
        width: 100%;
    }

    .core-e-footer-inner {
        grid-template-columns: 1fr;
    }

    .core-e-mobile-contact {
        position: sticky;
        bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: var(--core-e-charcoal);
        color: var(--core-e-white);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .core-e-mobile-contact a {
        min-height: 48px;
        display: grid;
        place-items: center;
        text-decoration: none;
        font-weight: 800;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 600px) {
    body.admin-bar .core-e-site-header {
        top: 0;
    }
}

