.visually-hidden {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-menu a[aria-current="page"] {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
}

.mart-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 18%, rgba(215, 137, 85, 0.2), transparent 29%),
        linear-gradient(135deg, #f8f3e9 0%, #edf5f1 100%);
}

.mart-hero__inner {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 72px;
    padding-block: 72px;
}

.mart-hero__content {
    position: relative;
    z-index: 2;
}

.mart-hero h1 {
    max-width: 760px;
    margin: 12px 0 20px;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.mart-hero__content > p:not(.eyebrow) {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.mart-hero__assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 30px 0 0;
    padding: 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    list-style: none;
}

.mart-hero__assurances li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mart-hero__assurances span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 13px;
}

.mart-hero__feature {
    min-height: 430px;
    position: relative;
    isolation: isolate;
}

.mart-hero__glow {
    width: 370px;
    height: 370px;
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 169, 0.85) 0%, rgba(255, 238, 207, 0.32) 52%, transparent 72%);
    transform: translateX(-50%);
}

.feature-lamp {
    width: 250px;
    height: 350px;
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
}

.feature-lamp__light {
    width: 238px;
    height: 218px;
    position: absolute;
    top: 26px;
    left: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 152, 0.7), transparent 69%);
}

.feature-lamp__shade {
    width: 190px;
    height: 112px;
    position: absolute;
    top: 78px;
    left: 30px;
    z-index: 2;
    border-radius: 56% 56% 25% 25%;
    background: linear-gradient(155deg, #fff5de 4%, #e4aa6e 100%);
    box-shadow: inset -18px -14px 32px rgba(160, 91, 47, 0.16), 0 20px 45px rgba(104, 65, 37, 0.14);
}

.feature-lamp__stem {
    width: 18px;
    height: 150px;
    position: absolute;
    bottom: 45px;
    left: 116px;
    border-radius: 10px;
    background: linear-gradient(90deg, #a66d4b, #d49b73 52%, #98603f);
}

.feature-lamp__base {
    width: 150px;
    height: 34px;
    position: absolute;
    bottom: 25px;
    left: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ba7b55, #875137);
    box-shadow: 0 18px 25px rgba(79, 49, 30, 0.19);
}

.feature-card {
    max-width: 220px;
    position: absolute;
    right: -4px;
    bottom: 45px;
    z-index: 3;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.feature-card span,
.feature-card strong {
    display: block;
}

.feature-card__label {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card strong {
    font-size: 17px;
    line-height: 1.3;
}

.feature-card span:last-child {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.catalogue {
    padding-block: 92px 108px;
    background: #fff;
}

.catalogue__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.catalogue__heading h2 {
    max-width: 720px;
    margin: 7px 0 0;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.cart-button {
    min-height: 54px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 10px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.cart-button:hover {
    background: var(--primary);
}

.cart-button__icon {
    font-size: 24px;
    line-height: 1;
    transform: rotate(180deg);
}

.cart-button__count {
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding-inline: 8px;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
}

.catalogue-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--cream);
}

.search-field,
.sort-field {
    display: block;
    margin: 0;
}

.search-field__label,
.sort-field > span {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.search-field__control {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid #c9d7d3;
    border-radius: 13px;
    background: var(--white);
}

.search-field__control > span {
    color: var(--primary);
    font-size: 25px;
    line-height: 1;
}

.search-field input,
.sort-field select {
    height: 52px;
    margin: 0;
    border: 1px solid #c9d7d3;
    border-radius: 13px;
    background-color: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 16px;
}

.search-field input {
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    outline: 0;
}

.search-field__control:focus-within,
.sort-field select:focus-visible {
    border-color: var(--primary);
    outline: 3px solid rgba(14, 98, 89, 0.16);
}

.sort-field select {
    width: 100%;
    padding: 0 38px 0 13px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.category-filter button {
    min-height: 44px;
    padding: 8px 17px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--muted);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.category-filter button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-filter button[aria-pressed="true"] {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.catalogue__status {
    min-height: 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 15px;
}

.catalogue__status p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(22, 58, 55, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
    border-color: #b7cdc6;
    box-shadow: 0 20px 44px rgba(22, 58, 55, 0.12);
    transform: translateY(-4px);
}

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

.product-visual {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #edf5f1, #f8f3e9);
}

.product-card__visual-link {
    display: block;
    height: 245px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.product-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 220ms ease;
}

.product-card:hover .product-card__image,
.product-card__visual-link:focus-visible .product-card__image {
    transform: scale(1.04);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 7px 18px rgba(36, 66, 62, 0.1);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wishlist-form {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    margin: 0;
}

.wishlist-button {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(216, 226, 223, 0.95);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.wishlist-button:hover,
.wishlist-button[aria-pressed="true"] {
    border-color: #d78955;
    background: #fff2e7;
    color: #ae5d33;
    transform: translateY(-1px);
}

.wishlist-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wishlist-button[aria-pressed="true"] svg {
    fill: currentColor;
}

.product-visual::before {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    top: 34px;
    left: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    transform: translateX(-50%);
}

.product-visual__object,
.product-visual__object::before,
.product-visual__object::after,
.product-visual__accent,
.product-visual__accent::before,
.product-visual__accent::after {
    content: "";
    display: block;
    position: absolute;
}

.product-visual--tracker .product-visual__object {
    width: 66px;
    height: 114px;
    top: 66px;
    left: calc(50% - 33px);
    border-radius: 30px;
    background: #315c58;
    box-shadow: 0 20px 28px rgba(23, 50, 49, 0.2);
    transform: rotate(12deg);
}

.product-visual--tracker .product-visual__object::before {
    width: 88px;
    height: 82px;
    top: 16px;
    left: -11px;
    border: 7px solid #173231;
    border-radius: 24px;
    background: #eaf1d0;
}

.product-visual--tracker .product-visual__accent {
    width: 30px;
    height: 15px;
    top: 111px;
    left: calc(50% - 13px);
    z-index: 2;
    border-bottom: 4px solid #d78955;
    transform: rotate(12deg) skewX(-28deg);
}

.product-visual--lamp .product-visual__object {
    width: 126px;
    height: 74px;
    top: 66px;
    left: calc(50% - 63px);
    z-index: 2;
    border-radius: 58% 58% 24% 24%;
    background: linear-gradient(145deg, #fff2d0, #d78955);
    box-shadow: 0 16px 30px rgba(126, 82, 48, 0.2);
}

.product-visual--lamp .product-visual__object::after {
    width: 12px;
    height: 76px;
    top: 64px;
    left: 57px;
    border-radius: 8px;
    background: #936142;
}

.product-visual--lamp .product-visual__accent {
    width: 96px;
    height: 22px;
    top: 194px;
    left: calc(50% - 48px);
    border-radius: 50%;
    background: #875137;
    box-shadow: 0 13px 20px rgba(77, 49, 31, 0.18);
}

.product-visual--speaker .product-visual__object {
    width: 146px;
    height: 108px;
    top: 83px;
    left: calc(50% - 73px);
    border: 8px solid #d5e4df;
    border-radius: 32px;
    background: #315c58;
    box-shadow: 0 18px 30px rgba(23, 50, 49, 0.18);
}

.product-visual--speaker .product-visual__object::before,
.product-visual--speaker .product-visual__object::after {
    width: 44px;
    height: 44px;
    top: 24px;
    border: 5px solid #dceee8;
    border-radius: 50%;
}

.product-visual--speaker .product-visual__object::before { left: 16px; }
.product-visual--speaker .product-visual__object::after { right: 16px; }

.product-visual--kit .product-visual__object {
    width: 150px;
    height: 112px;
    top: 92px;
    left: calc(50% - 75px);
    border-radius: 17px;
    background: #d78955;
    box-shadow: inset 0 13px 0 rgba(255, 255, 255, 0.14), 0 18px 28px rgba(102, 63, 39, 0.2);
}

.product-visual--kit .product-visual__object::before {
    width: 70px;
    height: 35px;
    top: -29px;
    left: 40px;
    border: 9px solid #9f6744;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
}

.product-visual--kit .product-visual__accent {
    width: 38px;
    height: 12px;
    top: 140px;
    left: calc(50% - 19px);
    z-index: 2;
    border-radius: 4px;
    background: #fff5de;
}

.product-visual--kit .product-visual__accent::after {
    width: 12px;
    height: 38px;
    top: -13px;
    left: 13px;
    border-radius: 4px;
    background: #fff5de;
}

.product-visual--bottle .product-visual__object {
    width: 76px;
    height: 142px;
    top: 63px;
    left: calc(50% - 38px);
    border: 5px solid #5b817c;
    border-radius: 25px 25px 31px 31px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(190, 222, 214, 0.7));
    box-shadow: 0 18px 30px rgba(45, 86, 80, 0.16);
}

.product-visual--bottle .product-visual__object::before {
    width: 42px;
    height: 19px;
    top: -17px;
    left: 12px;
    border-radius: 8px 8px 3px 3px;
    background: #315c58;
}

.product-visual--bottle .product-visual__accent {
    width: 66px;
    height: 50px;
    top: 128px;
    left: calc(50% - 33px);
    border-radius: 12px;
    background: rgba(215, 137, 85, 0.7);
}

.product-visual--tablet .product-visual__object {
    width: 158px;
    height: 105px;
    top: 64px;
    left: calc(50% - 79px);
    border: 9px solid #173231;
    border-radius: 15px;
    background: linear-gradient(135deg, #b8ddd2, #f6dfbd);
    box-shadow: 0 18px 30px rgba(23, 50, 49, 0.2);
    transform: rotate(-4deg);
}

.product-visual--tablet .product-visual__object::before,
.product-visual--tablet .product-visual__object::after {
    width: 42px;
    height: 42px;
    top: 24px;
    border-radius: 50%;
    background: #fff;
}

.product-visual--tablet .product-visual__object::before { left: 24px; }
.product-visual--tablet .product-visual__object::after { right: 24px; background: #d78955; }

.product-visual--tablet .product-visual__accent {
    width: 108px;
    height: 54px;
    top: 169px;
    left: calc(50% - 42px);
    border-left: 15px solid #315c58;
    border-bottom: 15px solid #315c58;
    transform: skewX(-18deg);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 25px;
}

.product-card__category {
    margin: 0 0 7px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.product-card h3 a,
.product-card__visual-link {
    color: inherit;
    text-decoration: none;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible,
.product-card__details:hover,
.product-card__details:focus-visible {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-card__description {
    margin: 13px 0 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.add-to-cart-form {
    margin: 0;
}

.stock-status {
    width: fit-content;
    margin: 0 0 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e6f3ed;
    color: #165c46;
    font-size: 12px;
    font-weight: 900;
}

.stock-status--low { background: #fff3d8; color: #805900; }
.stock-status--out { background: #f3e5e3; color: #8a3028; }

.product-card__details {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.product-card__price {
    margin: 0;
    color: var(--ink);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.product-card__price small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.add-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 15px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.add-button:hover {
    background: var(--primary-dark);
}

.add-button span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.empty-results {
    margin-top: 30px;
    padding: 54px 24px;
    border: 1px dashed #abc1ba;
    border-radius: 24px;
    background: var(--cream);
    text-align: center;
}

.empty-results > span {
    color: var(--primary);
    font-size: 48px;
}

.empty-results h3 {
    margin: 5px 0 4px;
    font-size: 26px;
}

.empty-results--visible {
    display: block;
}

.empty-results p {
    margin: 0 0 20px;
    color: var(--muted);
}

.mart-support {
    background: var(--primary-dark);
    color: var(--white);
}

.mart-support__inner {
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-block: 58px;
}

.mart-support .eyebrow {
    color: #aed9cb;
}

.mart-support h2 {
    margin: 7px 0 8px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.mart-support p:last-child {
    margin: 0;
    color: #d9e9e5;
}

body.cart-open {
    overflow: hidden;
}

.cart-layer {
    position: fixed;
    inset: 0;
    z-index: 500;
}

.cart-backdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(10, 32, 31, 0.52);
    cursor: default;
}

.cart-drawer {
    width: min(500px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -24px 0 60px rgba(11, 34, 33, 0.2);
}

.cart-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 30px 24px;
    border-bottom: 1px solid var(--border);
}

.cart-drawer__header h2 {
    margin: 2px 0 0;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.cart-drawer__close {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
}

.cart-drawer__close:hover {
    background: var(--primary-soft);
}

.cart-empty {
    display: grid;
    flex: 1;
    place-items: center;
    align-content: center;
    padding: 50px 34px;
    text-align: center;
}

.cart-empty[hidden],
.cart-content[hidden] {
    display: none !important;
}

.cart-empty > span {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 40px;
    transform: rotate(180deg);
}

.cart-empty h3 {
    margin: 20px 0 8px;
    font-size: 24px;
}

.cart-empty p {
    max-width: 330px;
    margin: 0 0 24px;
    color: var(--muted);
}

.cart-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.cart-items {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0 30px;
    list-style: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 15px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item__visual {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #edf5f1, #f8f3e9);
    color: var(--primary);
    font-size: 25px;
    font-weight: 900;
}

.cart-item h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
}

.cart-item__category {
    margin: 3px 0 8px;
    color: var(--muted);
    font-size: 12px;
}

.cart-item__price {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
}

.cart-item__actions {
    display: flex;
    grid-column: 2 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.quantity-control button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 20px;
    cursor: pointer;
}

.quantity-control button:hover {
    color: var(--primary);
}

.quantity-control span {
    min-width: 26px;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
}

.cart-item__remove,
.cart-summary__continue {
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.cart-summary {
    margin-top: auto;
    padding: 26px 30px 32px;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

.cart-summary > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.cart-summary > div span {
    font-size: 15px;
    font-weight: 800;
}

.cart-summary > div strong {
    font-size: 28px;
    letter-spacing: -0.04em;
}

.cart-summary p {
    margin: 7px 0 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cart-summary__action {
    width: 100%;
}

.cart-summary__continue {
    width: 100%;
    margin-top: 13px;
    text-align: center;
}

@media (max-width: 1080px) and (min-width: 801px) {
    .site-menu { gap: 13px; }
    .site-menu a { font-size: 14px; }
    .site-menu__admin { padding-left: 13px; }
}

@media (max-width: 980px) {
    .mart-hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
        gap: 28px;
    }

    .feature-card { right: 0; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    .site-menu a[aria-current="page"] { text-underline-offset: 4px; }

    .mart-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 60px 28px;
    }

    .mart-hero__feature {
        width: min(100%, 500px);
        margin-inline: auto;
    }

    .catalogue__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-toolbar { grid-template-columns: 1fr; }

    .mart-support__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .mart-hero__inner { padding-block: 50px 18px; }

    .mart-hero h1 { font-size: clamp(42px, 13vw, 58px); }

    .mart-hero__content > p:not(.eyebrow) { font-size: 18px; }

    .mart-hero__assurances {
        align-items: flex-start;
        flex-direction: column;
    }

    .mart-hero__feature { min-height: 360px; }
    .feature-lamp { bottom: 0; transform: translateX(-50%) scale(0.86); transform-origin: bottom center; }
    .mart-hero__glow { transform: translateX(-50%) scale(0.84); }
    .feature-card { right: 2px; bottom: 28px; }

    .catalogue { padding-block: 68px 76px; }
    .catalogue__heading { margin-bottom: 28px; }
    .cart-button { width: 100%; justify-content: center; }
    .catalogue-toolbar { padding: 16px; }
    .category-filter { flex-wrap: nowrap; margin-right: -14px; overflow-x: auto; padding: 2px 14px 7px 0; }
    .category-filter button { flex: 0 0 auto; }
    .product-grid { grid-template-columns: 1fr; }
    .product-visual { height: 230px; }
    .product-card__body { min-height: 305px; }

    .mart-support__inner { padding-block: 50px; }
    .mart-support .button { width: 100%; }

    .cart-drawer { width: 100%; }
    .cart-drawer__header { padding: 22px 20px 18px; }
    .cart-items { padding-inline: 20px; }
    .cart-item { grid-template-columns: 62px minmax(0, 1fr); }
    .cart-item__visual { width: 62px; height: 62px; }
    .cart-item > .cart-item__price { grid-column: 2; }
    .cart-item__actions { grid-column: 1 / -1; }
    .cart-summary { padding: 22px 20px 26px; }
}

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