/* Shared storefront inner-page title — match cart / checkout / wishlist */

/* Soft pink wash behind any page that uses the title bar */
.main-content:has(.page-title-bar) {
    background:
        radial-gradient(ellipse 70% 45% at 8% 0%, rgba(236, 107, 129, 0.07), transparent 55%),
        #fff;
}

/* Kill Argima `section .container` top padding under the new title */
.main-content:has(.page-title-bar) section > .container,
.main-content:has(.page-title-bar) section > .container-fluid {
    padding-top: 0;
}

.page-title-bar {
    width: 100%;
    background: transparent;
    padding: 48px 0 0;
    margin-bottom: 36px;
    text-align: center;
}

.page-title-bar > .container {
    padding-top: 0;
    padding-bottom: 0;
}

.page-title-bar__eyebrow {
    margin: 0 0 8px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ec6b81;
}

.page-title-bar__title {
    margin: 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1d1d1d;
}

.page-title-bar__count {
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #ec6b81;
    vertical-align: middle;
}

@media (max-width: 575px) {
    .page-title-bar {
        padding: 28px 0 0;
        margin-bottom: 24px;
    }

    .page-title-bar__title {
        font-size: 22px;
    }
}
