.akaya-header-wrap {
    width: 100%;
    max-width: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.akaya-header-wrap,
.akaya-header-wrap * {
    box-sizing: border-box;
}

.akaya-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: var(--wp--preset--color--base, var(--wp--preset--color--background, inherit));
    border-bottom: 1px solid currentColor;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.akaya-header__inner {
    min-height: 82px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 52px auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.akaya-burger {
    width: 34px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    color: inherit;
}

.akaya-burger span {
    display: block;
    height: 1px;
    background: currentColor;
}

.akaya-logo a,
.akaya-nav a,
.akaya-actions a,
.akaya-mobile-nav a {
    color: inherit;
    text-decoration: none;
}

.akaya-logo img {
    display: block;
    width: 80px;
    max-height: 100px;
    height: auto;
    object-fit: contain;
}

.akaya-logo span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

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

.akaya-nav > ul > li > a,
.akaya-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 82px;
    font-size: 13px;
    line-height: 1;
}

.akaya-nav a:hover,
.akaya-actions a:hover,
.akaya-logo a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.akaya-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.akaya-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    margin-left: 4px;
    padding: 0 4px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
}

.akaya-has-mega {
    position: static;
}

.akaya-mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--wp--preset--color--base, var(--wp--preset--color--background, inherit));
    border-bottom: 1px solid currentColor;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 9998;
}

.akaya-has-mega:hover .akaya-mega,
.akaya-has-mega:focus-within .akaya-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.akaya-mega__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 38px 40px 44px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 44px;
}

.akaya-mega__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.akaya-mega__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.akaya-mega__column a {
    font-size: 13px;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
}

.akaya-mega__column .akaya-mega__heading {
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.akaya-mega__promos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.akaya-promo {
    display: block;
    color: inherit;
    text-decoration: none;
}

.akaya-promo img,
.akaya-promo__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 14px;
    background: #eee;
}

.akaya-promo__title,
.akaya-promo__subtitle {
    display: block;
}

.akaya-promo__title {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
}

.akaya-promo__subtitle {
    color: #666;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

.akaya-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.akaya-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    width: min(420px, 88vw);
    height: 100vh;
    background: var(--wp--preset--color--base, var(--wp--preset--color--background, inherit));
    border-right: 1px solid currentColor;
    transform: translateX(-100%);
    transition: transform .22s ease;
    overflow-y: auto;
}

body.akaya-drawer-open .akaya-drawer-overlay {
    opacity: 1;
    visibility: visible;
}

body.akaya-drawer-open .akaya-drawer {
    transform: translateX(0);
}

.akaya-drawer__top {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 22px;
    border-bottom: 1px solid currentColor;
}

.akaya-drawer__top button {
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.akaya-mobile-nav {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.akaya-mobile-nav a,
.akaya-mobile-nav summary {
    display: block;
    padding: 17px 24px;
    border-bottom: 1px solid #eee;
    color: inherit;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
}

.akaya-mobile-nav details a {
    padding-left: 42px;
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 989px) {
    .akaya-header__inner {
        min-height: 76px;
        padding: 0 20px;
        grid-template-columns: 44px 1fr auto;
        gap: 14px;
    }

    .akaya-burger {
        display: flex;
    }

    .akaya-logo {
        justify-self: center;
    }

    .akaya-logo img {
        max-width: 120px;
        max-height: 64px;
        height: auto;
    }

    .akaya-logo span {
        font-size: 15px;
    }

    .akaya-nav {
        display: none;
    }

    .akaya-actions {
        gap: 10px;
    }

    .akaya-actions a {
        min-height: 76px;
        font-size: 12px;
    }

    .akaya-actions a[aria-label="Account"] {
        display: none;
    }
}

/* Native WordPress block Typography support.
   WordPress applies typography styles to the block wrapper, so the inner header must inherit them. */
.akaya-header-wrap .akaya-header,
.akaya-header-wrap .akaya-header a,
.akaya-header-wrap .akaya-header button,
.akaya-header-wrap .akaya-header summary,
.akaya-header-wrap .akaya-header span,
.akaya-header-wrap .akaya-header li {
    font-family: inherit !important;
    font-style: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-transform: inherit !important;
}

.akaya-header-wrap.has-text-align-left .akaya-header__inner {
    text-align: left;
}

.akaya-header-wrap.has-text-align-center .akaya-header__inner {
    text-align: center;
}

.akaya-header-wrap.has-text-align-right .akaya-header__inner {
    text-align: right;
}

/* WooCommerce Mini Cart block inside Akaya header */
.akaya-cart-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
}

.akaya-cart-block .wc-block-mini-cart,
.akaya-cart-block .wc-block-mini-cart__button {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-family: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

.akaya-cart-block .wc-block-mini-cart__button {
    padding: 0;
    min-height: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.akaya-cart-block .wc-block-mini-cart__button:hover {
    opacity: .75;
}

.akaya-cart-block .wc-block-mini-cart__badge {
    background: currentColor;
}

.akaya-cart-block .wc-block-mini-cart__badge span {
    color: #fff;
}

.akaya-cart-fallback {
    display: inline-flex;
    align-items: center;
    min-height: 82px;
}

@media (max-width: 989px) {
    .akaya-cart-block,
    .akaya-cart-fallback {
        min-height: 76px;
    }
}

/* v1.2: inherit theme background/color and normalize WooCommerce account/cart blocks */
.akaya-header-wrap {
    background: inherit;
    color: inherit;
}

.akaya-header,
.akaya-mega,
.akaya-drawer {
    background: var(--wp--preset--color--base, var(--wp--preset--color--background, inherit));
    color: inherit;
}

.akaya-header {
    border-bottom-color: currentColor;
}

.akaya-mega {
    border-bottom-color: currentColor;
}

.akaya-drawer {
    border-right-color: currentColor;
}

.akaya-actions {
    gap: 14px;
}

.akaya-account-block,
.akaya-cart-block,
.akaya-account-fallback,
.akaya-cart-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    color: inherit;
}

.akaya-account-block a,
.akaya-cart-block a,
.akaya-account-fallback,
.akaya-cart-fallback,
.akaya-account-block button,
.akaya-cart-block button {
    color: inherit !important;
    text-decoration: none !important;
    background: transparent !important;
    border-color: currentColor;
    font: inherit;
}

.akaya-account-block svg,
.akaya-cart-block svg,
.akaya-account-fallback svg,
.akaya-cart-fallback svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.akaya-account-fallback,
.akaya-cart-fallback {
    position: relative;
}

.akaya-cart-fallback .akaya-cart-count,
.akaya-cart-block .wc-block-mini-cart__badge {
    background: currentColor;
}


/* v1.4: no search; WooCommerce account icon + mini cart; inherit colors/background. */
.akaya-header-wrap {
    background: inherit;
    color: inherit;
}

.akaya-header,
.akaya-mega,
.akaya-drawer {
    background: var(--wp--preset--color--base, var(--wp--preset--color--background, inherit));
    color: inherit;
}

.akaya-header,
.akaya-mega,
.akaya-drawer,
.akaya-drawer__top {
    border-color: currentColor;
}

.akaya-account-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    color: inherit;
}

.akaya-account-block .wc-block-customer-account__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit !important;
    text-decoration: none !important;
    background: transparent !important;
}

.akaya-account-block .wc-block-customer-account__account-icon {
    display: block;
    width: 24px;
    height: 24px;
    color: inherit;
}

.akaya-cart-block .wc-block-mini-cart__button {
    color: inherit !important;
}

@media (max-width: 989px) {
    .akaya-account-block {
        min-height: 76px;
    }
}

.akaya-header-wrap,
.akaya-header {
    background: transparent !important;
    background-color: transparent !important;
    color: inherit;
}

.akaya-header a,
.akaya-header button,
.akaya-mega a,
.akaya-drawer a,
.akaya-drawer button {
    color: inherit;
}