*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #17130F #ececec;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #ececec;
}

::-webkit-scrollbar-thumb {
    background: #17130F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #17130F;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    z-index: 100;
    pointer-events: none;
}

.scroll-progress__bar {
    height: 100%;
    width: 0;
    background: #17130F;
    transition: width 0.08s linear;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 400;
    color: #17130F;
    background: #fff;
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:focus,
button:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #17130F;
    outline-offset: 3px;
}

button,
input,
textarea,
select {
    font-family: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

button[disabled],
a[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1{
	font-size: 30px;
  	margin: 0 0 50px;
  	text-align: center;
	text-transform: uppercase;
}
h2{
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 40px;
	text-align: center;
}
.container {
    width: 100%;
    max-width: 1690px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 80px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.burger {
    position: relative;
    width: 22px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.burger__lines,
.burger__close {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
}

.burger__lines {
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.burger__close {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.burger__lines span {
    display: block;
    width: 22px;
    height: 2px;
    background: #17130F;
    border-radius: 2px;
}

.menu-open .burger__lines {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.menu-open .burger__close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

.burger:hover .burger__lines span {
    background: #555;
}

.burger:active .burger__lines span {
    background: #151F26;
}

.burger:active {
    transform: scale(0.92);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav__link {
    position: relative;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
    padding-bottom: 3px;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #17130F;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
    transform: scaleX(1);
}

.nav__link:active {
    color: #151F26;
}

.header__logo {
    display: block;
    flex-shrink: 0;
}

.header__logo img {
    height: 24px;
    width: auto;
}

.header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1;
}

.header__phone {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: color 0.2s;
}

.header__phone:hover {
    color: #555;
}

.header__phone:active {
    color: #151F26;
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__social {
    display: block;
    line-height: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__social:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.header__social:active {
    transform: translateY(0);
    opacity: 0.7;
}

.header__social img {
    width: 24px;
    height: 24px;
}

.header__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: opacity 0.2s;
}

.header__cart-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.header__cart:hover {
    opacity: 0.7;
}

.header__cart:active {
    opacity: 0.5;
    transform: scale(0.95);
}

.header__cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    background: #17130F;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.search {
    border-bottom: 1px solid #ececec;
}

.search .search__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 60px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .search .search__inner {
        gap: 16px;
        padding: 0 24px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .search .search__inner {
        gap: 12px;
        padding: 0 12px;
        min-height: 46px;
    }
}

.mobile-nav {
    display: none;
}

@media (max-width: 900px) {
    .mobile-nav {
        position: relative;
        display: block;
        border-bottom: 1px solid #ececec;
        background: #fff;
    }

    .mobile-nav__scroll {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 0 24px;
        min-height: 50px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 36px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 36px), transparent 100%);
    }

    .mobile-nav__scroll::-webkit-scrollbar {
        display: none;
    }

    .mobile-nav__link {
        flex-shrink: 0;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #17130F;
        white-space: nowrap;
        padding: 4px 0;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

    .mobile-nav__link:active {
        opacity: 0.55;
    }

    .mobile-nav__link--phone {
        text-transform: none;
        letter-spacing: 0.2px;
        font-weight: 600;
    }

    .mobile-nav__hint {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav__scroll {
        gap: 22px;
        padding: 0 12px;
        min-height: 46px;
    }
}

.search__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #17130F;
}

.search__btn svg {
    width: 22px;
    height: 22px;
}

.search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #17130F;
    padding: 4px 0;
    cursor: pointer;
}

.search__input::placeholder {
    color: #b8b8b8;
    letter-spacing: 0.8px;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    max-height: 100vh;
    overflow-y: auto;
}

.search-open .search-modal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-modal__bar {
    border-bottom: 1px solid #ececec;
}

.search-modal .search-modal__bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 80px;
    gap: 20px;
    padding: 0 60px;
}

.search-modal__spacer {
    display: block;
}

.search-modal__logo img {
    height: 24px;
    display: block;
}

.search-modal__close {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #17130F;
    transition: opacity 0.2s, transform 0.2s;
}

.search-modal__close:hover {
    opacity: 0.6;
    transform: rotate(90deg);
}

.search-modal__close:active {
    opacity: 0.4;
}

.search-modal__field {
    border-bottom: 1px solid #ececec;
}

.search-modal .search-modal__field-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 60px;
}

.search-modal .search-modal__field-inner > svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .search-modal .search-modal__bar-inner {
        padding: 0 24px;
    }

    .search-modal .search-modal__field-inner {
        gap: 16px;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .search-modal .search-modal__bar-inner {
        padding: 0 8px;
    }

    .search-modal .search-modal__field-inner {
        gap: 12px;
        padding: 14px 12px;
    }
}

.search-modal__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #17130F;
}

.search-modal__input::placeholder {
    color: #b8b8b8;
    letter-spacing: 0.8px;
}

.search-modal__body {
    padding: 36px 0 48px;
    text-align: center;
}

.search-modal__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #17130F;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.search-modal__suggestions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.search-modal__suggestion {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #17130F;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.search-modal__suggestion:hover {
    color: #151F26;
}

.search-modal__results {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.search-modal__results:empty {
    display: none;
}

.search-section__title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #151F26;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
}

.search-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.search-section__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.search-menu-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #ececec;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #17130F;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.search-menu-item:hover {
    background: #17130F;
    border-color: #17130F;
    color: #fff;
}

.search-result {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 2px;
    transition: background 0.2s;
}

.search-result:hover {
    background: #f6f6f6;
}

.search-result__media {
    flex-shrink: 0;
    width: 64px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.search-result__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.search-result__brand {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.4px;
    color: #151F26;
    text-transform: uppercase;
}

.search-result__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #17130F;
}

.search-result__price {
    font-size: 12px;
    font-weight: 600;
    color: #0A0A0A;
    margin-top: 2px;
}

.search-modal__empty {
    text-align: center;
    color: #151F26;
    font-size: 13px;
    padding: 12px 0;
}

.menu {
    position: fixed;
    top: 81px;
    left: 0;
    bottom: 0;
    width: 460px;
    max-width: 90vw;
    background: #fff;
    border-right: 1px solid #ececec;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.menu-open .menu {
    transform: translateX(0);
}

.menu__inner {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.menu__search {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 48px;
    border-bottom: 1px solid #ececec;
}

.menu__search > svg:first-child {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.menu__search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #17130F;
}

.menu__close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ececec;
    color: #17130F;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu__close:hover {
    background: #fafafa;
}

.menu__close:active {
    transform: scale(0.92);
}

.menu__search-input::placeholder {
    color: #b8b8b8;
    letter-spacing: 0.8px;
}

.menu__nav {
    padding: 30px 48px 40px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.4px;
    color: #000000;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.menu__link:hover {
    color: #151F26;
    padding-left: 6px;
}

.menu__link:active {
    opacity: 0.65;
}

.menu__empty {
    font-size: 13px;
    color: #151F26;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.arrivals {
    padding: 20px 0 80px;
    background: #fff;
}

.arrivals__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 28px;
}

.catalog {
    padding: 32px 0 80px;
}

.crumbs-bar {
    border-bottom: 1px solid #ececec;
}

.catalog__crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.6px;
    color: #151F26;
    text-transform: uppercase;
}

.catalog__crumbs a {
    color: #b8b8b8;
    font-weight: 400;
    transition: color 0.2s;
}

.catalog__crumbs a:hover {
    color: #17130F;
}

.catalog__crumbs a:active {
    opacity: 0.6;
}

.catalog__crumbs-sep {
    color: #cfcfcf;
}

.catalog__crumbs-current {
    color: #17130F;
    font-weight: 500;
}

.catalog__title {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1;
}

.catalog__hero {
    width: 100%;
    height: clamp(300px, 36vw, 540px);
    overflow: hidden;
    margin-bottom: 64px;
    line-height: 0;
}

.catalog__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog__filters {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.filter-wrap {
    position: relative;
    padding: 22px 36px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.filter-wrap:first-of-type {
    padding-left: 0;
}

.filter-wrap:last-of-type {
    border-right: none;
    padding-right: 0;
}

.filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #17130F;
    text-transform: uppercase;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s;
    background: none;
    border: none;
}

.filter:hover {
    color: #666;
}

.filter svg {
    transition: transform 0.2s;
}

.filter--has-value {
    color: #17130F;
    position: relative;
}

.filter--has-value::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #17130F;
}

.filter-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    min-width: 230px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.18);
    padding: 12px 8px 12px;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 400;
    color: #17130F;
    letter-spacing: 0.2px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.15s;
    text-transform: none;
}

.filter-option:hover {
    background: #f6f6f6;
}

.filter-option input {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #cfcfcf;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
    flex-shrink: 0;
    margin: 0;
}

.filter-option input[type="radio"] {
    border-radius: 50%;
}

.filter-option input:checked {
    border-color: #17130F;
    background: #17130F;
}

.filter-option input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.filter-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 50%;
}

.filter-menu__range {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 6px;
}

.filter-menu__num {
    width: 100%;
    height: 36px;
    border: 1px solid #ececec;
    border-radius: 3px;
    padding: 0 10px;
    font-family: inherit;
    font-size: 13px;
    color: #17130F;
    outline: none;
    background: #fafafa;
    transition: border-color 0.15s, background 0.15s;
}

.filter-menu__num:focus {
    border-color: #17130F;
    background: #fff;
}

.filter-menu__dash {
    color: #b8b8b8;
    flex-shrink: 0;
}

.filter-menu__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px 4px;
    border-top: 1px solid #ececec;
}

.filter-menu__clear,
.filter-menu__apply {
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
}

.filter-menu__clear {
    color: #151F26;
}

.filter-menu__clear:hover {
    color: #17130F;
    background: #f5f5f5;
}

.filter-menu__clear:active {
    background: #ececec;
}

.filter-menu__apply {
    background: #17130F;
    color: #fff;
}

.filter-menu__apply:hover {
    background: #2a221c;
}

.filter-menu__apply:active {
    background: #0d0a07;
}

.filters-sheet__top,
.filters-sheet__bottom {
    display: none;
}

@media (max-width: 900px) {

    .filters-sheet__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid #ececec;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
    }

    .filters-sheet__title {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #17130F;
        text-transform: uppercase;
    }

    .filters-sheet__close {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        border-radius: 50%;
        transition: background 0.2s;
    }

    .filters-sheet__close:hover {
        background: #f4f4f4;
    }

    .filters-sheet__bottom {
        display: flex;
        gap: 10px;
        padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
        background: #fff;
        border-top: 1px solid #ececec;
        position: sticky;
        bottom: 0;
        z-index: 2;
    }

    .filters-sheet__clear,
    .filters-sheet__apply {
        flex: 1;
        height: 48px;
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .filters-sheet__clear {
        background: #fff;
        color: #17130F;
        border: 1px solid #17130F;
    }

    .filters-sheet__clear:hover {
        background: #f4f4f4;
    }

    .filters-sheet__apply {
        background: #17130F;
        color: #fff;
    }

    .filters-sheet__apply:hover {
        background: #2a221c;
    }

    .filters-sheet__apply:active {
        background: #0d0a07;
    }

    .filter-option {
        padding: 12px 4px;
        font-size: 14px;
    }

    .catalog__filters {
        display: none;
    }

    .filter-wrap {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding: 18px 20px;
        border-right: none;
    }

    .filter-wrap:last-of-type {
        border-bottom: none;
        padding-right: 20px;
    }

    .filter-wrap:first-of-type {
        padding-left: 20px;
    }

    .filter {
        width: 100%;
        justify-content: flex-start;
        padding: 0 0 14px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        color: #17130F;
        cursor: default;
        pointer-events: none;
    }

    .filter svg {
        display: none;
    }

    .filter-menu {
        display: flex !important;
        flex-direction: column;
        position: static;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        border: none;
        border-radius: 0;
        max-height: none;
        overflow: visible;
        gap: 4px;
        background: transparent;
        opacity: 1;
        visibility: visible;
        min-width: 0;
    }

    .filter-menu__actions {
        display: none;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .burger {
        width: 40px;
        height: 40px;
    }

    .header__socials {
        gap: 2px;
    }

    .header__social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 32px;
        min-height: 32px;
    }

    .header__cart {
        width: 32px;
        height: 32px;
    }

    .header__cart-count {
        top: -2px;
        right: -2px;
    }

    .search .search__btn {
        padding: 4px;
    }

    .search-modal .search-modal__suggestion {
        padding: 10px 14px;
        min-height: 40px;
    }

    .filter-option {
        min-height: 44px;
        align-items: center;
    }
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
}

.catalog__empty {
    padding: 60px 20px;
    text-align: center;
    font-size: 14px;
    color: #151F26;
}

.catalog__more {
    display: flex;
    justify-content: center;
    padding: 56px 0 20px;
}

.btn-more {
    min-width: 220px;
    height: 48px;
    background: #17130F;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0 32px;
}

.btn-more:hover {
    background: #2a221c;
}

.btn-more:active {
    background: #0d0a07;
    transform: scale(0.98);
}

.btn-more[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 1100px) {
    .catalog__title {
        font-size: 36px;
    }

    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-wrap {
        padding: 20px 24px;
    }
}

@media (max-width: 900px) {

    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
}

@media (max-width: 640px) {
    .catalog__title {
        font-size: 28px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}
body.lightbox-open {
    overflow: hidden;
}

.lightbox__stage {
    flex: 1;
    max-width: 1100px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__stage img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

.lightbox__close:active {
    background: rgba(255, 255, 255, 0.32);
}

.lightbox__nav:active {
    background: rgba(255, 255, 255, 0.32);
}

.lightbox__nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox__nav--prev {
    margin-right: 24px;
}

.lightbox__nav--next {
    margin-left: 24px;
}

.lightbox__nav--prev:hover {
    transform: translateX(-2px);
}

.lightbox__nav--next:hover {
    transform: translateX(2px);
}

.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .lightbox {
        padding: 20px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lightbox__nav--prev {
        margin-right: 6px;
    }

    .lightbox__nav--next {
        margin-left: 6px;
    }
}

.related {
    padding: 20px 0 80px;
    border-top: 1px solid #ececec;
}

.related__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active {
    transform: scale(0.985);
}

.btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn--primary {
    background: #17130F;
    color: #fff;
}

.btn--primary:hover {
    background: #2a221c;
}

.btn--primary:active {
    background: #0d0a07;
}

.btn--outline {
    background: #fff;
    color: #17130F;
    border: 1px solid #d6d6d6;
}

.btn--outline:hover {
    border-color: #17130F;
    background: #fafafa;
}

.btn--outline:active {
    background: #f0f0f0;
    border-color: #17130F;
}

.cart {
    padding: 32px 0 80px;
}

.cart__head {
    padding: 16px 0 36px;
    border-bottom: 1px solid #ececec;
}

.cart__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0 0 14px;
}

.cart__intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: #151F26;
    margin: 0;
    max-width: 700px;
}

.stepper {
    list-style: none;
    margin: 36px 0 36px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f4f4f4;
}

.stepper__item {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #b8b8b8;
    text-align: center;
    border-right: 1px solid #ececec;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.stepper__item:last-child {
    border-right: none;
}

.stepper__item--active {
    background: #FAFAFA;
    color: #17130F;
}

.stepper__item--done {
    color: #17130F;
    cursor: pointer;
}

.stepper__item--done:hover {
    background: #f4f4f4;
}

[data-stepper] .stepper__item {
    cursor: pointer;
}

[data-stepper] .stepper__item--active {
    cursor: default;
}

.stepper__item--locked {
    cursor: not-allowed;
}

.stepper__item--locked:hover {
    background: #f4f4f4;
}

.stepper__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.8px;
}

.stepper__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 36px;
    align-items: flex-start;
}

.cart__main {
    border-top: 1px solid #ececec;
}

.cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 26px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #ececec;
}

.cart-item__media {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    overflow: hidden;
}

.cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.cart-item__brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: #151F26;
    text-transform: uppercase;
}

.cart-item__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.cart-item__sku {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.4px;
    color: #151F26;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    width: max-content;
    margin-top: 30px;
}

.qty__btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #17130F;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.qty__btn:hover {
    background: #f6f6f6;
}

.qty__btn:active {
    background: #ececec;
}

.qty__btn[disabled] {
    color: #c9c9c9;
    cursor: not-allowed;
}

.qty__num {
    width: 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 5px 0;
}

.cart-item__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

.cart-item__price-rub {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #0A0A0A;
}

.cart-item__price-alt {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #b8b8b8;
}

.cart-item__remove {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    color: #b8b8b8;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: auto;
    padding: 4px 0;
    transition: color 0.2s;
}

.cart-item__remove:hover {
    color: #17130F;
}

.cart-item__remove:active {
    opacity: 0.6;
}

.cart-list__empty {
    padding: 60px 20px;
    text-align: center;
    color: #151F26;
}

.cart-list__empty a {
    color: #17130F;
    text-decoration: underline;
}

.cart__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 0 0;
}

.cart__continue {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: #151F26;
    text-transform: uppercase;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.cart__continue:hover {
    color: #17130F;
}

.cart__next {
    min-width: 280px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    padding: 38px 0 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.field--full {
    grid-column: 1 / -1;
}

.field__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #151F26;
}

.field__label i {
    color: #c0392b;
    font-style: normal;
    margin-left: 2px;
}

.field__input {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    padding: 10px 0;
    font-family: inherit;
    font-size: 14px;
    color: #17130F;
    outline: none;
    transition: border-color 0.2s;
}

.field__input::placeholder {
    color: #c4c4c4;
}

.field__input:focus {
    border-bottom-color: #17130F;
}

.field__input:invalid:not(:placeholder-shown) {
    border-bottom-color: #c0392b;
}

.cart__grid--full {
    grid-template-columns: 1fr;
}

.cart__grid--full .cart-summary {
    display: none;
}

.cart-step[hidden] {
    display: none !important;
}

.cart-step--confirm {
    display: flex;
    justify-content: center;
    padding: 56px 0 40px;
}

.confirm {
    width: 100%;
    max-width: 680px;
    border: 1px solid #c9c9c9;
    padding: 50px 80px 38px;
    text-align: center;
}

.confirm__icon {
    width: 84px;
    height: 84px;
    border: 1px solid #d6d6d4;
    background: transparent;
    color: #17130F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px;
}

.confirm__icon svg {
    width: 32px;
    height: 32px;
}

.confirm__eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #5A5A57;
    margin-bottom: 14px;
}

.confirm__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.35;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.confirm__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.75;
    color: #5A5A57;
    margin: 0 0 30px;
}

.confirm__contacts {
    list-style: none;
    margin: 0 0 30px;
    padding: 22px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px 8px;
    align-items: start;
}

.confirm__contacts li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.confirm__contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0A0A0A;
}

.confirm__contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #17130F;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.confirm__contact-value:hover {
    opacity: 0.65;
}

.confirm__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.confirm__actions .btn {
    width: 100%;
    padding: 18px 20px;
}

.confirm__order {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 300;
    letter-spacing: 2.4px;
    color: #b8b8b8;
    text-transform: uppercase;
    padding-top: 22px;
    border-top: 1px solid #ececec;
}

.confirm__order b {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #17130F;
    letter-spacing: 2px;
    margin-left: 4px;
}

.cart-summary {
    background: #FAFAFA;
    padding: 30px 28px;
    border-radius: 2px;
    position: sticky;
    top: 20px;
}

.cart-summary__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0 0 22px;
}

.cart-summary__items {
    list-style: none;
    margin: 0 0 22px;
    padding: 0 0 18px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-summary__items li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    font-size: 13px;
    color: #2A2A28;
}

.cart-summary__amt {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A28;
    font-weight: 200;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.cart-summary__qty {
    color: #b8b8b8;
    font-weight: 400;
    font-size: 12px;
}

.cart-summary__details {
    list-style: none;
    margin: 0 0 26px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-summary__details li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.cart-summary__details li span:first-child {
    font-family: 'Montserrat', sans-serif;
    color: #8A8A87;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
    font-weight: 300;
}

.cart-summary__details li span:last-child {
    font-family: 'Montserrat', sans-serif;
    color: #17130F;
    font-weight: 300;
}

.cart-summary__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.cart-summary__total-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    color: #151F26;
    text-transform: uppercase;
}

.cart-summary__total-value {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.cart-summary__total-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 200;
    color: #0A0A0A;
    letter-spacing: 0.5px;
}

.cart-summary__total-alt {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #151F26;
}

.cart-summary__note {
    font-size: 11px;
    line-height: 1.6;
    color: #5A5A57;
    margin: 0;
}

@media (max-width: 900px) {
    .cart__grid {
        grid-template-columns: 1fr;
    }

    .stepper {
        grid-template-columns: 1fr;
    }

    .stepper__item {
        border-right: none;
        border-bottom: 1px solid #ececec;
        padding: 14px 16px;
    }

    .stepper__item:last-child {
        border-bottom: none;
    }

    .cart-summary {
        position: static;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 0 10px;
    }

    .confirm {
        padding: 38px 26px 28px;
    }
}

@media (max-width: 640px) {
    .confirm__title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .confirm__contacts {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .confirm__contacts li {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

    .cart__title {
        font-size: 26px;
    }

    .cart-item {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .cart-item__media {
        width: 72px;
        height: 72px;
    }

    .cart-item__price {
        grid-column: 1 / -1;
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .cart__actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 12px;
    }

    .cart__next {
        min-width: 0;
        width: 100%;
    }
}

.error-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.error {
    width: 100%;
    padding: 40px 24px;
}

.error__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error__logo {
    display: inline-block;
    margin-bottom: 26px;
}

.error__logo img {
    height: 30px;
    width: auto;
}

.error__text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: #151F26;
    margin: 0 0 56px;
}

.error__retry {
    font-size: 14px;
    font-weight: 700;
    color: #17130F;
    margin: 0;
}

@media (max-width: 640px) {
    .error__text br {
        display: none;
    }

    .error__text {
        margin-bottom: 36px;
    }

    .error__logo img {
        height: 24px;
    }
}

.footer {
    position: relative;
    background: #fff;
    padding: 60px 0 0;
    margin-top: 20px;
    border-top: 1px solid #ececec;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ececec;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer__logo img {
    height: 22px;
    width: auto;
}

.footer__about {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: #151F26;
    margin: 0;
    max-width: 360px;
}

.footer__heading {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #8A8A87;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 13px;
    color: #17130F;
    transition: color 0.2s ease, opacity 0.2s ease;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
}

.footer__link:hover {
    background-size: 100% 1px;
}

.footer__link:active {
    opacity: 0.6;
}

.footer__link--strong {
    font-weight: 500;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 26px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: #8A8A87;
    text-transform: uppercase;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 36px;
}

.footer__legal-link {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: #8A8A87;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer__legal-link:hover {
    color: #17130F;
}

@media (max-width: 1100px) {
    .container {
        padding: 0 24px;
    }

    .nav__list {
        gap: 18px;
    }

    .nav__link {
        font-size: 12px;
    }

    .header__right {
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .menu {
        top: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 90;
        border-right: none;
    }

    .menu__close {
        display: inline-flex;
    }

    .menu__search {
        padding: 18px 20px;
    }

    .menu__nav {
        padding: 24px 20px 32px;
    }

    .menu__link {
        font-size: 16px;
        line-height: 1.25;
    }

    .header__inner {
        min-height: 64px;
        gap: 16px;
    }

    .header__logo img {
        height: 18px;
    }

    .header__right {
        gap: 4px;
        margin-right: -8px;
    }

    .arrivals {
        padding: 16px 0 56px;
    }

    .arrivals__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================================
   HOME 2026 — new Figma layout
   ========================================================================== */

/* Promo hero banners */
.promo {
	position: relative;

}
.promo__content{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
}
.promo__content p{
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
}


.promo__media,
.promo__media img {
    width: 100%;
    height: 100%;
}

.promo__media img {
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    padding: 0 20px;
    line-height: normal;
}

.promo__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19.6px;
    line-height: 24.2px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.promo__actions {
    display: flex;
    gap: 8px;
}

.promo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11.8px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    color: #000;
    transition: background 0.2s ease, color 0.2s ease;
}

.promo__btn:hover {
    background: #000;
    color: #fff;
}

.promo__btn:active {
    transform: scale(0.98);
}

.promo__arrows {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.promo__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    color: #17130F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.promo__arrow:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* Category row */
.cats {
    padding: 72px 0;
    background: #fff;
}


.cats__list {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cats__item {
	margin-bottom: 18px;
}
.cats__item-img{
	height: 400px;
	width: 286px;
	overflow: hidden;
	text-align: center;
	margin-bottom: 8px;
}
.cats__item-img img{
	height: 100%;
}
.cats__item span{
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.cats__link {
    display: block;
}

.cats__media {
    display: block;
    aspect-ratio: 286 / 400;
    overflow: hidden;
    background: #f2f1ef;
}

.cats__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cats__link:hover .cats__media img {
    transform: scale(1.04);
}

.cats__label {
    display: block;
    margin-top: 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10.3px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #000;
    transition: opacity 0.2s ease;
}

.cats__link:hover .cats__label {
    opacity: 0.6;
}

/* New arrivals shelf */
.arrivals {
    padding: 0 0 80px;
    background: #fff;
}

.arrivals__title {
    margin: 0 0 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 24.2px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.arrivals__shelf {
    display: flex;
    justify-content: safe center;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.arrivals__shelf::-webkit-scrollbar {
    display: none;
}

.arrival {
    flex: 0 0 calc((100% - 36px) / 4);
    min-width: 0;
    scroll-snap-align: start;
    display: block;
    color: inherit;
    text-decoration: none;
}

.arrival__media {
    position: relative;
    aspect-ratio: 406 / 487;
    overflow: hidden;
    background: #f2f1ef;
}

.arrival__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.arrival:hover .arrival__media img {
    transform: scale(1.04);
}

.arrival__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #0a0a0a;
    white-space: nowrap;
}

.arrival__add {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #17130F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.arrival__add:hover {
    background: #17130F;
    border-color: #17130F;
    color: #fff;
    transform: rotate(90deg);
}

.arrival__add:active {
    transform: rotate(90deg) scale(0.92);
}

.arrival__name {
    margin: 16px 0 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10.3px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #000;
    transition: opacity 0.2s ease;
}

.arrival:hover .arrival__name {
    opacity: 0.6;
}

.arrival__price {
    display: block;
    margin-top: 6px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10.9px;
    letter-spacing: 0.12px;
    color: #000;
}

/* Services */
.services {
    padding: 96px 0 100px;
    background: #f6f5f3;
}

.services__title {
    margin: 0 0 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19.1px;
    line-height: 24.2px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #000;
}

.services__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 1360px;
    margin: 0 auto;
}

.services__link {
    display: block;
    color: inherit;
}

.services__media {
    display: block;
    aspect-ratio: 445 / 534;
    overflow: hidden;
    background: #ecebe8;
}

.services__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.services__link:hover .services__media img {
    transform: scale(1.03);
}

.services__label {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10.3px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #000;
    transition: opacity 0.2s ease;
}

.services__link:hover .services__label {
    opacity: 0.6;
}

/* Footer 2026 */
.footer--2026 {
    position: relative;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
    padding: 64px 0 26px;
    margin-top: 0;
    overflow: visible;
}

.footer--2026 .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: none;
}

.footer--2026 .footer__brand {
    max-width: 340px;
}

.footer--2026 .footer__logo {
    display: block;
    margin-bottom: 30px;
}

.footer--2026 .footer__skull {
    height: 76px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer--2026 .footer__word {
    height: 27px;
    width: auto;
    display: block;
}

.footer--2026 .footer__about {
    margin: 0;
    max-width: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 23.4px;
    color: #2a2a28;
}

.footer--2026 .footer__cols {
    display: flex;
    gap: 64px;
}

.footer--2026 .footer__heading {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8a8a87;
}

.footer--2026 .footer__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer--2026 .footer__link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 23.4px;
    color: #2a2a28;
    background: none;
    transition: color 0.2s ease;
}

.footer--2026 .footer__link:hover {
    color: #000;
}

.footer--2026 .footer__link--strong {
    font-weight: 500;
}

.footer--2026 .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
    flex-wrap: wrap;
}

.footer--2026 .footer__copy {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8a8a87;
}

.footer--2026 .footer__legal {
    display: flex;
    align-items: center;
    gap: 36px;
}

.footer--2026 .footer__legal-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #8a8a87;
    transition: color 0.2s ease;
}

.footer--2026 .footer__legal-link:hover {
    color: #17130F;
}

/* ---- Home 2026 responsive ---- */
@media (max-width: 1100px) {
    .arrival {
        flex: 0 0 calc((100% - 24px) / 3);
    }
}

@media (max-width: 900px) {
    .cats {
        padding: 48px 0;
    }

    .arrivals {
        padding: 48px 0 56px;
    }

    .arrival {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .services {
        padding: 64px 0 72px;
    }

    .footer--2026 .footer__top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .promo__btn {
        width: 128px;
        font-size: 11px;
    }

    .promo__title {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .cats {
        padding: 36px 0;
    }

    .cats__list {
        gap: 8px;
    }

    .arrivals {
        padding: 36px 0 48px;
    }

    .arrival {
        flex: 0 0 78%;
    }

    .services {
        padding: 48px 0 56px;
    }

    .services__list {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
    }

    .footer--2026 .footer__cols {
        gap: 40px;
    }

    .footer--2026 .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer--2026 .footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .promo__actions {
        gap: 6px;
    }

    .promo__btn {
        width: 118px;
        font-size: 10.5px;
    }
}

/* ==========================================================================
   CATALOG 2026 — new Figma layout
   ========================================================================== */

/* Category tabs */
.cat-tabs {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #17130F;
    background: #fff;
}

.cat-tabs__list {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 45px;
}

.cat-tab {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #17130F;
    white-space: nowrap;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cat-tab:hover {
    border-color: #d6d6d6;
}

.cat-tab.is-active {
    border-color: #17130F;
}

/* Section + centered title */
.catalog--2026 {
    padding: 0 0 80px;
}

.catalog--2026 .catalog__title {
    margin: 0;
    padding: 40px 0 32px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #17130F;
}

/* Full-bleed hero */
.catalog--2026 .catalog__hero {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 533;
    max-height: 560px;
    margin-bottom: 0;
    overflow: hidden;
    line-height: 0;
}

.catalog--2026 .catalog__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Toolbar */
.cat-toolbar {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.cat-toolbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    gap: 16px;
}

.cat-toolbar__count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #17130F;
    white-space: nowrap;
}

.cat-toolbar__count b {
    font-weight: 600;
}

.cat-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cat-toolbar__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 12px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 11.8px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #17130F;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s ease;
}

.cat-toolbar__btn:hover {
    opacity: 0.6;
}

.cat-toolbar__badge {
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: #17130F;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0;
}

/* Sort dropdown */
.cat-sort {
    position: relative;
}

.cat-sort__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.18);
    padding: 6px;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.cat-sort.is-open .cat-sort__menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.cat-sort__opt {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #17130F;
    border-radius: 3px;
    transition: background 0.15s ease;
}

.cat-sort__opt:hover {
    background: #f6f6f6;
}

.cat-sort__opt.is-active {
    font-weight: 600;
}

/* Filter drawer */
.filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 94;
    background: rgba(10, 10, 10, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

body.filters-open {
    overflow: hidden;
}

body.filters-open .filters-backdrop {
    opacity: 1;
    visibility: visible;
}

.catalog--2026 .catalog__filters {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: #fff;
    z-index: 95;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    padding: 0;
    border: none;
    margin: 0;
}

body.filters-open .catalog--2026 .catalog__filters {
    transform: none;
}

.catalog--2026 .filters-sheet__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.catalog--2026 .filters-sheet__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #17130F;
}

.catalog--2026 .filters-sheet__close {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.catalog--2026 .filters-sheet__close:hover {
    background: #f4f4f4;
}

.catalog--2026 .filter-wrap {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 24px;
}

.catalog--2026 .filter-wrap:first-of-type {
    padding-left: 24px;
}

.catalog--2026 .filter-wrap:last-of-type {
    border-bottom: none;
}

.catalog--2026 .filter {
    width: 100%;
    justify-content: flex-start;
    padding: 0 0 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #17130F;
    cursor: default;
    pointer-events: none;
}

.catalog--2026 .filter svg {
    display: none;
}

.catalog--2026 .filter-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    gap: 4px;
    background: transparent;
    max-height: none;
    overflow: visible;
}

.catalog--2026 .filter-menu__actions {
    display: none;
}

.catalog--2026 .filters-sheet__bottom {
    display: flex;
    gap: 10px;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid #ececec;
    position: sticky;
    bottom: 0;
    background: #fff;
    z-index: 2;
    margin-top: auto;
}

.catalog--2026 .filters-sheet__clear,
.catalog--2026 .filters-sheet__apply {
    flex: 1;
    height: 48px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.catalog--2026 .filters-sheet__clear {
    background: #fff;
    color: #17130F;
    border: 1px solid #17130F;
}

.catalog--2026 .filters-sheet__clear:hover {
    background: #f4f4f4;
}

.catalog--2026 .filters-sheet__apply {
    background: #17130F;
    color: #fff;
}

.catalog--2026 .filters-sheet__apply:hover {
    background: #2a221c;
}

/* Product grid + cards */
.catalog--2026 .catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 12px;
    padding-top: 40px;
}

.pcard {
    position: relative;
    min-width: 0;
}

.pcard__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.pcard__media {
    position: relative;
    display: block;
    aspect-ratio: 465 / 581;
    overflow: hidden;
    background: #f2f1ef;
}

.pcard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pcard:hover .pcard__img {
    transform: scale(1.03);
}

.pcard__add {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #17130F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pcard__add:hover {
    background: #17130F;
    border-color: #17130F;
    color: #fff;
    transform: rotate(90deg);
}

.pcard__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #17130F;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.pcard__nav--prev {
    left: 8px;
}

.pcard__nav--next {
    right: 8px;
}

.pcard__media:hover .pcard__nav {
    opacity: 1;
}

.pcard__nav:hover {
    background: #fff;
}

.pcard__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pcard__media:hover .pcard__dots {
    opacity: 1;
}

.pcard__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 50%;
    background: #d8d8d8;
    border: 1px solid #fff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.pcard__dot.is-active {
    background: #17130F;
}

.pcard__name {
    display: block;
    margin-top: 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #000;
    transition: opacity 0.2s ease;
}

.pcard:hover .pcard__name {
    opacity: 0.6;
}

.pcard__price {
    display: block;
    margin-top: 6px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11.5px;
    color: #000;
}

/* Load more */
.catalog--2026 .catalog__more {
    padding: 48px 0 20px;
}

.catalog--2026 .btn-more {
    min-width: 0;
    height: 40px;
    padding: 0 26px;
    background: #fff;
    color: #17130F;
    border: 1px solid #17130F;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.catalog--2026 .btn-more:hover {
    background: #17130F;
    color: #fff;
}

/* Catalog 2026 responsive */
@media (max-width: 1100px) {
    .catalog--2026 .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .catalog--2026 .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 10px;
    }

    .catalog--2026 .catalog__hero {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 560px) {
    .catalog--2026 .catalog__filters {
        width: 100%;
    }

    .cat-tabs__list {
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .cat-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .catalog--2026 .catalog__title {
        padding: 28px 0 22px;
        font-size: 16px;
    }
}

/* ==========================================================================
   PRODUCT PAGE 2026 — new Figma layout
   ========================================================================== */

.pdp {
    padding-bottom: 80px;
}

.pdp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

/* Stacked gallery (left) */
.pdp__gallery {
    border-right: 1px solid #ececec;
    line-height: 0;
}

.pdp__shot {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #f2f1ef;
    cursor: zoom-in;
    line-height: 0;
}

.pdp__shot + .pdp__shot {
    border-top: 1px solid #fff;
}

.pdp__shot img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.pdp__shot:hover img {
    opacity: 0.9;
}

/* Sticky info panel (right) */
.pdp__info {
    position: sticky;
    top: 0;
    align-self: start;
}

.pdp__info-inner {
    width: min(600px, calc(100% - 48px));
    margin: 0 auto;
    padding: 60px 0 40px;
}

.pdp__name {
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12.4px;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: #000;
}

.pdp__subtitle {
    margin: 28px 0 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13.7px;
    line-height: 19.6px;
    color: #000;
}

.pdp__price-block {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid #bdbdbd;
}

.pdp__price {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #000;
}

.pdp__pills {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 22px;
}

.pdp__pill {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    color: #000;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.pdp__pill--active {
    border-color: #000;
}

.pdp__pill:not(.pdp__pill--active):hover {
    border-color: #d6d6d6;
}

.pdp__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.pdp__detail {
    margin: 0;
}

.pdp__detail-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
    line-height: 0;
}

.pdp__detail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.pdp__detail-btn:hover img {
    opacity: 0.9;
}

.pdp__detail-label {
    margin-top: 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11.6px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    color: #000;
}

.pdp__add {
    margin-top: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #17130F;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pdp__add:hover {
    background: #17130F;
    border-color: #17130F;
    color: #fff;
}

.pdp__add:active {
    transform: scale(0.99);
}

/* Accordion */
.pdp__accordion {
    margin-top: 28px;
    border-bottom: 1px solid #bdbdbd;
}

.acc__item {
    border-top: 1px solid #bdbdbd;
}

.acc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11.5px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #17130F;
    text-align: left;
}

.acc__icon {
    display: inline-flex;
    flex-shrink: 0;
    color: #17130F;
    transition: transform 0.25s ease;
}

.acc__item.is-open .acc__icon {
    transform: rotate(180deg);
}

.acc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.acc__item.is-open .acc__body {
    max-height: 1600px;
}

.acc__body-inner {
    padding: 0 0 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.6;
    color: #3f3b35;
}

.acc__body-inner p {
    margin: 0 0 12px;
}

.acc__body-inner p:last-child {
    margin-bottom: 0;
}

.pdp__note {
    margin: 26px 0 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    color: #8a8a87;
}

/* Related 2026 */
.related--2026 {
    border-top: 1px solid #ececec;
    padding: 56px 0 20px;
}

.related--2026 .related__title {
    margin: 0 0 32px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #17130F;
}

@media (max-width: 900px) {
    .pdp__grid {
        grid-template-columns: 1fr;
    }

    .pdp__gallery {
        border-right: none;
    }

    .pdp__info {
        position: static;
    }

    .pdp__info-inner {
        width: min(600px, calc(100% - 40px));
        padding: 32px 0 8px;
    }
}
