:root {
  --hw-text: #1b1b1b;
  --hw-muted: #666;
  --hw-border: #e9e9e9;
  --hw-bg: #ffffff;
  --hw-soft: #f6f3ee;
  --hw-dark: #111111;
  --hw-accent: #6f8d33;
  --hw-accent-2: #d75a45;
  --hw-topbar-text: #ffffff;
  --hw-button-text: #ffffff;
  --hw-shadow: 0 12px 30px rgba(17,17,17,.06);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--hw-bg);
  color: var(--hw-text);
  font-family: Arial, Helvetica, sans-serif;
}

body.happywoof-site-takeover-body { background: var(--hw-bg); }
.hw-site-shell *, .hw-site-shell *::before, .hw-site-shell *::after { box-sizing: border-box; }
.hw-container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
a { -webkit-tap-highlight-color: transparent; }

.hw-topbar {
  background: var(--hw-dark);
  color: var(--hw-topbar-text);
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  padding: 8px 0;
}

.hw-header {
  background: #fff;
  border-bottom: 1px solid #ece7df;
  position: sticky;
  top: 0;
  z-index: 40;
}
.hw-header-inner {
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}
.hw-brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--hw-text); }
.hw-brand img { width: min(var(--hw-logo-width), 100%); max-height: var(--hw-logo-height); height: auto; display: block; object-fit: contain; }
.hw-brand span { font-size: 32px; font-weight: 700; }

.hw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hw-nav a,
.hw-meta-link,
.hw-breadcrumbs a,
.hw-product-card a,
.hw-single-product a,
.hw-footer a,
.hw-inline-link,
.hw-contact-card,
.hw-search-item a {
  color: var(--hw-text);
  text-decoration: none;
}
.hw-nav a {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  padding-bottom: 2px;
}
.hw-nav a:hover::after,
.hw-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--hw-text);
}
.hw-breadcrumbs a:hover,
.hw-product-card a:hover,
.hw-single-product a:hover,
.hw-footer a:hover,
.hw-inline-link:hover,
.hw-search-item a:hover { text-decoration: underline; }

.hw-header-tools { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }
.hw-search { margin: 0; }
.hw-search input {
  width: 138px;
  border: none;
  padding: 0;
  font-size: 15px;
  background: transparent;
  color: var(--hw-text);
}
.hw-search input::placeholder { color: var(--hw-text); opacity: 1; }
.hw-icon-links { display: flex; align-items: center; gap: 14px; }
.hw-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hw-text);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.hw-icon-link svg { width: 18px; height: 18px; }
.hw-icon-link span { display: inline-block; }
.hw-icon-count {
  font-size: 14px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.hw-main { min-height: 60vh; padding: 24px 0 56px; }
.hw-breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--hw-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.hw-breadcrumb-sep { color: var(--hw-muted); }

.hw-home-title-block { text-align: center; padding: 2px 0 12px; }
.hw-home-main-title, .hw-page-title, .hw-section h1, .hw-section h2, .hw-page-copy h1, .hw-page-copy h2, .hw-page-copy h3 {
  color: var(--hw-text);
  line-height: 1.22;
  font-weight: 700;
}
.hw-home-main-title { font-size: clamp(26px, 4vw, 38px); margin: 0 0 22px; }
.hw-page-title, .hw-section h1 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 18px; }
.hw-section h2, .hw-page-copy h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 14px; }
.hw-page-copy h3, .hw-side-card h3 { font-size: 21px; margin: 0 0 12px; }

.hw-section, .hw-page-copy { max-width: 1120px; margin: 0 auto 36px; }
.hw-copy p,
.hw-section p,
.hw-page-copy p,
.hw-page-copy li,
.hw-review-text,
.hw-product-summary,
.hw-review-meta,
.hw-review-date,
.hw-wishlist-intro {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.hw-kicker { display: none; }

.hw-button,
.hw-site-shell .button,
.hw-site-shell button,
.hw-site-shell input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--hw-dark);
  background: var(--hw-dark);
  color: var(--hw-button-text) !important;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}
.hw-button:hover,
.hw-site-shell .button:hover,
.hw-site-shell button:hover,
.hw-site-shell input[type="submit"]:hover {
  opacity: .95;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(17,17,17,.10);
  color: var(--hw-button-text) !important;
  text-decoration: none;
}
.hw-button-secondary {
  background: #fff !important;
  color: var(--hw-text) !important;
  border-color: #d8d0c3 !important;
}
.hw-button-secondary:hover { background: #faf7f2 !important; }

.hw-checklist { list-style: none; padding: 0; margin: 0; }
.hw-checklist li { padding: 5px 0; }
.hw-checklist-simple li { font-size: 18px; }

.hw-contact-grid, .hw-tile-grid, .hw-product-grid, .hw-review-grid { display: grid; gap: 22px; }
.hw-contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hw-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  text-align: center;
  border: 1px solid #ece2d5;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--hw-shadow);
}
.hw-contact-card strong { font-size: 19px; }
.hw-contact-card span { color: var(--hw-muted); line-height: 1.5; }
.hw-contact-card:hover { transform: translateY(-2px); }

.hw-contact-hero { display: grid; gap: 22px; margin-bottom: 28px; }
.hw-contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 28px; align-items: start; }
.hw-contact-panel,
.hw-contact-sidepanel,
.hw-side-card,
.hw-empty-state,
.hw-review-card,
.hw-review-summary,
.hw-review-widget,
.hw-inline-banner,
.hw-product-card,
.hw-single-gallery,
.hw-single-summary,
.hw-search-item {
  background: #fff;
  border: 1px solid #ece2d5;
  border-radius: 22px;
  box-shadow: var(--hw-shadow);
}
.hw-contact-panel { padding: 28px; }
.hw-contact-sidepanel { border: 0; box-shadow: none; background: transparent; display: grid; gap: 18px; }
.hw-side-card { padding: 22px; }

.hw-contact-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}
.hw-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.hw-contact-form p { margin: 0 0 16px; }
.hw-contact-submit { margin: 4px 0 0; }
.hw-form-notice {
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
}
.hw-form-notice-success { background: #edf6e2; color: #2e4a13; border: 1px solid #d0e4b3; }
.hw-form-notice-error { background: #fff0ec; color: #8d3428; border: 1px solid #f1c4ba; }

.hw-tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 10px; }
.hw-tile { display: block; text-decoration: none; color: var(--hw-text); }
.hw-tile-category-name {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--hw-muted);
  font-weight: 600;
}
.hw-tile-media {
  display: block;
  min-height: 335px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f0f0f0 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ece2d5;
  box-shadow: var(--hw-shadow);
}
.hw-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.02) 0%, rgba(17,17,17,0.10) 100%);
}
.hw-tile-label {
  display: block;
  text-align: center;
  padding-top: 14px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.hw-inline-banner { padding: 16px 18px; border-radius: 18px; background: #faf7f2; }
.hw-inline-banner-muted { background: #fff; }
.hw-section-title { max-width: 1180px; margin: 32px auto 18px; font-size: 30px; }

.hw-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
.hw-product-card {
  position: relative;
  padding: 16px;
}
.hw-product-card h3 { font-size: 18px; line-height: 1.45; margin: 0 0 8px; }
.hw-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.hw-product-image img { width: 100%; height: auto; object-fit: contain; }
.hw-placeholder { display: block; width: 100%; height: 220px; background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%); border-radius: 16px; }
.hw-product-summary { color: var(--hw-muted); font-size: 14px; min-height: 20px; }
.hw-price { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.hw-price del { color: #888; font-weight: 400; margin-right: 6px; }
.hw-card-actions .button { width: 100%; }
.hw-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--hw-accent-2);
  color: var(--hw-topbar-text);
}
.hw-badge-secondary { left: auto; right: 12px; background: var(--hw-accent); }

.hw-single-product { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 34px; align-items: start; margin-bottom: 42px; }
.hw-single-gallery, .hw-single-summary { padding: 24px; }
.hw-single-gallery img { width: 100%; height: auto; display: block; border-radius: 16px; }
.hw-price-large { font-size: 30px; }
.hw-single-tagline p { margin: 0 0 14px; color: var(--hw-muted); }
.hw-single-form .quantity .qty,
.hw-site-shell input[type="number"],
.hw-site-shell select,
.hw-site-shell textarea,
.hw-site-shell input[type="text"],
.hw-site-shell input[type="email"],
.hw-site-shell input[type="tel"],
.hw-site-shell input[type="password"] {
  border: 1px solid #d8d0c3;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  max-width: 100%;
  width: 100%;
  background: #fff;
}
.hw-site-shell textarea { resize: vertical; min-height: 160px; }
.hw-single-form form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hw-product-description { border-top: 1px solid var(--hw-border); padding-top: 28px; }

.hw-wishlist-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--hw-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.hw-wishlist-button svg { width: 17px; height: 17px; }
.hw-wishlist-button.is-active { color: var(--hw-accent-2); }
.hw-wishlist-button-single { margin-top: 16px; }
.hw-empty-state {
  padding: 42px 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hw-empty-state h2 { margin-bottom: 12px; }
.hw-empty-state p { max-width: 560px; margin-left: auto; margin-right: auto; }
.hw-empty-state-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4f1;
  color: var(--hw-accent-2);
  margin-bottom: 16px;
}
.hw-empty-state-icon svg { width: 34px; height: 34px; }
.hw-empty-state-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.hw-review-summary { display: flex; align-items: center; gap: 18px; padding: 20px; margin-bottom: 20px; }
.hw-review-rating { font-size: 38px; font-weight: 700; }
.hw-stars { color: #f3b400; letter-spacing: 1px; }
.hw-review-summary-action { margin-left: auto; }
.hw-review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hw-review-card { padding: 22px; }
.hw-review-author { font-weight: 700; }
.hw-review-date { color: var(--hw-muted); margin-bottom: 0; }

.hw-search-results { display: grid; gap: 16px; }
.hw-search-item { padding: 18px 20px; }
.hw-footer { border-top: 1px solid #ece7df; padding: 28px 0 36px; color: var(--hw-muted); text-align: center; }
.hw-footer-note { margin-top: 8px; }

@media (max-width: 1040px) {
  .hw-header-inner { grid-template-columns: 1fr; justify-items: center; }
  .hw-header-tools { flex-wrap: wrap; justify-content: center; }
  .hw-product-grid, .hw-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hw-contact-layout, .hw-single-product { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hw-container { width: min(100% - 24px, 1180px); }
  .hw-main { padding-top: 18px; }
  .hw-topbar { font-size: 12px; }
  .hw-nav { gap: 16px; }
  .hw-icon-link span { display: none; }
  .hw-contact-grid, .hw-tile-grid, .hw-product-grid, .hw-review-grid, .hw-form-grid { grid-template-columns: 1fr; }
  .hw-tile-label { font-size: 22px; }
  .hw-tile-category-name { font-size: 16px; }
  .hw-review-summary { flex-direction: column; align-items: flex-start; }
  .hw-review-summary-action { margin-left: 0; }
  .hw-empty-state { padding: 30px 18px; }
}


.hw-home-hero-band { margin: 0 auto 32px; }
.hw-home-title-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7ec 0%, #f6efe4 52%, #eef4de 100%);
  border: 1px solid #eadfce;
  box-shadow: var(--hw-shadow);
}
.hw-hero-eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid #eadfce;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.hw-hero-intro { max-width: 760px; margin: 0 auto 20px; }
.hw-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hw-color-box { padding: 28px; border-radius: 28px; border: 1px solid #ece2d5; box-shadow: var(--hw-shadow); }
.hw-color-box-soft { background: linear-gradient(180deg, #f8f1e8 0%, #fffaf5 100%); }
.hw-color-box-accent { background: linear-gradient(180deg, #eef5df 0%, #f9fcf2 100%); }
.hw-color-box-warm { background: linear-gradient(180deg, #fff3ef 0%, #fffaf8 100%); }
.hw-color-box-plain { background: #fff; }
.hw-color-box-dark { background: linear-gradient(180deg, #1c1c1c 0%, #292929 100%); color: #fff; border-color: #1c1c1c; }
.hw-color-box-dark h2, .hw-color-box-dark p, .hw-color-box-dark a { color: #fff; }
.hw-button-light { background: #fff !important; border-color: #fff !important; color: #111 !important; }
.hw-button-light-outline { background: transparent !important; border-color: rgba(255,255,255,.45) !important; color: #fff !important; }
.hw-usp-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 16px; }
.hw-usp-card { background: rgba(255,255,255,.84); border: 1px solid #f0d9d1; border-radius: 18px; padding: 18px 18px; line-height: 1.6; font-size: 17px; }
.hw-help-grid { display: grid; grid-template-columns: minmax(0,1.1fr) auto; gap: 24px; align-items: center; }
.hw-help-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.hw-contact-hero, .hw-contact-panel, .hw-side-card { background: #fffaf5; }
@media (max-width: 1040px) { .hw-help-grid { grid-template-columns: 1fr; } .hw-help-actions { justify-content: flex-start; } }
@media (max-width: 760px) { .hw-color-box { padding: 22px 18px; } .hw-home-title-card { padding: 28px 18px; } .hw-usp-grid { grid-template-columns: 1fr; } }

.hw-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hw-border);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hw-mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--hw-text);
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.hw-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hw-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.hw-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hw-mobile-menu {
  border-top: 1px solid #ece7df;
  background: #fff;
}
.hw-mobile-menu-inner { padding: 14px 0 18px; }
.hw-mobile-nav {
  display: grid;
  gap: 2px;
}
.hw-mobile-nav a {
  color: var(--hw-text);
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ebe2;
}
.hw-search-mobile { margin-top: 14px; }
.hw-search-mobile input {
  width: 100%;
  border: 1px solid var(--hw-border);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

.hw-footer {
  background: #faf7f2;
  border-top: 1px solid var(--hw-border);
  padding: 34px 0 24px;
}
.hw-footer .hw-container { display: grid; gap: 18px; }
.hw-footer-socials,
.hw-footer-payment-images,
.hw-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hw-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--hw-text);
  font-weight: 600;
}
.hw-footer-social-link svg { width: 18px; height: 18px; }
.hw-footer-payments {
  border-top: 1px solid var(--hw-border);
  border-bottom: 1px solid var(--hw-border);
  padding: 18px 0;
}
.hw-footer-payments-title {
  font-weight: 700;
  margin-bottom: 12px;
}
.hw-footer-payment-images img {
  height: 34px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 4px 8px;
  border: 1px solid var(--hw-border);
}
.hw-footer-note { color: var(--hw-muted); }
.hw-footer-bottom {
  justify-content: space-between;
  gap: 10px 20px;
  color: var(--hw-muted);
  font-size: 14px;
}
.hw-footer-maker a { color: var(--hw-text); }

@media (max-width: 960px) {
  .hw-header-inner {
    grid-template-columns: minmax(0,1fr) auto auto;
    gap: 12px;
    padding: 12px 0;
  }
  .hw-mobile-toggle { display: inline-flex; order: 3; }
  .hw-nav,
  .hw-header-tools .hw-search,
  .hw-icon-link span { display: none; }
  .hw-header-tools { gap: 10px; }
  .hw-icon-links { gap: 8px; }
  .hw-icon-link {
    width: 40px;
    height: 40px;
    justify-content: center;
    position: relative;
    border: 1px solid var(--hw-border);
    border-radius: 12px;
    background: #fff;
  }
  .hw-icon-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--hw-accent-2);
    color: #fff;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    padding: 0 4px;
  }
  .hw-contact-grid { grid-template-columns: 1fr; }
  .hw-contact-layout { grid-template-columns: 1fr; }
  .hw-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 961px) {
  .hw-mobile-toggle,
  .hw-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .hw-header-inner {
    grid-template-columns: minmax(0,1fr) auto auto;
  }

  .hw-nav {
    display: none !important;
  }

  .hw-mobile-toggle {
    display: inline-flex !important;
  }
}


.hw-shop-intro-card {
  margin-bottom: 26px;
}
.hw-shop-intro-inner {
  background: #efeee8;
  border-radius: 14px;
  padding: clamp(24px, 4vw, 42px);
}
.hw-shop-intro-title,
.hw-shop-intro-line {
  font-size: clamp(24px, 3.6vw, 56px);
  line-height: 1.28;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.hw-shop-intro-title { margin-bottom: 28px; }
.hw-shop-intro-line-last { margin-bottom: 0; }
.hw-shop-intro-highlight {
  color: #c9a24f;
}
.hw-shop-intro-link { text-decoration: none; }
.hw-shop-intro-link:hover { text-decoration: underline; }

.hw-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}
.hw-badges-single {
  position: static;
  top: auto;
  left: auto;
  margin: 0 0 18px;
}
.hw-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--hw-accent-2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(17,17,17,.08);
}
.hw-badge-secondary {
  background: var(--hw-accent);
}
.hw-badge-custom {
  background: var(--hw-badge-custom-bg, #d4af37);
  color: var(--hw-badge-custom-text, #fff);
}

@media (max-width: 767px) {
  .hw-shop-intro-title,
  .hw-shop-intro-line {
    font-size: clamp(18px, 5.8vw, 34px);
    margin-bottom: 18px;
  }
}

.hw-home-title-card { color: var(--hw-hero-text, var(--hw-text)); }
.hw-home-title-card .hw-hero-eyebrow,
.hw-home-title-card .hw-home-main-title,
.hw-home-title-card .hw-hero-intro { color: var(--hw-hero-text, var(--hw-text)); }
.hw-hero-media { margin: 0 auto 18px; max-width: 360px; }
.hw-hero-media img { width: 100%; height: auto; display: block; border-radius: 26px; object-fit: cover; }
.hw-button-ghost { background: transparent !important; color: var(--hw-hero-text, var(--hw-text)) !important; border: 2px solid currentColor; box-shadow: none; }
.hw-button-ghost:hover, .hw-button-ghost:focus { background: rgba(255,255,255,0.08) !important; }


/* v16.1.2 shop/menu refinements */
.hw-category-menu { border-top: 1px solid #f1ece4; border-bottom: 1px solid #f1ece4; background: #fff; }
.hw-category-menu .hw-container,
.hw-mobile-category-menu .hw-container { display: grid; gap: 10px; padding: 12px 0; }
.hw-category-menu-title,
.hw-mobile-category-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--hw-muted); }
.hw-category-links { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.hw-category-links a,
.hw-shop-chip {
  display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 14px;
  border: 1px solid var(--hw-border); border-radius: 999px; background: #fff; color: var(--hw-text); text-decoration: none; font-size: 14px; font-weight: 600;
}
.hw-category-links a:hover,
.hw-shop-chip:hover,
.hw-shop-chip.is-active { background: var(--hw-soft); border-color: #d8d0c3; }
.hw-shop-catalog { margin-top: 8px; }
.hw-shop-toolbar-wrap { display: grid; gap: 16px; margin-bottom: 16px; }
.hw-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.hw-shop-filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.hw-shop-order { display: inline-flex; gap: 10px; align-items: center; }
.hw-shop-order label { font-size: 14px; font-weight: 700; color: var(--hw-muted); }
.hw-product-grid-shop { gap: 16px; }
.hw-product-grid-shop .hw-product-card { padding: 12px; border-radius: 18px; }
.hw-product-grid-shop .hw-product-image { min-height: 170px; margin-bottom: 10px; }
.hw-product-grid-shop .hw-product-image img { max-height: 160px; width: auto; max-width: 100%; }
.hw-product-grid-shop .hw-product-summary { display: none; }
.hw-product-grid-shop .hw-price { font-size: 18px; margin-bottom: 10px; }
.hw-product-grid-shop .hw-product-card h3 { font-size: 16px; line-height: 1.4; min-height: 46px; }
.hw-product-grid-shop .hw-card-actions { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; align-items: stretch; }
.hw-product-grid-shop .hw-card-actions .button { width: 100%; min-height: 42px; padding: 8px 12px; }
.hw-product-grid-shop .hw-wishlist-button { margin-top: 0; min-width: 42px; justify-content: center; border: 1px solid var(--hw-border); border-radius: 12px; padding: 0 10px; }
.hw-product-grid-shop .hw-wishlist-button span { display: none; }
@media (max-width: 960px) {
  .hw-category-menu { display: none; }
  .hw-mobile-category-menu { border-top: 1px solid #f0ebe2; margin-top: 12px; padding-top: 12px; }
}
@media (min-width: 961px) {
  .hw-mobile-category-menu { display: none; }
}
@media (max-width: 760px) {
  .hw-shop-toolbar { align-items: stretch; }
  .hw-shop-order { width: 100%; justify-content: space-between; }
  .hw-shop-order select { max-width: none; }
  .hw-product-grid, .hw-product-grid-shop { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 12px; }
  .hw-product-grid-shop .hw-product-card { padding: 10px; }
  .hw-product-grid-shop .hw-product-image { min-height: 120px; }
  .hw-product-grid-shop .hw-product-image img { max-height: 110px; }
  .hw-product-grid-shop .hw-product-card h3 { font-size: 14px; min-height: 40px; }
  .hw-product-grid-shop .hw-price { font-size: 16px; }
}


/* Quick add for variable products on shop cards */
.hw-variation-quick-add {
    display: grid;
    gap: 8px;
    width: 100%;
}

.hw-variation-quick-add select {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    color: var(--hw-text);
}

.hw-card-actions .hw-variation-quick-add .button,
.hw-card-actions .hw-variation-submit {
    width: 100%;
    justify-content: center;
}

.hw-card-actions {
    align-items: stretch;
}

.hw-card-actions > .button,
.hw-card-actions > .hw-wishlist-button {
    align-self: stretch;
}

.hw-card-actions .hw-wishlist-button {
    min-height: 42px;
}

@media (max-width: 768px) {
    .hw-variation-quick-add select {
        min-height: 38px;
        font-size: 13px;
        padding: 8px 10px;
    }
}


/* v16.1.6 shop card cleanup */
.hw-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hw-product-card h3 {
  margin: 0 0 10px;
}
.hw-product-card h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hw-price {
  margin-bottom: 12px;
}
.hw-card-actions {
  margin-top: auto;
}
.hw-card-footer-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.hw-product-grid-shop .hw-product-card {
  padding: 14px;
  gap: 0;
}
.hw-product-grid-shop .hw-product-image {
  min-height: 150px;
  margin-bottom: 12px;
}
.hw-product-grid-shop .hw-product-image img {
  max-height: 145px;
}
.hw-product-grid-shop .hw-product-card h3 {
  min-height: 68px;
  font-size: 15px;
}
.hw-product-grid-shop .hw-price {
  font-size: 17px;
}
.hw-product-grid-shop .hw-card-actions,
.hw-product-grid-shop .hw-card-actions-variable {
  display: block;
}
.hw-product-grid-shop .hw-card-actions .button,
.hw-product-grid-shop .hw-card-actions .ajax_add_to_cart,
.hw-product-grid-shop .hw-card-actions .hw-variation-submit {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
}
.hw-product-grid-shop .hw-card-footer-actions {
  justify-content: flex-end;
}
.hw-product-grid-shop .hw-wishlist-button {
  margin-top: 0;
  min-height: 40px;
  min-width: 40px;
  justify-content: center;
  border: 1px solid var(--hw-border);
  border-radius: 12px;
  padding: 0 10px;
  background: #fff;
}
.hw-product-grid-shop .hw-wishlist-button span {
  display: none;
}
.hw-product-grid-shop .hw-variation-quick-add {
  display: grid;
  gap: 8px;
  width: 100%;
}
.hw-product-grid-shop .hw-variation-quick-add select {
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 40px 10px 12px;
  font-size: 14px;
  line-height: 1.3;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.hw-product-grid-shop .hw-variation-submit[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (max-width: 760px) {
  .hw-product-grid-shop .hw-product-card {
    padding: 10px;
  }
  .hw-product-grid-shop .hw-product-image {
    min-height: 118px;
  }
  .hw-product-grid-shop .hw-product-image img {
    max-height: 112px;
  }
  .hw-product-grid-shop .hw-product-card h3 {
    min-height: 58px;
    font-size: 13px;
  }
  .hw-product-grid-shop .hw-price {
    font-size: 15px;
  }
  .hw-product-grid-shop .hw-variation-quick-add select,
  .hw-product-grid-shop .hw-card-actions .button,
  .hw-product-grid-shop .hw-card-actions .hw-variation-submit {
    min-height: 40px;
    font-size: 13px;
  }
}


/* v16.1.7 equal mobile cards */
.hw-product-grid-shop {
  align-items: stretch;
}
.hw-product-grid-shop > * {
  height: 100%;
}
.hw-product-grid-shop .hw-product-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hw-product-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.5em;
  line-height: 1.5;
  margin: 0 0 12px;
}
.hw-product-grid-shop .hw-product-summary {
  min-height: 4.8em;
}
.hw-product-card h3,
.hw-product-grid-shop .hw-product-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.2em;
}
.hw-product-card h3 a,
.hw-product-grid-shop .hw-product-card h3 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
  hyphens: auto;
}
.hw-card-actions {
  margin-top: auto;
}
.hw-card-footer-actions {
  margin-top: 12px;
}
@media (max-width: 760px) {
  .hw-product-grid-shop {
    align-items: stretch;
  }
  .hw-product-grid-shop .hw-product-card {
    min-height: 100%;
    padding: 12px;
  }
  .hw-product-grid-shop .hw-product-image {
    aspect-ratio: 1 / 1;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hw-product-grid-shop .hw-product-image img {
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
  }
  .hw-product-grid-shop .hw-product-summary {
    font-size: 13px;
    line-height: 1.45;
    min-height: 4.3em;
    margin-bottom: 10px;
  }
  .hw-product-grid-shop .hw-product-card h3 {
    font-size: 14px;
    line-height: 1.35;
    min-height: 4.1em;
    margin-bottom: 8px;
  }
  .hw-product-grid-shop .hw-price {
    min-height: 1.6em;
    margin-bottom: 12px;
  }
}



/* v16.1.9 badge containment fixes */
.hw-product-card {
  overflow: hidden;
}

.hw-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  z-index: 3;
  max-width: calc(100% - 28px);
  pointer-events: none;
}

.hw-badges .hw-badge {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  max-width: 100%;
  min-height: 0;
  padding: 7px 12px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.2;
  text-align: left;
  box-sizing: border-box;
}

.hw-badges .hw-badge-secondary,
.hw-badges .hw-badge-custom {
  right: auto;
  left: auto;
}

.hw-product-image {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hw-badges {
    top: 10px;
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    gap: 6px;
  }

  .hw-badges .hw-badge {
    font-size: 11px;
    padding: 6px 10px;
  }
}
