/* Custom header adjustments */
.header-wishlist-icon a,
.header-cart-icon a {
    position: relative;
    display: inline-block;
}

.header-wishlist-icon .cart-count,
.header-cart-icon .cart-count {
    position: absolute;
    top: -7px;
    right: -11px;
    width: 17px;
    height: 17px;
    font-weight: 600;
    text-align: center;
    font-size: 10px;
    line-height: 18px;
    background-color: var(--base-color);
    color: var(--white);
    border-radius: 100%;
}

/* Header logo: same position for default, alt (sticky) and mobile – no repositioning on scroll */
header .navbar-brand {
    position: relative;
    min-height: 46px;
    min-width: 146px;
    width: fit-content;
    display: flex;
    align-items: center;
}
header .navbar-brand img.default-logo,
header .navbar-brand img.alt-logo,
header .navbar-brand img.mobile-logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 46px !important;
    width: auto !important;
    max-height: 46px !important;
    max-width: 200px;
    object-fit: contain;
    display: inline-block !important;
}
/* In fixed/sticky header: hide default-logo with display none so it doesn't reserve space */
header.sticky.sticky-active .navbar-brand img.default-logo {
    display: none !important;
}

/* Promo banner: overlay and background position for mobile readability (override .cover-background) */
.promo-banner-col.cover-background {
    background-position: left center !important;
}
.promo-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
    pointer-events: none;
}
.promo-banner-content {
    z-index: 2;
}

/* Promo banner content: full width and centered on mobile only */
@media (max-width: 767px) {
    .promo-banner-col .promo-banner-content {
        width: 100% !important;
        max-width: 100%;
        float: none;
        text-align: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .promo-banner-col .promo-banner-content .btn {
        display: inline-block;
    }
}

