.catalog-page {
    margin: 0 0 64px;
}

.catalog-header {
    position: relative;
    text-align: center;
    padding: 10px 0 28px;
    border-bottom: 1px solid #e7e7e7;
    margin: 0 0 18px;
}

.catalog-header__kicker {
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .58);
}

.catalog-header__title {
    margin: 10px 0 8px;
    font-family: "Bodoni Moda", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .95;
    font-weight: 600;
    color: #111;
}

.catalog-header__meta {
    font-size: 15px;
    color: rgba(17, 17, 17, .65);
}

.cl-filters,
.catalog-filters,
.catalog-filters__form,
.catalog-filters__fields {
    overflow: visible;
}

.catalog-filters {
    margin: 18px 0 34px;
}

.catalog-filters__form {
    padding: 24px 0 28px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.catalog-filters__fields {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px 24px;
    align-items: end;
}

.catalog-field {
    display: grid;
    gap: 10px;
    align-content: start;
    min-width: 0;
}

.catalog-field--type {
    grid-column: 1 / span 3;
}

.catalog-field--search {
    grid-column: 4 / span 6;
}

.catalog-field--brand {
    grid-column: 10 / span 3;
}

.catalog-field--sort {
    grid-column: 1 / span 3;
}

.catalog-price-range {
    grid-column: 4 / span 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}

.catalog-price-range .catalog-field--price-min,
.catalog-price-range .catalog-field--price-max {
    grid-column: auto;
}

.catalog-field--volume {
    grid-column: 8 / span 2;
}

.catalog-field--notes {
    grid-column: 10 / span 3;
}

.catalog-field--fragrance-group,
.catalog-field--gender,
.catalog-field--miniatures-count,
.catalog-field--scent-line,
.catalog-field--hair-type,
.catalog-field--purpose,
.catalog-field--target-audience {
    grid-column: span 3;
}

.catalog-field__label {
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .52);
}

.catalog-field__control {
    width: 100%;
    height: 62px;
    border: 1px solid #d6d6d6;
    background: #fff;
    padding: 0 22px;
    color: #111;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.catalog-field__control::placeholder {
    color: rgba(17, 17, 17, .34);
}

.catalog-field__control:focus {
    border-color: #111;
    box-shadow: inset 0 0 0 1px #111;
}

.catalog-field__native-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.catalog-select {
    position: relative;
}

.catalog-select__trigger {
    width: 100%;
    min-height: 62px;
    border: 1px solid #cfcfcf;
    background: #fff;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    text-align: left;
}

.catalog-select.is-open .catalog-select__trigger,
.catalog-select__trigger:focus,
.catalog-notes__trigger:focus {
    border-color: #111;
    box-shadow: inset 0 0 0 1px #111;
    outline: none;
}

.catalog-select__icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    position: relative;
}

.catalog-select__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border-right: 2px solid rgba(17, 17, 17, .58);
    border-bottom: 2px solid rgba(17, 17, 17, .58);
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
}

.catalog-select.is-open .catalog-select__icon::before {
    transform: rotate(-135deg) translateY(-1px);
}

.catalog-select__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid #cfcfcf;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
}

.catalog-select__option {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-top: 1px solid #ededed;
    background: #fff;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    text-align: left;
}

.catalog-select__option:first-child {
    border-top: 0;
}

.catalog-select__option:hover {
    background: #fafafa;
}

.catalog-select__option.is-selected {
    background: #f5f5f5;
}

.catalog-select__check {
    width: 18px;
    flex: 0 0 18px;
    font-size: 15px;
    line-height: 1;
    color: #111;
}

.catalog-notes {
    position: relative;
}

.catalog-notes__trigger {
    width: 100%;
    min-height: 62px;
    white-space: nowrap;
}

.catalog-notes__trigger [data-notes-label] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-notes__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 560px;
    max-width: min(560px, calc(100vw - 32px));
    z-index: 60;
    background: #fff;
    border: 2px solid #111;
    padding: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.catalog-notes__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 18px;
}

.catalog-notes__panel-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #111;
}

.catalog-notes__close {
    width: 48px;
    height: 48px;
    border: 2px solid #111;
    background: #fff;
    font-size: 25px;
    line-height: 1;
    color: #111;
    cursor: pointer;
}

.catalog-notes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-height: 340px;
    overflow-y: auto;
}

.catalog-notes__option {
    min-height: 66px;
    border: 2px solid #d8d8d8;
    background: #fff;
    padding: 0 12px 0 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.catalog-notes__option.is-selected {
    border-color: #111;
}

.catalog-notes__option-text {
    min-width: 0;
    font-size: 16px;
    line-height: 1.15;
    color: #111;
    overflow-wrap: anywhere;
}

.catalog-notes__option-action {
    width: 40px;
    height: 40px;
    border: 2px solid #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 1;
    color: #111;
    flex: 0 0 40px;
}

.catalog-notes__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

.catalog-notes__action {
    min-height: 58px;
    border: 2px solid #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-notes__action--secondary {
    background: #fff;
    color: #111;
}

.catalog-notes__action--primary {
    background: #111;
    color: #fff;
}

.catalog-filters__actions {
    display: grid;
    grid-template-columns: 190px 190px;
    gap: 14px;
    justify-content: center;
    margin: 28px 0 0;
}

.catalog-filters__staff-actions {
    display: grid;
    grid-template-columns: 190px 190px;
    gap: 14px;
    justify-content: center;
    margin: 14px 0 0;
}

.catalog-action {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    padding: 0 18px;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    border-radius: 0;
}

.catalog-action__plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
}

.catalog-action--publish {
    background: #fff;
    color: #111;
}

.catalog-action--publish:hover {
    background: #111;
    color: #fff;
}

.catalog-action--primary,
.catalog-action--staff {
    background: #111;
    color: #fff;
}

.catalog-action--secondary {
    background: #fff;
    color: #111;
}

.catalog-action:hover {
    opacity: .86;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(12px, 1.5vw, 20px);
    row-gap: clamp(34px, 4vw, 54px);
    align-items: start;
    width: 100%;
}

.catalog-results {
    position: relative;
    min-height: 220px;
}

.catalog-results.is-loading {
    opacity: .52;
    pointer-events: none;
}

.catalog-results.is-loading::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    width: 38px;
    height: 38px;
    margin-left: -19px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-top-color: #111;
    border-radius: 50%;
    animation: catalog-spin .7s linear infinite;
}

.catalog-filters__form.is-loading {
    pointer-events: none;
}

@keyframes catalog-spin {
    to {
        transform: rotate(360deg);
    }
}

.product-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    color: #111;
}

.product-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .78),
            rgba(234, 232, 228, .72)
        );
    text-decoration: none;
    isolation: isolate;
}

.product-card__image,
.product-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__image {
    object-fit: cover;
    object-position: var(--card-focus-x, 50%) var(--card-focus-y, 50%);
    transform: scale(1.001);
    transition:
        transform .6s cubic-bezier(.2, .72, .2, 1),
        filter .45s ease;
    will-change: transform;
}

.product-card__placeholder {
    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(255, 255, 255, .95) 0,
            rgba(255, 255, 255, .45) 30%,
            transparent 62%
        ),
        #efeeeb;
}

.product-card__media-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .34),
            rgba(0, 0, 0, .04) 34%,
            transparent 58%
        );
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.product-card__view-label {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 28px;
    z-index: 3;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .48);
    background: rgba(17, 17, 17, .74);
    color: #fff;
    padding: 0 16px;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
    backdrop-filter: blur(14px) saturate(1.16);
    -webkit-backdrop-filter: blur(14px) saturate(1.16);
    transition:
        opacity .3s ease,
        transform .35s cubic-bezier(.2, .72, .2, 1),
        background-color .2s ease;
    pointer-events: none;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 0 9px;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card__badge--discount {
    left: 12px;
    border: 1px solid rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .80);
    color: #111;
}

.product-card__badge--hidden {
    right: 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(17, 17, 17, .82);
    color: #fff;
}

.product-card__panel {
    position: relative;
    z-index: 5;
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    margin: -18px 12px 0;
    border: 1px solid rgba(17, 17, 17, .20);
    background: rgba(255, 255, 255, .86);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .075),
        inset 0 1px 0 rgba(255, 255, 255, .78);
    backdrop-filter: blur(16px) saturate(1.12);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.product-card__body {
    min-width: 0;
    min-height: 188px;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 19px;
}

.product-card__brand {
    min-width: 0;
    overflow: hidden;
    margin-bottom: 8px;
    color: rgba(17, 17, 17, .54);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .17em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-card__title {
    min-height: 2.05em;
    margin: 0;
    overflow: hidden;
    font-family: var(--font-display, "Bodoni Moda", serif);
    font-size: clamp(21px, 1.75vw, 27px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.045em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card__title-link {
    color: #111;
    text-decoration: none;
}

.product-card__title-link:focus-visible {
    outline: 1px solid #111;
    outline-offset: 3px;
}

.product-card__meta-row {
    min-height: 19px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: rgba(17, 17, 17, .50);
    font-size: 11px;
    line-height: 1.35;
}

.product-card__measure {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__availability {
    flex: 0 0 auto;
    color: rgba(17, 17, 17, .72);
    font-weight: 650;
    text-align: right;
}

.product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid rgba(17, 17, 17, .11);
    font-variant-numeric: tabular-nums;
}

.product-card__price-current {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.product-card__price-old {
    color: rgba(17, 17, 17, .42);
    font-size: 11px;
    line-height: 1.2;
    text-decoration: line-through;
}

.product-card__admin-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 7px;
    padding: 10px;
    border-top: 1px solid rgba(17, 17, 17, .12);
    background: rgba(255, 255, 255, .58);
}

.product-card__admin-form,
.product-card__delete-form {
    margin: 0;
}

.product-card__admin-button,
.product-card__delete-button {
    min-height: 38px;
    border: 1px solid rgba(17, 17, 17, .24);
    background: rgba(255, 255, 255, .52);
    color: #111;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        border-color .18s ease,
        background-color .18s ease,
        color .18s ease;
}

.product-card__admin-button {
    width: 100%;
    padding: 0 10px;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-card__delete-button {
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-card__admin-button:hover,
.product-card__delete-button:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.product-card__delete-icon {
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card__image {
        transform: scale(1.035);
    }

    .product-card:hover .product-card__media-overlay {
        opacity: 1;
    }

    .product-card:hover .product-card__view-label {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card:hover .product-card__panel {
        border-color: rgba(17, 17, 17, .34);
        box-shadow:
            0 22px 50px rgba(0, 0, 0, .10),
            inset 0 1px 0 rgba(255, 255, 255, .82);
    }

    .product-card__title-link:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 1px;
    }
}

@media (max-width: 1080px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-card__body {
        min-height: 176px;
        padding-inline: 17px;
    }
}

@media (max-width: 760px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 9px;
        row-gap: 30px;
    }

    .product-card__media {
        aspect-ratio: 3 / 4;
    }

    .product-card__view-label {
        display: none;
    }

    .product-card__badge {
        top: 8px;
        min-height: 23px;
        padding-inline: 7px;
        font-size: 7.5px;
    }

    .product-card__badge--discount {
        left: 8px;
    }

    .product-card__badge--hidden {
        right: 8px;
    }

    .product-card__panel {
        margin: -12px 6px 0;
        background: rgba(255, 255, 255, .90);
        box-shadow:
            0 12px 28px rgba(0, 0, 0, .07),
            inset 0 1px 0 rgba(255, 255, 255, .82);
        backdrop-filter: blur(12px) saturate(1.08);
        -webkit-backdrop-filter: blur(12px) saturate(1.08);
    }

    .product-card__body {
        min-height: 146px;
        padding: 13px 12px 12px;
    }

    .product-card__brand {
        margin-bottom: 6px;
        font-size: 8px;
        letter-spacing: .13em;
    }

    .product-card__title {
        min-height: 2.08em;
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.04;
    }

    .product-card__meta-row {
        min-height: 15px;
        gap: 5px;
        margin-top: 8px;
        font-size: 8.5px;
    }

    .product-card__price {
        gap: 5px;
        padding-top: 11px;
    }

    .product-card__price-current {
        font-size: 12px;
    }

    .product-card__price-old {
        font-size: 9px;
    }

    .product-card__admin-actions {
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 5px;
        padding: 7px;
    }

    .product-card__admin-button,
    .product-card__delete-button {
        min-height: 33px;
    }

    .product-card__admin-button {
        padding-inline: 5px;
        font-size: 7.5px;
        letter-spacing: .09em;
    }

    .product-card__delete-button {
        width: 34px;
    }
}

@media (max-width: 360px) {
    .catalog-grid {
        column-gap: 7px;
        row-gap: 26px;
    }

    .product-card__panel {
        margin-inline: 4px;
    }

    .product-card__body {
        min-height: 137px;
        padding-inline: 10px;
    }

    .product-card__title {
        font-size: 14px;
    }

    .product-card__meta-row {
        font-size: 8px;
    }

    .product-card__price-current {
        font-size: 11.5px;
    }
}

.catalog-empty {
    border-top: 1px solid rgba(17, 17, 17, .14);
    border-bottom: 1px solid rgba(17, 17, 17, .14);
    padding: 72px 20px;
    text-align: center;
}

.catalog-empty__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.04em;
}

.catalog-empty__text {
    margin-top: 14px;
    color: rgba(17, 17, 17, .56);
    font-size: 13px;
    line-height: 1.5;
}

.catalog-pager {
    margin: 52px 0 0;
    display: flex;
    justify-content: center;
}

.catalog-pager__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
}

.catalog-pager__pages {
    display: flex;
    align-items: center;
    gap: 7px;
}

.catalog-pager__button,
.catalog-pager__page {
    min-height: 40px;
    border: 1px solid rgba(17, 17, 17, .18);
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    line-height: 1;
    transition:
        border-color .18s ease,
        background-color .18s ease,
        color .18s ease;
}

.catalog-pager__button {
    min-width: 112px;
    padding: 0 16px;
}

.catalog-pager__page {
    min-width: 40px;
    padding: 0 9px;
}

.catalog-pager__page.is-active {
    border-color: #111;
    background: #111;
    color: #fff;
}

.catalog-pager__button.is-disabled,
.catalog-pager__page.is-disabled {
    color: rgba(17, 17, 17, .30);
    border-color: rgba(17, 17, 17, .10);
    pointer-events: none;
}

.catalog-pager__button:not(.is-disabled):hover,
.catalog-pager__page:not(.is-active):not(.is-disabled):hover {
    border-color: #111;
}

@media (max-width: 520px) {
    .catalog-pager {
        margin-top: 38px;
    }

    .catalog-pager__inner {
        width: 100%;
        flex-wrap: wrap;
    }

    .catalog-pager__button {
        min-width: 104px;
    }

    .catalog-pager__pages {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.delete-product-modal[hidden] {
    display: none;
}

.delete-product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.delete-product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(4px);
}

.delete-product-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    border: 2px solid #111;
    background: #fff;
    padding: 34px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
    text-align: center;
}

.delete-product-modal__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .56);
}

.delete-product-modal__title {
    margin: 0;
    font-family: "Bodoni Moda", serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
    color: #111;
}

.delete-product-modal__text {
    margin: 18px auto 0;
    max-width: 400px;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(17, 17, 17, .68);
}

.delete-product-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 0;
}

.delete-product-modal__button {
    min-height: 50px;
    border: 1px solid #111;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.delete-product-modal__button--secondary {
    background: #fff;
    color: #111;
}

.delete-product-modal__button--danger {
    background: #111;
    color: #fff;
}

.delete-product-modal__button:hover {
    opacity: .86;
}

.product-card__unavailable {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .18);
    background: rgba(0, 0, 0, .04);
    color: rgba(0, 0, 0, .58);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    line-height: 1;
}

@media (max-width: 720px) {
}

@media (max-width: 520px) {
    .delete-product-modal__dialog {
        padding: 26px 20px;
    }

    .delete-product-modal__title {
        font-size: 34px;
    }

    .delete-product-modal__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .catalog-filters__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: row dense;
    }

    .catalog-field--type,
    .catalog-field--brand,
    .catalog-field--sort,
    .catalog-field--volume,
    .catalog-field--notes,
    .catalog-field--fragrance-group,
    .catalog-field--gender,
    .catalog-field--miniatures-count,
    .catalog-field--scent-line,
    .catalog-field--hair-type,
    .catalog-field--purpose,
    .catalog-field--target-audience {
        grid-column: auto;
    }

    .catalog-field--sort {
        grid-column: 1 / -1;
    }

    .catalog-field--search {
        grid-column: 1 / -1;
    }

    .catalog-price-range {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .catalog-notes__panel {
        width: 100%;
    }

    .catalog-notes__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .catalog-filters__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: row dense;
    }

    .catalog-field--type,
    .catalog-field--search,
    .catalog-field--brand,
    .catalog-field--sort,
    .catalog-field--volume,
    .catalog-field--notes,
    .catalog-field--fragrance-group,
    .catalog-field--gender,
    .catalog-field--miniatures-count,
    .catalog-field--scent-line,
    .catalog-field--hair-type,
    .catalog-field--purpose,
    .catalog-field--target-audience {
        grid-column: 1 / -1;
    }

    .catalog-price-range {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .catalog-filters__actions,
    .catalog-filters__staff-actions {
        grid-template-columns: 1fr;
    }

    .catalog-field__control,
    .catalog-select__trigger,
    .catalog-notes__trigger {
        height: 56px;
        min-height: 56px;
        font-size: 15px;
        padding: 0 16px;
    }
}

@media (max-width: 520px) {
    .catalog-notes__panel {
        right: auto;
        left: 0;
        width: calc(100vw - 32px);
    }

    .catalog-pager__inner {
        width: 100%;
        flex-wrap: wrap;
        padding: 12px;
    }

    .catalog-pager__button {
        min-width: 120px;
    }

    .catalog-pager__pages {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .catalog-filters__fields {
        grid-template-columns: 1fr;
    }

    .catalog-price-range {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .catalog-price-range .catalog-field__control {
        padding: 0 12px;
    }
}

/* Mobile catalog filters */

.catalog-mobile-type-chips,
.catalog-mobile-filter-trigger,
.catalog-mobile-sort,
.catalog-mobile-global-reset,
.catalog-mobile-sheet-backdrop,
.catalog-mobile-sheet__handle,
.catalog-mobile-sheet__header,
.catalog-mobile-sheet__footer,
.catalog-mobile-brand,
.catalog-mobile-price {
    display: none;
}

.catalog-mobile-toolbar,
.catalog-filter-secondary,
.catalog-mobile-sheet__body {
    display: contents;
}

@media (min-width: 761px) {
    .catalog-field--type {
        grid-row: 1;
    }

    .catalog-field--search {
        grid-row: 1;
    }

    .catalog-field--brand {
        grid-row: 1;
    }

    .catalog-field--sort {
        grid-row: 2;
    }

    .catalog-price-range {
        grid-row: 2;
    }
}

@media (max-width: 760px) {
    html.catalog-filter-sheet-open,
    body.catalog-filter-sheet-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    .catalog-page {
        margin-bottom: 48px;
    }

    .catalog-filters {
        margin: 12px calc(var(--site-gutter) * -1) 28px;
        overflow: visible;
    }

    .catalog-filters__form {
        border: 0;
        padding: 0;
        overflow: visible;
    }

    .catalog-filters__fields {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: visible;
    }

    .catalog-field--type {
        display: none;
    }

    .catalog-field--search {
        order: 1;
        display: block;
        padding: 0 var(--site-gutter);
    }

    .catalog-field--search > .catalog-field__label {
        display: none;
    }

    .catalog-mobile-search {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        border-bottom: 1px solid rgba(17, 17, 17, .16);
        padding: 0 0 8px;
    }

    .catalog-mobile-search__icon {
        width: 15px;
        height: 15px;
        flex: 0 0 15px;
        fill: none;
        stroke: rgba(17, 17, 17, .42);
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .catalog-mobile-search .catalog-mobile-search__input {
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 34px;
        border: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
        color: #111;
        font-size: 14px;
        font-weight: 400;
    }

    .catalog-mobile-search .catalog-mobile-search__input:focus {
        border: 0;
        box-shadow: none;
    }

    .catalog-mobile-search__input::placeholder {
        color: rgba(17, 17, 17, .34);
    }

    .catalog-mobile-search__clear,
    .catalog-mobile-brand__search button {
        position: relative;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        border: 0;
        background: transparent;
        color: #111;
        cursor: pointer;
        padding: 0;
    }

    .catalog-mobile-search__clear[hidden],
    .catalog-mobile-brand__search button[hidden] {
        display: none;
    }

    .catalog-mobile-search__clear span::before,
    .catalog-mobile-search__clear span::after,
    .catalog-mobile-brand__search button span::before,
    .catalog-mobile-brand__search button span::after,
    .catalog-mobile-global-reset span::before,
    .catalog-mobile-global-reset span::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 1px;
        background: currentColor;
        transform-origin: center;
    }

    .catalog-mobile-search__clear span::before,
    .catalog-mobile-brand__search button span::before,
    .catalog-mobile-global-reset span::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .catalog-mobile-search__clear span::after,
    .catalog-mobile-brand__search button span::after,
    .catalog-mobile-global-reset span::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .catalog-mobile-type-chips {
        order: 2;
        display: flex;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 16px var(--site-gutter) 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .catalog-mobile-type-chips::-webkit-scrollbar {
        display: none;
    }

    .catalog-mobile-type-chip {
        flex: 0 0 auto;
        min-height: 34px;
        border: 1px solid rgba(17, 17, 17, .16);
        border-radius: 2px;
        background: transparent;
        color: #111;
        padding: 0 14px;
        font-family: var(--font-body);
        font-size: 10px;
        line-height: 1;
        font-weight: 500;
        letter-spacing: .14em;
        text-transform: uppercase;
        white-space: nowrap;
        cursor: pointer;
        transition:
            background-color .18s ease,
            border-color .18s ease,
            color .18s ease;
    }

    .catalog-mobile-type-chip.is-active {
        border-color: #111;
        background: #111;
        color: #fff;
    }

    .catalog-mobile-toolbar {
        order: 3;
        position: relative;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: stretch;
        gap: 8px;
        padding: 14px var(--site-gutter) 18px;
        border-bottom: 1px solid rgba(17, 17, 17, .08);
    }

    .catalog-mobile-filter-trigger,
    .catalog-mobile-sort__trigger,
    .catalog-mobile-global-reset {
        min-height: 40px;
        border: 1px solid rgba(17, 17, 17, .16);
        border-radius: 2px;
        background: #fff;
        color: #111;
    }

    .catalog-mobile-filter-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 13px;
        font-size: 10px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        cursor: pointer;
        transition:
            background-color .18s ease,
            border-color .18s ease,
            color .18s ease;
    }

    .catalog-mobile-filter-trigger > svg {
        width: 12px;
        height: 12px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
    }

    .catalog-mobile-filter-trigger.is-active {
        border-color: #111;
        background: #111;
        color: #fff;
    }

    .catalog-mobile-filter-trigger__count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        color: #111;
        font-size: 9px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: 0;
    }

    .catalog-mobile-filter-trigger__count[hidden] {
        display: none;
    }

    .catalog-mobile-toolbar .catalog-field--sort {
        display: block;
        min-width: 0;
    }

    .catalog-mobile-toolbar .catalog-field--sort > .catalog-field__label,
    .catalog-mobile-toolbar .catalog-field--sort > .catalog-field__native-select,
    .catalog-mobile-toolbar .catalog-field--sort > .catalog-select {
        display: none;
    }

    .catalog-mobile-sort {
        position: relative;
        display: block;
        min-width: 0;
    }

    .catalog-mobile-sort__trigger {
        width: 100%;
        display: grid;
        grid-template-columns: 13px minmax(0, 1fr) 11px;
        align-items: center;
        gap: 9px;
        padding: 0 13px;
        font-size: 10px;
        line-height: 1;
        font-weight: 500;
        letter-spacing: .11em;
        text-transform: uppercase;
        text-align: left;
        cursor: pointer;
    }

    .catalog-mobile-sort__leading {
        width: 12px;
        height: 12px;
        fill: none;
        stroke: rgba(17, 17, 17, .52);
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .catalog-mobile-sort__trigger > span:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .catalog-mobile-sort__chevron {
        width: 8px;
        height: 8px;
        border-right: 1px solid rgba(17, 17, 17, .58);
        border-bottom: 1px solid rgba(17, 17, 17, .58);
        transform: rotate(45deg) translateY(-2px);
        transition: transform .18s ease;
    }

    .catalog-mobile-sort.is-open .catalog-mobile-sort__chevron {
        transform: rotate(-135deg) translate(-1px, -1px);
    }

    .catalog-mobile-sort__panel {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        right: 0;
        z-index: 120;
        border: 1px solid rgba(17, 17, 17, .13);
        border-radius: 2px;
        background: #fff;
        box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
        overflow: hidden;
    }

    .catalog-mobile-sort__panel[hidden] {
        display: none;
    }

    .catalog-mobile-sort__panel > button {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, .06);
        background: #fff;
        color: #111;
        padding: 0 14px;
        font-size: 12px;
        line-height: 1.25;
        font-weight: 400;
        text-align: left;
        cursor: pointer;
    }

    .catalog-mobile-sort__panel > button:last-child {
        border-bottom: 0;
    }

    .catalog-mobile-sort__panel > button.is-active {
        font-weight: 700;
    }

    .catalog-mobile-sort__check {
        width: 13px;
        flex: 0 0 13px;
        font-size: 12px;
    }

    .catalog-mobile-global-reset {
        position: relative;
        display: block;
        width: 40px;
        padding: 0;
        cursor: pointer;
    }

    .catalog-mobile-global-reset[hidden] {
        display: none;
    }

    .catalog-filter-secondary {
        position: fixed;
        left: 50%;
        bottom: 0;
        z-index: 1600;
        width: min(100%, 520px);
        max-height: min(88dvh, 760px);
        display: grid;
        grid-template-rows: auto auto minmax(0, 1fr) auto;
        border-radius: 20px 20px 0 0;
        background: #fff;
        box-shadow: 0 -22px 70px rgba(0, 0, 0, .17);
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 105%);
        transition:
            transform .28s cubic-bezier(.22, .75, .18, 1),
            visibility .28s ease;
    }

    .catalog-filter-secondary.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .catalog-mobile-sheet-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1590;
        display: block;
        background: rgba(0, 0, 0, .32);
        opacity: 0;
        transition: opacity .22s ease;
    }

    .catalog-mobile-sheet-backdrop[hidden] {
        display: none;
    }

    .catalog-mobile-sheet-backdrop.is-visible {
        opacity: 1;
    }

    .catalog-mobile-sheet__handle {
        display: block;
        width: 34px;
        height: 2px;
        margin: 13px auto 5px;
        border-radius: 999px;
        background: rgba(17, 17, 17, .16);
    }

    .catalog-mobile-sheet__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border-bottom: 1px solid rgba(17, 17, 17, .08);
        padding: 10px 22px 16px;
    }

    .catalog-mobile-sheet__eyebrow {
        margin-bottom: 4px;
        font-size: 9px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: .24em;
        text-transform: uppercase;
        color: rgba(17, 17, 17, .42);
    }

    .catalog-mobile-sheet__title {
        margin: 0;
        font-family: var(--font-display);
        font-size: 30px;
        line-height: .95;
        font-weight: 500;
        letter-spacing: -.035em;
    }

    .catalog-mobile-sheet__reset {
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, .24);
        background: transparent;
        color: rgba(17, 17, 17, .56);
        padding: 2px 0;
        font-size: 9px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .catalog-mobile-sheet__body {
        display: block;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0 22px 6px;
    }

    .catalog-mobile-sheet__body > .catalog-field,
    .catalog-mobile-sheet__body > .catalog-price-range {
        display: block;
        border-bottom: 1px solid rgba(17, 17, 17, .08);
        padding: 20px 0;
    }

    .catalog-mobile-sheet__body > :last-child {
        border-bottom: 0;
    }

    .catalog-mobile-sheet__body .catalog-field__label,
    .catalog-mobile-price__heading {
        display: block;
        margin-bottom: 13px;
        font-size: 9px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: .24em;
        text-transform: uppercase;
        color: rgba(17, 17, 17, .48);
    }

    .catalog-mobile-sheet__body .catalog-select__trigger,
    .catalog-mobile-sheet__body .catalog-notes__trigger {
        min-height: 50px;
        border-width: 1px;
        border-color: rgba(17, 17, 17, .16);
        padding: 0 16px;
        font-size: 14px;
        font-weight: 400;
    }

    .catalog-mobile-sheet__body .catalog-select__panel {
        top: calc(100% + 5px);
        z-index: 30;
        max-height: 250px;
        border-color: rgba(17, 17, 17, .16);
        box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
    }

    .catalog-mobile-sheet__body .catalog-select__option {
        min-height: 48px;
        padding: 0 16px;
        font-size: 14px;
    }

    .catalog-field--brand > .catalog-field__native-select,
    .catalog-field--brand > .catalog-select {
        display: none;
    }

    .catalog-mobile-brand {
        display: block;
    }

    .catalog-mobile-brand__selected:empty {
        display: none;
    }

    .catalog-mobile-brand__selected {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }

    .catalog-mobile-brand__chip {
        min-height: 30px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #111;
        border-radius: 2px;
        background: #111;
        color: #fff;
        padding: 0 9px 0 11px;
        font-size: 10px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .catalog-mobile-brand__chip > span:last-child {
        font-size: 15px;
        line-height: 1;
        font-weight: 400;
    }

    .catalog-mobile-brand__search {
        display: flex;
        align-items: center;
        gap: 9px;
        min-height: 42px;
        border-bottom: 1px solid rgba(17, 17, 17, .16);
        margin-bottom: 6px;
    }

    .catalog-mobile-brand__search > svg {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
        fill: none;
        stroke: rgba(17, 17, 17, .40);
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .catalog-mobile-brand__search > input {
        width: 100%;
        min-width: 0;
        height: 40px;
        border: 0;
        background: transparent;
        color: #111;
        padding: 0;
        outline: none;
        font-size: 13px;
        font-weight: 400;
    }

    .catalog-mobile-brand__search > input::placeholder {
        color: rgba(17, 17, 17, .34);
    }

    .catalog-mobile-brand__list {
        max-height: 220px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .catalog-mobile-brand__list > :is(button, label) {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, .06);
        background: #fff;
        color: #111;
        padding: 0;
        font-size: 13px;
        line-height: 1.3;
        font-weight: 400;
        text-align: left;
        cursor: pointer;
    }

    .catalog-mobile-brand__list > :is(button, label).is-active {
        font-weight: 700;
    }

    .catalog-mobile-brand__list > :is(button, label)[hidden] {
        display: none;
    }

    .catalog-mobile-brand__checkbox {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(17, 17, 17, .20);
        border-radius: 2px;
        font-size: 10px;
        line-height: 1;
    }

    .catalog-mobile-brand__list > :is(button, label).is-active .catalog-mobile-brand__checkbox {
        border-color: #111;
        background: #111;
        color: #fff;
    }

    .catalog-mobile-brand__empty {
        padding: 20px 0 8px;
        color: rgba(17, 17, 17, .45);
        font-size: 13px;
        text-align: center;
    }

    .catalog-price-range .catalog-field--price-min,
    .catalog-price-range .catalog-field--price-max {
        display: none;
    }

    .catalog-mobile-price {
        display: block;
    }

    .catalog-mobile-price__track-wrap {
        position: relative;
        height: 32px;
        margin: 10px 8px 8px;
    }

    .catalog-mobile-price__track,
    .catalog-mobile-price__active {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        transform: translateY(-50%);
    }

    .catalog-mobile-price__track {
        background: rgba(17, 17, 17, .14);
    }

    .catalog-mobile-price__active {
        background: #111;
    }

    .catalog-mobile-price__range {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 32px;
        margin: 0;
        border: 0;
        background: transparent;
        pointer-events: none;
        appearance: none;
        -webkit-appearance: none;
        outline: none;
    }

    .catalog-mobile-price__range::-webkit-slider-runnable-track {
        height: 1px;
        background: transparent;
    }

    .catalog-mobile-price__range::-moz-range-track {
        height: 1px;
        background: transparent;
    }

    .catalog-mobile-price__range::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
        margin-top: -8.5px;
        border: 0;
        border-radius: 2px;
        background: #111;
        cursor: grab;
        pointer-events: auto;
        appearance: none;
        -webkit-appearance: none;
    }

    .catalog-mobile-price__range::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border: 0;
        border-radius: 2px;
        background: #111;
        cursor: grab;
        pointer-events: auto;
    }

    .catalog-mobile-price__range:active::-webkit-slider-thumb,
    .catalog-mobile-price__range:active::-moz-range-thumb {
        cursor: grabbing;
    }

    .catalog-mobile-price__range--min {
        z-index: 2;
    }

    .catalog-mobile-price__range--max {
        z-index: 3;
    }

    .catalog-mobile-price__values {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
    }

    .catalog-mobile-price__values > div:last-child {
        text-align: right;
    }

    .catalog-mobile-price__values span {
        display: block;
        margin-bottom: 3px;
        color: rgba(17, 17, 17, .42);
        font-size: 9px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .catalog-mobile-price__values strong {
        font-family: var(--font-display);
        font-size: 18px;
        line-height: 1;
        font-weight: 500;
    }

    .catalog-mobile-sheet__body .catalog-notes__panel {
        position: static;
        width: 100%;
        max-width: none;
        max-height: none;
        border: 0;
        box-shadow: none;
        padding: 12px 0 0;
    }

    .catalog-mobile-sheet__body .catalog-notes__panel-header {
        display: none;
    }

    .catalog-mobile-sheet__body .catalog-notes__grid {
        grid-template-columns: 1fr;
        max-height: 260px;
        gap: 0;
        overflow-y: auto;
    }

    .catalog-mobile-sheet__body .catalog-notes__option {
        min-height: 46px;
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, .06);
        padding: 0;
        grid-template-columns: minmax(0, 1fr) 32px;
    }

    .catalog-mobile-sheet__body .catalog-notes__option-action {
        width: 17px;
        height: 17px;
        border-width: 1px;
        border-radius: 2px;
        font-size: 15px;
    }

    .catalog-mobile-sheet__body .catalog-notes__option.is-selected .catalog-notes__option-action {
        background: #111;
        color: #fff;
    }

    .catalog-mobile-sheet__body .catalog-notes__actions {
        gap: 8px;
        margin-top: 12px;
    }

    .catalog-mobile-sheet__body .catalog-notes__action {
        min-height: 42px;
        border-width: 1px;
        font-size: 10px;
        letter-spacing: .14em;
    }

    .catalog-mobile-sheet__footer {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
        border-top: 1px solid rgba(17, 17, 17, .08);
        background: #fff;
        padding: 13px 22px calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .catalog-mobile-sheet__cancel,
    .catalog-mobile-sheet__apply {
        min-height: 48px;
        border: 1px solid #111;
        border-radius: 2px;
        padding: 0 18px;
        font-size: 10px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: .18em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .catalog-mobile-sheet__cancel {
        background: #fff;
        color: #111;
    }

    .catalog-mobile-sheet__apply {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #111;
        color: #fff;
        transition:
            opacity .18s ease,
            transform .18s ease;
    }

    .catalog-mobile-sheet__apply:active {
        transform: translateY(1px);
    }

    .catalog-mobile-sheet__apply.is-counting {
        opacity: .72;
    }

    .catalog-mobile-sheet__apply-label {
        white-space: nowrap;
    }

    .catalog-mobile-sheet__apply-count {
        min-width: 76px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #fff;
        color: #111;
        padding: 7px 10px;
        font-size: 9px;
        line-height: 1;
        letter-spacing: .06em;
        text-transform: none;
        white-space: nowrap;
    }

    .catalog-filters__actions {
        display: none;
    }

    .catalog-filters__staff-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 16px var(--site-gutter) 0;
    }

    .catalog-filters__staff-actions .catalog-action {
        min-height: 44px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: .12em;
    }
}

@media (max-width: 390px) {
    .catalog-mobile-toolbar {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .catalog-mobile-global-reset:not([hidden]) {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 34px;
    }

    .catalog-mobile-filter-trigger {
        padding-inline: 11px;
    }

    .catalog-mobile-sort__trigger {
        padding-inline: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-filter-secondary,
    .catalog-mobile-sheet-backdrop,
    .catalog-mobile-type-chip,
    .catalog-mobile-filter-trigger,
    .catalog-mobile-sort__chevron {
        transition: none;
    }
}

@media (max-width: 760px) {
    .catalog-filters__fields {
        align-items: stretch;
    }

    .catalog-mobile-toolbar {
        width: 100%;
        min-width: 0;
    }

    .catalog-mobile-toolbar .catalog-field--sort {
        grid-column: auto;
    }
}

@media (min-width: 341px) and (max-width: 390px) {
    .catalog-mobile-toolbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .catalog-mobile-global-reset:not([hidden]) {
        grid-column: auto;
        width: 40px;
        min-height: 40px;
    }
}

@media (min-width: 761px) {
    .catalog-mobile-search {
        display: contents;
    }

    .catalog-mobile-search__icon,
    .catalog-mobile-search__clear {
        display: none;
    }
}

@media (min-width: 761px) and (max-width: 1200px) {
    .catalog-field--search {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .catalog-field--type {
        grid-column: 1;
        grid-row: 2;
    }

    .catalog-field--brand {
        grid-column: 2;
        grid-row: 2;
    }

    .catalog-field--sort {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .catalog-price-range {
        grid-column: 1 / -1;
        grid-row: 4;
    }
}

@media (max-width: 760px) {
    .catalog-mobile-toolbar {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .catalog-mobile-filter-trigger {
        grid-column: 1;
        grid-row: 1;
    }

    .catalog-mobile-toolbar .catalog-field--sort {
        grid-column: 2;
        grid-row: 1;
    }

    .catalog-mobile-toolbar.has-global-reset {
        grid-template-columns: auto 40px minmax(0, 1fr);
    }

    .catalog-mobile-toolbar.has-global-reset .catalog-mobile-global-reset {
        grid-column: 2;
        grid-row: 1;
        width: 40px;
        min-height: 40px;
    }

    .catalog-mobile-toolbar.has-global-reset .catalog-field--sort {
        grid-column: 3;
        grid-row: 1;
    }

    .catalog-filter-secondary {
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        transform: translateY(105%);
    }

    .catalog-filter-secondary.is-open {
        transform: translateY(0);
    }

    .catalog-mobile-brand__list {
        margin-right: -10px;
        padding-right: 10px;
        scrollbar-gutter: stable;
    }

    .catalog-mobile-brand__list > :is(button, label) {
        padding-right: 8px;
    }

    .catalog-mobile-brand__list::-webkit-scrollbar {
        width: 5px;
    }

    .catalog-mobile-brand__list::-webkit-scrollbar-track {
        background: transparent;
    }

    .catalog-mobile-brand__list::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(17, 17, 17, .20);
    }
}

/* Финальный вид карточки товара */

.product-card {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.product-card__media {
    border: 0;
}

.product-card__panel {
    margin: 0;
    border: 0;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.product-card__price {
    border-top: 0;
}

.product-card__admin-actions {
    border-top: 0;
    background: #fff;
}

.product-card__media-overlay {
    background: transparent;
}

.product-card__view-label {
    border: 0;
    background: rgba(255, 255, 255, .40);
    color: #111;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card__panel {
        border: 0;
        box-shadow: none;
    }

    .product-card:hover .product-card__view-label {
        border: 0;
        background: rgba(255, 255, 255, .48);
        color: #111;
    }
}

@media (max-width: 760px) {
    .product-card__panel {
        margin: 0;
        border: 0;
        background: #fff;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* 2026-07-03: readable volume and price in product cards. */
.product-card__meta-row {
    min-height: 22px;
    margin-top: 13px;
    color: rgba(17, 17, 17, .62);
    font-size: 14px;
    font-weight: 500;
}

.product-card__price {
    gap: 8px;
    padding-top: 15px;
}

.product-card__price-current {
    font-size: 20px;
}

.product-card__price-old {
    font-size: 13px;
}

@media (max-width: 760px) {
    .product-card__meta-row {
        min-height: 19px;
        gap: 6px;
        margin-top: 10px;
        font-size: 13px;
    }

    .product-card__price {
        gap: 7px;
        padding-top: 13px;
    }

    .product-card__price-current {
        font-size: 18px;
    }

    .product-card__price-old {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .product-card__meta-row {
        font-size: 12.5px;
    }

    .product-card__price-current {
        font-size: 17px;
    }
}


/* 2026-07-03: catalog cards - larger readable typography and no redundant hover label. */
.product-card__media-overlay,
.product-card__view-label {
    display: none !important;
}

.catalog-grid {
    column-gap: clamp(18px, 2.1vw, 32px);
    row-gap: clamp(48px, 5.4vw, 78px);
}

.product-card__media {
    aspect-ratio: 4 / 5.35;
}

.product-card__body {
    min-height: 0;
    padding: clamp(16px, 1.35vw, 22px) 0 0;
}

.product-card__brand {
    margin-bottom: 8px;
    color: rgba(17, 17, 17, .56);
    font-size: clamp(11px, .9vw, 14px);
    line-height: 1.15;
    letter-spacing: .16em;
}

.product-card__title {
    min-height: 0;
    font-size: clamp(24px, 2.05vw, 32px);
    line-height: .98;
    letter-spacing: -.06em;
}

.product-card__meta-row {
    min-height: 24px;
    justify-content: flex-start;
    gap: 12px;
    margin-top: clamp(16px, 1.9vw, 26px);
    color: rgba(17, 17, 17, .58);
    font-size: clamp(15px, 1.12vw, 18px);
    line-height: 1.25;
    font-weight: 500;
}

.product-card__availability {
    margin-left: auto;
}

.product-card__price {
    gap: 10px;
    margin-top: 0;
    padding-top: clamp(28px, 3.2vw, 44px);
}

.product-card__price-current {
    font-size: clamp(23px, 1.75vw, 28px);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.product-card__price-old {
    font-size: clamp(13px, .95vw, 15px);
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card__image {
        transform: scale(1.018);
    }
}

@media (max-width: 760px) {
    .catalog-grid {
        column-gap: 12px;
        row-gap: 42px;
    }

    .product-card__media {
        aspect-ratio: 4 / 5.45;
    }

    .product-card__body {
        min-height: 0;
        padding: 12px 0 0;
    }

    .product-card__brand {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: .15em;
    }

    .product-card__title {
        min-height: 0;
        font-size: clamp(19px, 5.3vw, 23px);
        line-height: 1.01;
    }

    .product-card__meta-row {
        min-height: 20px;
        gap: 7px;
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.25;
    }

    .product-card__price {
        gap: 7px;
        padding-top: 30px;
    }

    .product-card__price-current {
        font-size: 21px;
        line-height: 1.05;
    }

    .product-card__price-old {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .catalog-grid {
        column-gap: 10px;
        row-gap: 38px;
    }

    .product-card__title {
        font-size: 18px;
    }

    .product-card__meta-row {
        margin-top: 13px;
        font-size: 13px;
    }

    .product-card__price {
        padding-top: 24px;
    }

    .product-card__price-current {
        font-size: 20px;
    }
}

/* 20260704: keep filter/admin action buttons inside the row on medium and small screens. */
.catalog-filters__actions,
.catalog-filters__staff-actions {
    width: min(100%, 430px);
    margin-left: auto;
    margin-right: auto;
}

.catalog-action {
    min-width: 0;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .catalog-filters__actions,
    .catalog-filters__staff-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: min(100%, 520px);
        margin-top: 14px;
    }

    .catalog-action {
        min-height: 46px;
        padding: 0 12px;
        font-size: 11px;
        letter-spacing: .12em;
    }
}

@media (max-width: 520px) {
    .catalog-filters__actions,
    .catalog-filters__staff-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .catalog-action {
        width: 100%;
        min-height: 44px;
        font-size: 10px;
        letter-spacing: .1em;
    }
}

/* 20260704 v4: staff product cards - bigger hidden badge and aligned admin buttons. */
.product-card__badge--hidden {
    right: 14px;
    top: 14px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: .13em;
    background: rgba(17, 17, 17, .84);
}

.product-card--staff .product-card__admin-actions {
    grid-template-columns: minmax(0, 1fr) 68px;
    gap: 10px;
    padding: 14px 0 0;
    background: transparent;
}

.product-card--staff .product-card__admin-button,
.product-card--staff .product-card__delete-button {
    min-height: 58px;
    border: 2px solid rgba(17, 17, 17, .22);
    background: #fff;
}

.product-card--staff .product-card__admin-button {
    font-size: 12px;
    letter-spacing: .12em;
}

.product-card--staff .product-card__delete-button {
    width: 68px;
}

.product-card--staff .product-card__delete-icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

@media (max-width: 760px) {
    .product-card__badge--hidden {
        min-height: 32px;
        padding-inline: 12px;
        font-size: 10px;
    }

    .product-card--staff .product-card__admin-actions {
        grid-template-columns: minmax(0, 1fr) 62px;
        gap: 9px;
        padding-top: 12px;
    }

    .product-card--staff .product-card__admin-button,
    .product-card--staff .product-card__delete-button {
        min-height: 56px;
    }

    .product-card--staff .product-card__delete-button {
        width: 62px;
    }
}


/* 20260704 v6: soft CHAMBRE-style hover without visible border or clipped sides. */
@media (hover: hover) and (pointer: fine) {
    .catalog-grid,
    .catalog-results {
        overflow: visible;
    }

    .catalog-grid {
        padding-top: 8px;
        padding-bottom: 18px;
    }

    .product-card {
        position: relative;
        z-index: 0;
        background: #fff;
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        transition:
            transform .32s cubic-bezier(.2, .72, .2, 1),
            box-shadow .32s ease;
        will-change: transform;
    }

    .product-card:hover,
    .product-card:focus-within {
        z-index: 5;
        transform: translateY(-7px);
        box-shadow: 0 24px 48px rgba(0, 0, 0, .105);
    }

    .product-card:hover .product-card__image,
    .product-card:focus-within .product-card__image {
        transform: scale(1.014);
    }

    .product-card__title-link:hover {
        text-decoration: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-card__image {
        transition: none !important;
    }
}

/* 20260704 v7: smoother hover and safe inner spacing so text/price never touch card edges. */
.product-card__body {
    padding: clamp(16px, 1.35vw, 22px) clamp(14px, 1.35vw, 20px) clamp(20px, 1.75vw, 28px);
}

.product-card__price {
    padding-top: clamp(24px, 2.6vw, 36px);
}

.product-card__price-current,
.product-card__price-old,
.product-card__title,
.product-card__brand,
.product-card__meta-row {
    max-width: 100%;
}

.product-card__price-current,
.product-card__price-old {
    overflow-wrap: normal;
    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
    .product-card {
        transition:
            transform .48s cubic-bezier(.16, 1, .3, 1),
            box-shadow .48s cubic-bezier(.16, 1, .3, 1);
    }

    .product-card:hover,
    .product-card:focus-within {
        transform: translateY(-5px);
        box-shadow: 0 22px 46px rgba(0, 0, 0, .095);
    }

    .product-card__image {
        transition:
            transform .74s cubic-bezier(.16, 1, .3, 1),
            filter .5s ease;
    }

    .product-card:hover .product-card__image,
    .product-card:focus-within .product-card__image {
        transform: scale(1.01);
    }
}

@media (max-width: 760px) {
    .product-card__body {
        padding: 13px 12px 18px;
    }

    .product-card__price {
        padding-top: 24px;
    }
}

@media (max-width: 360px) {
    .product-card__body {
        padding-inline: 10px;
    }

    .product-card__price {
        padding-top: 20px;
    }
}

/* 20260705: mobile catalog uses instant controls; remove duplicated Apply/Reset text buttons. */
@media (max-width: 1024px) {
    .catalog-filters__actions {
        display: none !important;
    }
}


/* 20260706 v3: equal product-card height with two-line titles. */
.catalog-grid {
    align-items: stretch;
}

.product-card {
    height: 100%;
}

.product-card__panel {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.product-card__body {
    flex: 1 1 auto;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    align-content: start;
    min-height: clamp(196px, 15vw, 232px);
}

.product-card__brand {
    min-height: 1.15em;
}

.product-card__title {
    min-height: 2.08em;
    max-height: 2.08em;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: normal;
}

.product-card__title-link {
    display: inline;
}

.product-card__meta-row {
    min-width: 0;
}

.product-card__measure {
    min-width: 0;
}

.product-card__price {
    align-self: end;
    min-height: 32px;
}

.product-card--staff .product-card__body {
    min-height: clamp(202px, 16vw, 240px);
}

@media (max-width: 1024px) {
    .product-card__body {
        min-height: clamp(184px, 18vw, 218px);
    }

    .product-card--staff .product-card__body {
        min-height: clamp(192px, 19vw, 226px);
    }
}

@media (max-width: 760px) {
    .product-card__body {
        grid-template-rows: auto auto auto minmax(0, 1fr) auto;
        min-height: clamp(172px, 47vw, 205px);
    }

    .product-card__title {
        min-height: 2.08em;
        max-height: 2.08em;
    }

    .product-card__meta-row {
        min-height: 18px;
        margin-top: 12px;
    }

    .product-card__price {
        min-height: 28px;
        padding-top: 18px;
    }

    .product-card--staff .product-card__body {
        min-height: clamp(188px, 51vw, 220px);
    }
}

@media (max-width: 430px) {
    .product-card__body {
        min-height: clamp(166px, 50vw, 194px);
    }

    .product-card__brand {
        font-size: 9px;
    }

    .product-card__title {
        font-size: clamp(17px, 5.1vw, 21px);
    }

    .product-card__meta-row {
        gap: 6px;
        margin-top: 10px;
        font-size: 12.5px;
    }

    .product-card__price {
        padding-top: 16px;
    }
}

@media (max-width: 360px) {
    .product-card__body {
        min-height: 160px;
    }

    .product-card__price {
        padding-top: 14px;
    }
}

/* 20260707 v1: staff catalog cards on medium and small screens. */
.product-card--staff .product-card__admin-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    align-items: stretch;
    gap: 8px;
    padding: 10px 0 0;
    min-width: 0;
}

.product-card--staff .product-card__admin-form,
.product-card--staff .product-card__delete-form {
    min-width: 0;
}

.product-card--staff .product-card__admin-button,
.product-card--staff .product-card__delete-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    height: 50px;
    box-sizing: border-box;
    border: 1.5px solid rgba(17, 17, 17, .26);
    background: #fff;
}

.product-card--staff .product-card__admin-button {
    padding-inline: 8px;
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: .09em;
    overflow-wrap: anywhere;
}

.product-card--staff .product-card__delete-button {
    width: 56px;
}

.product-card--staff .product-card__delete-icon {
    width: 19px;
    height: 19px;
    stroke-width: 1.8;
}

@media (max-width: 1024px) {
    .product-card--staff .product-card__admin-actions {
        grid-template-columns: minmax(0, 1fr) 52px;
        gap: 8px;
        padding-top: 9px;
    }

    .product-card--staff .product-card__admin-button,
    .product-card--staff .product-card__delete-button {
        min-height: 48px;
        height: 48px;
    }

    .product-card--staff .product-card__delete-button {
        width: 52px;
    }
}

@media (max-width: 760px) {
    .product-card--staff .product-card__admin-actions {
        grid-template-columns: minmax(0, 1fr) 48px;
        gap: 7px;
        padding-top: 8px;
    }

    .product-card--staff .product-card__admin-button,
    .product-card--staff .product-card__delete-button {
        min-height: 46px;
        height: 46px;
    }

    .product-card--staff .product-card__admin-button {
        font-size: 9px;
        letter-spacing: .075em;
    }

    .product-card--staff .product-card__delete-button {
        width: 48px;
    }

    .product-card--staff .product-card__delete-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 430px) {
    .product-card__badge--hidden {
        top: 9px;
        right: 9px;
        min-height: 28px;
        padding-inline: 9px;
        font-size: 8.5px;
        letter-spacing: .1em;
    }

    .product-card--staff .product-card__admin-actions {
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 6px;
    }

    .product-card--staff .product-card__admin-button,
    .product-card--staff .product-card__delete-button {
        min-height: 44px;
        height: 44px;
    }

    .product-card--staff .product-card__admin-button {
        font-size: 8.5px;
    }

    .product-card--staff .product-card__delete-button {
        width: 44px;
    }

    .product-card--staff .product-card__delete-icon {
        width: 17px;
        height: 17px;
    }
}
