:root {
  --hm-bg: #fff9f3;
  --hm-surface: #ffffff;
  --hm-surface-soft: #fff7ef;
  --hm-border: #eddccc;
  --hm-border-strong: #f0b48e;
  --hm-text: #17233e;
  --hm-muted: #667085;
  --hm-accent: #f96a1f;
  --hm-accent-dark: #132a56;
  --hm-success: #1fbe78;
  --hm-ring: rgba(249, 106, 31, 0.18);
  --hm-shadow: 0 18px 45px rgba(23, 35, 62, 0.08);
  --hm-shadow-soft: 0 12px 28px rgba(23, 35, 62, 0.06);
  --hm-shadow-hover: 0 24px 55px rgba(23, 35, 62, 0.12);
  --hm-radius-xl: 30px;
  --hm-radius-lg: 24px;
  --hm-radius-md: 18px;
  --hm-radius-sm: 999px;
  --hm-shell: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.13), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #fff5eb 100%);
  color: var(--hm-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a,
button,
input,
select,
textarea,
.hm-product-card,
.hm-category-card,
.hm-story-card,
.hm-post-card,
.woocommerce .products .product {
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.18s ease;
}

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

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

input::placeholder,
textarea::placeholder {
  color: #98a2b3;
}

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px var(--hm-ring);
}

.hm-shell {
  width: min(calc(100% - 32px), var(--hm-shell));
  margin: 0 auto;
}

.hm-site-main {
  padding-bottom: 64px;
}

.hm-section {
  padding: 44px 0;
}

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

.hm-section__head--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.hm-section__head h2,
.hm-hero h1,
.hm-page-content h1,
.product .product_title,
.woocommerce-account h1,
.woocommerce-order h1,
.woocommerce-cart h1,
.woocommerce-checkout h1 {
  margin: 0;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hm-section-label {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: var(--hm-radius-sm);
  background: rgba(249, 106, 31, 0.12);
  color: var(--hm-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hm-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 243, 0.92);
  border-bottom: 1px solid rgba(237, 220, 204, 0.92);
  box-shadow: 0 10px 28px rgba(23, 35, 62, 0.04);
}

.hm-site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 88px;
}

.hm-site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hm-site-header__logo,
.hm-site-footer__logo {
  display: inline-flex;
  align-items: center;
}

.hm-site-header__logo img {
  max-height: 68px;
  width: auto;
}

.hm-site-header__logo .custom-logo-link,
.hm-site-footer__logo .custom-logo-link {
  display: inline-flex;
}

.hm-site-header__logo-text {
  color: var(--hm-accent-dark);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hm-site-header__toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hm-site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--hm-accent-dark);
}

.hm-nav-list,
.hm-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

.hm-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--hm-radius-sm);
  color: var(--hm-text);
}

.hm-nav-list a:hover {
  color: var(--hm-accent-dark);
  background: rgba(255, 255, 255, 0.85);
}

.hm-site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hm-search {
  display: flex;
  align-items: center;
  min-width: 280px;
  overflow: hidden;
  border: 1px solid var(--hm-border);
  border-radius: var(--hm-radius-sm);
  background: var(--hm-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hm-search:focus-within {
  border-color: rgba(249, 106, 31, 0.45);
  box-shadow: 0 0 0 4px var(--hm-ring);
}

.hm-search input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--hm-text);
}

.hm-search button,
.hm-site-header__cart,
.hm-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hm-radius-sm);
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hm-search button {
  padding: 12px 16px;
  background: var(--hm-accent-dark);
  color: #fff;
}

.hm-site-header__cart {
  gap: 8px;
  padding: 12px 16px;
  background: var(--hm-surface);
  border: 1px solid var(--hm-border);
}

.hm-site-header__cart:hover {
  transform: translateY(-1px);
  box-shadow: var(--hm-shadow-soft);
}

.hm-site-header__cart span {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--hm-accent);
  color: #fff;
  font-size: 12px;
}

.hm-hero__grid,
.hm-single-layout {
  display: grid;
  gap: 28px;
}

.hm-hero__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
}

.hm-hero__content,
.hm-hero__visual,
.hm-category-card,
.hm-story-card,
.hm-post-card,
.woocommerce .products .product,
.hm-site-footer__grid > *,
.hm-page-content > * {
  background: var(--hm-surface);
  border: 1px solid rgba(237, 220, 204, 0.95);
  box-shadow: var(--hm-shadow);
}

.hm-hero__content,
.hm-hero__visual {
  padding: 34px;
  border-radius: var(--hm-radius-xl);
}

.hm-hero h1 {
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.94;
}

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

.hm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hm-button {
  min-height: 52px;
  padding: 0 22px;
}

.hm-button--primary {
  background: var(--hm-accent);
  color: #fff;
}

.hm-button--secondary {
  background: transparent;
  color: var(--hm-accent-dark);
  border: 1px solid var(--hm-border);
}

.hm-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(23, 35, 62, 0.1);
}

.hm-hero__visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hm-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(19, 42, 86, 0), rgba(19, 42, 86, 0.14));
  pointer-events: none;
}

.hm-hero__visual img,
.hm-hero__placeholder {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--hm-radius-xl) - 8px);
  object-fit: cover;
}

.hm-hero__placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffe8d4, #fff);
  color: var(--hm-accent-dark);
  font-size: 28px;
  font-weight: 700;
}

.hm-hero__card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: min(340px, calc(100% - 48px));
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(19, 42, 86, 0.94);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 45px rgba(19, 42, 86, 0.24);
}

.hm-hero__card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hm-hero__card strong {
  font-size: 28px;
  line-height: 1.05;
}

.hm-hero__card .hm-price__current,
.hm-hero__card .hm-price__regular,
.hm-hero__card .hm-price__badge {
  color: #fff;
}

.hm-category-grid,
.hm-story-grid {
  display: grid;
  gap: 20px;
}

.hm-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hm-story-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hm-category-card,
.hm-story-card,
.hm-post-card {
  border-radius: 24px;
  overflow: hidden;
}

.hm-category-card:hover,
.hm-story-card:hover,
.hm-post-card:hover,
.woocommerce .products .product:hover {
  transform: translateY(-4px);
  box-shadow: var(--hm-shadow-hover);
}

.hm-category-card img,
.hm-story-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hm-category-card__body,
.hm-story-card__body,
.hm-post-card {
  padding: 18px;
}

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

.hm-category-card__body strong,
.hm-story-card__body strong {
  color: var(--hm-accent-dark);
  font-size: 16px;
}

.hm-category-card__body span,
.hm-story-card__body span {
  color: var(--hm-muted);
  font-size: 13px;
}

.woocommerce ul.products {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce .products .product {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 18px;
  border-radius: 24px;
}

.hm-product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.hm-product-card__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--hm-surface-soft);
}

.hm-product-card__image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hm-product-card__image-wrap:hover img {
  transform: scale(1.02);
}

.hm-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: var(--hm-radius-sm);
  background: rgba(19, 42, 86, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hm-product-card__favorite {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.hm-product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.hm-product-card__category,
.hm-single-summary__category {
  color: var(--hm-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hm-product-card__title {
  margin: 0;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
}

.hm-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hm-price__current,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--hm-accent-dark);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.hm-price--card .hm-price__current {
  font-size: 28px;
}

.hm-price--hero .hm-price__current {
  font-size: 34px;
}

.hm-price__regular {
  color: #98a2b3;
  font-size: 17px;
  font-weight: 600;
}

.hm-price__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--hm-radius-sm);
  background: var(--hm-success);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hm-product-card__cta,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 48px;
  padding: 0 18px;
  background: var(--hm-accent) !important;
  color: #fff !important;
  font-weight: 800;
  border: 0 !important;
}

.hm-product-card__cta {
  margin-top: auto;
}

.hm-product-card__cta:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(249, 106, 31, 0.24);
}

.hm-favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--hm-border);
  border-radius: var(--hm-radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--hm-accent-dark);
  box-shadow: 0 8px 20px rgba(23, 35, 62, 0.06);
}

.hm-favorite-button.is-active {
  border-color: rgba(249, 106, 31, 0.5);
  color: var(--hm-accent);
}

.hm-favorite-button--single {
  width: 100%;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  background: #fff;
}

.hm-favorite-button__icon svg {
  width: 20px;
  height: 20px;
}

.hm-single-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: start;
}

.hm-single-media,
.hm-single-summary {
  padding: 26px;
  border-radius: var(--hm-radius-xl);
  background: var(--hm-surface);
  border: 1px solid rgba(237, 220, 204, 0.95);
  box-shadow: var(--hm-shadow);
}

.hm-single-summary {
  position: sticky;
  top: 106px;
}

.hm-single-media__gallery {
  margin-top: 18px;
}

.hm-single-media .woocommerce-product-gallery,
.hm-single-media .woocommerce-product-gallery__wrapper,
.hm-single-media .woocommerce-product-gallery__image,
.hm-single-media .woocommerce-product-gallery__image a {
  width: 100%;
}

.hm-single-media .woocommerce-product-gallery__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.hm-single-media .woocommerce-product-gallery__trigger {
  border-radius: 999px;
  box-shadow: var(--hm-shadow-soft);
}

.hm-single-media .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 12px;
  margin: 14px 0 0 !important;
}

.hm-single-media .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
}

.hm-single-media .flex-control-thumbs img {
  border-radius: 14px;
  opacity: 1;
}

.hm-single-summary h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.hm-single-summary__stock {
  margin-top: 12px;
  color: #1f9d62;
  font-size: 14px;
  font-weight: 800;
}

.hm-single-summary__intro p {
  margin: 18px 0 0;
  color: var(--hm-muted);
  font-size: 16px;
}

.hm-single-summary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hm-single-summary__chips li {
  padding: 10px 16px;
  border-radius: var(--hm-radius-sm);
  border: 1px solid var(--hm-border);
  background: #fff;
  color: var(--hm-accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.hm-single-summary__purchase {
  margin-top: 24px;
}

.hm-single-summary form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  margin: 0;
}

.hm-single-summary form.cart div.quantity {
  display: inline-flex;
  flex: 0 0 188px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--hm-border);
  border-radius: var(--hm-radius-sm);
  background: #fff;
}

.hm-single-summary .quantity .qty {
  width: 64px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  appearance: textfield;
  -moz-appearance: textfield;
}

.hm-single-summary .quantity .minus,
.hm-single-summary .quantity .plus {
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0 !important;
  border-radius: 14px !important;
  background: var(--hm-surface-soft) !important;
  color: var(--hm-accent-dark) !important;
}

.hm-single-summary .quantity .minus:hover,
.hm-single-summary .quantity .plus:hover {
  background: #ffe8d8 !important;
}

.hm-single-summary form.cart .single_add_to_cart_button {
  flex: 1 1 220px;
}

.hm-personal-upload,
.hm-bundle-box {
  flex: 1 1 100%;
}

.hm-personal-upload {
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(249, 106, 31, 0.45);
  background: var(--hm-surface-soft);
}

.hm-personal-upload label {
  display: block;
  margin-bottom: 10px;
  color: var(--hm-accent-dark);
  font-size: 15px;
  font-weight: 800;
}

.hm-personal-upload input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--hm-border);
  border-radius: 16px;
  background: #fff;
}

.hm-personal-upload p {
  margin: 10px 0 0;
  color: var(--hm-muted);
  font-size: 13px;
}

.hm-single-summary__favorite {
  margin-top: 14px;
}

.hm-bundle-box {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--hm-border-strong);
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
  overflow: hidden;
}

.hm-bundle-box > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hm-bundle-box__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
}

.hm-bundle-box__toggle {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #d0d5dd;
  cursor: pointer;
}

.hm-bundle-box__toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(23, 35, 62, 0.18);
  transition: transform 0.2s ease;
}

.hm-bundle-box > input[type="checkbox"]:checked + input + .hm-bundle-box__head .hm-bundle-box__toggle,
.hm-bundle-box > input[type="checkbox"]:checked + .hm-bundle-box__head .hm-bundle-box__toggle {
  background: rgba(31, 190, 120, 0.75);
}

.hm-bundle-box > input[type="checkbox"]:checked + input + .hm-bundle-box__head .hm-bundle-box__toggle::after,
.hm-bundle-box > input[type="checkbox"]:checked + .hm-bundle-box__head .hm-bundle-box__toggle::after {
  transform: translateX(24px);
}

.hm-bundle-box__copy {
  display: grid;
  gap: 6px;
}

.hm-bundle-box__copy strong {
  color: var(--hm-accent-dark);
  font-size: 17px;
}

.hm-bundle-box__copy span {
  color: var(--hm-muted);
  font-size: 14px;
}

.hm-bundle-box__price {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.hm-bundle-box__price strong {
  color: var(--hm-accent);
  font-size: 18px;
}

.hm-bundle-box__price del {
  color: #98a2b3;
  font-size: 14px;
}

.hm-bundle-box__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hm-bundle-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--hm-border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.hm-bundle-card__image {
  display: grid;
  place-items: center;
  min-height: 110px;
  border-radius: 16px;
  background: var(--hm-surface-soft);
}

.hm-bundle-card img {
  max-height: 92px;
  width: auto;
  object-fit: contain;
}

.hm-bundle-card strong {
  color: var(--hm-accent);
  font-size: 15px;
  line-height: 1.3;
}

.hm-bundle-card span {
  color: #24915b;
  font-size: 13px;
  font-weight: 700;
}

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

.hm-product-features__item {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 148px;
  padding: 16px;
  border-radius: 18px;
  background: var(--hm-surface-soft);
  border: 1px solid var(--hm-border);
}

.hm-product-features__icon svg {
  width: 26px;
  height: 26px;
  color: #6c728c;
}

.hm-product-features__item strong {
  display: block;
  color: var(--hm-accent-dark);
  font-size: 17px;
  line-height: 1.2;
}

.hm-product-features__item span:last-child {
  color: var(--hm-muted);
  font-size: 13px;
}

.hm-shipping-card,
.hm-single-summary__help {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
}

.hm-shipping-card {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: linear-gradient(180deg, #f7fbff 0%, #edf3ff 100%);
  border: 1px solid #d7e4ff;
}

.hm-shipping-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--hm-accent-dark);
}

.hm-shipping-card__copy {
  display: grid;
  gap: 4px;
}

.hm-shipping-card__copy strong {
  color: var(--hm-accent-dark);
  font-size: 16px;
}

.hm-shipping-card__copy span {
  color: var(--hm-text);
  font-size: 14px;
}

.hm-shipping-card__badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--hm-radius-sm);
  background: #ffeddc;
  color: var(--hm-accent);
  font-size: 13px;
  font-weight: 800;
}

.hm-single-summary__help {
  background: #fff;
  border: 1px solid var(--hm-border);
}

.hm-single-summary__help strong {
  color: var(--hm-accent-dark);
  font-size: 16px;
}

.hm-single-summary__help span {
  color: var(--hm-muted);
  font-size: 14px;
}

.hm-single-product__related {
  margin-top: 32px;
}

.hm-site-footer {
  padding: 36px 0 28px;
  border-top: 1px solid rgba(237, 220, 204, 0.95);
  background: rgba(255, 249, 243, 0.96);
}

.hm-site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
}

.hm-site-footer__grid > * {
  padding: 22px;
  border-radius: 24px;
}

.hm-site-footer__brand p {
  margin: 14px 0 0;
  color: var(--hm-muted);
}

.hm-site-footer__column h2 {
  margin: 0 0 14px;
  color: var(--hm-accent-dark);
  font-size: 17px;
}

.hm-footer-menu {
  display: grid;
  gap: 10px;
}

.hm-footer-menu a {
  color: var(--hm-text);
}

.hm-footer-menu a:hover,
.hm-site-footer__contact a:hover {
  color: var(--hm-accent);
}

.hm-site-footer__contact {
  margin-top: 14px;
}

.hm-site-footer__contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--hm-radius-sm);
  background: var(--hm-accent-dark);
  color: #fff;
  font-weight: 700;
}

.hm-site-footer__bottom {
  margin-top: 20px;
  color: var(--hm-muted);
  font-size: 14px;
  text-align: center;
}

.hm-page-content,
.hm-content-grid {
  display: grid;
  gap: 20px;
}

.hm-page-content > article {
  padding: 28px;
  border-radius: var(--hm-radius-xl);
}

.hm-archive-head {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: var(--hm-radius-xl);
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  border: 1px solid var(--hm-border);
  box-shadow: var(--hm-shadow);
}

.hm-archive-description {
  color: var(--hm-muted);
  max-width: 760px;
}

.hm-post-card {
  display: grid;
  gap: 14px;
}

.hm-post-card h1,
.hm-post-card h2 {
  margin: 0;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
}

.hm-post-card h2 {
  font-size: clamp(24px, 2.8vw, 34px);
}

.hm-post-card div,
.hm-post-card p {
  color: var(--hm-muted);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
  margin-bottom: 16px;
  color: var(--hm-muted);
  font-size: 13px;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-top: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--hm-shadow);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account textarea,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--hm-border) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--hm-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.woocommerce form .form-row textarea,
.woocommerce-account textarea {
  min-height: 120px;
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--hm-border);
  border-radius: 20px;
  background: #fff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
  border-color: rgba(237, 220, 204, 0.8);
}

.woocommerce-cart table.cart img {
  border-radius: 14px;
}

.woocommerce-account .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  display: grid;
  gap: 22px;
}

.woocommerce-account .woocommerce {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-order {
  padding: 24px;
  border-radius: var(--hm-radius-xl);
  background: #fff;
  border: 1px solid var(--hm-border);
  box-shadow: var(--hm-shadow);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
  margin-top: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--hm-surface-soft);
  color: var(--hm-accent-dark);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation a.is-active,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: linear-gradient(135deg, #fff1e6, #fff);
  color: var(--hm-accent);
}

.woocommerce-account .addresses .title .edit,
.woocommerce-account .woocommerce-Address-title a {
  color: var(--hm-accent);
  font-weight: 700;
}

.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce-ResetPassword,
.woocommerce-form-coupon,
.woocommerce-checkout-review-order {
  padding: 22px;
  border: 1px solid var(--hm-border);
  border-radius: 24px;
  background: #fff;
}

.woocommerce-pagination,
.navigation.pagination {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.woocommerce nav.woocommerce-pagination ul,
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--hm-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--hm-shadow-soft);
}

.woocommerce nav.woocommerce-pagination ul li,
.navigation.pagination .page-numbers {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--hm-accent-dark);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.navigation.pagination .page-numbers.current {
  background: var(--hm-accent);
  color: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .hm-site-header__inner,
  .hm-hero__grid,
  .hm-single-layout,
  .hm-site-footer__grid,
  .hm-section__head--split,
  .hm-shipping-card {
    grid-template-columns: 1fr;
  }

  .hm-site-header__actions {
    flex-wrap: wrap;
  }

  .hm-search {
    min-width: 0;
    width: 100%;
  }

  .hm-single-summary {
    position: static;
  }

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

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .hm-site-header__toggle {
    display: inline-block;
  }

  .hm-site-header__nav {
    display: none;
  }

  .hm-site-header__nav.is-open {
    display: block;
    grid-column: 1 / -1;
  }

  .hm-nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--hm-border);
    border-radius: 20px;
    background: var(--hm-surface);
  }

  .hm-hero__content,
  .hm-hero__visual,
  .hm-single-media,
  .hm-single-summary,
  .hm-page-content > article,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-cart-form,
  .cart-collaterals,
  .woocommerce-checkout form.checkout,
  .woocommerce-order {
    padding: 20px;
  }

  .hm-hero h1 {
    font-size: 52px;
  }

  .hm-hero__visual {
    min-height: 460px;
  }

  .hm-hero__card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 18px;
  }

  .hm-site-header__actions {
    grid-column: 1 / -1;
  }

  .hm-search,
  .hm-site-header__cart {
    width: 100%;
  }

  .hm-site-header__cart {
    justify-content: space-between;
  }

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

  .hm-single-summary form.cart {
    gap: 10px;
  }

  .hm-single-summary form.cart div.quantity,
  .hm-single-summary form.cart .single_add_to_cart_button {
    flex: 1 1 100%;
  }

  .hm-bundle-box__head {
    grid-template-columns: 1fr;
  }

  .hm-bundle-box__price {
    justify-items: start;
    text-align: left;
  }

  .hm-bundle-box__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hm-bundle-card {
    padding: 10px;
  }

  .hm-bundle-card__image {
    min-height: 80px;
  }

  .hm-bundle-card strong {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .hm-shell {
    width: min(calc(100% - 20px), var(--hm-shell));
  }

  .hm-section {
    padding: 32px 0;
  }

  .hm-hero h1 {
    font-size: 42px;
  }

  .hm-hero p {
    font-size: 15px;
  }

  .hm-price__current {
    font-size: 30px;
  }

  .hm-product-card__title {
    font-size: 22px;
  }

  .hm-product-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hm-product-features__item {
    min-height: 0;
    padding: 14px;
  }

  .hm-bundle-box__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hm-bundle-card img {
    max-height: 60px;
  }

  .hm-bundle-card span {
    font-size: 12px;
  }
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    padding: 10px;
  }
}

/* v1.0.2 refinements */
body {
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(19, 42, 86, 0.06), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #fff5eb 100%);
  font-size: 14.5px;
  line-height: 1.65;
}

.hm-section__head h2,
.hm-page-content h1,
.product .product_title,
.woocommerce-account h1,
.woocommerce-order h1,
.woocommerce-cart h1,
.woocommerce-checkout h1 {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
}

.hm-section__head h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hm-site-header {
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 12px 30px rgba(23, 35, 62, 0.06);
}

.hm-site-header__logo img {
  max-height: 66px;
}

.hm-nav-list a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hm-nav-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--hm-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.hm-nav-list a:hover::after,
.current-menu-item > a::after,
.current_page_item > a::after {
  transform: scaleX(1);
}

.hm-hero {
  padding-top: 28px;
}

.hm-hero__grid {
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(19, 42, 86, 0.08), transparent 24%),
    linear-gradient(135deg, #fffdf9 0%, #fff1e5 100%);
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 38px;
  box-shadow: 0 26px 56px rgba(23, 35, 62, 0.08);
}

.hm-hero__content,
.hm-hero__visual {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hm-hero h1 {
  max-width: 8.4ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hm-hero p {
  max-width: 54ch;
  margin-top: 16px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.hm-hero__actions {
  margin-top: 26px;
}

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

.hm-hero__stat {
  padding: 18px 18px 16px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.hm-hero__stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--hm-accent-dark);
  font-size: 1rem;
  font-weight: 800;
}

.hm-hero__stat span {
  color: var(--hm-muted);
  font-size: 0.82rem;
}

.hm-hero__frame {
  position: relative;
  padding: 22px;
  min-height: 100%;
  background: linear-gradient(155deg, #ffffff 0%, #fff4ea 100%);
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 34px;
  box-shadow: 0 26px 54px rgba(19, 42, 86, 0.12);
}

.hm-hero__image,
.hm-hero__placeholder {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.hm-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-hero__sticker,
.hm-hero__visual-button {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(19, 42, 86, 0.12);
}

.hm-hero__sticker {
  background: rgba(255, 255, 255, 0.95);
  color: var(--hm-accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.hm-hero__sticker--top {
  top: 18px;
  left: 18px;
}

.hm-hero__sticker--bottom {
  right: 18px;
  bottom: 18px;
}

.hm-hero__visual-button {
  left: 18px;
  bottom: 18px;
  background: var(--hm-accent);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.hm-hero__card {
  right: 20px;
  top: 20%;
  bottom: auto;
  max-width: 260px;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(19, 42, 86, 0.95);
  box-shadow: 0 20px 40px rgba(19, 42, 86, 0.2);
}

.hm-hero__card strong {
  font-size: 1.95rem;
  line-height: 1.08;
}

.hm-hero__card .hm-button {
  min-height: 46px;
  width: 100%;
}

.hm-category-grid,
.hm-story-grid {
  gap: 22px;
}

.hm-category-card,
.hm-story-card {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(237, 220, 204, 0.95);
  box-shadow: 0 18px 38px rgba(23, 35, 62, 0.07);
}

.hm-category-card:hover,
.hm-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hm-shadow-hover);
}

.hm-category-card img,
.hm-story-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.hm-category-card img {
  height: 232px;
}

.hm-story-card img {
  height: 280px;
}

.hm-category-card__body,
.hm-story-card__body {
  display: grid;
  gap: 6px;
  padding: 2px 4px 2px;
}

.hm-category-card__body strong,
.hm-story-card__body strong {
  color: var(--hm-accent-dark);
  font-size: 1.02rem;
  line-height: 1.3;
}

.hm-category-card__body span {
  color: var(--hm-muted);
  font-size: 0.84rem;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 0 !important;
}

.woocommerce ul.products li.product.hm-product-card-item {
  float: none;
  width: auto;
  margin: 0 !important;
}

.hm-product-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(237, 220, 204, 0.95);
  box-shadow: 0 18px 34px rgba(23, 35, 62, 0.08);
}

.hm-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 42px rgba(23, 35, 62, 0.13);
}

.hm-product-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 252px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f1 0%, #fff1e5 100%);
}

.hm-product-card__image-wrap img {
  width: 100%;
  max-width: 220px;
  height: 210px;
  object-fit: contain;
  aspect-ratio: auto;
}

.hm-product-card__badge {
  top: 16px;
  left: 16px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--hm-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hm-product-card__favorite {
  top: 16px;
  right: 16px;
}

.hm-favorite-button {
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
}

.hm-product-card__meta {
  gap: 12px;
  padding-top: 2px;
}

.hm-product-card__category {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.hm-product-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hm-product-card__title a:hover {
  color: var(--hm-accent);
}

.hm-price {
  align-items: flex-end;
}

.hm-price--card .hm-price__current {
  font-size: 1.92rem;
}

.hm-price__regular {
  font-size: 0.96rem;
}

.hm-price__badge {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hm-product-card__cta {
  min-height: 46px;
  background: var(--hm-accent-dark) !important;
  font-size: 0.92rem;
}

.hm-product-card__cta:hover {
  box-shadow: 0 18px 32px rgba(19, 42, 86, 0.18);
}

.hm-single-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 24px;
}

.hm-single-media,
.hm-single-summary {
  border-radius: 32px;
}

.hm-single-media {
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
}

.hm-single-media__gallery {
  padding: 18px;
  border: 1px solid rgba(237, 220, 204, 0.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hm-single-media .woocommerce-product-gallery__image img {
  border-radius: 24px;
}

.hm-product-features {
  gap: 12px;
  margin-top: 18px;
}

.hm-product-features__item {
  min-height: 132px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.hm-product-features__item strong {
  font-size: 1.04rem;
}

.hm-product-features__item span:last-child {
  font-size: 0.82rem;
  line-height: 1.45;
}

.hm-single-summary {
  top: 98px;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.hm-single-summary__stock {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 190, 120, 0.12);
  color: #178f5a;
  font-size: 0.84rem;
  font-weight: 800;
}

.hm-single-summary__intro p {
  font-size: 0.97rem;
  line-height: 1.75;
}

.hm-single-summary__chips {
  gap: 10px;
  margin-top: 18px;
}

.hm-single-summary__chips li {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hm-border);
  font-size: 0.84rem;
  font-weight: 700;
}

.hm-single-summary__purchase {
  margin-top: 20px;
}

.hm-single-summary form.cart {
  display: grid;
  grid-template-columns: minmax(180px, 210px) minmax(0, 1fr);
  gap: 12px;
}

.hm-single-summary form.cart div.quantity {
  min-height: 56px;
  padding: 8px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hm-single-summary .quantity .minus,
.hm-single-summary .quantity .plus {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--hm-surface-soft);
}

.hm-single-summary form.cart .single_add_to_cart_button {
  min-height: 56px;
  border-radius: 18px;
}

.hm-favorite-button--single {
  min-height: 56px;
  border-radius: 18px;
}

.hm-personal-upload {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.hm-bundle-box {
  gap: 16px;
  margin-top: 18px;
}

.hm-bundle-box__head {
  align-items: center;
}

.hm-bundle-box__copy strong {
  font-size: 1.22rem;
  line-height: 1.08;
}

.hm-bundle-box__copy span {
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hm-bundle-box__price strong {
  font-size: 1.95rem;
  line-height: 1;
}

.hm-bundle-box__products {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 14px;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.hm-bundle-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 156px;
  padding: 16px;
  border-radius: 22px;
  scroll-snap-align: start;
}

.hm-bundle-card__image {
  min-height: 118px;
}

.hm-bundle-card strong {
  font-size: 0.95rem;
}

.hm-bundle-card span {
  font-size: 0.85rem;
}

.hm-shipping-card,
.hm-single-summary__help {
  gap: 10px;
  padding: 20px 22px;
  border-radius: 24px;
}

.hm-shipping-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  background: linear-gradient(180deg, #f7f9ff 0%, #fff 100%);
}

.hm-shipping-card__copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.hm-shipping-card__copy span,
.hm-single-summary__help span {
  color: var(--hm-muted);
  line-height: 1.65;
}

.hm-single-summary__help {
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  border: 1px solid var(--hm-border);
}

.hm-single-summary__help strong {
  font-size: 1.02rem;
}

.woocommerce-account .woocommerce {
  gap: 20px;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: 100px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.12), transparent 38%),
    linear-gradient(180deg, #fffaf5 0%, #fff 100%);
}

.woocommerce-account .woocommerce-MyAccount-navigation::before {
  content: "Hesabim";
  display: block;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.woocommerce-account .woocommerce-MyAccount-navigation::after {
  content: "Siparislerini, adreslerini ve favorilerini bu alandan yonetebilirsin.";
  display: block;
  margin-top: 8px;
  margin-bottom: 18px;
  color: var(--hm-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 18px;
  background: #fff;
  font-size: 0.92rem;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a.is-active,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  border-color: transparent;
  background: linear-gradient(135deg, var(--hm-accent) 0%, #ff8d4d 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(249, 106, 31, 0.18);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  transform: translateY(-1px);
}

.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-order {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce-account .woocommerce-Address {
  padding: 20px;
  border: 1px solid var(--hm-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.woocommerce-account .addresses .title,
.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hm-site-footer {
  padding: 42px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 249, 243, 0.8) 0%, #fff7ef 100%);
}

.hm-site-footer__grid {
  gap: 20px;
}

.hm-site-footer__grid > * {
  position: relative;
  overflow: hidden;
}

.hm-site-footer__grid > *::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 106, 31, 0.12), transparent 68%);
  pointer-events: none;
}

.hm-site-footer__brand p {
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.7;
}

.hm-site-footer__column h2 {
  position: relative;
  z-index: 1;
}

.hm-footer-menu {
  position: relative;
  z-index: 1;
  gap: 12px;
}

.hm-footer-menu a {
  color: var(--hm-muted);
  font-size: 0.92rem;
}

.hm-footer-menu a:hover {
  color: var(--hm-accent-dark);
  transform: translateX(2px);
}

@media (max-width: 1080px) {
  .hm-hero__grid,
  .hm-single-layout,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .hm-hero h1 {
    max-width: none;
  }

  .hm-hero__image,
  .hm-hero__placeholder {
    min-height: 420px;
  }

  .hm-hero__card {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
    width: auto;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .hm-hero__grid {
    padding: 22px;
    border-radius: 30px;
  }

  .hm-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hm-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hm-hero__stat:last-child {
    grid-column: 1 / -1;
  }

  .hm-hero__frame {
    padding: 16px;
    border-radius: 26px;
  }

  .hm-hero__image,
  .hm-hero__placeholder {
    min-height: 320px;
  }

  .hm-hero__sticker,
  .hm-hero__visual-button,
  .hm-hero__card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hm-category-grid,
  .hm-story-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-product-card {
    padding: 14px;
    border-radius: 24px;
  }

  .hm-product-card__image-wrap {
    min-height: 200px;
    padding: 14px;
  }

  .hm-product-card__image-wrap img {
    max-width: 170px;
    height: 170px;
  }

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

  .hm-single-summary form.cart {
    grid-template-columns: 1fr;
  }

  .hm-bundle-box__head,
  .hm-shipping-card,
  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .hm-bundle-box__price {
    justify-items: start;
    text-align: left;
  }

  .hm-site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hm-hero__stats,
  .hm-category-grid,
  .hm-story-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .hm-single-media,
  .hm-single-summary,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-cart-form,
  .cart-collaterals,
  .woocommerce-checkout form.checkout,
  .woocommerce-order {
    padding: 20px;
    border-radius: 24px;
  }

  .hm-bundle-card {
    min-width: 140px;
  }
}

/* v1.0.3 ui refinements */
.hm-topbar {
  position: sticky;
  top: 0;
  z-index: 41;
  border-bottom: 1px solid rgba(237, 220, 204, 0.75);
  background: rgba(19, 42, 86, 0.96);
  color: #fff;
}

.hm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.hm-topbar__inner p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hm-topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hm-topbar__links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.77rem;
  font-weight: 700;
}

.hm-topbar__links a:hover {
  color: #fff;
}

.hm-site-header {
  top: 42px;
}

.admin-bar .hm-site-header {
  top: calc(42px + 32px);
}

.hm-site-header__inner {
  gap: 24px;
  min-height: 92px;
}

.hm-site-header__brand {
  gap: 16px;
}

.hm-site-header__actions {
  gap: 14px;
}

.hm-search {
  min-width: 320px;
  min-height: 48px;
  border-radius: 18px;
}

.hm-search input {
  padding: 12px 16px;
  font-size: 0.92rem;
}

.hm-search button {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.hm-site-header__quicklinks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hm-site-header__quicklink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--hm-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--hm-accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--hm-shadow-soft);
}

.hm-site-header__quicklink:hover {
  transform: translateY(-1px);
  color: var(--hm-accent);
}

.hm-site-header__cart {
  min-height: 46px;
  border-radius: 18px;
}

.hm-section__support-copy,
.hm-home-benefits__intro {
  max-width: 42ch;
  margin: 0;
  color: var(--hm-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.hm-home-benefits {
  padding: 8px 0 16px;
}

.hm-home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hm-home-benefits__card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(249, 106, 31, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(23, 35, 62, 0.07);
}

.hm-home-benefits__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(249, 106, 31, 0.12);
  color: var(--hm-accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.hm-home-benefits__card strong {
  color: var(--hm-accent-dark);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hm-home-benefits__card p {
  margin: 0;
  color: var(--hm-muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.hm-story-card {
  position: relative;
}

.hm-story-card__body span {
  color: var(--hm-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hm-product-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--hm-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hm-product-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 0;
  padding: 0;
  list-style: none;
}

.hm-product-card__highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--hm-surface-soft);
  color: var(--hm-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.hm-product-card__footer {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.hm-product-card__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.hm-product-card__status.is-in-stock {
  background: rgba(31, 190, 120, 0.14);
  color: #148755;
}

.hm-product-card__status.is-personalized {
  background: rgba(19, 42, 86, 0.08);
  color: var(--hm-accent-dark);
}

.hm-product-card__status.is-out-of-stock {
  background: rgba(152, 162, 179, 0.16);
  color: #687385;
}

.hm-single-summary__help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hm-single-summary__help-actions .hm-button {
  min-height: 44px;
  padding: 0 18px;
}

.hm-home-cta {
  padding: 10px 0 18px;
}

.hm-home-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.12), transparent 34%),
    linear-gradient(135deg, #fffdf9 0%, #fff1e6 100%);
  box-shadow: 0 24px 48px rgba(23, 35, 62, 0.08);
}

.hm-home-cta__copy h2 {
  margin: 10px 0 12px;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hm-home-cta__copy p {
  max-width: 56ch;
  margin: 0;
  color: var(--hm-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.hm-home-cta__actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.hm-home-cta__actions .hm-button {
  width: 100%;
}

.hm-commerce-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 18px;
  align-items: end;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.12), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fff2e8 100%);
  box-shadow: var(--hm-shadow);
}

.hm-commerce-hero__copy h1 {
  margin: 8px 0 12px;
}

.hm-commerce-hero__copy p {
  max-width: 60ch;
  margin: 0;
  color: var(--hm-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.hm-commerce-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hm-commerce-hero__meta {
  display: grid;
  gap: 12px;
}

.hm-commerce-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--hm-accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--hm-shadow-soft);
}

.hm-site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  margin-bottom: 22px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.12), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fff3e9 100%);
  box-shadow: var(--hm-shadow);
}

.hm-site-footer__cta-copy h2 {
  margin: 10px 0 12px;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hm-site-footer__cta-copy p {
  max-width: 56ch;
  margin: 0;
  color: var(--hm-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.hm-site-footer__cta-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

@media (max-width: 1200px) {
  .hm-site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .hm-site-header__nav {
    grid-column: 1 / -1;
    order: 3;
  }

  .hm-site-header__actions {
    justify-content: flex-end;
  }
}

@media (max-width: 1100px) {
  .hm-topbar__inner,
  .hm-home-cta__card,
  .hm-site-footer__cta,
  .hm-commerce-hero {
    grid-template-columns: 1fr;
  }

  .hm-topbar__inner {
    display: grid;
    justify-items: start;
    padding: 8px 0;
  }

  .hm-home-benefits__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.hm-mobile-menu-open {
    overflow: hidden;
  }

  .hm-topbar {
    position: static;
  }

  .hm-site-header {
    top: 0;
  }

  .admin-bar .hm-site-header {
    top: 46px;
  }

  .hm-topbar__links {
    gap: 10px;
  }

  .hm-site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: 82px;
  }

  .hm-site-header__actions {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
  }

  .hm-site-header__quicklinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hm-site-header__quicklink {
    min-height: 44px;
    padding: 0 12px;
  }

  .hm-site-header__nav.is-open {
    position: fixed;
    top: 104px;
    right: 12px;
    left: 12px;
    z-index: 45;
  }

  .admin-bar .hm-site-header__nav.is-open {
    top: 150px;
  }

  .hm-nav-list {
    width: 100%;
    padding: 18px;
    border-radius: 24px;
    box-shadow: 0 24px 44px rgba(23, 35, 62, 0.18);
  }

  .hm-nav-list a {
    width: 100%;
    min-height: 44px;
    padding: 0;
    justify-content: flex-start;
    border-radius: 0;
  }

  .hm-nav-list a::after {
    display: none;
  }

  .hm-category-card__body {
    align-items: start;
  }

  .hm-product-card__footer {
    gap: 8px;
  }

  .hm-product-card__status {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .hm-single-summary__help-actions,
  .hm-commerce-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hm-home-cta__actions,
  .hm-site-footer__cta-actions {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hm-topbar__inner p,
  .hm-topbar__links a {
    font-size: 0.74rem;
  }

  .hm-home-cta__card,
  .hm-site-footer__cta,
  .hm-commerce-hero {
    padding: 22px;
    border-radius: 26px;
  }

  .hm-home-benefits__card {
    padding: 20px;
    border-radius: 24px;
  }

  .hm-site-header__quicklinks {
    grid-template-columns: 1fr;
  }
}

/* v1.0.4 quick order refinements */
.hm-hero__actions .hm-button--primary,
.hm-home-spotlight__actions .hm-button--primary,
.hm-home-cta__actions .hm-button--primary,
.hm-commerce-hero__actions .hm-button--primary {
  box-shadow: 0 18px 34px rgba(249, 106, 31, 0.22);
}

.hm-home-spotlight {
  padding: 10px 0 12px;
}

.hm-home-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(19, 42, 86, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(249, 106, 31, 0.12), transparent 32%),
    linear-gradient(135deg, #fffdf9 0%, #fff3e8 100%);
  box-shadow: var(--hm-shadow);
}

.hm-home-spotlight__copy h2 {
  margin: 10px 0 14px;
  color: var(--hm-accent-dark);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hm-home-spotlight__copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--hm-muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.hm-home-spotlight__points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hm-home-spotlight__points li {
  position: relative;
  padding-left: 18px;
  color: var(--hm-accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
}

.hm-home-spotlight__points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-accent);
  transform: translateY(-50%);
}

.hm-home-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hm-home-spotlight__card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(19, 42, 86, 0.96);
  color: #fff;
  box-shadow: 0 26px 48px rgba(19, 42, 86, 0.2);
}

.hm-home-spotlight__tag {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-home-spotlight__card strong {
  font-size: 1.8rem;
  line-height: 1.08;
}

.hm-home-spotlight__card .hm-price {
  align-items: flex-end;
}

.hm-home-spotlight__card .hm-price__current,
.hm-home-spotlight__card .hm-price__regular,
.hm-home-spotlight__card .hm-price__badge {
  color: #fff;
}

.hm-home-spotlight__mini {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.hm-home-spotlight__mini span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.hm-fast-order-grid .hm-product-card {
  background:
    radial-gradient(circle at top right, rgba(249, 106, 31, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.96);
}

.hm-fast-order-grid .hm-product-card__badge {
  background: var(--hm-accent-dark);
}

.hm-fast-order-grid .hm-product-card__status.is-in-stock {
  background: rgba(31, 190, 120, 0.18);
}

.hm-product-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.hm-product-card__cta {
  width: 100%;
}

.hm-product-card__cta--quick {
  min-height: 52px;
  background: var(--hm-accent) !important;
  font-size: 0.94rem;
  box-shadow: 0 18px 34px rgba(249, 106, 31, 0.2);
}

.hm-product-card__secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--hm-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hm-accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: var(--hm-shadow-soft);
}

.hm-product-card__secondary-cta:hover {
  transform: translateY(-1px);
  color: var(--hm-accent);
}

.hm-quick-order-box {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(249, 106, 31, 0.28);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.hm-quick-order-box strong {
  color: var(--hm-accent-dark);
  font-size: 1rem;
}

.hm-quick-order-box span {
  color: var(--hm-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hm-quick-order-box__button {
  width: 100%;
  min-height: 50px;
}

.hm-quick-order-box--personalized {
  border-color: rgba(19, 42, 86, 0.12);
  background: linear-gradient(180deg, #f7f9ff 0%, #fff 100%);
}

.hm-commerce-hero__meta span:first-child {
  background: rgba(249, 106, 31, 0.1);
  color: var(--hm-accent-dark);
}

.hm-single-summary__purchase .single_add_to_cart_button {
  box-shadow: 0 18px 34px rgba(249, 106, 31, 0.18);
}

@media (max-width: 1080px) {
  .hm-home-spotlight__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hm-home-spotlight__grid,
  .hm-home-cta__card,
  .hm-site-footer__cta,
  .hm-commerce-hero {
    padding: 22px;
    border-radius: 28px;
  }

  .hm-home-spotlight__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hm-fast-order-grid {
    grid-template-columns: 1fr !important;
  }

  .hm-product-card__actions {
    gap: 8px;
  }
}

/* v1.0.5 polish and mobile stability */
html {
  scroll-padding-top: 132px;
}

body {
  overflow-x: clip;
}

.hm-site-main {
  overflow: hidden;
}

.hm-section__head h2,
.hm-hero h1,
.hm-home-spotlight__copy h2,
.hm-home-cta__copy h2,
.hm-site-footer__cta-copy h2,
.hm-commerce-hero__copy h1,
.product .product_title {
  text-wrap: balance;
}

.hm-hero p,
.hm-home-spotlight__copy p,
.hm-home-benefits__intro,
.hm-section__support-copy,
.hm-home-cta__copy p,
.hm-site-footer__cta-copy p,
.hm-commerce-hero__copy p,
.hm-product-card__excerpt,
.hm-single-summary__intro p,
.hm-quick-order-box span {
  text-wrap: pretty;
}

.hm-site-header__nav,
.hm-site-header__actions {
  min-width: 0;
}

.hm-search {
  flex: 1 1 320px;
  max-width: 430px;
}

.hm-site-header__quicklinks {
  flex-wrap: wrap;
}

.hm-site-header__cart {
  white-space: nowrap;
}

.hm-category-card,
.hm-story-card,
.hm-product-card,
.hm-single-media,
.hm-single-summary,
.hm-home-benefits__card,
.hm-home-spotlight__grid,
.hm-home-cta__card,
.hm-site-footer__cta,
.hm-commerce-hero,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-order {
  box-shadow: 0 18px 42px rgba(23, 35, 62, 0.08);
}

.hm-category-card__body {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.hm-product-card {
  isolation: isolate;
}

.hm-product-card__meta {
  gap: 11px;
}

.hm-product-card__footer {
  align-items: start;
}

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

.hm-product-card__cta,
.hm-product-card__secondary-cta {
  width: 100%;
}

.hm-single-layout {
  gap: 22px;
}

.hm-single-summary {
  overflow: hidden;
}

.hm-single-summary__favorite {
  margin-top: 12px;
}

.hm-quick-order-box {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hm-bundle-box__products {
  scrollbar-width: thin;
}

.hm-bundle-box__products::-webkit-scrollbar {
  height: 8px;
}

.hm-bundle-box__products::-webkit-scrollbar-thumb {
  background: rgba(19, 42, 86, 0.14);
  border-radius: 999px;
}

.hm-site-footer__grid > * {
  backdrop-filter: blur(6px);
}

@media (max-width: 980px) {
  .hm-site-header__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .hm-search {
    max-width: none;
    width: 100%;
  }

  .hm-site-header__quicklinks {
    width: 100%;
    justify-content: flex-start;
  }

  .hm-home-benefits__grid,
  .hm-home-spotlight__grid,
  .hm-home-cta__card,
  .hm-site-footer__cta,
  .hm-commerce-hero {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .hm-shell {
    width: min(calc(100% - 18px), var(--hm-shell));
  }

  .hm-section {
    padding: 26px 0;
  }

  .hm-topbar__links {
    display: none;
  }

  .hm-topbar__inner {
    min-height: 38px;
    gap: 8px;
  }

  .hm-topbar__inner p {
    font-size: 0.74rem;
  }

  .hm-site-header__nav.is-open {
    top: 84px;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }

  .admin-bar .hm-site-header__nav.is-open {
    top: 130px;
    max-height: calc(100dvh - 142px);
  }

  .hm-nav-list {
    gap: 12px;
  }

  .hm-nav-list li {
    width: 100%;
  }

  .hm-nav-list a {
    width: 100%;
    min-height: 44px;
    padding: 0 2px;
    font-size: 0.95rem;
  }

  .hm-search,
  .hm-search button,
  .hm-site-header__quicklink,
  .hm-site-header__cart {
    min-height: 44px;
  }

  .hm-site-header__quicklinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hm-hero__grid,
  .hm-home-spotlight__grid,
  .hm-home-cta__card,
  .hm-site-footer__cta,
  .hm-commerce-hero {
    padding: 20px;
    border-radius: 26px;
  }

  .hm-hero {
    padding-top: 18px;
  }

  .hm-hero__grid {
    gap: 18px;
  }

  .hm-hero p,
  .hm-home-spotlight__copy p,
  .hm-home-benefits__intro,
  .hm-section__support-copy,
  .hm-home-cta__copy p,
  .hm-site-footer__cta-copy p,
  .hm-commerce-hero__copy p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hm-hero__actions .hm-button,
  .hm-home-spotlight__actions .hm-button,
  .hm-home-cta__actions .hm-button,
  .hm-site-footer__cta-actions .hm-button,
  .hm-commerce-hero__actions .hm-button {
    width: 100%;
  }

  .hm-category-card,
  .hm-story-card,
  .hm-product-card,
  .hm-single-media,
  .hm-single-summary {
    border-radius: 22px;
  }

  .hm-category-card,
  .hm-story-card,
  .hm-product-card {
    padding: 12px;
  }

  .hm-category-card img {
    height: 208px;
  }

  .hm-story-card img {
    height: 236px;
  }

  .woocommerce ul.products {
    gap: 16px;
  }

  .hm-product-card__image-wrap {
    min-height: 188px;
    padding: 14px;
  }

  .hm-product-card__image-wrap img {
    max-width: 168px;
    height: 168px;
  }

  .hm-product-card__title {
    -webkit-line-clamp: 2;
    font-size: 0.98rem;
  }

  .hm-product-card__excerpt {
    font-size: 0.84rem;
  }

  .hm-product-card__highlights {
    gap: 6px;
  }

  .hm-product-card__highlights li {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .hm-product-card__cta--quick {
    min-height: 48px;
  }

  .hm-single-layout {
    gap: 16px;
  }

  .hm-single-media__gallery {
    padding: 12px;
    border-radius: 20px;
  }

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

  .hm-product-features__item {
    min-height: 0;
    padding: 14px;
  }

  .hm-single-summary form.cart {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hm-single-summary form.cart div.quantity {
    width: 100%;
  }

  .hm-quick-order-box,
  .hm-shipping-card,
  .hm-single-summary__help,
  .hm-bundle-box,
  .hm-personal-upload {
    padding: 16px;
    border-radius: 20px;
  }

  .hm-bundle-box__products {
    gap: 10px;
  }

  .hm-bundle-card {
    min-width: 132px;
  }

  .hm-site-footer__grid {
    gap: 14px;
  }

  .hm-site-footer__grid > * {
    padding: 18px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .hm-site-header__quicklinks,
  .hm-hero__stats {
    grid-template-columns: 1fr;
  }

  .hm-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hm-home-spotlight__card strong,
  .hm-home-cta__copy h2,
  .hm-site-footer__cta-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
}
