:root {
    --gbj-black: #0d0d0d;
    --gbj-panel: #171717;
    --gbj-panel-2: #222;
    --gbj-orange: #ff6a00;
    --gbj-orange-soft: #ff9d4d;
    --gbj-text: #f8f4ef;
    --gbj-muted: #b9b1aa;
    --gbj-border: rgba(255, 255, 255, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--gbj-black);
    color: var(--gbj-text);
    font-family: "Poppins", system-ui, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(13, 13, 13, .92);
    border-bottom: 1px solid var(--gbj-border);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--gbj-orange);
    color: #111;
    font-weight: 800;
    border-radius: 8px;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--gbj-orange-soft);
    font-size: 12px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    color: var(--gbj-muted);
    font-weight: 600;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--gbj-orange);
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: clamp(72px, 11vw, 140px) clamp(20px, 6vw, 92px);
    background-position: center;
    background-size: cover;
}

.hero-content {
    width: min(680px, 100%);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gbj-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    line-height: 1.05;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 116px);
    max-width: 8ch;
}

.tagline {
    margin: 18px 0 0;
    color: var(--gbj-text);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
}

.hero-actions,
.wc-block-components-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.hero-actions {
    gap: 12px;
    margin-top: 32px;
    padding: 0;
}

.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button {
    background: var(--gbj-orange) !important;
    color: #111 !important;
}

.button-secondary {
    border-color: var(--gbj-border);
    color: var(--gbj-text);
}

.feature-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gbj-border);
    border-top: 1px solid var(--gbj-border);
    border-bottom: 1px solid var(--gbj-border);
}

.feature-band article {
    padding: 26px clamp(18px, 4vw, 52px);
    background: var(--gbj-panel);
}

.feature-band strong,
.feature-band span {
    display: block;
}

.feature-band strong {
    color: var(--gbj-orange);
    font-size: 20px;
}

.feature-band span {
    color: var(--gbj-muted);
}

.home-menu-preview,
.shop-shell,
.page-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(44px, 7vw, 88px) 0;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.shop-hero h1,
.content-page h1 {
    font-size: clamp(34px, 5vw, 64px);
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 0 18px !important;
    overflow: hidden;
    background: var(--gbj-panel);
    border: 1px solid var(--gbj-border);
    border-radius: 8px;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 0 18px;
}

.woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-product-details__short-description,
.woocommerce ul.products li.product .button {
    margin-left: 18px !important;
    margin-right: 18px !important;
}

.woocommerce-loop-product__title {
    color: var(--gbj-text);
    font-size: 22px !important;
    font-weight: 800;
}

.woocommerce ul.products li.product .price {
    color: var(--gbj-orange);
    font-size: 19px;
    font-weight: 800;
}

.woocommerce-product-details__short-description {
    color: var(--gbj-muted);
    font-size: 14px;
}

.shop-hero {
    margin-bottom: 28px;
}

.shop-hero p:not(.eyebrow) {
    max-width: 680px;
    color: var(--gbj-muted);
}

.shop-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    color: var(--gbj-muted);
}

.woocommerce .quantity .qty {
    min-height: 42px;
    background: #111;
    color: var(--gbj-text);
    border: 1px solid var(--gbj-border);
    border-radius: 8px;
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout,
.content-page,
.contact-panel {
    background: var(--gbj-panel);
    border: 1px solid var(--gbj-border);
    border-radius: 8px;
    padding: clamp(20px, 4vw, 34px);
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border-color: var(--gbj-border);
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    border-color: var(--gbj-border);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.input-text {
    min-height: 46px;
    background: #111;
    color: var(--gbj-text);
    border: 1px solid var(--gbj-border);
    border-radius: 8px;
    padding: 10px 12px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
}

.contact-panel {
    align-self: start;
}

.contact-panel strong,
.contact-panel span {
    display: block;
}

.contact-panel strong {
    margin-top: 18px;
    color: var(--gbj-orange);
}

.contact-panel strong:first-child {
    margin-top: 0;
}

.contact-panel span {
    color: var(--gbj-muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(18px, 4vw, 54px);
    color: var(--gbj-muted);
    border-top: 1px solid var(--gbj-border);
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer a {
    color: var(--gbj-orange);
    font-weight: 800;
    text-decoration: none;
}

.gbj-mobile-cart {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    display: none;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 16px;
    background: var(--gbj-orange);
    color: #111;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .42);
    font-weight: 800;
    text-decoration: none;
}

.gbj-mobile-cart em {
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    background: #111;
    color: var(--gbj-orange);
    border-radius: 999px;
    font-style: normal;
    font-size: 12px;
}

@media (max-width: 800px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav ul {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero {
        min-height: 72vh;
        padding-top: 82px;
    }

    .hero h1 {
        font-size: clamp(42px, 16vw, 70px);
    }

    .feature-band,
    .woocommerce ul.products,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .shop-tools,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .gbj-mobile-cart {
        display: inline-flex;
    }

    body {
        padding-bottom: 78px;
    }
}

