:root {
  --hh-bg: #f3f3f3;
  --hh-card: #ffffff;
  --hh-text: rgba(0, 0, 0, 0.78);
  --hh-strong: #111111;
  --hh-muted: #6b6b6b;
  --hh-cta: #111111;
  --hh-cta-text: #ffffff;
  --hh-sale: #e11d2e;
  --hh-radius: 20px;
  --hh-radius-pill: 999px;
  --hh-font: "Assistant", system-ui, sans-serif;
  --hh-brand: "Cormorant Garamond", Georgia, serif;
  --hh-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after { box-sizing: border-box; }

body.hh-theme {
  margin: 0;
  font-family: var(--hh-font);
  color: var(--hh-text);
  background: var(--hh-bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.hh-container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hh-announcement {
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.65rem 1rem;
}

.hh-header {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.hh-header__island {
  display: grid;
  /* Equal outer tracks keep the menu optically centred in the island */
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--hh-card);
  border-radius: var(--hh-radius);
  box-shadow: var(--hh-shadow);
  padding: 0.7rem 1.25rem;
}

.hh-logo {
  font-family: var(--hh-brand);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hh-strong);
  text-transform: uppercase;
}
.hh-header__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(220px, 52vw);
}
.hh-header__brand .custom-logo-link img,
.hh-header__brand .custom-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}

.hh-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.hh-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.hh-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--hh-strong);
  cursor: pointer;
  transition: background 0.18s ease;
}
.hh-icon-btn:hover,
.hh-icon-btn:focus-visible {
  background: var(--hh-bg);
}
.hh-icon-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hh-cart-count {
  position: absolute;
  top: 0.15rem;
  right: 0.05rem;
  display: inline-flex;
  min-width: 1.05rem;
  height: 1.05rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--hh-sale);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.25rem;
  border: 2px solid var(--hh-card);
}

.hh-search-panel {
  margin-top: 0.5rem;
  background: var(--hh-card);
  border-radius: var(--hh-radius);
  box-shadow: var(--hh-shadow);
  padding: 0.85rem 1rem;
}
.hh-search-panel[hidden] {
  display: none;
}
.hh-search-panel__inner form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hh-search-panel__inner input[type="search"],
.hh-search-panel__inner input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 0 1rem;
  font: inherit;
}
.hh-search-panel__inner button[type="submit"] {
  flex: 0 0 auto;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  padding: 0 1.35rem;
  cursor: pointer;
}
.hh-search-panel__inner label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hh-nav-toggle {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease;
}
.hh-nav-toggle:hover,
.hh-nav-toggle:focus-visible {
  background: var(--hh-bg);
}
.hh-nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #111;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hh-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hh-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hh-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hh-mobile-nav {
  display: none;
  margin-top: 0.5rem;
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 0.35rem 0.85rem;
  box-shadow: var(--hh-shadow);
}
.hh-mobile-nav:not([hidden]) {
  display: block;
}
.hh-menu--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.hh-menu--mobile > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.hh-menu--mobile > li:last-child {
  border-bottom: 0;
}
.hh-mobile-nav a,
.hh-menu--mobile a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.65rem 0.35rem;
  font-weight: 700;
  color: var(--hh-strong);
}
.hh-mobile-nav .sub-menu a {
  min-height: 44px;
  padding-left: 0.85rem;
  font-weight: 600;
}
html.hh-nav-open,
html.hh-nav-open body {
  overflow: hidden;
}

.hh-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  border-radius: 0 0 var(--hh-radius) var(--hh-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  color: #fff;
}

.hh-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15)),
    radial-gradient(circle at 70% 40%, #5b4636, #1a1410 70%);
}

/* Hero copy sits at the bottom, so scrim upward rather than sideways —
   keeps contrast whether the text is right-aligned (desktop) or left (mobile). */
.hh-hero__media--photo {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.15) 100%),
    var(--hh-hero-image) center / cover no-repeat,
    #1a1410;
}

.hh-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1.25rem, 4vw, 4rem);
  max-width: 36rem;
  margin-left: auto;
  text-align: right;
}

.hh-hero__eyebrow {
  font-family: var(--hh-brand);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.hh-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: #fff;
}

.hh-hero__text { margin: 0 0 1.25rem; opacity: 0.92; }

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hh-cta);
  color: var(--hh-cta-text);
  border-radius: 12px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.hh-btn--light { background: #fff; color: #111; }
.hh-btn--ghost {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.14);
}
.hh-btn:hover { filter: brightness(1.08); }

.hh-section { padding: 2.5rem 0; }
.hh-section__eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.hh-section__title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--hh-strong);
  margin: 0 0 1.75rem;
}
.hh-section__more { text-align: center; margin-top: 1.5rem; }

.hh-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hh-collection-card {
  position: relative;
  border-radius: var(--hh-radius);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  box-shadow: var(--hh-shadow);
}
.hh-collection-card__media {
  position: absolute;
  inset: 0;
  background: #2c241c center/cover no-repeat;
}
.hh-collection-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.65));
}
.hh-collection-card__title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem;
}

.hh-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 2rem;
  box-shadow: var(--hh-shadow);
}
.hh-story__points {
  display: grid;
  gap: 1rem;
}
.hh-story__points div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: var(--hh-bg);
  border-radius: 14px;
}

.hh-footer {
  margin-top: 3rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 2.5rem 0 1.5rem;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 18px 18px;
}
.hh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.hh-footer__brand {
  font-family: var(--hh-brand);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.hh-footer__menu { display: grid; gap: 0.45rem; }
.hh-footer__copy {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: var(--hh-muted);
}

.hh-page__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--hh-strong);
  margin: 1.5rem 0;
}

/* Woo cards */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.products::before,
ul.products::after { display: none !important; }

.hh-product-card,
li.product {
  background: #fff;
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: var(--hh-shadow);
  display: flex;
  flex-direction: column;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  position: relative;
}
.hh-product-card__media,
li.product .woocommerce-LoopProduct-link > img,
li.product a img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: #f7f7f7;
}
.hh-product-card__media {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
}
.hh-product-card__media .onsale,
.hh-product-card__media .hh-sale-badge,
li.product .onsale,
li.product .hh-sale-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  left: auto;
  width: auto;
  z-index: 3;
}
.hh-product-card__title,
li.product .woocommerce-loop-product__title {
  font-size: 1.05rem !important;
  padding: 0.85rem 1rem 0.25rem;
  margin: 0 !important;
  color: var(--hh-strong);
}
.hh-product-card__price,
li.product .price {
  padding: 0 1rem 0.5rem;
  font-weight: 700;
}
.hh-sale-badge,
span.onsale {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  left: auto !important;
  background: var(--hh-sale) !important;
  color: #fff !important;
  border-radius: 8px !important;
  min-height: auto !important;
  min-width: auto !important;
  width: auto !important;
  line-height: 1 !important;
  padding: 0.35rem 0.55rem !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  float: none !important;
}
.hh-product-card__actions { padding: 0 1rem 1rem; }
.hh-product-card__actions .button,
li.product .button {
  width: 100%;
  text-align: center;
  background: #111 !important;
  color: #fff !important;
  border-radius: 12px !important;
}

/* Card colour swatches */
.hh-card-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 0.85rem;
}
.hh-card-swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  flex: 0 0 auto;
}
.hh-card-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hh-card-swatch.is-active,
.hh-card-swatch:hover {
  box-shadow: 0 0 0 2px #111;
}

/* Kill WooCommerce default float layout (48% columns) — use CSS grid instead */
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary,
.single-product div.product .woocommerce-product-gallery,
.single-product div.product div.summary,
.single-product div.product .summary.entry-summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  clear: none !important;
  margin: 0 !important;
}

/* Single product — outer product is a normal flow stack (no sticky containing related) */
.single-product div.product {
  display: block !important;
  margin-bottom: 2rem;
  position: relative;
}
.single-product div.product::before,
.single-product div.product::after {
  display: none !important;
  content: none !important;
}

/* Gallery + summary only — sticky stays inside this wrapper */
.hh-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 1.5rem;
  position: relative;
  clear: both;
}
.hh-product-top .hh-gallery-sale {
  position: absolute;
  z-index: 6;
  top: 1.35rem;
  left: 1.35rem;
  pointer-events: none;
}
.single-product div.product > .onsale,
.single-product div.product > span.hh-sale-badge {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  right: auto;
  z-index: 5;
}
.single-product .woocommerce-product-gallery {
  position: relative;
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1rem;
  box-shadow: var(--hh-shadow);
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  float: none !important;
}
/* FlexSlider sizes itself from max-content; keep it inside the grid track */
.single-product .woocommerce-product-gallery .flex-viewport {
  max-width: 100%;
}
.single-product .woocommerce-product-gallery .onsale,
.single-product .woocommerce-product-gallery .hh-sale-badge {
  top: 1.25rem;
  left: 1.25rem;
  right: auto;
}
.single-product .woocommerce-product-gallery__wrapper {
  margin: 0;
}
.single-product .woocommerce-product-gallery__image {
  border-radius: 14px;
  overflow: hidden;
  background: #f7f7f7;
}
.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f7f7;
}
.single-product .flex-control-thumbs {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.65rem;
  margin: 0.85rem 0 0 !important;
  padding: 0;
  list-style: none;
}
.single-product .flex-control-thumbs li {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}
.single-product .flex-control-thumbs img {
  border-radius: 10px;
  border: 2px solid transparent;
  opacity: 0.75;
  cursor: pointer;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}
.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover {
  opacity: 1;
  border-color: #111;
}
.hh-product-top .summary,
.hh-product-top div.summary.entry-summary,
.single-product .summary,
.single-product div.summary.entry-summary {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.75rem;
  box-shadow: var(--hh-shadow);
  width: 100% !important;
  float: none !important;
  box-sizing: border-box;
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  inset: auto !important;
}
.single-product .summary > .onsale {
  display: none !important; /* avoid duplicate bar in buy box */
}
.single-product .product_title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--hh-strong);
  font-weight: 700;
}
.single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.single-product .price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--hh-strong);
  margin: 0 0 1rem;
}
.single-product .price del {
  opacity: 0.5;
  font-size: 0.85em;
  margin-right: 0.35rem;
}
.single-product .price ins {
  text-decoration: none;
  color: var(--hh-sale);
}
.single-product .woocommerce-product-details__short-description {
  color: var(--hh-muted);
  margin-bottom: 1.15rem;
  font-size: 0.92rem;
  max-height: none;
  overflow: visible;
  padding-right: 0;
  line-height: 1.45;
}
.hh-variation-ui__value:empty::after,
.hh-variation-ui__value {
  text-transform: none;
}
/* Default label before selection */
.hh-variation-ui__row[data-attribute] .hh-variation-ui__value {
  font-weight: 600;
  color: var(--hh-muted);
}
.single-product .cart {
  margin-top: 0.5rem;
}

/* Hide native Woo variation selects — custom UI drives them */
.hh-variations-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hh-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
}

/* PDP custom variation UI */
.hh-variation-ui {
  display: grid;
  gap: 1.1rem;
  margin: 0 0 1.15rem;
}
.hh-variation-ui__row {
  display: grid;
  gap: 0.7rem;
}
.hh-variation-ui__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hh-strong);
  margin: 0;
}
.hh-variation-ui__hint {
  margin: -0.25rem 0 0.15rem;
  font-size: 0.82rem;
  color: var(--hh-muted);
  font-weight: 500;
}
.hh-addons__doors {
  margin: 0;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hh-strong);
}
.hh-variation-ui__value {
  font-weight: 600;
  color: var(--hh-muted);
}
.hh-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hh-swatch {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.16);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #e8e8e8;
}
.hh-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hh-swatch.is-selected,
.hh-swatch:hover {
  box-shadow: 0 0 0 2px #111;
}
.hh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hh-pill {
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  color: var(--hh-strong);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.hh-pill.is-selected,
.hh-pill:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.single-product form.cart .variations {
  width: 100%;
  margin-bottom: 1rem;
  border: 0;
}
.single-product form.cart .variations td,
.single-product form.cart .variations th {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
  background: transparent;
}
.single-product form.cart .variations th.label {
  padding-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hh-strong);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.single-product form.cart .variations tr { display: block; margin-bottom: 0.85rem; }
.hh-variation-select,
.single-product .variations select,
.quantity .qty {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  font: inherit;
  color: var(--hh-strong);
}
.quantity .qty {
  width: 5rem;
  text-align: center;
}
.single-product .woocommerce-variation-add-to-cart,
.single-product form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}
.single-product .single_add_to_cart_button,
.single-product .button.alt {
  flex: 1;
  min-width: 180px;
  width: 100%;
  background: #111 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 1rem 1.35rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-transform: none !important;
}
.single-product .single_add_to_cart_button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.single-product .single_add_to_cart_button:hover {
  filter: brightness(1.1);
}
.single-product .product_meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.88rem;
  color: var(--hh-muted);
  display: grid;
  gap: 0.35rem;
}
.single-product .product_meta a { text-decoration: underline; }

.hh-addons {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  padding: 1.1rem 1.15rem;
  background: var(--hh-bg);
  border-radius: 14px;
}
.hh-addons__field { display: grid; gap: 0.85rem; }
.hh-addons__field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hh-strong);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Shared select / dropdown styling on PDP */
.hh-addons__select,
.single-product .summary select,
.single-product .cart select,
.single-product .quantity .qty,
.woocommerce div.product form.cart .variations select {
  width: 100% !important;
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 14px !important;
  padding: 0.85rem 2.75rem 0.85rem 1rem !important;
  background-color: #fff !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%) !important;
  background-position:
    calc(100% - 20px) 52%,
    calc(100% - 14px) 52% !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  font: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  color: var(--hh-strong) !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer;
}
.single-product .quantity .qty {
  width: 5.25rem !important;
  text-align: center;
  padding-right: 0.9rem !important;
  background-image: none !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
}
.hh-addons__select:focus,
.single-product .summary select:focus,
.single-product .cart select:focus {
  outline: none;
  border-color: #111 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
}
.hh-addons__note { margin: 0; font-size: 0.85rem; color: var(--hh-muted); }
.hh-addons__totals {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
}

.woocommerce-tabs {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.15rem 1.25rem 1.5rem;
  box-shadow: var(--hh-shadow);
  overflow: visible;
}
.woocommerce-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem !important;
  padding: 0.4rem !important;
  list-style: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  background: var(--hh-bg) !important;
  border-radius: 14px;
  overflow: visible !important;
}
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
  display: none !important;
  content: none !important;
}
.woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 999px !important;
  float: none !important;
  display: block !important;
}
.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}
.woocommerce-tabs ul.tabs li a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.15rem !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: var(--hh-muted) !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}
.woocommerce-tabs ul.tabs li a:hover {
  color: var(--hh-strong) !important;
  background: rgba(255, 255, 255, 0.7) !important;
}
.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li.active a:hover {
  color: #fff !important;
  background: #111 !important;
  box-shadow: none !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 0.35rem 0.35rem 0.15rem !important;
  margin: 0 !important;
  border: 0 !important;
}
/* Hide duplicate panel titles (tab already names the section) */
.woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child,
.woocommerce-tabs .woocommerce-Tabs-panel > h2:first-of-type {
  display: none !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel p {
  margin: 0 0 0.85rem;
  color: var(--hh-text);
  line-height: 1.6;
}
.woocommerce-tabs .woocommerce-Tabs-panel ul:not(.commentlist),
.woocommerce-tabs .woocommerce-Tabs-panel ol:not(.commentlist) {
  list-style: disc;
  margin: 0 0 1rem 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.woocommerce-tabs .woocommerce-Tabs-panel ul:not(.commentlist) li,
.woocommerce-tabs .woocommerce-Tabs-panel ol:not(.commentlist) li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--hh-text);
  line-height: 1.5;
}
.woocommerce-tabs .woocommerce-Tabs-panel strong {
  color: var(--hh-strong);
  font-weight: 700;
}
/* Strip messy imported Facebook markup spacing */
.woocommerce-Tabs-panel [class*="xdj"],
.woocommerce-Tabs-panel [class*="x11"],
.woocommerce-Tabs-panel [class*="x1"] {
  display: contents;
}
.woocommerce-Tabs-panel img.xz74otr,
.woocommerce-Tabs-panel img[src*="emoji.php"] {
  display: inline-block;
  vertical-align: -0.1em;
  margin: 0 0.15rem;
}

/* Additional information table */
.woocommerce-product-attributes,
table.shop_attributes {
  width: 100% !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 0.55rem !important;
  margin: 0 !important;
}
.woocommerce-product-attributes tr,
table.shop_attributes tr {
  background: var(--hh-bg);
  border-radius: 12px;
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td,
table.shop_attributes th,
table.shop_attributes td {
  border: 0 !important;
  background: transparent !important;
  padding: 0.85rem 1rem !important;
  text-align: left !important;
  font-style: normal !important;
  vertical-align: middle;
}
.woocommerce-product-attributes th,
table.shop_attributes th {
  width: 34%;
  font-weight: 700 !important;
  color: var(--hh-strong) !important;
  text-transform: none !important;
  font-size: 0.92rem;
}
.woocommerce-product-attributes td,
table.shop_attributes td {
  color: var(--hh-text);
  font-size: 0.95rem;
}
.woocommerce-product-attributes td p,
table.shop_attributes td p {
  margin: 0 !important;
}

/* Reviews */
.woocommerce #reviews,
.woocommerce-page #reviews,
#reviews.woocommerce-Reviews,
#reviews {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
}
#reviews .clear { display: none !important; }
#reviews #comments,
#reviews #review_form_wrapper,
#reviews #review_form,
#reviews #respond {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  box-sizing: border-box;
}
#reviews #comments h2,
#reviews .woocommerce-Reviews-title {
  font-size: 1.15rem !important;
  color: var(--hh-strong);
  margin: 0 0 1rem !important;
  float: none !important;
  width: auto !important;
}
#reviews .woocommerce-Reviews-title span {
  font-weight: 600;
  color: var(--hh-muted);
}

/* Existing comments */
#reviews #comments ol.commentlist,
#reviews ol.commentlist {
  list-style: none !important;
  margin: 0 0 1.25rem !important;
  padding: 0 !important;
  display: block !important;
  width: 100% !important;
}
#reviews #comments ol.commentlist li,
#reviews ol.commentlist li.review,
#reviews ol.commentlist li {
  list-style: none !important;
  margin: 0 0 0.85rem !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  position: relative !important;
}
#reviews #comments ol.commentlist li .comment_container,
#reviews .comment_container {
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) !important;
  gap: 0.9rem 1rem !important;
  align-items: start;
  width: 100% !important;
  max-width: 100% !important;
  background: var(--hh-bg);
  border-radius: 14px;
  padding: 1.15rem 1.25rem !important;
  box-sizing: border-box;
  float: none !important;
  overflow: visible !important;
}
#reviews #comments ol.commentlist li img.avatar,
#reviews img.avatar {
  position: static !important;
  float: none !important;
  left: auto !important;
  top: auto !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: #fff;
  grid-column: 1;
  grid-row: 1;
}
#reviews #comments ol.commentlist li .comment-text,
#reviews .comment-text {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  grid-column: 2;
  grid-row: 1;
  display: block !important;
  box-sizing: border-box;
}
/* Kill WooCommerce "star"/"WooCommerce" icon fonts — use unicode ★ instead */
.woocommerce #reviews .star-rating,
.woocommerce-page #reviews .star-rating,
#reviews .star-rating,
#reviews .comment-text .star-rating {
  float: none !important;
  display: inline-block !important;
  align-items: center;
  margin: 0 0 0.45rem !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.2 !important;
  overflow: visible !important;
  position: relative !important;
  font-family: var(--hh-font), system-ui, sans-serif !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  color: #111 !important;
  background: none !important;
}
.woocommerce #reviews .star-rating::before,
.woocommerce #reviews .star-rating span,
.woocommerce #reviews .star-rating span::before,
#reviews .star-rating::before,
#reviews .star-rating span,
#reviews .star-rating span::before {
  display: none !important;
  content: "" !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
}
.woocommerce #reviews .star-rating::after,
#reviews .star-rating::after {
  display: inline-block !important;
  visibility: visible !important;
  font-family: var(--hh-font), system-ui, sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  color: #111 !important;
  content: "☆☆☆☆☆" !important;
}
#reviews .star-rating[aria-label*="Rated 1"]::after,
.woocommerce #reviews .star-rating[aria-label*="Rated 1"]::after { content: "★☆☆☆☆" !important; }
#reviews .star-rating[aria-label*="Rated 2"]::after,
.woocommerce #reviews .star-rating[aria-label*="Rated 2"]::after { content: "★★☆☆☆" !important; }
#reviews .star-rating[aria-label*="Rated 3"]::after,
.woocommerce #reviews .star-rating[aria-label*="Rated 3"]::after { content: "★★★☆☆" !important; }
#reviews .star-rating[aria-label*="Rated 4"]::after,
.woocommerce #reviews .star-rating[aria-label*="Rated 4"]::after { content: "★★★★☆" !important; }
#reviews .star-rating[aria-label*="Rated 5"]::after,
.woocommerce #reviews .star-rating[aria-label*="Rated 5"]::after { content: "★★★★★" !important; }
#reviews .comment-text .meta,
#reviews p.meta {
  margin: 0 0 0.55rem !important;
  font-size: 0.9rem;
  color: var(--hh-muted);
  float: none !important;
  width: auto !important;
}
#reviews .woocommerce-review__author {
  color: var(--hh-strong);
  font-weight: 700;
}
#reviews .comment-text .description,
#reviews .description {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
}
#reviews .comment-text .description p,
#reviews .description p {
  margin: 0 !important;
  color: var(--hh-text);
  line-height: 1.55;
  width: 100% !important;
  max-width: 42rem;
}

/* Review form */
#review_form_wrapper,
#review_form,
#review_form #respond.comment-respond {
  background: var(--hh-bg);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  border: 0 !important;
  box-sizing: border-box;
}
#review_form #respond {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  width: 100% !important;
}
#review_form .comment-reply-title,
#reply-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hh-strong);
  margin: 0 0 0.75rem;
}
#review_form .comment-form {
  display: grid;
  gap: 0.85rem;
  width: 100% !important;
}
#review_form .comment-notes {
  margin: 0;
  font-size: 0.88rem;
  color: var(--hh-muted);
}
#review_form .comment-form-rating,
#review_form .comment-form-comment,
#review_form .comment-form-author,
#review_form .comment-form-email,
#review_form .comment-form-cookies-consent,
#review_form .form-submit {
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}
#review_form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--hh-strong);
  margin-bottom: 0.4rem;
}
#review_form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
#review_form .comment-form-cookies-consent label {
  margin: 0;
  font-weight: 500;
  color: var(--hh-muted);
}
#review_form .comment-form-rating select#rating,
#review_form select#rating {
  display: none !important;
}
.woocommerce #review_form p.stars,
#review_form p.stars {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  margin: 0.25rem 0 0 !important;
  padding: 0 !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
}
.woocommerce #review_form p.stars a,
#review_form p.stars a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 1.5rem !important;
  height: 1.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  text-indent: 0 !important;
  position: relative !important;
  border: 0 !important;
  text-decoration: none !important;
  color: transparent !important;
  font-size: 0 !important;
  font-family: var(--hh-font), system-ui, sans-serif !important;
  line-height: 1 !important;
  background: none !important;
}
.woocommerce #review_form p.stars a::before,
#review_form p.stars a::before {
  content: "★" !important;
  font-family: var(--hh-font), system-ui, sans-serif !important;
  font-size: 1.45rem !important;
  line-height: 1 !important;
  color: rgba(0, 0, 0, 0.22) !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  text-indent: 0 !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  speak: never;
}
.woocommerce #review_form p.stars:hover a::before,
#review_form p.stars:hover a::before { color: #111 !important; }
.woocommerce #review_form p.stars:hover a:hover ~ a::before,
#review_form p.stars:hover a:hover ~ a::before { color: rgba(0, 0, 0, 0.22) !important; }
.woocommerce #review_form p.stars.selected a.active::before,
.woocommerce #review_form p.stars.selected a:not(.active)::before,
#review_form p.stars.selected a.active::before,
#review_form p.stars.selected a:not(.active)::before { color: #111 !important; }
.woocommerce #review_form p.stars.selected a.active ~ a::before,
#review_form p.stars.selected a.active ~ a::before { color: rgba(0, 0, 0, 0.22) !important; }
#review_form textarea,
#review_form input[type="text"],
#review_form input[type="email"] {
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  border-radius: 12px !important;
  padding: 0.8rem 0.95rem !important;
  background: #fff !important;
  font: inherit !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
#review_form textarea {
  min-height: 140px;
  resize: vertical;
}
#review_form .form-submit input#submit,
#review_form .form-submit input[type="submit"] {
  background: #111 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0.9rem 1.5rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  width: auto !important;
}
.woocommerce-noreviews {
  margin: 0 0 1rem !important;
  padding: 1rem 1.15rem !important;
  background: var(--hh-bg) !important;
  border-radius: 12px !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--hh-muted);
}

@media (max-width: 640px) {
  #reviews #comments ol.commentlist li .comment_container,
  #reviews .comment_container {
    grid-template-columns: 44px minmax(0, 1fr) !important;
  }
  .woocommerce-tabs ul.tabs {
    flex-direction: column;
  }
  .woocommerce-tabs ul.tabs li a {
    width: 100%;
  }
  .woocommerce-product-attributes th,
  table.shop_attributes th,
  .woocommerce-product-attributes td,
  table.shop_attributes td {
    display: block;
    width: 100% !important;
    padding: 0.45rem 1rem !important;
  }
  .woocommerce-product-attributes th,
  table.shop_attributes th {
    padding-top: 0.85rem !important;
  }
  .woocommerce-product-attributes td,
  table.shop_attributes td {
    padding-bottom: 0.85rem !important;
  }
}

.woocommerce-tabs,
.related.products,
.upsells.products {
  display: block !important;
  float: none !important;
  width: 100% !important;
  clear: both !important;
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}
.related.products,
.upsells.products {
  margin-top: 2rem;
}
.related.products > h2,
.upsells.products > h2 {
  font-size: 1.6rem;
  color: var(--hh-strong);
  margin: 0 0 1.25rem;
}

.hh-gallery-sale {
  position: absolute;
  z-index: 6;
  top: 1.35rem;
  left: 1.35rem;
  pointer-events: none;
}
.hh-gallery-sale .onsale,
.hh-gallery-sale .hh-sale-badge {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  left: auto !important;
  right: auto !important;
}

.woocommerce form .form-row,
.woocommerce-page form .form-row {
  margin-bottom: 1.15rem;
  padding: 0;
}
.woocommerce form .form-row label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hh-strong);
  margin-bottom: 0.55rem;
  display: block;
  line-height: 1.35;
}
.woocommerce form .form-row .required {
  margin-left: 0.15rem;
}
.woocommerce form .input-text,
.woocommerce form select,
.woocommerce form textarea,
.woocommerce-page .input-text,
.woocommerce-page select,
.woocommerce-page textarea,
.select2-container--default .select2-selection--single {
  width: 100% !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  border-radius: 14px !important;
  padding: 0.9rem 1rem !important;
  background: #fff !important;
  min-height: 52px;
  box-shadow: none !important;
  font: inherit;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  color: var(--hh-strong);
}
.woocommerce form textarea,
.woocommerce-page textarea { min-height: 110px; font-weight: 500 !important; }
.select2-container { width: 100% !important; }
.select2-container--default .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  height: 52px !important;
  padding: 0 2.5rem 0 1rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.35 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: var(--hh-strong) !important;
  font-weight: 600 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
  right: 10px !important;
  width: 24px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #111 transparent transparent transparent !important;
  margin-top: -2px !important;
}
.select2-dropdown {
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
  margin-top: 6px !important;
  background: #fff !important;
  z-index: 100080 !important;
}
.select2-container--open .select2-dropdown--below {
  border-top: 1px solid rgba(0,0,0,0.1) !important;
}
.select2-search--dropdown {
  padding: 0.65rem 0.75rem !important;
}
.select2-search--dropdown .select2-search__field {
  border: 1px solid rgba(0,0,0,0.12) !important;
  border-radius: 10px !important;
  padding: 0.55rem 0.75rem !important;
  font: inherit !important;
}
.select2-results__options {
  max-height: 260px !important;
  padding: 0.35rem !important;
}
.select2-container--default .select2-results__option {
  padding: 0.7rem 0.85rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  color: var(--hh-strong) !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #111 !important;
  color: #fff !important;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background: var(--hh-bg) !important;
  color: var(--hh-strong) !important;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  border-radius: 14px !important;
  border-top: 0 !important;
  background: #fff !important;
  box-shadow: var(--hh-shadow);
  padding: 1rem 1.15rem !important;
  margin-bottom: 1.25rem !important;
  list-style: none !important;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding-left: 3rem !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  top: 1.05rem !important;
  left: 1.15rem !important;
}
.woocommerce-message { border-left: 4px solid #16a34a !important; }
.woocommerce-info { border-left: 4px solid #2563eb !important; }
.woocommerce-error { border-left: 4px solid var(--hh-sale) !important; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #111 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0.85rem 1.35rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
  line-height: 1.2 !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #111 !important;
  color: #fff !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  filter: brightness(1.08);
}
.woocommerce a.remove {
  color: var(--hh-sale) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
}

/* Cart */
.hh-content--cart .woocommerce {
  display: grid;
  gap: 1.25rem;
}
.woocommerce-cart .hh-page__title,
.hh-cart .entry-title { display: none; }
.woocommerce-cart-form {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.35rem;
  box-shadow: var(--hh-shadow);
}
.woocommerce-cart-form table.shop_table {
  width: 100%;
  border: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}
.woocommerce-cart-form table.shop_table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hh-muted);
  border: 0 !important;
  padding: 0.35rem 0.75rem 1rem !important;
  background: transparent !important;
}
.woocommerce-cart-form table.shop_table td {
  border: 0 !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  padding: 1.1rem 0.75rem !important;
  background: transparent !important;
  vertical-align: middle;
}
.woocommerce-cart-form .product-thumbnail img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  background: #f7f7f7;
}
.woocommerce-cart-form .product-name a {
  font-weight: 700;
  color: var(--hh-strong);
}
.woocommerce-cart-form .product-name .variation {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--hh-muted);
}
.woocommerce-cart-form .product-name .variation dt,
.woocommerce-cart-form .product-name .variation dd {
  display: inline;
  float: none;
  margin: 0;
}
.woocommerce-cart-form .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem !important;
}
.woocommerce-cart-form .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.woocommerce-cart-form .coupon input {
  min-width: 180px;
  border-radius: 999px !important;
}
.woocommerce-cart-form .coupon .button,
.woocommerce-cart-form button[name="update_cart"] {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
}
.cart-collaterals {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.cart-collaterals .cart_totals {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--hh-shadow);
  width: 100% !important;
  float: none !important;
}
.cart-collaterals .cart_totals h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--hh-strong);
}
.cart-collaterals table.shop_table {
  border: 0 !important;
  margin-bottom: 1.15rem;
}
.cart-collaterals table.shop_table th,
.cart-collaterals table.shop_table td {
  border: 0 !important;
  padding: 0.65rem 0 !important;
  background: transparent !important;
}
.cart-collaterals .order-total th,
.cart-collaterals .order-total td {
  font-size: 1.15rem;
  padding-top: 0.9rem !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}
.wc-proceed-to-checkout { padding: 0 !important; }
.wc-proceed-to-checkout .checkout-button {
  display: block !important;
  width: 100%;
  text-align: center;
  border-radius: 999px !important;
  padding: 1rem 1.25rem !important;
}
.cart-empty.woocommerce-info {
  text-align: center;
  padding: 2.5rem 1.5rem !important;
}
.return-to-shop { text-align: center; margin-top: 1rem; }

@media (min-width: 961px) {
  .woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 1.25rem;
    align-items: start;
  }
  .woocommerce-cart .woocommerce-notices-wrapper,
  .woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
  }
  .woocommerce-cart .cart-collaterals {
    grid-column: 2;
    grid-row: 1 / span 3;
    position: sticky;
    top: 6rem;
  }
}

/* Checkout */
.hh-checkout .hh-page__title,
.woocommerce-checkout .entry-title { display: none; }
.woocommerce-checkout {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.woocommerce-checkout .col2-set {
  display: grid;
  gap: 1.25rem;
  width: 100% !important;
  float: none !important;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  max-width: none !important;
}
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--hh-shadow);
  margin-bottom: 1.15rem;
}
.woocommerce-checkout #order_review_heading {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 0.85rem;
  font-size: 1.2rem;
  color: var(--hh-strong);
}
.woocommerce-checkout #order_review {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
  padding-top: 0.5rem;
}
.woocommerce-checkout-review-order-table {
  width: 100%;
  border: 0 !important;
  margin-bottom: 1.25rem;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  border: 0 !important;
  padding: 0.75rem 0 !important;
  background: transparent !important;
  vertical-align: top;
}
.woocommerce-checkout-review-order-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hh-muted);
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
  font-size: 1.15rem;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
  padding-top: 1rem !important;
}
#payment {
  background: var(--hh-bg) !important;
  border-radius: 16px;
  padding: 1rem !important;
  border: 0 !important;
}
#payment ul.payment_methods {
  list-style: none !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  border: 0 !important;
  display: grid;
  gap: 0.65rem;
}
#payment ul.payment_methods li {
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  margin: 0 !important;
}
#payment ul.payment_methods li label {
  font-weight: 700;
  color: var(--hh-strong);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}
#payment .payment_box {
  background: #fafafa !important;
  border-radius: 10px;
  margin: 0.75rem 0 0 !important;
  padding: 0.85rem 1rem !important;
  color: var(--hh-muted);
  font-size: 0.92rem;
}
#payment .payment_box::before { display: none !important; }
#payment .place-order {
  margin: 0;
  padding: 0.35rem 0 0 !important;
}
#payment #place_order {
  width: 100%;
  border-radius: 999px !important;
  padding: 1.05rem 1.25rem !important;
  font-size: 1.05rem !important;
}
.woocommerce-privacy-policy-text {
  font-size: 0.85rem;
  color: var(--hh-muted);
  margin-bottom: 0.85rem;
}
.woocommerce-form-login,
.woocommerce-form-coupon {
  display: grid;
  gap: 0.75rem;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  margin-bottom: 0.85rem !important;
}

@media (min-width: 961px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
  }
  form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
    align-items: start;
  }
  form.checkout.woocommerce-checkout #customer_details {
    grid-column: 1;
    grid-row: 1;
  }
  form.checkout.woocommerce-checkout #order_review_heading,
  form.checkout.woocommerce-checkout #order_review {
    grid-column: 2;
  }
  form.checkout.woocommerce-checkout #order_review_heading {
    grid-row: 1;
    position: sticky;
    top: 6rem;
    z-index: 2;
  }
  form.checkout.woocommerce-checkout #order_review {
    grid-row: 1;
    position: sticky;
    top: calc(6rem + 3.25rem);
    max-height: calc(100vh - 8rem);
    overflow: auto;
  }
}

/* Order received / thank you + payment */
.woocommerce-order {
  display: grid;
  gap: 1.15rem;
  max-width: 820px;
  margin: 0 auto 2rem;
}
.woocommerce-order > p,
.woocommerce-order-overview,
.woocommerce-order-details,
.woocommerce-customer-details {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--hh-shadow);
  margin: 0 !important;
}
.woocommerce-order > p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hh-strong);
  text-align: center;
}
.woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none !important;
  padding: 1.35rem 1.5rem !important;
}
.woocommerce-order-overview li {
  margin: 0 !important;
  border: 0 !important;
  padding: 0.85rem 1rem !important;
  background: var(--hh-bg);
  border-radius: 14px;
  font-size: 0.85rem;
  color: var(--hh-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  float: none !important;
  width: auto !important;
}
.woocommerce-order-overview li strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  color: var(--hh-strong);
  text-transform: none;
  letter-spacing: 0;
}
.woocommerce-order-details__title,
.woocommerce-column__title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--hh-strong);
}
.woocommerce-table--order-details {
  width: 100%;
  border: 0 !important;
}
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  border: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  padding: 0.85rem 0 !important;
  background: transparent !important;
}
.woocommerce-bacs-bank-details,
.wc-bacs-bank-details {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--hh-shadow);
  margin: 1rem 0;
}
.woocommerce-bacs-bank-details h2,
.wc-bacs-bank-details-account-name {
  color: var(--hh-strong);
}

/* Blocks checkout / cart fallback */
.wc-block-cart,
.wc-block-checkout {
  background: #fff;
  border-radius: var(--hh-radius);
  padding: 1.25rem;
  box-shadow: var(--hh-shadow);
}
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart {
  margin-bottom: 2rem;
}

/* Woo Blocks checkout — labels ABOVE fields (fix broken floating positions) */
.wc-block-components-address-form,
.wc-block-components-contact-information,
.wp-block-woocommerce-checkout-contact-information-block,
.wp-block-woocommerce-checkout-billing-address-block,
.wp-block-woocommerce-checkout-shipping-address-block,
.wc-block-components-form {
  --hh-field-gap: 1.05rem;
}
.wc-block-components-form .wc-block-components-text-input,
.wc-block-components-form .wc-block-components-select,
.wc-block-components-form .wc-block-components-combobox,
.wc-block-components-form .wc-blocks-components-select,
.wc-block-components-form .wc-block-components-country-input,
.wc-block-components-form .wc-block-components-state-input,
.wc-block-components-text-input,
.wc-block-components-select,
.wc-block-components-combobox,
.wc-blocks-components-select,
.wc-block-components-country-input,
.wc-block-components-state-input {
  position: relative !important;
  margin: 0 0 var(--hh-field-gap, 1.05rem) !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.7rem !important;
  min-height: 0 !important;
}
.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-form .wc-block-components-combobox label,
.wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__label,
.wc-block-components-form .wc-block-components-select label,
.wc-block-components-form .wc-block-components-country-input label,
.wc-block-components-form .wc-block-components-state-input label,
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-blocks-components-select .wc-blocks-components-select__label,
.wc-block-components-select label,
.wc-block-components-country-input label,
.wc-block-components-state-input label {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  translate: none !important;
  scale: none !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--hh-strong) !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  max-width: none !important;
  width: auto !important;
  height: auto !important;
  order: -1 !important;
}
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-form .wc-block-components-text-input.has-value label,
.wc-block-components-form .wc-block-components-combobox.is-active label,
.wc-block-components-form .wc-block-components-combobox.has-value label,
.wc-block-components-form .wc-blocks-components-select.is-active .wc-blocks-components-select__label,
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input.has-value label,
.wc-block-components-combobox.is-active label,
.wc-block-components-combobox.has-value label {
  transform: none !important;
  translate: none !important;
  scale: none !important;
  font-size: 0.9rem !important;
  opacity: 1 !important;
  top: auto !important;
  left: auto !important;
}

.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="url"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form .wc-block-components-text-input input[type="password"],
.wc-block-components-form .wc-block-components-text-input textarea,
.wc-block-components-form .wc-block-components-text-input.is-active input[type="text"],
.wc-block-components-form .wc-block-components-text-input.is-active input[type="email"],
.wc-block-components-form .wc-block-components-text-input.is-active input[type="tel"],
.wc-block-components-form .wc-block-components-text-input.is-active input[type="url"],
.wc-block-components-form .wc-block-components-text-input.is-active input[type="number"],
.wc-block-components-form .wc-block-components-text-input.is-active input[type="password"],
.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-form .wc-block-components-combobox input,
.wc-block-components-form .wc-block-components-combobox-control__search,
.wc-block-components-form .wc-block-components-select select,
.wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-form .wc-block-components-country-input input,
.wc-block-components-form .wc-block-components-state-input input,
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox input,
.wc-block-components-combobox-control__search,
.wc-block-components-select select,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-country-input input,
.wc-block-components-state-input input {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  padding-top: 0.9rem !important;
  padding-right: 1rem !important;
  padding-bottom: 0.9rem !important;
  padding-left: 1rem !important;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 12px !important;
  background: #fff !important;
  font: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: var(--hh-strong) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
}
.wc-block-components-form .wc-block-components-text-input textarea {
  height: auto !important;
  min-height: 96px !important;
}
.wc-block-components-form .wc-block-components-text-input input:focus,
.wc-block-components-form .wc-block-components-text-input.is-active input,
.wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__select:focus {
  border-color: #111 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08) !important;
}
.wc-blocks-components-select {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.7rem !important;
}
.wc-block-components-form .wc-blocks-components-select {
  position: relative !important;
}
.wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__expand {
  top: auto !important;
  bottom: 1rem !important;
  right: 0.85rem !important;
  transform: none !important;
}
.wc-block-components-address-form__address_2-toggle,
.wc-block-components-address-form .wc-block-components-address-form__address_2-toggle {
  margin: -0.25rem 0 0.95rem !important;
}
.wc-block-components-validation-error {
  margin: -0.55rem 0 0.85rem !important;
  position: static !important;
}

/* Fixed add-to-cart toast (visible without scrolling) */
.hh-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(120%);
  z-index: 100100;
  width: min(420px, calc(100vw - 1.5rem));
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.hh-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.hh-toast strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.hh-toast span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
}

/* Side cart preview drawer */
.hh-cart-drawer[hidden] { display: none !important; }
.hh-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100090;
}
.hh-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}
.hh-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100vw);
  background: #fff;
  box-shadow: -12px 0 40px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  animation: hh-drawer-in 0.28s ease;
}
@keyframes hh-drawer-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.hh-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hh-cart-drawer__header h2 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--hh-strong);
}
.hh-cart-drawer__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--hh-bg);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #111;
}
.hh-cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hh-cart-drawer__empty {
  margin: 1.5rem 0 0.5rem;
  color: var(--hh-muted);
  text-align: center;
}
.hh-cart-drawer__shop {
  align-self: center;
}
.hh-cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.hh-cart-drawer__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  padding: 0.75rem;
  background: var(--hh-bg);
  border-radius: 14px;
}
.hh-cart-drawer__thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}
.hh-cart-drawer__name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--hh-strong);
  font-size: 0.95rem;
  line-height: 1.3;
}
.hh-cart-drawer__qty,
.hh-cart-drawer__price {
  margin: 0;
  font-size: 0.85rem;
  color: var(--hh-muted);
}
.hh-cart-drawer__price {
  color: var(--hh-strong);
  font-weight: 700;
  margin-top: 0.25rem;
}
.hh-cart-drawer__footer {
  margin-top: auto;
  padding-top: 0.5rem;
  display: grid;
  gap: 0.85rem;
}
.hh-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--hh-strong);
}
.hh-cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.hh-cart-drawer__actions .hh-btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
}
html.hh-cart-open,
html.hh-cart-open body {
  overflow: hidden;
}

/* Soften classic Woo notices when toast/drawer handles feedback */
.woocommerce-message {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.woocommerce-message .button {
  margin-left: auto !important;
}

@media (max-width: 960px) {
  .hh-collections { grid-template-columns: repeat(2, 1fr); }
  .hh-story,
  .hh-footer__grid,
  .hh-product-top { grid-template-columns: minmax(0, 1fr); }
  .hh-product-top .summary,
  .hh-product-top div.summary.entry-summary,
  .single-product .summary { position: static !important; top: auto !important; }
  ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hh-header__nav { display: none; }
  /* gap (not margins) sets the 7px bar pitch the X transform relies on */
  .hh-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 2.35rem;
    height: 2.35rem;
  }
  .hh-header {
    padding: 0 0.6rem;
    top: 0.5rem;
  }
  .hh-header__island {
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    border-radius: 999px;
  }
  .hh-mobile-nav {
    margin-top: 0.5rem;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hh-icon-btn {
    width: 2.35rem;
    height: 2.35rem;
  }
  .hh-header__brand .custom-logo-link img,
  .hh-header__brand .custom-logo {
    max-height: 36px;
  }
  .hh-hero__content { text-align: left; margin-left: 0; }
  .woocommerce-order-overview { grid-template-columns: 1fr !important; }
  .woocommerce-cart-form .product-thumbnail img { width: 64px; height: 64px; }
  .hh-toast {
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }

  /* PDP thumbs: one compact scrollable row */
  .single-product .flex-control-thumbs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.4rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-top: 0.65rem !important;
    padding-bottom: 0.15rem !important;
  }
  .single-product .flex-control-thumbs li {
    flex: 0 0 52px !important;
    width: 52px !important;
    max-width: 52px !important;
  }
  .single-product .flex-control-thumbs img {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    object-fit: cover !important;
  }
  .hh-pills,
  .hh-swatches {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hh-collections,
  ul.products { grid-template-columns: 1fr; }
  .woocommerce-cart-form table.shop_table thead { display: none; }
  .hh-cart-drawer__actions {
    grid-template-columns: 1fr;
  }
  .single-product .flex-control-thumbs li {
    flex: 0 0 48px !important;
    width: 48px !important;
    max-width: 48px !important;
  }
  .single-product .flex-control-thumbs img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
  }
  .hh-header__brand .custom-logo-link {
    max-width: min(160px, 46vw);
  }
  .hh-announcement {
    font-size: 0.72rem;
    padding: 0.55rem 0.75rem;
  }
  .hh-product-top .summary,
  .single-product .summary {
    padding: 1.15rem !important;
  }
}
