body.hm-products-body {
    background: #f6f7f8;
    color: #15171a;
    font-family: Inter, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
}

body.hm-filter-open {
    overflow: hidden;
}

.hm-products-page,
.hm-product-detail-page {
    width: min(1320px, calc(100% - 28px));
    margin: 0 auto;
    padding: 14px 0 56px;
}

.hm-product-buybox__title > span,
.hm-product-title-row span {
    color: #b3261e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-product-buybox h1 {
    margin: 4px 0 5px;
    color: #111315;
    font-size: clamp(1.08rem, 1.55vw, 1.38rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.hm-product-buybox p {
    margin: 0;
    color: #68707a;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.hm-shop-sort select,
.hm-products-filter-form select {
    width: 100%;
    min-height: 36px;
    border: 1px solid #dde2e8;
    border-radius: 6px;
    background: #ffffff;
    color: #15171a;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
}

.hm-filter-panel__buttons button,
.hm-product-add {
    min-height: 36px;
    border: 0;
    border-radius: 6px;
    background: #b3261e;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
}

.hm-shop-layout {
    display: grid;
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.hm-desktop-filter {
    position: sticky;
    top: 76px;
    display: grid;
    gap: 12px;
    border: 1px solid #dde2e8;
    border-radius: 8px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.hm-desktop-filter__head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf0f3;
}

.hm-desktop-filter__head strong {
    color: #15171a;
    font-size: 0.92rem;
    font-weight: 800;
}

.hm-desktop-filter__head span {
    color: #68707a;
    font-size: 0.72rem;
    font-weight: 800;
}

.hm-shop-results {
    min-width: 0;
}

.hm-shop-toolbar {
    display: grid;
    grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #dde2e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.hm-shop-toolbar__count {
    display: grid;
    gap: 2px;
}

.hm-shop-toolbar__count strong {
    color: #15171a;
    font-size: 0.88rem;
    font-weight: 800;
}

.hm-shop-toolbar__count span {
    color: #707782;
    font-size: 0.74rem;
    font-weight: 600;
}

.hm-shop-sort {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hm-shop-sort label {
    color: #68707a;
    font-size: 0.74rem;
    font-weight: 800;
}

.hm-shop-sort select {
    width: 170px;
    padding: 0 8px;
}

.hm-shop-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    min-width: 0;
}

.hm-shop-quick-chips a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #dde2e8;
    border-radius: 999px;
    padding: 0 10px;
    background: #ffffff;
    color: #15171a;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
}

.hm-shop-quick-chips a.is-active,
.hm-shop-quick-chips a:hover,
.hm-shop-quick-chips a:focus {
    border-color: #b3261e;
    background: #fff4f2;
    color: #b3261e;
}

.hm-mobile-shop-bar {
    display: none;
}

.hm-product-view-toggle {
    display: none;
}

.hm-filter-shell {
    position: fixed;
    inset: 0;
    z-index: 5200;
    visibility: hidden;
    pointer-events: none;
}

.hm-filter-shell.is-open {
    visibility: visible;
    pointer-events: auto;
}

.hm-filter-shell__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(17, 19, 21, 0.42);
    opacity: 0;
    transition: opacity 160ms ease;
}

.hm-filter-shell.is-open .hm-filter-shell__backdrop {
    opacity: 1;
}

.hm-filter-panel {
    position: absolute;
    top: 82px;
    right: max(14px, calc((100vw - 1320px) / 2));
    width: min(360px, calc(100vw - 28px));
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid #dde2e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 180ms ease, opacity 160ms ease;
}

.hm-filter-shell.is-open .hm-filter-panel {
    transform: translateY(0);
    opacity: 1;
}

.hm-filter-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.hm-filter-panel__head strong {
    display: block;
    color: #15171a;
    font-size: 1rem;
    font-weight: 800;
}

.hm-filter-panel__head span {
    color: #68707a;
    font-size: 0.76rem;
    font-weight: 600;
}

.hm-filter-panel__head button {
    min-height: 30px;
    border: 1px solid #dde2e8;
    border-radius: 6px;
    padding: 0 9px;
    background: #ffffff;
    color: #15171a;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 800;
}

.hm-products-filter-form {
    display: grid;
    gap: 12px;
}

.hm-products-filter-form label,
.hm-product-card__selector {
    display: grid;
    gap: 5px;
}

.hm-products-filter-form label > span,
.hm-product-card__selector > span {
    color: #68707a;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hm-products-filter-form select {
    padding: 0 9px;
}

.hm-product-card__selector {
    min-width: 0;
}

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

.hm-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.hm-variant-option {
    min-width: 48px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid #dde2e8;
    border-radius: 9px;
    background: #ffffff;
    color: #363b40;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hm-variant-option:hover,
.hm-variant-option:focus {
    border-color: rgba(179, 38, 30, 0.35);
    color: #b3261e;
    outline: 0;
}

.hm-variant-option.is-active {
    border-color: #b3261e;
    background: linear-gradient(135deg, #b3261e, #d97706);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(179, 38, 30, 0.18);
}

.hm-variant-option.is-out {
    border-color: rgba(150, 158, 170, 0.45);
    background: #f4f5f6;
    color: #8a929c;
    text-decoration: line-through;
}

.hm-variant-option.is-out:hover,
.hm-variant-option.is-out:focus {
    border-color: rgba(150, 158, 170, 0.62);
    color: #68707a;
}

.hm-variant-option.is-out.is-active {
    background: #eef0f2;
    box-shadow: none;
}

.hm-variant-options--detail {
    gap: 8px;
}

.hm-variant-options--detail .hm-variant-option {
    min-width: 72px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.86rem;
}

.hm-filter-checkbox {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.hm-filter-checkbox input {
    width: 16px;
    height: 16px;
}

.hm-filter-checkbox span {
    color: #15171a;
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
}

.hm-filter-panel__buttons {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding-top: 4px;
}

.hm-filter-panel__buttons a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dde2e8;
    border-radius: 6px;
    padding: 0 13px;
    color: #15171a;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

.hm-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.hm-product-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid #dfe5ea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.hm-product-card:hover {
    border-color: #cbd4dd;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.075);
}

.hm-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.88;
    overflow: hidden;
    border-bottom: 1px solid #edf0f3;
    background: #f8faf7;
    color: inherit;
    text-decoration: none;
}

.hm-product-card__media img,
.hm-product-gallery__main img,
.hm-related-product img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.hm-product-card__media img {
    padding: 12px;
    transition: transform 170ms ease;
}

.hm-product-card:hover .hm-product-card__media img {
    transform: scale(1.025);
}

.hm-product-card__media span,
.hm-product-gallery__main span {
    position: absolute;
    top: 9px;
    left: 9px;
    min-height: 23px;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    padding: 0 8px;
    background: #047f00;
    color: #ffffff;
    font-size: 0.63rem;
    font-weight: 900;
}

.hm-product-stock {
    position: absolute;
    right: 9px;
    bottom: 9px;
    min-height: 23px;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #1f7a4d;
    font-size: 0.63rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.hm-product-stock.is-out,
.hm-product-buybox__trust span.is-out,
.hm-related-product__media span.is-out {
    border-color: #f2c5bd;
    background: #fff2ef;
    color: #b3261e;
}

.hm-product-card__body {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 11px;
}

.hm-product-card__copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.hm-product-card__summary {
    display: none;
    margin: 0;
    color: #68707a;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.35;
}

.hm-product-card h2 {
    margin: 0;
    min-height: 2.42em;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.21;
    letter-spacing: 0;
}

.hm-product-card h2 a {
    display: -webkit-box;
    overflow: hidden;
    color: #15171a;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.hm-product-card h2 a:hover,
.hm-product-card h2 a:focus {
    color: #b3261e;
}

.hm-product-card__rating {
    min-width: 0;
    min-height: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7b838c;
    font-size: 0.7rem;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.hm-product-card__stars {
    display: inline-flex;
    gap: 1px;
    align-items: center;
    color: #d7dce1;
    font-size: 0.72rem;
    line-height: 1;
}

.hm-product-card__stars i {
    font-style: normal;
}

.hm-product-card__stars i.is-filled {
    color: #f2b01e;
}

.hm-product-card__rating strong {
    color: #25282c;
    font-size: 0.72rem;
    font-weight: 900;
}

.hm-product-card__rating em {
    color: #c3c9cf;
    font-style: normal;
    font-weight: 800;
}

.hm-product-card__rating > span:last-child {
    min-width: 0;
    overflow: hidden;
    color: #7d858e;
    text-overflow: ellipsis;
}

.hm-product-card__price {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    align-items: flex-end;
    border-top: 1px solid #edf0f3;
    padding-top: 8px;
}

.hm-product-card__price span {
    color: #8a929b;
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: line-through;
}

.hm-product-card__price strong {
    color: #130949;
    font-size: 1.08rem;
    font-weight: 950;
}

.hm-product-card__actions {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 7px;
    margin-top: auto;
}

.hm-product-qty {
    width: 100%;
    height: 34px;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    overflow: hidden;
    border: 1px solid #dde2e8;
    border-radius: 6px;
    background: #ffffff;
}

.hm-product-qty button,
.hm-product-qty input {
    min-width: 0;
    border: 0;
    background: transparent;
    color: #15171a;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.hm-product-qty input {
    border-right: 1px solid #edf0f3;
    border-left: 1px solid #edf0f3;
    outline: 0;
}

.hm-product-add {
    min-height: 34px;
    padding: 0 8px;
}

.hm-product-card__details {
    min-height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfd8d4;
    border-radius: 6px;
    background: #ffffff;
    color: #235648;
    font-size: 0.75rem;
    font-weight: 900;
    text-decoration: none;
}

.hm-product-card__details:hover,
.hm-product-card__details:focus {
    border-color: #235648;
    background: #f2faf4;
    color: #235648;
}

.hm-product-add.is-added {
    background: #1f7a4d;
}

.hm-product-add:disabled {
    background: #8a929b;
    cursor: not-allowed;
    opacity: 0.78;
}

.hm-products-empty {
    max-width: 620px;
    border: 1px solid #dde2e8;
    border-radius: 8px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.hm-products-empty h2 {
    margin: 0 0 7px;
    color: #15171a;
    font-size: 1.1rem;
}

.hm-products-empty p {
    margin: 0 0 10px;
    color: #68707a;
    font-weight: 600;
    line-height: 1.5;
}

.hm-cart-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 6000;
    max-width: min(320px, calc(100vw - 36px));
    border-radius: 8px;
    padding: 11px 13px;
    background: #15171a;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.24);
}

.hm-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin: 0 0 12px;
    color: #68707a;
    font-size: 0.76rem;
    font-weight: 700;
}

.hm-product-breadcrumb a,
.hm-product-detail__back {
    color: #1f7a4d;
    text-decoration: none;
}

.hm-product-detail {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(390px, 1fr);
    gap: 16px;
    align-items: start;
}

.hm-product-gallery,
.hm-product-buybox,
.hm-product-info article,
.hm-related-product {
    border: 1px solid #dde2e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.hm-product-gallery {
    padding: 10px;
}

.hm-product-gallery__main {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.72;
    border-radius: 8px;
    background: #f4f6f8;
    touch-action: pan-y;
    user-select: none;
    cursor: zoom-in;
}

.hm-product-gallery__main img {
    pointer-events: none;
    transition: transform 180ms ease;
    will-change: transform;
}

.hm-product-gallery__main.is-zooming img {
    transition-duration: 90ms;
}

.hm-product-gallery__zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(35, 86, 72, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #235648;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.hm-product-gallery__zoom:hover,
.hm-product-gallery__zoom:focus {
    background: #235648;
    color: #ffffff;
    outline: 0;
    transform: translateY(-1px);
}

.hm-product-gallery__zoom .hm-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.hm-product-zoom-open {
    overflow: hidden;
}

.hm-product-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 7000;
    display: none;
}

.hm-product-zoom-modal.is-open {
    display: block;
}

.hm-product-zoom-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(12, 15, 18, 0.72);
}

.hm-product-zoom-modal__panel {
    position: absolute;
    inset: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.hm-product-zoom-modal__panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 18px;
    background: #f8faf7;
}

.hm-product-zoom-modal__close,
.hm-product-zoom-modal__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(35, 86, 72, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #235648;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.hm-product-zoom-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
    line-height: 1;
}

.hm-product-zoom-modal__nav {
    top: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
    transform: translateY(-50%);
}

.hm-product-zoom-modal:not(.has-multiple-images) .hm-product-zoom-modal__nav {
    display: none;
}

.hm-product-zoom-modal__nav--prev {
    left: 12px;
}

.hm-product-zoom-modal__nav--next {
    right: 12px;
}

.hm-product-zoom-modal__close:hover,
.hm-product-zoom-modal__close:focus,
.hm-product-zoom-modal__nav:hover,
.hm-product-zoom-modal__nav:focus {
    background: #235648;
    color: #ffffff;
    outline: 0;
}

.hm-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
}

.hm-product-gallery__thumbs button {
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0;
    background: #f4f6f8;
    cursor: pointer;
}

.hm-product-gallery__thumbs button.is-active,
.hm-product-gallery__thumbs button:hover,
.hm-product-gallery__thumbs button:focus {
    border-color: #b3261e;
}

.hm-product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.hm-product-buybox {
    position: sticky;
    top: 82px;
    display: grid;
    gap: 12px;
    padding: 16px;
}

.hm-product-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.hm-product-title-actions {
    display: flex;
    gap: 7px;
    align-items: center;
}

.hm-product-icon-action {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #dde2e8;
    border-radius: 999px;
    background: #ffffff;
    color: #15171a;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.hm-product-icon-action:hover,
.hm-product-icon-action:focus,
.hm-product-icon-action.is-active {
    border-color: #b3261e;
    background: #fff4f2;
    color: #b3261e;
}

.hm-product-icon-action .hm-icon {
    width: 16px;
    height: 16px;
}

.hm-product-buybox__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hm-product-buybox__trust span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d5eadf;
    border-radius: 999px;
    padding: 0 8px;
    background: #f0faf4;
    color: #1f7a4d;
    font-size: 0.68rem;
    font-weight: 800;
}

.hm-product-buybox__price strong {
    font-size: 1.35rem;
}

.hm-product-buybox__actions {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 9px;
}

.hm-product-delivery {
    display: grid;
    gap: 8px;
    border-top: 1px solid #edf0f3;
    padding-top: 11px;
}

.hm-product-delivery div {
    display: grid;
    gap: 2px;
}

.hm-product-delivery strong {
    color: #15171a;
    font-size: 0.8rem;
    font-weight: 800;
}

.hm-product-delivery span {
    color: #68707a;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.45;
}

.hm-product-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 14px;
    margin-top: 16px;
}

.hm-product-info article {
    padding: 16px;
}

.hm-product-info h2,
.hm-related-products h2 {
    margin: 0 0 8px;
    color: #15171a;
    font-size: 1rem;
    font-weight: 800;
}

.hm-product-info p,
.hm-product-info li {
    color: #68707a;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.55;
}

.hm-product-info ul {
    margin: 0;
    padding-left: 18px;
}

.hm-related-products {
    margin-top: 18px;
}

.hm-related-products__head,
.hm-product-reviews__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.hm-related-products__head h2,
.hm-product-reviews__head h2 {
    margin: 0;
}

.hm-related-products__head p,
.hm-product-reviews__head p {
    margin: 3px 0 0;
    color: #68707a;
    font-size: 0.76rem;
    font-weight: 600;
}

.hm-product-reviews__head > div > span {
    color: #b3261e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-related-products__actions {
    display: flex;
    gap: 7px;
    align-items: center;
}

.hm-related-products__actions button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #dde2e8;
    border-radius: 999px;
    background: #ffffff;
    color: #15171a;
    cursor: pointer;
}

.hm-related-products__actions button:hover,
.hm-related-products__actions button:focus {
    border-color: #b3261e;
    color: #b3261e;
}

.hm-related-products__actions a {
    color: #1f7a4d;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

.hm-related-products__viewport {
    overflow: hidden;
}

.hm-related-products__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 4);
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.hm-related-products__track::-webkit-scrollbar {
    display: none;
}

.hm-related-product {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    color: #15171a;
    text-decoration: none;
    scroll-snap-align: start;
}

.hm-related-product__media {
    position: relative;
    aspect-ratio: 1 / 0.78;
    background: #f4f6f8;
}

.hm-related-product__media span {
    position: absolute;
    right: 8px;
    bottom: 8px;
    min-height: 21px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 7px;
    background: rgba(255, 255, 255, 0.94);
    color: #1f7a4d;
    font-size: 0.62rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.hm-related-product__body {
    display: grid;
    gap: 6px;
    padding: 10px;
}

.hm-related-product h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.hm-related-product p {
    display: -webkit-box;
    min-height: 34px;
    margin: 0;
    overflow: hidden;
    color: #68707a;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.hm-related-product__price {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: baseline;
}

.hm-related-product__price strong {
    color: #b3261e;
    font-size: 0.86rem;
    font-weight: 800;
}

.hm-related-product__price span {
    color: #8a929b;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: line-through;
}

.hm-related-product em {
    color: #1f7a4d;
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 800;
}

.hm-product-reviews {
    margin-top: 22px;
}

.hm-product-reviews__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 14px;
}

.hm-review-summary,
.hm-review-cta,
.hm-review-card {
    border: 1px solid #dde2e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.hm-review-summary {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 16px;
}

.hm-review-score {
    display: grid;
    gap: 4px;
    background-color: white;
}

.hm-review-score strong {
    color: #000000;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
}

.hm-review-score span,
.hm-review-card__head span {
    color: #e0a100;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
}

.hm-review-score p {
    margin: 0;
    color: #68707a;
    font-size: 0.78rem;
    font-weight: 700;
}

.hm-review-bars {
    display: grid;
    gap: 8px;
}

.hm-review-bars div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    gap: 8px;
    align-items: center;
}

.hm-review-bars span,
.hm-review-bars em {
    color: #68707a;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 800;
}

.hm-review-bars strong {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf0f3;
}

.hm-review-bars i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #1f7a4d;
}

.hm-review-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.hm-review-cta div {
    display: grid;
    gap: 5px;
}

.hm-review-cta span {
    color: #e0a100;
    font-size: 0.94rem;
    letter-spacing: 0.04em;
}

.hm-review-cta h3 {
    margin: 0;
    color: #15171a;
    font-size: 1.04rem;
    font-weight: 800;
}

.hm-review-cta p {
    max-width: 520px;
    margin: 0;
    color: #68707a;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.5;
}

.hm-review-cta button {
    min-height: 36px;
    border: 0;
    border-radius: 6px;
    padding: 0 16px;
    background: #b3261e;
    color: #ffffff;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.hm-review-cta button + button {
    border: 1px solid #cfd8d4;
    background: #ffffff;
    color: #235648;
}

.hm-review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.hm-review-card {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.hm-review-card__head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: start;
}

.hm-review-card__head strong {
    display: block;
    color: #15171a;
    font-size: 0.86rem;
    font-weight: 800;
}

.hm-review-card__head em {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 8px;
    background: #f0faf4;
    color: #1f7a4d;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 800;
}

.hm-review-card h3 {
    margin: 0;
    color: #15171a;
    font-size: 0.92rem;
    font-weight: 800;
}

.hm-review-card p {
    margin: 0;
    color: #68707a;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
}

.hm-review-photos {
    display: flex;
    gap: 7px;
}

.hm-review-photos span {
    width: 44px;
    height: 44px;
    border: 1px solid #dde2e8;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(224, 161, 0, 0.18), rgba(179, 38, 30, 0.12)),
        #f8fafb;
}

.hm-review-login-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 6px;
    padding: 0 16px;
    background: #b3261e;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

.hm-review-alert {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #c7e8d2;
    background: #f0faf4;
    color: #1f7a4d;
    font-size: 0.84rem;
    font-weight: 800;
}

.hm-review-alert--error {
    border-color: #efb7af;
    background: #fff0ee;
    color: #9f2f26;
}

.hm-review-photos {
    flex-wrap: wrap;
}

.hm-review-photos a,
.hm-review-existing-photos img {
    width: 44px;
    height: 44px;
    display: block;
    overflow: hidden;
    border: 1px solid #dde2e8;
    border-radius: 6px;
    background: #f8fafb;
}

.hm-review-photos img,
.hm-review-existing-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-review-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.hm-review-modal.is-open {
    display: flex;
}

.hm-review-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.55);
}

.hm-review-modal__panel {
    position: relative;
    width: min(560px, 100%);
    max-height: min(760px, calc(100vh - 32px));
    overflow: auto;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.26);
}

.hm-review-modal__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #e8edf2;
}

.hm-review-modal__head span {
    color: #b3261e;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-review-modal__head h2 {
    margin: 4px 0 0;
    color: #15171a;
    font-size: 1.3rem;
}

.hm-review-modal__head button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: #f3f5f7;
    color: #252a31;
    font-size: 1.4rem;
    cursor: pointer;
}

.hm-review-form {
    display: grid;
    gap: 15px;
    padding: 20px;
}

.hm-review-form label {
    display: grid;
    gap: 7px;
    color: #252a31;
    font-size: 0.82rem;
    font-weight: 800;
}

.hm-review-form input,
.hm-review-form select,
.hm-review-form textarea {
    width: 100%;
    border: 1px solid #d7dee6;
    border-radius: 8px;
    padding: 12px;
    color: #15171a;
    font: inherit;
}

.hm-review-rating-field > input {
    display: none;
}

.hm-review-star-picker {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    gap: 2px;
    align-items: center;
    border: 1px solid #edf0f3;
    border-radius: 999px;
    padding: 6px 8px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(15, 23, 42, 0.05);
}

.hm-review-star-picker button {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #dadce0;
    cursor: pointer;
    font: inherit;
    font-size: 1.72rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    transition: color 120ms ease, background 120ms ease, transform 120ms ease;
}

.hm-review-star-picker button.is-active,
.hm-review-star-picker button.is-preview {
    color: #fbbc04;
}

.hm-review-star-picker button:hover,
.hm-review-star-picker button:focus-visible {
    background: #fff8e1;
    color: #fbbc04;
    outline: 0;
    transform: translateY(-1px) scale(1.06);
}

.hm-review-star-picker:focus-within {
    border-color: rgba(251, 188, 4, 0.5);
    box-shadow: 0 0 0 3px rgba(251, 188, 4, 0.18);
}

.hm-review-form textarea {
    resize: vertical;
}

.hm-review-form em,
.hm-review-existing-photos > span {
    color: #68707a;
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 700;
}

.hm-review-existing-photos {
    display: grid;
    gap: 8px;
}

.hm-review-existing-photos div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hm-review-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.hm-primary-review-action,
.hm-secondary-review-action {
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    padding: 0 16px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.hm-primary-review-action {
    background: #1f7a4d;
    color: #ffffff;
}

.hm-secondary-review-action {
    background: #fff0ee;
    color: #9f2f26;
}

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

}

@media (max-width: 991.98px) {
    .hm-shop-layout {
        grid-template-columns: 1fr;
    }

    .hm-desktop-filter {
        display: none;
    }

    .hm-shop-toolbar {
        display: none;
    }

    .hm-mobile-shop-bar {
        position: sticky;
        top: 60px;
        z-index: 38;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
        margin: 0 -8px 10px;
        padding: 8px;
        border-top: 1px solid #dde2e8;
        border-bottom: 1px solid #dde2e8;
        background: rgba(246, 247, 248, 0.96);
        backdrop-filter: blur(14px);
    }

    .hm-mobile-shop-bar__filter {
        display: grid;
        gap: 3px;
        justify-items: start;
    }

    .hm-mobile-shop-bar button,
    .hm-mobile-shop-bar select {
        min-height: 34px;
        border: 1px solid #dde2e8;
        border-radius: 6px;
        background: #ffffff;
        color: #15171a;
        font: inherit;
        font-size: 0.76rem;
        font-weight: 800;
    }

    .hm-product-view-toggle {
        height: 32px;
        display: grid;
        grid-template-columns: repeat(2, 34px);
        gap: 3px;
        overflow: hidden;
        border: 1px solid #d9e3de;
        border-radius: 8px;
        padding: 2px;
        background: #f7fbf8;
        box-shadow: 0 6px 14px rgba(35, 86, 72, 0.08);
    }

    .hm-mobile-shop-bar .hm-product-view-toggle button {
        min-height: 26px;
        border: 0;
        border-radius: 6px;
        padding: 0;
        background: transparent;
        color: #5d7169;
        line-height: 1;
        display: inline-grid;
        place-items: center;
        transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
    }

    .hm-mobile-shop-bar .hm-product-view-toggle button + button {
        border-left: 0;
    }

    .hm-mobile-shop-bar .hm-product-view-toggle button.is-active {
        background: #235648;
        color: #ffffff;
        box-shadow: 0 5px 12px rgba(35, 86, 72, 0.2);
    }

    .hm-product-view-toggle__icon {
        width: 14px;
        height: 14px;
        display: block;
        position: relative;
    }

    .hm-product-view-toggle__icon--list::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1px;
        width: 14px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        box-shadow: 0 5px 0 currentColor;
    }

    .hm-product-view-toggle__icon--list::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 1px;
        width: 14px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .hm-product-view-toggle__icon--grid {
        display: grid;
        grid-template-columns: repeat(2, 6px);
        grid-template-rows: repeat(2, 6px);
        gap: 2px;
    }

    .hm-product-view-toggle__icon--grid::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 1.5px;
        background: currentColor;
        box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
    }

    .hm-mobile-shop-bar button {
        padding: 0 12px;
        background: #15171a;
        color: #ffffff;
    }

    .hm-mobile-shop-bar__filter span {
        color: #68707a;
        font-size: 0.72rem;
        font-weight: 800;
        white-space: nowrap;
    }

    .hm-product-detail,
    .hm-product-info {
        grid-template-columns: 1fr;
    }

    .hm-product-buybox {
        position: static;
    }

    .hm-related-products__track {
        grid-auto-columns: calc((100% - 12px) / 2);
    }

    .hm-product-reviews__layout,
    .hm-review-list {
        grid-template-columns: 1fr;
    }

}

@media (min-width: 641px) and (max-width: 991.98px) {
    .hm-mobile-shop-bar {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .hm-product-view-toggle {
        display: none;
    }
}

@media (max-width: 640px) {
    .hm-products-page,
    .hm-product-detail-page {
        width: min(100% - 16px, 1320px);
        padding-top: 8px;
        padding-bottom: 82px;
    }

    .hm-filter-panel {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: min(78vh, 560px);
        overflow-y: auto;
        border-radius: 14px 14px 0 0;
        transform: translateY(18px);
    }

    .hm-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .hm-product-card {
        border-radius: 7px;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    }

    .hm-product-card:hover {
        transform: none;
    }

    .hm-product-card__media {
        aspect-ratio: 1 / 0.92;
    }

    .hm-product-card__media span,
    .hm-product-stock {
        min-height: 15px;
        padding: 0 6px;
        font-size: 0.56rem;
    }

    .hm-product-stock {
        right: 6px;
        bottom: 6px;
    }

    .hm-product-card__body {
        gap: 7px;
        padding: 8px;
    }

    .hm-product-card h2 {
        min-height: 2.42em;
        font-size: 0.78rem;
    }

    .hm-product-card__rating {
        min-height: 15px;
        gap: 3px;
        font-size: 0.58rem;
    }

    .hm-product-card__stars {
        gap: 0;
        font-size: 0.56rem;
    }

    .hm-product-card__rating strong {
        font-size: 0.6rem;
    }

    .hm-product-card__rating > span:last-child {
        font-size: 0.56rem;
    }

    .hm-product-card__selector > span {
        font-size: 0.6rem;
    }

    .hm-variant-options {
        gap: 5px;
    }

    .hm-variant-option {
        min-width: 42px;
        min-height: 29px;
        padding: 6px 8px;
        border-radius: 8px;
        font-size: 0.64rem;
    }

    .hm-variant-options--detail .hm-variant-option {
        min-width: 58px;
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 0.76rem;
    }

    .hm-product-card__price span {
        font-size: 0.64rem;
    }

    .hm-product-card__price strong {
        font-size: 0.88rem;
    }

    .hm-product-card__actions {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .hm-product-qty {
        height: 35px;
        grid-template-columns: 40px 1fr 40px;
    }

    .hm-product-qty button,
    .hm-product-qty input {
        font-size: 0.76rem;
    }

    .hm-product-add {
        min-height: 35px;
        font-size: 0.72rem;
    }

    .hm-product-card__details {
        min-height: 28px;
        font-size: 0.61rem;
    }

    .hm-products-grid:not(.is-grid-view),
    .hm-products-grid.is-list-view {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card,
    .hm-products-grid.is-list-view .hm-product-card {
        grid-template-columns: minmax(136px, 40vw) minmax(0, 1fr);
        grid-template-rows: 1fr;
        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055);
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__media,
    .hm-products-grid.is-list-view .hm-product-card__media {
        height: 100%;
        min-height: 172px;
        aspect-ratio: auto;
        border-right: 1px solid #edf0f3;
        border-bottom: 0;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__media img,
    .hm-products-grid.is-list-view .hm-product-card__media img {
        padding: 3px;
        transform: scale(1.08);
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__body,
    .hm-products-grid.is-list-view .hm-product-card__body {
        min-width: 0;
        gap: 7px;
        padding: 9px;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card h2,
    .hm-products-grid.is-list-view .hm-product-card h2 {
        min-height: 0;
        font-size: 0.88rem;
        line-height: 1.2;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__summary,
    .hm-products-grid.is-list-view .hm-product-card__summary {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .hm-products-grid:not(.is-grid-view) .hm-variant-options,
    .hm-products-grid.is-list-view .hm-variant-options {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1px;
        scrollbar-width: none;
    }

    .hm-products-grid:not(.is-grid-view) .hm-variant-options::-webkit-scrollbar,
    .hm-products-grid.is-list-view .hm-variant-options::-webkit-scrollbar {
        display: none;
    }

    .hm-products-grid:not(.is-grid-view) .hm-variant-option,
    .hm-products-grid.is-list-view .hm-variant-option {
        flex: 0 0 auto;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__price,
    .hm-products-grid.is-list-view .hm-product-card__price {
        padding-top: 7px;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__actions,
    .hm-products-grid.is-list-view .hm-product-card__actions {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 6px;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-qty,
    .hm-products-grid.is-list-view .hm-product-qty {
        height: 34px;
        grid-template-columns: 27px 1fr 27px;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-add,
    .hm-products-grid.is-list-view .hm-product-add {
        min-height: 34px;
        font-size: 0.7rem;
    }

    .hm-products-grid:not(.is-grid-view) .hm-product-card__details,
    .hm-products-grid.is-list-view .hm-product-card__details {
        min-height: 30px;
        font-size: 0.66rem;
    }

    .hm-cart-toast {
        right: 8px;
        bottom: 72px;
        max-width: calc(100vw - 16px);
    }

    .hm-product-breadcrumb {
        font-size: 0.7rem;
    }

    .hm-product-gallery {
        padding: 8px;
    }

    .hm-product-gallery__main {
        aspect-ratio: 1;
    }

    .hm-product-gallery__zoom {
        right: 8px;
        bottom: 8px;
        width: 34px;
        height: 34px;
    }

    .hm-product-gallery__zoom .hm-icon {
        width: 16px;
        height: 16px;
    }

    .hm-product-zoom-modal__panel {
        inset: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        border-radius: 8px;
    }

    .hm-product-zoom-modal__panel img {
        padding: 8px;
    }

    .hm-product-zoom-modal__close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .hm-product-zoom-modal__nav {
        width: 38px;
        height: 38px;
    }

    .hm-product-zoom-modal__nav--prev {
        left: 8px;
    }

    .hm-product-zoom-modal__nav--next {
        right: 8px;
    }

    .hm-product-gallery__thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .hm-product-buybox {
        padding: 13px;
    }

    .hm-product-buybox h1 {
        font-size: 1.35rem;
    }

    .hm-product-buybox__actions {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .hm-product-info article {
        padding: 13px;
    }

    .hm-related-products__head,
    .hm-product-reviews__head {
        align-items: flex-start;
    }

    .hm-related-products__head p,
    .hm-product-reviews__head p {
        font-size: 0.7rem;
    }

    .hm-related-products__actions button {
        display: none;
    }

    .hm-related-products__track {
        grid-auto-columns: minmax(182px, 68vw);
        gap: 10px;
        margin-right: -8px;
        padding-right: 8px;
    }

    .hm-related-product__body {
        padding: 9px;
    }

    .hm-product-reviews {
        margin-top: 18px;
    }

    .hm-product-reviews__head {
        display: grid;
        gap: 6px;
    }

    .hm-product-reviews__head h2 {
        font-size: 1rem;
    }

    .hm-review-summary,
    .hm-review-cta,
    .hm-review-card {
        border-radius: 8px;
    }

    .hm-review-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .hm-review-cta button {
        width: 100%;
    }
}

@media (max-width: 370px) {
    .hm-products-grid {
        gap: 7px;
    }

    .hm-product-card__body {
        padding: 7px;
    }
}
