/* Stitch design system — Hongtailiang / 宏泰贸易 */
.htl-home {
  --htl-primary: #000511;
  --htl-primary-container: #001e40;
  --htl-secondary: #fe6500;
  --htl-secondary-container: #fe6500;
  --htl-surface: #f7fafc;
  --htl-surface-container: #ebeef0;
  --htl-surface-container-low: #f1f4f6;
  --htl-surface-container-lowest: #ffffff;
  --htl-surface-container-high: #e5e9eb;
  --htl-on-surface: #181c1e;
  --htl-on-surface-variant: #43474f;
  --htl-outline: #74777f;
  --htl-outline-variant: #c4c6cf;
  --htl-primary-fixed: #d5e3ff;
  --htl-on-primary: #ffffff;
  --htl-on-secondary: #ffffff;
  --htl-container-max: 1600px;
  --htl-margin: clamp(16px, 4vw, 32px);
  --htl-font-display: Roboto, "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --htl-font-body: Roboto, "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --htl-font-label: Roboto, "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--htl-surface);
  color: var(--htl-on-surface);
  font-family: var(--htl-font-body);
  font-size: 14px;
  line-height: 1.5;
}

.htl-home *,
.htl-home *::before,
.htl-home *::after {
  box-sizing: border-box;
}

.htl-home a {
  color: inherit;
  text-decoration: none;
}

.htl-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.htl-shell {
  width: min(var(--htl-container-max), 100%);
  margin: 0 auto;
  padding-inline: var(--htl-margin);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  line-height: 1;
}

.material-symbols-outlined.is-filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Header */
.htl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  background: var(--htl-surface);
  border-bottom: 1px solid var(--htl-outline-variant);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.htl-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.htl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.htl-header__brand {
  font-family: var(--htl-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--htl-primary);
  white-space: nowrap;
}

.htl-header__nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.htl-header__nav a {
  font-size: 14px;
  color: var(--htl-on-surface-variant);
  transition: color 0.2s;
}

.htl-header__nav a:hover,
.htl-header__nav a.is-active {
  color: var(--htl-secondary);
}

.htl-header__nav a.is-active {
  border-bottom: 2px solid var(--htl-secondary);
  padding-bottom: 2px;
}

.htl-header__search {
  display: none;
  flex: 1;
  max-width: 420px;
  position: relative;
}

.htl-header__search .material-symbols-outlined {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--htl-on-surface-variant);
  font-size: 20px;
}

.htl-header__search input {
  width: 100%;
  padding: 8px 12px 8px 40px;
  border: 1px solid var(--htl-outline-variant);
  border-radius: 4px;
  background: var(--htl-surface-container-low);
  font: inherit;
}

.htl-header__search input:focus {
  outline: 2px solid var(--htl-primary);
  border-color: transparent;
}

.htl-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.htl-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--htl-on-surface-variant);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.htl-header__icon-btn:hover {
  background: var(--htl-surface-container-low);
}

.htl-header .header-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--htl-secondary-container);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.htl-header .header-cart-badge.is-empty {
  display: none;
}

.htl-header__cta {
  display: none;
  padding: 8px 24px;
  border: 0;
  border-radius: 4px;
  background: var(--htl-secondary-container);
  color: var(--htl-on-secondary);
  font-family: var(--htl-font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

.htl-header__cta:hover {
  filter: brightness(1.08);
}

.htl-header__menu-toggle {
  display: inline-flex;
}

.htl-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--htl-secondary-container);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

/* Mobile menu */
.htl-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 5, 17, 0.45);
}

.htl-mobile-menu[hidden] {
  display: none;
}

.htl-mobile-menu__panel {
  width: min(360px, 88vw);
  height: 100%;
  margin-left: auto;
  background: var(--htl-surface-container-lowest);
  padding: 24px;
  overflow-y: auto;
}

.htl-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.htl-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.htl-mobile-menu__nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--htl-on-surface);
}

/* Main offset for fixed header */
.htl-main {
  padding-top: 64px;
}

/* Hero */
.htl-hero {
  position: relative;
  height: min(600px, 85vh);
  overflow: hidden;
}

.htl-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.htl-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 5, 17, 0.82) 0%, rgba(0, 5, 17, 0.2) 70%, transparent 100%);
  color: #fff;
}

.htl-hero__content {
  max-width: 640px;
}

.htl-hero__badge {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: var(--htl-secondary-container);
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.htl-hero__title {
  margin: 0 0 16px;
  font-family: var(--htl-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.htl-hero__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--htl-primary-fixed);
  max-width: 520px;
}

.htl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.htl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--htl-font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, filter 0.2s;
  border: 0;
}

.htl-btn--primary {
  background: var(--htl-secondary-container);
  color: var(--htl-on-secondary);
}

.htl-btn--primary:hover {
  transform: scale(1.03);
}

.htl-btn--ghost {
  background: rgba(247, 250, 252, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.htl-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.htl-btn--outline {
  background: transparent;
  border: 1px solid var(--htl-primary);
  color: var(--htl-primary);
}

.htl-btn--outline:hover {
  background: var(--htl-primary);
  color: #fff;
}

/* Trust strip */
.htl-trust-strip {
  padding: 16px 0;
  background: var(--htl-surface-container);
  border-bottom: 1px solid var(--htl-outline-variant);
}

.htl-trust-strip__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.htl-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--htl-on-surface-variant);
}

.htl-trust-strip__item .material-symbols-outlined {
  color: var(--htl-primary);
}

/* Section headings */
.htl-section {
  padding: 80px 0;
}

.htl-section--muted {
  background: var(--htl-surface-container-low);
}

.htl-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.htl-section__eyebrow {
  display: block;
  margin-bottom: 8px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--htl-secondary);
}

.htl-section__title {
  margin: 0;
  font-family: var(--htl-font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--htl-on-surface);
}

.htl-section__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  color: var(--htl-primary);
  white-space: nowrap;
}

/* Bento grid */
.htl-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.htl-bento__card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 220px;
  background: var(--htl-surface-container-high);
}

.htl-bento__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.htl-bento__card:hover img {
  transform: scale(1.08);
}

.htl-bento__card--hero {
  background: var(--htl-primary);
  min-height: 320px;
}

.htl-bento__card--hero img {
  opacity: 0.7;
}

.htl-bento__card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.htl-bento__card--wide .htl-bento__card-content {
  justify-content: center;
  max-width: 280px;
  color: var(--htl-on-surface);
}

.htl-bento__card--wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(224, 227, 229, 0.85), transparent);
}

.htl-bento__card--icon {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  color: var(--htl-on-surface);
}

.htl-bento__card--icon > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

body.htl-menu-open {
  overflow: hidden;
}

.htl-bento__card--icon:hover {
  border-color: var(--htl-secondary);
}

.htl-header__start {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.htl-bento__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--htl-primary-fixed);
  color: var(--htl-primary);
}

.htl-bento__icon--accent {
  background: #ffdbcd;
  color: var(--htl-secondary);
}

/* Product cards (home) */
.htl-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.htl-product-card {
  background: #fff;
  border: 1px solid var(--htl-outline-variant);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.htl-product-card:hover {
  border-color: rgba(0, 30, 64, 0.2);
  box-shadow: 0 8px 24px rgba(0, 30, 64, 0.08);
}

.htl-product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.htl-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.htl-product-card:hover .htl-product-card__media img {
  transform: scale(1.05);
}

.htl-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--htl-secondary);
  color: #fff;
  font-family: var(--htl-font-label);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.htl-product-card__badge--new {
  background: var(--htl-primary);
}

.htl-product-card__body {
  padding: 20px;
}

.htl-product-card__category {
  margin: 0 0 4px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--htl-on-surface-variant);
}

.htl-product-card__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.htl-product-card__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.htl-product-card__price {
  font-family: var(--htl-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--htl-secondary);
}

.htl-product-card__moq {
  font-family: var(--htl-font-label);
  font-size: 12px;
  color: var(--htl-on-surface-variant);
}

/* Logistics */
.htl-logistics {
  display: grid;
  gap: 48px;
  align-items: center;
}

.htl-logistics__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.htl-logistics__stat {
  border-left: 2px solid var(--htl-secondary);
  padding-left: 16px;
}

.htl-logistics__stat-value {
  font-family: var(--htl-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--htl-primary);
}

.htl-logistics__stat-label {
  font-family: var(--htl-font-label);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--htl-on-surface-variant);
}

.htl-logistics__visual {
  background: var(--htl-surface-container);
  border-radius: 24px;
  padding: 32px;
}

.htl-logistics__map {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}

.htl-logistics__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.htl-logistics__hubs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  text-align: center;
}

.htl-logistics__hub strong {
  display: block;
  font-size: 14px;
  color: var(--htl-primary);
}

.htl-logistics__hub span {
  font-family: var(--htl-font-label);
  font-size: 12px;
  color: var(--htl-on-surface-variant);
}

/* Newsletter CTA */
.htl-cta {
  margin-bottom: 96px;
}

.htl-cta__box {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 24px;
  background: var(--htl-primary);
  color: #fff;
}

.htl-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.htl-cta__title {
  margin: 0 0 8px;
  font-family: var(--htl-font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
}

.htl-cta__text {
  margin: 0;
  color: var(--htl-primary-fixed);
  opacity: 0.85;
  max-width: 480px;
}

.htl-cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.htl-cta__form input {
  min-width: 260px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
}

.htl-cta__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.htl-cta__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.htl-cta__glow--1 {
  top: -96px;
  right: -96px;
  width: 256px;
  height: 256px;
  background: rgba(254, 101, 0, 0.12);
}

.htl-cta__glow--2 {
  bottom: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  background: rgba(254, 101, 0, 0.2);
}

/* Footer */
.htl-footer {
  padding: 48px 0;
  background: var(--htl-surface-container);
  border-top: 1px solid var(--htl-outline-variant);
}

.htl-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.htl-footer__brand {
  font-family: var(--htl-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--htl-primary);
  margin-bottom: 16px;
}

.htl-footer__desc {
  margin: 0 0 24px;
  color: var(--htl-on-surface-variant);
  font-size: 14px;
  line-height: 1.6;
}

.htl-footer__social {
  display: flex;
  gap: 8px;
}

.htl-footer__social button,
.htl-footer__social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--htl-on-surface-variant);
  cursor: pointer;
}

.htl-footer__social button:hover,
.htl-footer__social a:hover {
  color: var(--htl-secondary);
}

.htl-footer__col h4 {
  margin: 0 0 24px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--htl-primary);
}

.htl-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.htl-footer__col a {
  color: var(--htl-on-surface-variant);
  font-size: 14px;
  transition: color 0.2s;
}

.htl-footer__col a:hover {
  color: var(--htl-secondary);
}

/* FAB */
.htl-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--htl-secondary-container);
  color: #fff;
  box-shadow: 0 8px 24px rgba(254, 101, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.htl-fab:hover {
  transform: scale(1.08);
}

.htl-fab__tip {
  position: absolute;
  right: calc(100% + 12px);
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--htl-primary);
  color: #fff;
  font-family: var(--htl-font-label);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.htl-fab:hover .htl-fab__tip {
  opacity: 1;
}

/* Shop page */
.htl-shop-page {
  padding: 32px 0 64px;
}

.htl-shop-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.htl-shop-page__meta {
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--htl-on-surface-variant);
  margin-top: 4px;
}

.htl-shop-page__meta strong {
  color: var(--htl-secondary);
}

.htl-shop-page__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--htl-outline);
}

.htl-shop-page__sort select {
  padding: 4px 12px;
  border: 1px solid var(--htl-outline-variant);
  background: var(--htl-surface-container-lowest);
  color: var(--htl-primary);
  font: inherit;
}

.htl-shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  padding: 16px;
  margin-bottom: 32px;
  background: var(--htl-surface-container-lowest);
  border: 1px solid var(--htl-outline-variant);
}

.htl-shop-filters label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--htl-outline);
}

.htl-shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* B2B shop product card */
.htl-shop-card {
  display: flex;
  flex-direction: column;
  padding: 8px;
  background: var(--htl-surface-container-lowest);
  border: 1px solid var(--htl-outline-variant);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.htl-shop-card:hover {
  border-color: var(--htl-primary-container);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.05);
}

.htl-shop-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--htl-surface-container-low);
}

.htl-shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.htl-shop-card:hover .htl-shop-card__media img {
  transform: scale(1.05);
}

.htl-shop-card__tags {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.htl-shop-card__tag {
  padding: 2px 8px;
  font-family: var(--htl-font-label);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--htl-on-surface);
  color: #fff;
}

.htl-shop-card__tag--stock {
  background: var(--htl-secondary);
}

.htl-shop-card__body {
  flex: 1;
  padding: 4px;
  display: flex;
  flex-direction: column;
}

.htl-shop-card__sku {
  font-family: var(--htl-font-label);
  font-size: 10px;
  color: var(--htl-outline);
}

.htl-shop-card__title {
  margin: 8px 0;
  font-family: var(--htl-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--htl-primary-container);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.htl-shop-card__cta {
  margin-top: auto;
  padding-top: 8px;
}

.htl-shop-card__cta .htl-btn {
  width: 100%;
  padding: 8px;
  font-family: var(--htl-font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--htl-primary-container);
  color: #fff;
}

.htl-shop-card__cta .htl-btn:hover {
  background: var(--htl-primary);
}

.htl-shop-pagination {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--htl-outline-variant);
}

/* Responsive */
@media (min-width: 640px) {
  .htl-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .htl-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .htl-header__nav {
    display: flex;
  }

  .htl-header__menu-toggle {
    display: none;
  }

  .htl-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }

  .htl-bento__card--hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .htl-bento__card--wide {
    grid-column: span 2;
  }

  .htl-logistics {
    grid-template-columns: 1fr 1fr;
  }

  .htl-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .htl-header__search {
    display: block;
  }

  .htl-header__cta {
    display: inline-flex;
  }

  .htl-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .htl-shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
