/* ===== SHOP HERO LAYOUT ===== */

.ast-above-header.ast-above-header-bar {
    background-color: transparent!important;
}
body.has-shop-hero #masthead,
body.has-shop-hero .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent !important;
}

/* Remove all white header backgrounds */
body.has-shop-hero .main-header-bar,
body.has-shop-hero .ast-primary-header-bar,
body.has-shop-hero .ast-builder-grid-row-container,
body.has-shop-hero .ast-builder-grid-row,
body.has-shop-hero .site-primary-header-wrap,
body.has-shop-hero .ast-main-header-wrap,
body.has-shop-hero .main-header-menu,
body.has-shop-hero .ast-builder-menu,
body.has-shop-hero .ast-header-break-point .main-header-bar,
body.has-shop-hero .ast-header-break-point .ast-mobile-header-wrap,
body.has-shop-hero .ast-above-header-wrap,
body.has-shop-hero .ast-below-header-wrap {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Remove spacing from content wrappers */
body.has-shop-hero .site-content,
body.has-shop-hero .site-main,
body.has-shop-hero .content-area,
body.has-shop-hero .ast-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hide default WooCommerce archive header */
body.has-shop-hero .woocommerce-products-header {
    display: none !important;
}

/* Full width hero */
body.has-shop-hero .shop-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9c8a7;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    /* Full bleed */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 30px;

    /* Space for header overlay */
    padding-top: 170px;
    padding-bottom: 90px;
}

/* Overlay */
body.has-shop-hero .shop-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(35, 35, 35, 0.35) 0%,
        rgba(214, 168, 90, 0.35) 100%
    );
}

/* Content */
body.has-shop-hero .shop-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px 20px 0;
}

body.has-shop-hero .shop-hero__title {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* Header links over hero */
/* body.has-shop-hero .main-header-menu > .menu-item > a,
body.has-shop-hero .ast-builder-menu-1 .menu-item > .menu-link,
body.has-shop-hero .ast-custom-button-link,
body.has-shop-hero .ast-cart-menu-wrap,
body.has-shop-hero .astra-icon,
body.has-shop-hero .site-title a {
    color: #fff !important;
} */

/* Active menu item */
body.has-shop-hero .main-header-menu > .current-menu-item > a,
body.has-shop-hero .main-header-menu > .current_page_item > a {
    color: #d7a64b !important;
}