:root {
    --hmkt-gold: #e7a821;
    --hmkt-gold-soft: #fff4d8;
    --hmkt-green: #277247;
    --hmkt-green-dark: #155331;
    --hmkt-red: #c93636;
    --hmkt-rose: #f8d9d7;
    --hmkt-ink: #223126;
    --hmkt-muted: #6f7a70;
    --hmkt-line: #eadfcb;
    --hmkt-bg: #fffaf0;
    --hmkt-card: #ffffff;
}

* {
    box-sizing: border-box;
}

body.hmkt-site,
body {
    margin: 0;
    color: var(--hmkt-ink);
    background: var(--hmkt-bg);
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4,
strong {
    text-wrap: balance;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.hmkt-container {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto;
}

.hmkt-topbar {
    background: var(--hmkt-green-dark);
    color: #fff;
    font-size: 13px;
}

.hmkt-topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hmkt-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 0 2px 18px rgba(34, 49, 38, .1);
}

.hmkt-header-main {
    min-height: 78px;
    display: grid;
    grid-template-columns: 310px 1fr auto auto;
    align-items: center;
    gap: 18px;
}

.hmkt-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.hmkt-logo-frame {
    flex: 0 0 70px;
    width: 70px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    overflow: hidden;
}

.hmkt-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.hmkt-brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-gold);
    border: 2px solid var(--hmkt-gold);
    font-size: 28px;
    font-weight: 800;
}

.hmkt-brand strong,
.hmkt-brand small {
    display: block;
}

.hmkt-brand strong {
    color: var(--hmkt-green-dark);
    font-size: 19px;
    line-height: 1.15;
}

.hmkt-brand small {
    color: var(--hmkt-muted);
    margin-top: 3px;
}

.hmkt-search {
    display: flex;
    height: 46px;
    background: #fff;
    border: 2px solid var(--hmkt-gold);
    border-radius: 8px;
    overflow: hidden;
}

.hmkt-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 0 14px;
    font-size: 15px;
    outline: 0;
}

.hmkt-search button {
    width: 118px;
    border: 0;
    color: #fff;
    background: var(--hmkt-green);
    font-weight: 700;
    cursor: pointer;
}

.hmkt-header-actions {
    display: flex;
    gap: 8px;
}

.hmkt-action {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--hmkt-red);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.hmkt-action-green {
    background: var(--hmkt-green);
}

.hmkt-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--hmkt-line);
    border-radius: 8px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
    font-size: 22px;
}

.hmkt-nav {
    background: var(--hmkt-green);
    color: #fff;
}

.hmkt-nav-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    overflow: visible;
}

.hmkt-category-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.hmkt-category-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    background: var(--hmkt-gold);
    color: #fff;
    font-weight: 800;
}

.hmkt-category-trigger::before {
    content: "☰";
    margin-right: 8px;
}

.hmkt-category-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 45;
    width: min(920px, calc(100vw - 24px));
    max-height: none;
    overflow: visible;
    display: none;
    padding: 14px;
    border-radius: 0 0 12px 12px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    box-shadow: 0 18px 34px rgba(34, 49, 38, .18);
    transform: translateY(0);
}

.hmkt-category-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 0 2px 10px;
    border-bottom: 1px solid var(--hmkt-line);
}

.hmkt-category-menu-head strong {
    color: var(--hmkt-green-dark);
    font-size: 15px;
}

.hmkt-category-menu-head a {
    color: var(--hmkt-red);
    font-size: 13px;
    font-weight: 800;
}

.hmkt-category-dropdown:hover .hmkt-category-menu,
.hmkt-category-dropdown:focus-within .hmkt-category-menu,
.hmkt-category-dropdown.is-open .hmkt-category-menu {
    display: block;
}

.hmkt-category-menu ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hmkt-nav-inner .hmkt-category-menu ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
}

.hmkt-category-menu li {
    display: block;
}

.hmkt-category-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--hmkt-ink);
    font-weight: 700;
}

.hmkt-category-menu a:hover {
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
}

.hmkt-menu,
.hmkt-nav-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: visible;
}

.hmkt-menu > li,
.hmkt-nav-inner > ul > li {
    position: relative;
}

.hmkt-menu a,
.hmkt-nav-inner li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 12px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.hmkt-menu .sub-menu,
.hmkt-nav-inner .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 45;
    min-width: 230px;
    display: block;
    padding: 8px;
    border-radius: 0 0 10px 10px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    box-shadow: 0 16px 30px rgba(34, 49, 38, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    overflow: visible;
}

.hmkt-menu .sub-menu li,
.hmkt-nav-inner .sub-menu li {
    display: block;
}

.hmkt-menu .sub-menu a,
.hmkt-nav-inner .sub-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    color: var(--hmkt-ink);
    border-radius: 8px;
    white-space: nowrap;
}

.hmkt-menu .sub-menu a:hover,
.hmkt-nav-inner .sub-menu a:hover {
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
}

.hmkt-menu > .menu-item-has-children > a::after,
.hmkt-nav-inner > ul > .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 7px;
    font-size: 12px;
}

.hmkt-menu > .menu-item-has-children:hover > .sub-menu,
.hmkt-menu > .menu-item-has-children:focus-within > .sub-menu,
.hmkt-menu > .menu-item-has-children.is-open > .sub-menu,
.hmkt-nav-inner > ul > .menu-item-has-children:hover > .sub-menu,
.hmkt-nav-inner > ul > .menu-item-has-children:focus-within > .sub-menu,
.hmkt-nav-inner > ul > .menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hmkt-nav-inner .hmkt-category-menu ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
}

.hmkt-nav-inner .hmkt-category-menu li {
    display: block;
}

.hmkt-nav-inner .hmkt-category-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--hmkt-ink);
    font-weight: 700;
}

.hmkt-menu-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
    line-height: 1;
}

.hmkt-menu-icon svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hmkt-menu > li > a .hmkt-menu-icon {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.hmkt-nav-inner .hmkt-category-menu a:hover {
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
}

.hmkt-menu a:hover,
.hmkt-nav-inner li a:hover {
    background: rgba(255, 255, 255, .12);
}

.hmkt-home-hero {
    padding: 18px 0 10px;
}

.hmkt-hero-layout {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr) 220px;
    gap: 14px;
}

.hmkt-category-panel,
.hmkt-deal-panel,
.hmkt-product-card,
.hmkt-proof-grid article,
.hmkt-review-grid article,
.hmkt-content {
    background: var(--hmkt-card);
    border: 1px solid var(--hmkt-line);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(34, 49, 38, .06);
}

.hmkt-category-panel {
    height: 342px;
    padding: 16px 14px 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hmkt-category-panel-head {
    padding: 0 4px 11px;
    border-bottom: 1px solid var(--hmkt-line);
}

.hmkt-category-panel-head > div > span {
    display: block;
    margin-bottom: 2px;
    color: var(--hmkt-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hmkt-category-panel h2 {
    margin: 0;
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.32;
    font-weight: 800;
    color: var(--hmkt-green-dark);
}

.hmkt-featured-categories {
    flex: 1;
    min-height: 0;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hmkt-featured-categories li {
    min-height: 0;
}

.hmkt-featured-categories a {
    min-height: 44px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px 6px;
    border-radius: 8px;
    color: #344336;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hmkt-featured-categories a:hover {
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-red);
    transform: translateX(2px);
}

.hmkt-featured-categories .hmkt-menu-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin-top: 1px;
    border-radius: 10px;
    background: #f2f8f3;
    color: var(--hmkt-green);
}

.hmkt-featured-categories .hmkt-menu-icon svg {
    width: 18px;
    height: 18px;
}

.hmkt-category-name {
    flex: 1;
    min-width: 0;
    display: block;
    padding-top: 3px;
    overflow-wrap: anywhere;
    word-break: normal;
}

.hmkt-category-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 4px 0;
    border-top: 1px solid var(--hmkt-line);
    color: var(--hmkt-red);
    font-size: 11.5px;
    font-weight: 800;
}

.hmkt-slider {
    position: relative;
    min-height: 342px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--hmkt-green-dark);
}

.hmkt-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
}

.hmkt-slide.is-active {
    opacity: 1;
}

.hmkt-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmkt-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 83, 49, .86), rgba(21, 83, 49, .44), rgba(231, 168, 33, .12));
}

.hmkt-slide-copy {
    position: relative;
    z-index: 1;
    width: min(620px, 72%);
    padding: 38px;
    color: #fff;
}

.hmkt-slide-copy span,
.hmkt-eyebrow {
    display: inline-block;
    color: var(--hmkt-gold);
    font-weight: 800;
    margin-bottom: 7px;
}

.hmkt-slide-copy h1,
.hmkt-slide-copy h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    line-height: 1.17;
    letter-spacing: 0;
}

.hmkt-slide-copy p {
    max-width: 560px;
    margin: 14px 0 22px;
    color: rgba(255, 255, 255, .9);
}

.hmkt-slider-dots {
    position: absolute;
    left: 38px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.hmkt-slider-dots span {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}

.hmkt-deal-panel {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #fff, var(--hmkt-gold-soft));
}

.hmkt-deal-panel strong {
    color: var(--hmkt-green-dark);
    font-size: 22px;
}

.hmkt-deal-panel p {
    color: var(--hmkt-muted);
}

.hmkt-deal-panel a {
    display: inline-flex;
    justify-content: center;
    padding: 11px 12px;
    border-radius: 8px;
    background: var(--hmkt-red);
    color: #fff;
    font-weight: 800;
}

.hmkt-hero-actions,
.hmkt-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hmkt-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 8px;
    font-weight: 800;
}

.hmkt-btn-primary {
    background: var(--hmkt-red);
    color: #fff;
}

.hmkt-btn-soft {
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
}

.hmkt-btn-light {
    background: #fff;
    color: var(--hmkt-green-dark);
    border: 1px solid rgba(255, 255, 255, .7);
}

.hmkt-trust-strip {
    padding: 8px 0;
}

.hmkt-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hmkt-trust-item {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    text-align: center;
}

.hmkt-trust-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green);
}

.hmkt-trust-icon .hmkt-menu-icon {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    flex-basis: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
}

.hmkt-trust-icon .hmkt-menu-icon svg {
    width: 24px;
    height: 24px;
}

.hmkt-trust-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    text-align: left;
}

.hmkt-trust-grid strong {
    color: var(--hmkt-red);
    font-size: 16px;
    line-height: 1.2;
}

.hmkt-trust-grid small {
    margin-top: 4px;
    color: var(--hmkt-muted);
    font-size: 12px;
    line-height: 1.4;
}

.hmkt-section {
    padding: 18px 0;
}

.hmkt-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hmkt-section-head h1,
.hmkt-section-head h2 {
    margin: 0;
    color: var(--hmkt-green-dark);
    font-size: 24px;
    line-height: 1.25;
    font-family: "Playfair Display", Georgia, serif;
}

.hmkt-section-head a {
    color: var(--hmkt-red);
    font-weight: 800;
}

.hmkt-price-chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hmkt-price-chips a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    color: var(--hmkt-green-dark);
    font-weight: 800;
    text-align: center;
}

.hmkt-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hmkt-promo-grid article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff, var(--hmkt-gold-soft));
    border: 1px solid var(--hmkt-line);
    box-shadow: 0 10px 26px rgba(34, 49, 38, .08);
}

.hmkt-promo-grid span {
    color: var(--hmkt-red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hmkt-promo-grid h2 {
    margin: 8px 0;
    color: var(--hmkt-green-dark);
    font-size: 22px;
    line-height: 1.22;
}

.hmkt-promo-grid p {
    margin: 0 0 14px;
    color: var(--hmkt-muted);
}

.hmkt-promo-grid a {
    align-self: flex-start;
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--hmkt-green);
    color: #fff;
    font-weight: 800;
}

.hmkt-home-banner .hmkt-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(120deg, var(--hmkt-green-dark), var(--hmkt-green));
    color: #fff;
    overflow: hidden;
}

.hmkt-home-banner h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.22;
}

.hmkt-home-banner p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.hmkt-vote-panel {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 14px;
}

.hmkt-vote-score,
.hmkt-vote-metrics span {
    background: #fff;
    border: 1px solid var(--hmkt-line);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(34, 49, 38, .06);
}

.hmkt-vote-score {
    padding: 20px;
}

.hmkt-vote-score strong {
    display: block;
    color: var(--hmkt-green-dark);
    font-size: 42px;
    line-height: 1;
}

.hmkt-vote-score span,
.hmkt-review-grid div {
    color: var(--hmkt-gold);
    font-weight: 900;
    letter-spacing: 0;
}

.hmkt-vote-score p {
    margin: 8px 0 0;
    color: var(--hmkt-muted);
}

.hmkt-vote-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hmkt-vote-metrics span {
    display: grid;
    align-content: center;
    gap: 4px;
    min-height: 112px;
    padding: 16px;
    color: var(--hmkt-muted);
    font-weight: 700;
}

.hmkt-vote-metrics strong {
    color: var(--hmkt-red);
    font-size: 24px;
}

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

.hmkt-product-card {
    overflow: hidden;
    transition: box-shadow .18s ease, transform .18s ease;
}

.hmkt-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(34, 49, 38, .13);
}

.hmkt-product-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: #f5efe4;
    overflow: hidden;
}

.hmkt-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.hmkt-product-card:hover .hmkt-product-image img {
    transform: scale(1.04);
}

.hmkt-sale-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--hmkt-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.hmkt-product-body {
    padding: 12px;
}

.hmkt-product-cat {
    color: var(--hmkt-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hmkt-product-card h3 {
    min-height: 44px;
    margin: 5px 0 8px;
    font-size: 15px;
    line-height: 1.38;
}

.hmkt-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 26px;
}

.hmkt-product-meta span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #f5f7ef;
    color: var(--hmkt-muted);
    font-size: 12px;
}

.hmkt-product-bottom {
    margin: 10px 0;
}

.hmkt-price,
.hmkt-price .amount {
    color: var(--hmkt-red);
    font-size: 18px;
    font-weight: 900;
}

.hmkt-product-actions .hmkt-btn {
    flex: 1 1 110px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
}

.hmkt-category-blocks-section {
    background: #fffdf8;
}

.hmkt-category-showcase {
    padding: 18px;
    margin-top: 14px;
    border: 1px solid var(--hmkt-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(34, 49, 38, .06);
}

.hmkt-category-showcase + .hmkt-category-showcase {
    margin-top: 18px;
}

.hmkt-category-showcase .hmkt-section-head {
    margin-bottom: 12px;
}

.hmkt-category-showcase h2 {
    font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 800;
    color: var(--hmkt-green-dark);
}

.hmkt-category-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hmkt-blog-section {
    background: linear-gradient(180deg, #fff, #f7fbf4);
}

.hmkt-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hmkt-post-card {
    overflow: hidden;
    border: 1px solid var(--hmkt-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(34, 49, 38, .06);
}

.hmkt-post-image {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    background: var(--hmkt-gold-soft);
    overflow: hidden;
}

.hmkt-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmkt-post-image span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--hmkt-green);
}

.hmkt-post-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.hmkt-post-body time {
    width: max-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hmkt-post-body h3 {
    margin: 14px 0 8px;
    color: var(--hmkt-green-dark);
    font-size: 20px;
    line-height: 1.25;
}

.hmkt-post-body p {
    flex: 1;
    margin: 0 0 14px;
    color: var(--hmkt-muted);
}

.hmkt-post-body > a {
    color: var(--hmkt-green);
    font-weight: 900;
}

.hmkt-delivery-section {
    background: #fff;
}

.hmkt-district-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.hmkt-district-grid a {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--hmkt-line);
    border-radius: 12px;
    background: #fff;
    color: var(--hmkt-green-dark);
    box-shadow: 0 8px 22px rgba(34, 49, 38, .06);
}

.hmkt-district-grid a.has-article {
    border-color: rgba(229, 42, 42, .28);
    background: linear-gradient(180deg, #fff, #fff8f1);
}

.hmkt-district-grid span {
    color: var(--hmkt-gold);
}

.hmkt-district-grid strong {
    font-size: 15px;
    line-height: 1.2;
}

.hmkt-district-grid em {
    color: var(--hmkt-muted);
    font-size: 12px;
    font-style: normal;
}

.hmkt-search-page {
    background: linear-gradient(180deg, #fff8ed, #fff);
}

.hmkt-search-hero {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid var(--hmkt-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(34, 49, 38, .08);
}

.hmkt-search-hero h1 {
    max-width: 760px;
    margin: 8px 0 10px;
    color: var(--hmkt-green-dark);
    font-size: 36px;
    line-height: 1.16;
}

.hmkt-search-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--hmkt-muted);
    font-size: 17px;
}

.hmkt-search-cta {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--hmkt-green-dark), var(--hmkt-green));
    color: #fff;
}

.hmkt-search-cta strong {
    font-size: 28px;
    line-height: 1;
}

.hmkt-search-cta span {
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.hmkt-search-cta .hmkt-btn {
    width: 100%;
}

.hmkt-search-page-form {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 10px;
    margin-top: 14px;
}

.hmkt-search-page-form input {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--hmkt-line);
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
}

.hmkt-search-page-form button {
    border: 0;
    border-radius: 10px;
    background: var(--hmkt-red);
    color: #fff;
    font-weight: 900;
}

.hmkt-search-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.hmkt-search-benefits span,
.hmkt-search-empty {
    padding: 16px;
    border: 1px solid var(--hmkt-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(34, 49, 38, .05);
}

.hmkt-search-benefits strong {
    display: block;
    color: var(--hmkt-green-dark);
    font-size: 18px;
}

.hmkt-search-empty {
    text-align: center;
}

.hmkt-search-empty h2 {
    margin: 0 0 8px;
    color: var(--hmkt-green-dark);
}

.hmkt-post-hero {
    padding: 28px 0;
    background: linear-gradient(180deg, #fff8ed, #fff);
}

.hmkt-post-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    align-items: center;
}

.hmkt-post-hero h1 {
    margin: 10px 0;
    color: var(--hmkt-green-dark);
    font-size: 36px;
    line-height: 1.18;
}

.hmkt-post-hero p {
    max-width: 720px;
    margin: 0 0 18px;
    color: var(--hmkt-muted);
    font-size: 17px;
}

.hmkt-post-hero figure {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 34px rgba(34, 49, 38, .14);
}

.hmkt-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmkt-single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
}

.hmkt-article-card,
.hmkt-article-sidebar > div {
    border: 1px solid var(--hmkt-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(34, 49, 38, .06);
}

.hmkt-article-card {
    padding: 24px;
}

.hmkt-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.hmkt-post-meta time,
.hmkt-post-meta span {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
    font-size: 12px;
    font-weight: 900;
}

.hmkt-article-content {
    color: #2f3f32;
    font-size: 17px;
    line-height: 1.75;
}

.hmkt-article-content h2,
.hmkt-article-content h3 {
    color: var(--hmkt-green-dark);
    line-height: 1.3;
}

.hmkt-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.hmkt-article-sidebar {
    position: sticky;
    top: 14px;
    display: grid;
    gap: 14px;
}

.hmkt-proof-grid,
.hmkt-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hmkt-proof-grid article,
.hmkt-review-grid article {
    padding: 20px;
}

.hmkt-proof-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-gold);
    font-weight: 900;
}

.hmkt-proof-grid h3,
.hmkt-review-grid strong {
    color: var(--hmkt-green-dark);
}

.hmkt-proof-grid h3 {
    margin: 14px 0 8px;
}

.hmkt-proof-grid p,
.hmkt-review-grid p {
    margin: 0;
    color: var(--hmkt-muted);
}

.hmkt-process {
    position: relative;
}

.hmkt-process-inner,
.hmkt-final-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 26px;
    border-radius: 14px;
    background: var(--hmkt-green-dark);
    color: #fff;
}

.hmkt-process h2,
.hmkt-final-cta h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.22;
}

.hmkt-process p {
    color: rgba(255, 255, 255, .84);
}

.hmkt-process-copy {
    display: grid;
    gap: 14px;
}

.hmkt-process-metrics,
.hmkt-final-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hmkt-process-metrics span,
.hmkt-final-cta-points span {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 38px;
    max-width: 100%;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.hmkt-process-metrics .hmkt-menu-icon,
.hmkt-final-cta-points .hmkt-menu-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.hmkt-process-metrics svg,
.hmkt-final-cta-points svg {
    width: 14px;
    height: 14px;
}

.hmkt-process-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
}

.hmkt-process-steps li {
    display: grid;
    gap: 7px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
}

.hmkt-process-steps strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.hmkt-process-steps span {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.6;
}

.hmkt-review-grid div {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #f2b94b;
    font-size: 18px;
    line-height: 1;
}

.hmkt-review-grid div span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
    font-size: 12px;
    font-weight: 800;
}

.hmkt-review-grid strong {
    display: block;
    margin-top: 12px;
}

.hmkt-logo-marquee {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
    border: 1px solid var(--hmkt-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(34, 49, 38, .08);
}

.hmkt-logo-marquee::before,
.hmkt-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 84px;
    height: 100%;
    pointer-events: none;
}

.hmkt-logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.hmkt-logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.hmkt-logo-track {
    display: flex;
    width: max-content;
    gap: 12px;
    padding: 10px 12px;
    animation: hmkt-logo-scroll 42s linear infinite;
}

.hmkt-logo-marquee:hover .hmkt-logo-track {
    animation-play-state: paused;
}

.hmkt-logo-card {
    width: 188px;
    min-height: 92px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    align-items: center;
    flex: 0 0 auto;
    padding: 14px;
    border: 1px solid #edf2e9;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfdf8);
    color: var(--hmkt-green-dark);
    box-shadow: 0 10px 24px rgba(34, 49, 38, .06);
}

.hmkt-logo-badge {
    width: 62px;
    height: 52px;
    display: grid;
    place-items: center;
    gap: 2px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hmkt-badge-start), var(--hmkt-badge-end));
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    letter-spacing: .04em;
    overflow: hidden;
    position: relative;
}

.hmkt-logo-badge-mark {
    position: absolute;
    inset: 8px auto auto 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .38);
}

.hmkt-logo-badge strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.hmkt-logo-badge small {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 10px;
    font-weight: 700;
    opacity: .82;
}

.hmkt-logo-image {
    width: 62px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e6eee1;
    box-shadow: inset 0 0 0 1px rgba(21, 83, 49, .03);
    overflow: hidden;
}

.hmkt-logo-image img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.hmkt-logo-image i {
    display: block;
    color: var(--hmkt-green-dark);
    font-style: normal;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.hmkt-logo-card em {
    color: var(--hmkt-ink);
    font-style: normal;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

@keyframes hmkt-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hmkt-client-note {
    margin: 12px 0 0;
    color: var(--hmkt-muted);
    font-size: 13px;
}

.hmkt-delivery-wrap {
    width: min(1180px, calc(100% - 24px));
}

.hmkt-delivery-head {
    align-items: end;
}

.hmkt-delivery-head p {
    margin: 10px 0 0;
    max-width: 820px;
    color: var(--hmkt-muted);
}

.hmkt-delivery-actions {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.hmkt-delivery-actions span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hmkt-green-dark);
    font-size: 13px;
    font-weight: 800;
}

.hmkt-delivery-actions svg {
    width: 16px;
    height: 16px;
}

.hmkt-final-cta-inner {
    background: linear-gradient(120deg, var(--hmkt-green-dark), var(--hmkt-green));
}

.hmkt-final-cta-copy {
    display: grid;
    gap: 12px;
}

.hmkt-final-cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.hmkt-final-cta-panel {
    display: grid;
    gap: 16px;
}

.hmkt-final-cta-card {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.hmkt-final-cta-card strong,
.hmkt-final-cta-card small {
    color: rgba(255, 255, 255, .88);
}

.hmkt-final-cta-card b {
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

.hmkt-shop-hero {
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(120deg, #fff, var(--hmkt-gold-soft));
    border: 1px solid var(--hmkt-line);
    margin-bottom: 14px;
}

.hmkt-shop-hero h1 {
    margin: 0 0 8px;
    color: var(--hmkt-green-dark);
    font-size: 30px;
}

.hmkt-shop-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--hmkt-muted);
}

.hmkt-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hmkt-shop-toolbar p {
    margin: 0;
    color: var(--hmkt-muted);
    font-weight: 700;
}

.hmkt-shop-toolbar a {
    color: var(--hmkt-red);
    font-weight: 800;
}

.hmkt-shop-filters {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 150px 150px auto;
    gap: 10px;
    align-items: end;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    box-shadow: 0 8px 24px rgba(34, 49, 38, .06);
}

.hmkt-shop-filters label {
    display: grid;
    gap: 5px;
}

.hmkt-shop-filters span {
    color: var(--hmkt-green-dark);
    font-size: 13px;
    font-weight: 800;
}

.hmkt-shop-filters select,
.hmkt-shop-filters input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--hmkt-line);
    border-radius: 8px;
    background: #fff;
    color: var(--hmkt-ink);
    padding: 0 10px;
    outline: 0;
}

.hmkt-shop-filters button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--hmkt-green);
    color: #fff;
    padding: 0 16px;
    font-weight: 800;
    cursor: pointer;
}

.hmkt-shop-chips {
    margin-bottom: 14px;
}

.hmkt-shop-grid {
    clear: both;
    align-items: stretch;
}

.hmkt-shop-empty {
    padding: 28px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    text-align: center;
}

.hmkt-shop-empty h2 {
    margin: 0 0 8px;
    color: var(--hmkt-green-dark);
}

.hmkt-shop-empty p {
    margin: 0 auto 16px;
    max-width: 560px;
    color: var(--hmkt-muted);
}

.hmkt-archive-readmore {
    margin-top: 22px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    box-shadow: 0 8px 24px rgba(34, 49, 38, .06);
}

.hmkt-readmore {
    position: relative;
}

.hmkt-readmore-content {
    position: relative;
    max-height: 150px;
    overflow: hidden;
    color: #344336;
    transition: max-height .24s ease;
}

.hmkt-readmore:not(.is-expanded) .hmkt-readmore-content {
    max-height: 150px !important;
    overflow: hidden !important;
}

.hmkt-readmore-content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 72px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

.hmkt-readmore.is-expanded .hmkt-readmore-content {
    max-height: 5000px !important;
    overflow: visible !important;
}

.hmkt-readmore.is-expanded .hmkt-readmore-content::after {
    display: none;
}

.hmkt-readmore h2 {
    margin: 18px 0 8px;
    color: var(--hmkt-green-dark);
    font-size: 22px;
    line-height: 1.3;
}

.hmkt-readmore h2:first-child,
.hmkt-readmore .hmkt-archive-manual-description > :first-child {
    margin-top: 0;
}

.hmkt-readmore p {
    margin: 0 0 12px;
}

.hmkt-readmore ul,
.hmkt-readmore ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.hmkt-readmore li {
    margin: 7px 0;
}

.hmkt-readmore-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 14px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--hmkt-green);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.hmkt-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.hmkt-pagination a,
.hmkt-pagination span {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    color: var(--hmkt-green-dark);
    font-weight: 800;
}

.hmkt-pagination .current {
    background: var(--hmkt-green);
    color: #fff;
    border-color: var(--hmkt-green);
}

.hmkt-content {
    padding: 24px;
}

.hmkt-footer {
    margin-top: 18px;
    padding-bottom: 86px;
    background: #fff;
    border-top: 1px solid var(--hmkt-line);
}

.hmkt-footer-top {
    padding: 14px 0;
    background: linear-gradient(120deg, var(--hmkt-green-dark), var(--hmkt-green));
}

.hmkt-footer-promise {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.hmkt-footer-promise-item {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.hmkt-footer-promise-item .hmkt-menu-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.hmkt-footer-promise-item svg {
    width: 18px;
    height: 18px;
}

.hmkt-footer-promise-item b {
    display: block;
    min-width: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
}

.hmkt-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .95fr 1fr;
    gap: 28px;
    padding-top: 28px;
}

.hmkt-footer-brand {
    display: grid;
    gap: 12px;
}

.hmkt-footer h2,
.hmkt-footer h3 {
    margin: 0 0 10px;
    color: var(--hmkt-green-dark);
}

.hmkt-footer p {
    display: block;
    margin: 7px 0;
    color: var(--hmkt-muted);
}

.hmkt-footer a {
    display: block;
    margin: 7px 0;
    color: var(--hmkt-muted);
}

.hmkt-footer > span:not(.hmkt-menu-icon):not(.hmkt-eyebrow),
.hmkt-footer-grid > div > span:not(.hmkt-menu-icon):not(.hmkt-eyebrow),
.hmkt-copyright span:not(.hmkt-menu-icon):not(.hmkt-eyebrow) {
    color: var(--hmkt-muted);
}

.hmkt-footer .hmkt-eyebrow {
    display: inline-block;
    margin: 0 0 2px;
}

.hmkt-footer-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hmkt-footer-contact-cards a {
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--hmkt-line);
    box-shadow: 0 8px 20px rgba(34, 49, 38, .05);
}

.hmkt-footer-contact-cards strong {
    display: block;
    color: var(--hmkt-green-dark);
    font-size: 13px;
}

.hmkt-footer-contact-cards span {
    margin: 6px 0 0;
    color: var(--hmkt-red);
    font-weight: 900;
    font-size: 18px;
}

.hmkt-footer-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hmkt-footer-service-list div {
    min-height: 34px;
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #f7faf4;
    border: 1px solid #edf2e9;
}

.hmkt-footer-service-list .hmkt-menu-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-gold);
}

.hmkt-footer-service-list span:not(.hmkt-menu-icon) {
    color: var(--hmkt-green-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.hmkt-footer-service-list svg {
    width: 13px;
    height: 13px;
}

.hmkt-copyright {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--hmkt-line);
    font-size: 13px;
}

.hmkt-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hmkt-floating-actions a {
    min-width: 152px;
    padding: 12px 14px;
    border-radius: 999px;
    color: #fff;
    background: var(--hmkt-red);
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(34, 49, 38, .2);
}

.hmkt-floating-actions a + a {
    background: var(--hmkt-green);
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    margin-top: 20px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin: 0 3px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-radius: 8px;
    border: 1px solid var(--hmkt-line);
    background: #fff;
}

.hmkt-single-product {
    padding: 18px 0 28px;
}

.hmkt-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--hmkt-muted);
    font-size: 13px;
}

.hmkt-product-breadcrumb a {
    color: var(--hmkt-green-dark);
    font-weight: 700;
}

.hmkt-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 18px;
    align-items: start;
}

.hmkt-product-gallery,
.hmkt-product-summary,
.hmkt-product-detail-card {
    background: #fff;
    border: 1px solid var(--hmkt-line);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(34, 49, 38, .07);
}

.hmkt-product-gallery {
    padding: 14px;
}

.hmkt-product-main-image {
    position: relative;
    margin: 0;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #f7efe2;
}

.hmkt-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmkt-product-main-image span {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--hmkt-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.hmkt-product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.hmkt-product-thumbs a {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--hmkt-line);
    background: #fff;
}

.hmkt-product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmkt-product-summary {
    position: sticky;
    top: 142px;
    padding: 22px;
}

.hmkt-product-label {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--hmkt-gold-soft);
    color: var(--hmkt-green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hmkt-product-summary h1 {
    margin: 12px 0 10px;
    color: var(--hmkt-green-dark);
    font-size: 30px;
    line-height: 1.2;
}

.hmkt-single-rating {
    display: grid;
    gap: 3px;
    padding: 12px;
    border-radius: 10px;
    background: #fff8e8;
    border: 1px solid #f0ddad;
}

.hmkt-single-rating span {
    color: var(--hmkt-gold);
    letter-spacing: 0;
    font-weight: 900;
}

.hmkt-single-rating strong {
    color: var(--hmkt-green-dark);
}

.hmkt-single-rating em {
    color: var(--hmkt-muted);
    font-style: normal;
    font-size: 13px;
}

.hmkt-single-price {
    margin: 18px 0 12px;
    color: var(--hmkt-red);
    font-size: 28px;
    font-weight: 900;
}

.hmkt-single-price .amount {
    color: var(--hmkt-red);
}

.hmkt-short-desc {
    color: var(--hmkt-muted);
}

.hmkt-short-desc p {
    margin: 0 0 8px;
}

.hmkt-order-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, var(--hmkt-gold-soft));
    border: 1px solid #efd9a1;
}

.hmkt-order-box h2 {
    margin: 0 0 6px;
    color: var(--hmkt-green-dark);
    font-size: 20px;
}

.hmkt-order-box p {
    margin: 0 0 12px;
    color: var(--hmkt-muted);
}

.hmkt-product-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hmkt-product-cta .hmkt-btn:first-child {
    grid-column: 1 / -1;
}

.hmkt-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.hmkt-service-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    background: #f8faf4;
    color: var(--hmkt-green-dark);
    font-size: 13px;
    font-weight: 700;
}

.hmkt-product-info-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 18px;
    margin-top: 18px;
    align-items: start;
}

.hmkt-product-detail-card {
    padding: 22px;
}

.hmkt-product-detail-card h2 {
    margin: 0 0 12px;
    color: var(--hmkt-green-dark);
    font-size: 22px;
}

.hmkt-product-content {
    color: #344336;
}

.hmkt-product-content .hmkt-readmore-content > p:first-child,
.hmkt-product-content .hmkt-readmore-content > :first-child {
    margin-top: 0;
}

.hmkt-auto-product-content {
    margin-top: 18px;
}

.hmkt-auto-product-content h3 {
    margin: 22px 0 8px;
    color: var(--hmkt-green-dark);
    font-size: 18px;
}

.hmkt-auto-product-content ul,
.hmkt-auto-product-content ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.hmkt-auto-product-content li {
    margin: 7px 0;
}

.hmkt-auto-product-content .hmkt-btn {
    width: fit-content;
    max-width: 100%;
}

.hmkt-consult-card ul {
    margin: 0 0 16px;
    padding-left: 18px;
    color: var(--hmkt-muted);
}

.hmkt-consult-card li {
    margin: 8px 0;
}

.hmkt-consult-card .hmkt-btn {
    width: 100%;
}

.hmkt-related-products {
    padding-top: 22px;
}

@media (max-width: 1020px) {
    .hmkt-header-main {
        grid-template-columns: 250px 1fr auto;
    }

    .hmkt-header-actions {
        display: none;
    }

    .hmkt-hero-layout {
        grid-template-columns: 220px 1fr;
    }

    .hmkt-deal-panel {
        grid-column: 1 / -1;
    }

    .hmkt-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hmkt-shop-filters {
        grid-template-columns: 1fr 1fr;
    }

    .hmkt-shop-filters button {
        grid-column: 1 / -1;
    }

    .hmkt-product-hero,
    .hmkt-product-info-grid,
    .hmkt-post-hero-inner,
    .hmkt-single-post-layout {
        grid-template-columns: 1fr;
    }

    .hmkt-home-banner .hmkt-banner-inner,
    .hmkt-vote-panel,
    .hmkt-search-hero {
        grid-template-columns: 1fr;
    }

    .hmkt-vote-metrics,
    .hmkt-promo-grid,
    .hmkt-post-grid,
    .hmkt-district-grid,
    .hmkt-category-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .hmkt-product-summary {
        position: static;
    }

    .hmkt-article-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .hmkt-topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .hmkt-topbar-inner span:nth-child(2) {
        display: none;
    }

    .hmkt-header-main {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 10px 0;
    }

    .hmkt-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .hmkt-menu-toggle {
        display: block;
    }

    .hmkt-nav {
        display: none;
    }

    .hmkt-nav.is-open {
        display: block;
    }

    .hmkt-nav-inner {
        display: block;
    }

    .hmkt-category-trigger {
        width: 100%;
    }

    .hmkt-category-dropdown {
        width: 100%;
    }

    .hmkt-category-menu {
        position: static;
        width: 100%;
        max-height: none;
        display: block;
        padding: 8px 0 8px 14px;
        border: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, .08);
        box-shadow: none;
        transform: none;
    }

    .hmkt-category-menu-head {
        display: none;
    }

    .hmkt-category-menu ul,
    .hmkt-nav-inner .hmkt-category-menu ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .hmkt-category-menu a {
        color: #fff;
        padding: 9px 12px;
    }

    .hmkt-category-menu .hmkt-menu-icon,
    .hmkt-menu .sub-menu .hmkt-menu-icon {
        background: rgba(255, 255, 255, .16);
        color: #fff;
    }

    .hmkt-menu,
    .hmkt-nav-inner ul {
        flex-direction: column;
        align-items: stretch;
    }

    .hmkt-menu .sub-menu,
    .hmkt-nav-inner .sub-menu {
        position: static;
        min-width: 0;
        padding: 0 0 6px 14px;
        border: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, .08);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hmkt-menu .sub-menu a,
    .hmkt-nav-inner .sub-menu a {
        color: #fff;
        padding: 9px 12px;
    }

    .hmkt-hero-layout {
        grid-template-columns: 1fr;
    }

    .hmkt-category-panel {
        order: 2;
        height: auto;
    }

    .hmkt-slider {
        min-height: 390px;
    }

    .hmkt-slide-copy {
        width: 100%;
        padding: 28px 20px;
    }

    .hmkt-slide-copy h1,
    .hmkt-slide-copy h2 {
        font-size: 28px;
    }

    .hmkt-trust-grid,
    .hmkt-price-chips,
    .hmkt-proof-grid,
    .hmkt-review-grid,
    .hmkt-process-inner,
    .hmkt-final-cta-inner,
    .hmkt-footer-promise,
    .hmkt-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hmkt-featured-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 12px;
        padding: 10px 0;
    }

    .hmkt-home-banner .hmkt-banner-inner {
        display: block;
    }

    .hmkt-home-banner .hmkt-btn {
        width: 100%;
        margin-top: 16px;
    }

    .hmkt-process-steps,
    .hmkt-footer-contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .hmkt-service-list,
    .hmkt-product-cta {
        grid-template-columns: 1fr;
    }

    .hmkt-shop-filters {
        grid-template-columns: 1fr;
    }

    .hmkt-shop-filters button {
        grid-column: auto;
    }

    .hmkt-product-cta .hmkt-btn:first-child {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 64px;
    }

    .hmkt-topbar-inner span {
        display: none;
    }

    .hmkt-brand strong {
        font-size: 15px;
    }

    .hmkt-brand small {
        font-size: 12px;
    }

    .hmkt-logo-frame {
        flex-basis: 58px;
        width: 58px;
        height: 48px;
    }

    .hmkt-search button {
        width: 92px;
    }

    .hmkt-slider {
        min-height: 430px;
    }

    .hmkt-slide-copy {
        padding: 24px 18px;
    }

    .hmkt-slide-copy h1,
    .hmkt-slide-copy h2 {
        font-size: 25px;
    }

    .hmkt-trust-grid,
    .hmkt-price-chips,
    .hmkt-proof-grid,
    .hmkt-review-grid,
    .hmkt-process-inner,
    .hmkt-final-cta-inner,
    .hmkt-footer-promise,
    .hmkt-footer-grid {
        grid-template-columns: 1fr;
    }

    .hmkt-featured-categories {
        grid-template-columns: 1fr;
    }

    .hmkt-vote-metrics,
    .hmkt-promo-grid,
    .hmkt-category-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hmkt-product-grid,
    .hmkt-shop-grid,
    .hmkt-category-products,
    .hmkt-related-products .hmkt-product-grid,
    .hmkt-search-products .hmkt-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .hmkt-product-card h3 {
        min-height: 38px;
        font-size: 13px;
        line-height: 1.32;
    }

    .hmkt-product-body {
        padding: 9px;
    }

    .hmkt-product-cat {
        font-size: 10px;
    }

    .hmkt-product-meta {
        display: none;
    }

    .hmkt-price,
    .hmkt-price .amount {
        font-size: 14px;
    }

    .hmkt-product-actions {
        gap: 6px;
    }

    .hmkt-product-actions .hmkt-btn {
        min-height: 34px;
        padding: 0 6px;
        font-size: 11px;
    }

    .hmkt-process-metrics,
    .hmkt-final-cta-points {
        display: flex;
    }

    .hmkt-post-grid {
        grid-template-columns: 1fr;
    }

    .hmkt-district-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hmkt-process-steps,
    .hmkt-footer-contact-cards {
        grid-template-columns: 1fr;
    }

    .hmkt-category-showcase {
        padding: 14px;
        border-radius: 10px;
    }

    .hmkt-search-hero {
        padding: 18px;
    }

    .hmkt-search-hero h1 {
        font-size: 28px;
    }

    .hmkt-post-hero {
        padding: 18px 0;
    }

    .hmkt-post-hero h1 {
        font-size: 28px;
    }

    .hmkt-post-hero figure {
        border-radius: 10px;
    }

    .hmkt-article-card {
        padding: 16px;
        border-radius: 10px;
    }

    .hmkt-article-content {
        font-size: 16px;
        line-height: 1.68;
    }

    .hmkt-search-page-form,
    .hmkt-search-benefits {
        grid-template-columns: 1fr;
    }

    .hmkt-logo-card {
        grid-template-columns: 52px 1fr;
        min-height: 78px;
        padding: 12px;
    }

    .hmkt-logo-badge {
        width: 52px;
        height: 42px;
        font-size: 12px;
    }

    .hmkt-logo-badge strong {
        font-size: 15px;
    }

    .hmkt-logo-card em {
        font-size: 14px;
    }

    .hmkt-home-banner h2 {
        font-size: 23px;
    }

    .hmkt-category-menu ul,
    .hmkt-nav-inner .hmkt-category-menu ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hmkt-product-summary h1 {
        font-size: 24px;
    }

    .hmkt-single-price {
        font-size: 24px;
    }

    .hmkt-product-gallery,
    .hmkt-product-summary,
    .hmkt-product-detail-card {
        border-radius: 10px;
    }

    .hmkt-section-head,
    .hmkt-shop-toolbar,
    .hmkt-copyright {
        display: block;
    }

    .hmkt-final-cta-inner .hmkt-hero-actions {
        margin-top: 14px;
    }

    .hmkt-process-metrics span,
    .hmkt-final-cta-points span {
        flex: 1 1 100%;
        white-space: normal;
    }

    .hmkt-footer-promise-item {
        min-height: 56px;
    }

    .hmkt-floating-actions {
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: row;
        gap: 0;
    }

    .hmkt-floating-actions a {
        flex: 1;
        min-width: 0;
        border-radius: 0;
        padding: 14px 8px;
    }
}

.hmkt-menu-icon,
.hmkt-menu-icon svg {
    max-width: 26px;
    max-height: 26px;
}

@media (min-width: 821px) {
    .hmkt-nav {
        height: auto;
        min-height: 46px;
        overflow: visible;
    }

    .hmkt-category-menu {
        display: none;
        position: absolute;
    }

    .hmkt-category-dropdown:hover .hmkt-category-menu,
    .hmkt-category-dropdown:focus-within .hmkt-category-menu,
    .hmkt-category-dropdown.is-open .hmkt-category-menu {
        display: block;
    }
}

@media (max-width: 820px) {
    .hmkt-nav.is-open .hmkt-category-menu {
        display: block;
    }

    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .hmkt-nav {
        overflow: hidden;
    }

    .hmkt-nav.is-open {
        padding: 8px 0 10px;
    }

    .hmkt-nav-inner {
        width: min(100% - 24px, 1180px);
        margin: 0 auto;
    }

    .hmkt-category-trigger {
        width: 100%;
        min-height: 42px;
        border-radius: 8px;
        padding: 0 12px;
    }

    .hmkt-category-menu {
        width: 100%;
        margin: 8px 0 10px;
        padding: 10px;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }

    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu li {
        min-width: 0;
    }

    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu a {
        min-width: 0;
        width: 100%;
        min-height: 46px;
        padding: 8px;
        border-radius: 8px;
        background: #fffaf0;
        color: var(--hmkt-green-dark);
        white-space: normal;
        line-height: 1.25;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu .hmkt-menu-icon {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
        border-radius: 7px;
        background: var(--hmkt-gold-soft);
        color: var(--hmkt-green-dark);
    }

    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu .hmkt-menu-icon svg {
        width: 15px;
        height: 15px;
    }

    .hmkt-menu {
        width: 100%;
        gap: 6px;
    }

    .hmkt-menu > li > a {
        border-radius: 8px;
        background: rgba(255, 255, 255, .12);
        color: #fff;
    }

    .hmkt-menu .sub-menu {
        margin: 6px 0 8px;
        padding: 8px;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }

    .hmkt-menu .sub-menu a {
        min-width: 0;
        width: 100%;
        border-radius: 8px;
        background: #fffaf0;
        color: var(--hmkt-green-dark);
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .hmkt-menu .sub-menu .hmkt-menu-icon {
        background: var(--hmkt-gold-soft);
        color: var(--hmkt-green-dark);
    }
}

@media (max-width: 390px) {
    .hmkt-nav .hmkt-category-dropdown .hmkt-category-menu ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .hmkt-nav.is-open {
        max-height: calc(100dvh - 142px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 84px;
    }

    @supports not (height: 100dvh) {
        .hmkt-nav.is-open {
            max-height: calc(100vh - 142px);
        }
    }

    .hmkt-nav-inner {
        padding-bottom: 14px;
    }

    .hmkt-menu,
    .hmkt-category-menu {
        padding-bottom: 8px;
    }
}

@media (max-width: 820px) {
    .hmkt-nav.is-open .hmkt-category-menu,
    .hmkt-nav.is-open .hmkt-menu .sub-menu {
        display: none;
    }

    .hmkt-nav.is-open .hmkt-category-dropdown.is-open .hmkt-category-menu,
    .hmkt-nav.is-open .hmkt-menu > .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    .hmkt-category-trigger,
    .hmkt-menu > .menu-item-has-children > a {
        position: relative;
        padding-right: 42px;
    }

    .hmkt-category-trigger::after,
    .hmkt-menu > .menu-item-has-children > a::after {
        content: "+";
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        line-height: 1;
    }

    .hmkt-category-dropdown.is-open .hmkt-category-trigger::after,
    .hmkt-menu > .menu-item-has-children.is-open > a::after {
        content: "-";
    }
}
