/* =============================
   Peri Base Header Styles
   Used across all page types (main-store, product-pages)
   ============================= */

.peri-custom-header {
    background-color: var(--solera-jacarta);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Adjust sticky header position when WordPress admin bar is visible */
body.admin-bar .peri-custom-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .peri-custom-header {
        top: 46px;
    }
}

.peri-header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    line-height: 70px;
    height: 70px;
}

.peri-header-logo {
    display: flex;
    align-items: center;
}

.peri-logo-img {
    max-height: 55px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .peri-header-content {
        justify-content: center;
    }
}
