:root {
  --hg-bg: #ffffff;
  --hg-surface: #f8f7f6;
  --hg-ink: #181818;
  --hg-muted: #6f6f6f;
  --hg-line: #e8e2de;
  --hg-red: #b5151b;
  --hg-red-dark: #8f1116;
  --hg-green: #1f7a43;
  --hg-radius: 4px;
  --hg-container: 1560px;
  --hg-font: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Final mobile navigation treatment: clean off-canvas drawer. */
@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header {
    z-index: 1300 !important;
    overflow: visible !important;
  }

  .site-header .hg-container.header-main {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 44px !important;
    grid-template-areas:
      "menu brand cart"
      "search search search" !important;
    align-items: center !important;
    gap: 13px 10px !important;
    min-height: 0 !important;
    padding: 16px 14px 14px !important;
  }

  .header-spacer {
    display: none !important;
  }

  .site-branding,
  .menu-open .site-branding {
    position: static !important;
    grid-area: brand !important;
    display: block !important;
    justify-self: center !important;
    min-width: 0 !important;
    transform: none !important;
    text-align: center !important;
  }

  .site-branding .custom-logo {
    max-width: min(190px, 54vw) !important;
    max-height: 54px !important;
    width: auto !important;
    height: auto !important;
  }

  .header-actions,
  .menu-open .header-actions {
    display: contents !important;
  }

  .menu-toggle,
  .menu-open .menu-toggle {
    grid-area: menu !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--hg-ink) !important;
    box-shadow: none !important;
    gap: 8px !important;
  }

  .menu-toggle:hover,
  .menu-open .menu-toggle:hover {
    background: transparent !important;
    color: var(--hg-red) !important;
  }

  .menu-toggle span:not(.screen-reader-text),
  .menu-open .menu-toggle span:not(.screen-reader-text) {
    display: block !important;
    width: 32px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(10px) rotate(45deg) !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0 !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-10px) rotate(-45deg) !important;
  }

  .cart-link,
  .menu-open .cart-link {
    grid-area: cart !important;
    justify-self: end !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
  }

  .header-search,
  .menu-open .header-search {
    grid-area: search !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .header-search form,
  .woocommerce-product-search,
  .menu-open .header-search form,
  .menu-open .woocommerce-product-search {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .header-search input[type="search"],
  .menu-open .header-search input[type="search"] {
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid var(--hg-line) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: var(--hg-ink) !important;
    font-size: 14px !important;
  }

  .header-search button,
  .menu-open .header-search button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--hg-red) !important;
    border-radius: 999px !important;
    background: var(--hg-red) !important;
    color: #fff !important;
    font-size: 0 !important;
  }

  .header-search button::before,
  .menu-open .header-search button::before {
    content: "" !important;
    width: 15px !important;
    height: 15px !important;
    border: 2px solid currentColor !important;
    border-radius: 999px !important;
    background: transparent !important;
  }

  .header-search button::after,
  .menu-open .header-search button::after {
    content: "" !important;
    position: absolute !important;
    width: 8px !important;
    height: 2px !important;
    background: currentColor !important;
    transform: translate(9px, 9px) rotate(45deg) !important;
  }

  .site-header::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1290 !important;
    background: rgba(18, 18, 18, 0.44) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  body.admin-bar .site-header::after {
    top: 46px !important;
  }

  .menu-open .site-header::after {
    opacity: 1 !important;
  }

  .header-nav-row,
  .menu-open .header-nav-row {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1310 !important;
    display: block !important;
    width: min(86vw, 360px) !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 18px 0 28px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid #e6dfdb !important;
    background: #fff !important;
    box-shadow: 28px 0 64px rgba(24, 24, 24, 0.18) !important;
    transform: translateX(-105%) !important;
    transition: transform 220ms ease !important;
  }

  body.admin-bar .header-nav-row,
  body.admin-bar.menu-open .header-nav-row {
    top: 46px !important;
  }

  .menu-open .header-nav-row {
    transform: translateX(0) !important;
  }

  .primary-navigation,
  .menu-open .primary-navigation {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .menu-open .primary-navigation::before {
    display: none !important;
  }

  .primary-navigation .hg-native-menu,
  .menu-open .primary-navigation .hg-native-menu {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    list-style: none !important;
  }

  .primary-navigation .hg-native-menu > .menu-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 58px !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #eee8e4 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open {
    border-left: 0 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 74px !important;
    padding: 0 10px 0 22px !important;
    color: var(--hg-ink) !important;
    font-size: 21px !important;
    font-weight: 820 !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a {
    color: var(--hg-ink) !important;
    padding-left: 22px !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a::before {
    content: "" !important;
    display: block !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    border: 2px solid currentColor !important;
    border-radius: 9px !important;
    background:
      linear-gradient(currentColor, currentColor) 50% 30% / 16px 2px no-repeat,
      linear-gradient(currentColor, currentColor) 50% 52% / 22px 2px no-repeat,
      linear-gradient(currentColor, currentColor) 50% 74% / 14px 2px no-repeat !important;
    color: inherit !important;
    opacity: 0.86 !important;
  }

  .primary-navigation .hg-native-menu > .menu-item:nth-child(2) > a::before,
  .primary-navigation .hg-native-menu > .menu-item:nth-child(7) > a::before {
    border-radius: 999px !important;
  }

  .primary-navigation .hg-native-menu > .menu-item:nth-child(3) > a::before,
  .primary-navigation .hg-native-menu > .menu-item:nth-child(4) > a::before {
    border-radius: 4px !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a::before {
    color: var(--hg-red) !important;
    border-color: var(--hg-red) !important;
    opacity: 1 !important;
  }

  .primary-navigation .hg-native-menu > .menu-item-has-children > a::after {
    display: none !important;
  }

  .submenu-toggle,
  .menu-open .submenu-toggle,
  .primary-navigation .hg-native-menu .submenu-toggle {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    width: 58px !important;
    min-width: 58px !important;
    height: auto !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--hg-ink) !important;
    box-shadow: none !important;
  }

  .submenu-toggle-icon,
  .menu-open .submenu-toggle-icon {
    display: block !important;
    width: 13px !important;
    height: 13px !important;
    border: 0 !important;
    border-right: 3px solid currentColor !important;
    border-bottom: 3px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(-45deg) !important;
    transition: transform 160ms ease !important;
  }

  .submenu-toggle-icon::before,
  .submenu-toggle-icon::after {
    display: none !important;
    content: none !important;
  }

  .menu-item.is-open > .submenu-toggle {
    color: var(--hg-red) !important;
  }

  .menu-item.is-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg) !important;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    position: static !important;
    display: none !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .primary-navigation .hg-native-menu .menu-item.is-open > .sub-menu {
    display: block !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 50px !important;
    min-height: 54px !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #f3efed !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    padding: 0 8px 0 54px !important;
    color: #2a2a2a !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.22 !important;
    white-space: normal !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red) !important;
    font-weight: 700 !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .submenu-toggle {
    width: 50px !important;
    min-width: 50px !important;
    min-height: 54px !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu a {
    min-height: 46px !important;
    padding-left: 74px !important;
    color: var(--hg-muted) !important;
    font-size: 15px !important;
  }

  .hg-live-search-panel,
  .menu-open .hg-live-search-panel {
    position: fixed !important;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 148px) !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1400 !important;
    box-sizing: border-box !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 166px) !important;
    padding: 12px !important;
    overflow-x: hidden !important;
    border-radius: 14px !important;
  }

  .hg-live-search-category,
  .hg-live-product,
  .hg-live-product-copy {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hg-live-product {
    gap: 10px !important;
  }

  .hg-live-product-image {
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
  }

  .hg-live-search-category span,
  .hg-live-search-category small,
  .hg-live-product-copy strong,
  .hg-live-product-copy small {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

/* === FINAL OVERRIDES: cart layout repair === */
body.woocommerce-cart .page-content,
body.woocommerce-cart .page-content .entry-content,
body.woocommerce-cart .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin-inline: auto !important;
  overflow: visible !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.woocommerce-cart .entry-content > .woocommerce,
body.woocommerce-cart .woocommerce {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
}

@media (min-width: 981px) {
  body.woocommerce-cart .entry-content > .woocommerce {
    display: grid !important;
    grid-template-columns: minmax(680px, 1fr) minmax(340px, 420px) !important;
    gap: 40px !important;
    align-items: start !important;
  }

  body.woocommerce-cart .woocommerce-notices-wrapper,
  body.woocommerce-cart .woocommerce-message,
  body.woocommerce-cart .woocommerce-error,
  body.woocommerce-cart .woocommerce-info {
    grid-column: 1 / -1 !important;
  }

  body.woocommerce-cart form.woocommerce-cart-form {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  body.woocommerce-cart .cart-collaterals {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 420px !important;
    min-width: 0 !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: 420px !important;
    float: none !important;
  }
}

body.woocommerce-cart table.shop_table,
body.woocommerce-cart table.shop_table.cart,
body.woocommerce-cart table.cart {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  table-layout: auto !important;
  border-collapse: collapse !important;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td,
body.woocommerce-cart table.cart th,
body.woocommerce-cart table.cart td {
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  vertical-align: middle !important;
}

body.woocommerce-cart table.cart th.product-name,
body.woocommerce-cart table.cart td.product-name,
body.woocommerce-cart table.shop_table th.product-name,
body.woocommerce-cart table.shop_table td.product-name {
  width: auto !important;
  min-width: 280px !important;
  max-width: none !important;
}

body.woocommerce-cart table.cart td.product-name a,
body.woocommerce-cart table.shop_table td.product-name a {
  display: inline !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.35 !important;
}

body.woocommerce-cart table.cart .product-remove,
body.woocommerce-cart table.shop_table .product-remove {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  text-align: center !important;
}

body.woocommerce-cart table.cart .product-thumbnail,
body.woocommerce-cart table.shop_table .product-thumbnail {
  width: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
}

body.woocommerce-cart table.cart .product-thumbnail img,
body.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  object-fit: contain !important;
}

body.woocommerce-cart table.cart .product-price,
body.woocommerce-cart table.cart .product-quantity,
body.woocommerce-cart table.cart .product-subtotal,
body.woocommerce-cart table.shop_table .product-price,
body.woocommerce-cart table.shop_table .product-quantity,
body.woocommerce-cart table.shop_table .product-subtotal {
  width: 110px !important;
  min-width: 92px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.woocommerce-cart table.cart td.actions,
body.woocommerce-cart table.shop_table td.actions {
  text-align: left !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  padding: 28px !important;
  border: 1px solid var(--hg-line) !important;
  background: #fff !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05) !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  body.woocommerce-cart .entry-content > .woocommerce {
    display: block !important;
    width: 100% !important;
    max-width: 680px !important;
  }

  body.woocommerce-cart table.cart,
  body.woocommerce-cart table.cart tbody,
  body.woocommerce-cart table.cart tr,
  body.woocommerce-cart table.cart td,
  body.woocommerce-cart table.shop_table.cart,
  body.woocommerce-cart table.shop_table.cart tbody,
  body.woocommerce-cart table.shop_table.cart tr,
  body.woocommerce-cart table.shop_table.cart td {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.woocommerce-cart table.cart thead,
  body.woocommerce-cart table.shop_table.cart thead {
    display: none !important;
  }

  body.woocommerce-cart table.cart tr.cart_item,
  body.woocommerce-cart table.shop_table.cart tr.cart_item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 10px 12px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--hg-line) !important;
  }

  body.woocommerce-cart table.cart td,
  body.woocommerce-cart table.shop_table.cart td {
    border: 0 !important;
    padding: 0 !important;
  }

  body.woocommerce-cart table.cart td.product-remove,
  body.woocommerce-cart table.shop_table.cart td.product-remove {
    position: absolute !important;
    top: 8px !important;
    right: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    z-index: 2 !important;
  }

  body.woocommerce-cart table.cart td.product-thumbnail,
  body.woocommerce-cart table.shop_table.cart td.product-thumbnail {
    grid-column: 1 !important;
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
  }

  body.woocommerce-cart table.cart td.product-name,
  body.woocommerce-cart table.cart td.product-price,
  body.woocommerce-cart table.cart td.product-quantity,
  body.woocommerce-cart table.cart td.product-subtotal,
  body.woocommerce-cart table.shop_table.cart td.product-name,
  body.woocommerce-cart table.shop_table.cart td.product-price,
  body.woocommerce-cart table.shop_table.cart td.product-quantity,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal {
    grid-column: 2 !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  body.woocommerce-cart table.cart td.product-name a,
  body.woocommerce-cart table.shop_table.cart td.product-name a {
    display: block !important;
    padding-right: 28px !important;
    font-weight: 720 !important;
  }

  body.woocommerce-cart table.cart td.product-price::before,
  body.woocommerce-cart table.cart td.product-quantity::before,
  body.woocommerce-cart table.cart td.product-subtotal::before,
  body.woocommerce-cart table.shop_table.cart td.product-price::before,
  body.woocommerce-cart table.shop_table.cart td.product-quantity::before,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal::before {
    display: inline-block !important;
    min-width: 86px !important;
    color: var(--hg-muted) !important;
    font-weight: 650 !important;
  }

  body.woocommerce-cart table.cart td.product-price::before,
  body.woocommerce-cart table.shop_table.cart td.product-price::before {
    content: "Τιμή: " !important;
  }

  body.woocommerce-cart table.cart td.product-quantity::before,
  body.woocommerce-cart table.shop_table.cart td.product-quantity::before {
    content: "Ποσότητα: " !important;
  }

  body.woocommerce-cart table.cart td.product-subtotal::before,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal::before {
    content: "Υποσύνολο: " !important;
  }

  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
  }
}

@media (min-width: 721px) and (max-width: 782px) {
  body.admin-bar .site-header::after,
  body.admin-bar .header-nav-row {
    top: 46px !important;
  }
}

/* Absolute final mobile menu pass: minimal, flat, no icons, no clipping. */
@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header {
    z-index: 1500 !important;
    overflow: visible !important;
  }

  .site-header .hg-container.header-main {
    grid-template-columns: 44px minmax(0, 1fr) 42px !important;
    grid-template-areas:
      "menu brand cart"
      "search search search" !important;
    gap: 12px 8px !important;
    padding: 14px 12px 13px !important;
  }

  .header-actions {
    display: contents !important;
  }

  .header-search {
    grid-area: search !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .header-search form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .header-search input[type="search"] {
    width: 100% !important;
    min-width: 0 !important;
  }

  .cart-link {
    grid-area: cart !important;
    justify-self: end !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  .menu-toggle {
    grid-area: menu !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 7px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--hg-ink) !important;
  }

  .menu-toggle span:not(.screen-reader-text) {
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    border-radius: 99px !important;
    background: currentColor !important;
    transition: opacity 160ms ease, transform 160ms ease !important;
  }

  .menu-open .menu-toggle {
    position: fixed !important;
    top: 14px !important;
    left: 16px !important;
    z-index: 1701 !important;
    background: transparent !important;
    color: var(--hg-red) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.admin-bar.menu-open .menu-toggle {
    top: 60px !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(9px) rotate(45deg) !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0 !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-9px) rotate(-45deg) !important;
  }

  .menu-open .site-branding,
  .menu-open .header-search,
  .menu-open .cart-link {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1490 !important;
    background: rgba(20, 20, 20, .46) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  body.admin-bar .site-header::after {
    top: 46px !important;
  }

  .menu-open .site-header::after {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .header-nav-row,
  .menu-open .header-nav-row {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1600 !important;
    display: block !important;
    width: min(88vw, 360px) !important;
    max-width: calc(100vw - 44px) !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 70px 0 24px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid #eee5e1 !important;
    background: #fff !important;
    box-shadow: 24px 0 58px rgba(0, 0, 0, .16) !important;
    transform: translateX(-105%) !important;
    transition: transform 210ms ease !important;
  }

  body.admin-bar .header-nav-row,
  body.admin-bar.menu-open .header-nav-row {
    top: 46px !important;
  }

  body.admin-bar .header-nav-row {
    padding-top: 72px !important;
  }

  .menu-open .header-nav-row {
    transform: translateX(0) !important;
  }

  .primary-navigation,
  .primary-navigation .hg-native-menu {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    list-style: none !important;
  }

  .menu-open .primary-navigation::before {
    display: none !important;
  }

  .header-nav-row *,
  .primary-navigation *,
  .primary-navigation *::before,
  .primary-navigation *::after {
    box-sizing: border-box !important;
  }

  .primary-navigation .hg-native-menu > .menu-item,
  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #eee8e4 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open,
  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open {
    border-left: 0 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a,
  .primary-navigation .hg-native-menu .sub-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    padding: 0 6px 0 24px !important;
    color: var(--hg-ink) !important;
    font-size: 18px !important;
    font-weight: 650 !important;
    line-height: 1.18 !important;
    white-space: normal !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a::before,
  .primary-navigation .hg-native-menu .sub-menu a::before,
  .primary-navigation .hg-native-menu > .menu-item:nth-child(n) > a::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    flex: 0 0 0 !important;
    border: 0 !important;
    background: none !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a,
  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red) !important;
    font-weight: 700 !important;
  }

  .submenu-toggle,
  .primary-navigation .hg-native-menu .submenu-toggle {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    width: 46px !important;
    min-width: 46px !important;
    height: auto !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--hg-ink) !important;
  }

  .submenu-toggle-icon {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(-45deg) !important;
    transition: transform 160ms ease !important;
  }

  .submenu-toggle-icon::before,
  .submenu-toggle-icon::after {
    display: none !important;
    content: none !important;
  }

  .menu-item.is-open > .submenu-toggle {
    color: var(--hg-red) !important;
  }

  .menu-item.is-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg) !important;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    position: static !important;
    display: none !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .primary-navigation .hg-native-menu .menu-item.is-open > .sub-menu {
    display: block !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    grid-template-columns: minmax(0, 1fr) 42px !important;
    min-height: 48px !important;
    border-bottom-color: #f2eeec !important;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    min-height: 48px !important;
    padding-left: 34px !important;
    color: #343434 !important;
    font-size: 15.5px !important;
    font-weight: 450 !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .submenu-toggle {
    width: 42px !important;
    min-width: 42px !important;
    min-height: 48px !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu a {
    min-height: 44px !important;
    padding-left: 48px !important;
    color: var(--hg-muted) !important;
    font-size: 14px !important;
  }

  .hg-live-search-panel {
    position: fixed !important;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 142px) !important;
    right: 10px !important;
    left: 10px !important;
    z-index: 1400 !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .menu-open .hg-live-search-panel {
    display: none !important;
  }
}

/* Mobile menu overlay guard. Keep this block last. */
@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden !important;
  }

  body.menu-open .site-header {
    position: relative !important;
    z-index: 2147483000 !important;
    overflow: visible !important;
    isolation: isolate !important;
  }

  body.menu-open .site-header::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483001 !important;
    display: block !important;
    background: rgba(17, 17, 17, .42) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.admin-bar.menu-open .site-header::after {
    top: 46px !important;
  }

  body.menu-open .header-nav-row {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    z-index: 2147483002 !important;
    display: block !important;
    width: min(86vw, 360px) !important;
    max-width: calc(100vw - 44px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    margin: 0 !important;
    padding: 72px 0 28px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid #eee5e1 !important;
    background: #fff !important;
    box-shadow: 24px 0 58px rgba(0, 0, 0, .18) !important;
    transform: translate3d(0, 0, 0) !important;
    pointer-events: auto !important;
  }

  body.admin-bar.menu-open .header-nav-row {
    top: 46px !important;
    bottom: 0 !important;
    height: calc(100vh - 46px) !important;
    height: calc(100dvh - 46px) !important;
    min-height: calc(100vh - 46px) !important;
    min-height: calc(100dvh - 46px) !important;
  }

  body.menu-open .header-nav-row::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    display: block !important;
    background: #fff !important;
  }

  body.menu-open .primary-navigation,
  body.menu-open .primary-navigation .hg-native-menu {
    position: relative !important;
    z-index: 1 !important;
    min-height: 100% !important;
    background: #fff !important;
  }

  body.menu-open .menu-toggle {
    position: fixed !important;
    z-index: 2147483003 !important;
  }

  body.menu-open .site-main,
  body.menu-open main,
  body.menu-open .hg-showcase,
  body.menu-open .hg-showcase-main,
  body.menu-open .hg-showcase-side {
    position: relative !important;
    z-index: 0 !important;
  }
}

/* Emergency mobile drawer stacking fix: drawer must sit above the hero. */
@media (max-width: 720px) {
  body.menu-open .site-header {
    position: sticky !important;
    z-index: 2147482800 !important;
    isolation: isolate !important;
  }

  body.menu-open .site-header::after {
    z-index: 2147482900 !important;
  }

  body.menu-open .header-nav-row {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    z-index: 2147483000 !important;
    display: block !important;
    width: min(86vw, 360px) !important;
    max-width: calc(100vw - 42px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    margin: 0 !important;
    padding: 84px 0 28px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid #eee5e1 !important;
    background: #fff !important;
    box-shadow: 24px 0 58px rgba(0, 0, 0, .18) !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  body.admin-bar.menu-open .header-nav-row {
    top: 46px !important;
    bottom: 0 !important;
    height: calc(100vh - 46px) !important;
    height: calc(100dvh - 46px) !important;
    min-height: calc(100vh - 46px) !important;
    min-height: calc(100dvh - 46px) !important;
  }

  body.menu-open .primary-navigation,
  body.menu-open .primary-navigation .hg-native-menu {
    position: relative !important;
    z-index: 2147483001 !important;
    min-height: 100% !important;
    background: #fff !important;
  }

  body.menu-open .menu-toggle {
    z-index: 2147483100 !important;
  }

  body.menu-open main,
  body.menu-open .site-main,
  body.menu-open .hg-showcase,
  body.menu-open .hg-showcase-main,
  body.menu-open .hg-showcase-side {
    z-index: 0 !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--hg-bg);
  color: var(--hg-ink);
  font-family: var(--hg-font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a:hover {
  color: var(--hg-red);
}

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

.hg-container {
  width: min(100% - 32px, var(--hg-container));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  clip: auto;
  background: var(--hg-red);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: visible;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--hg-line);
  backdrop-filter: blur(12px);
}

.site-header .hg-container {
  width: 100%;
  max-width: none;
  padding-inline: 32px;
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}

.header-spacer {
  display: none;
}

.site-branding {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.site-title,
.footer-brand {
  font-size: 30px;
  font-weight: 750;
  letter-spacing: 0;
}

.custom-logo {
  display: block;
  max-height: 58px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header-search form,
.woocommerce-product-search {
  display: flex;
  align-items: center;
  min-width: 260px;
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
  background: #fff;
  color: var(--hg-ink);
  font: inherit;
}

button,
.button,
.wp-element-button,
.button-primary,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--hg-red);
  border-radius: var(--hg-radius);
  background: var(--hg-red);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover,
.button:hover,
.wp-element-button:hover,
.button-primary:hover,
input[type="submit"]:hover {
  background: var(--hg-red-dark);
  border-color: var(--hg-red-dark);
  color: #fff;
}

.header-search button,
.woocommerce-product-search button {
  margin-left: 6px;
}

.header-search,
.hg-live-search {
  position: relative;
}

.hg-live-search {
  width: 100%;
}

.hg-live-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 160;
  width: min(430px, calc(100vw - 32px));
  max-height: min(68vh, 620px);
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--hg-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(24, 24, 24, 0.14);
}

.hg-live-search-panel[hidden] {
  display: none;
}

.hg-live-search-section + .hg-live-search-section {
  margin-top: 14px;
}

.hg-live-search-heading {
  margin: 0 0 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--hg-line);
  color: var(--hg-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hg-live-search-category,
.hg-live-product {
  display: flex;
  color: var(--hg-ink);
}

.hg-live-search-category {
  flex-direction: column;
  gap: 2px;
  padding: 9px 6px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.hg-live-search-category small,
.hg-live-product-copy small {
  color: var(--hg-muted);
  font-size: 12px;
  font-weight: 500;
}

.hg-live-search-category:hover,
.hg-live-product:hover {
  background: #fff7f7;
  color: var(--hg-red);
}

.hg-live-product {
  align-items: center;
  gap: 11px;
  padding: 8px 6px;
  border-radius: 12px;
}

.hg-live-product-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 1px solid var(--hg-line);
  border-radius: 8px;
  background: #fff;
}

.hg-live-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hg-live-product-image.is-empty::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid var(--hg-line);
  border-radius: 4px;
  background: var(--hg-surface);
}

.hg-live-product-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hg-live-product-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hg-live-search-all {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 12px;
  border-top: 1px solid var(--hg-line);
  color: var(--hg-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hg-live-search-all:hover {
  color: var(--hg-red);
}

.hg-live-search-empty {
  padding: 16px 8px;
  color: var(--hg-muted);
  font-size: 14px;
  text-align: center;
}

body.hg-minimal .dgwt-wcas-suggestions-wrapp,
body.hg-minimal .dgwt-wcas-details-wrapp {
  display: none !important;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
}

.cart-icon {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.cart-icon::before {
  content: "";
  display: block;
  width: 9px;
  height: 6px;
  margin: -7px auto 0;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--hg-red);
  color: #fff;
  font-size: 11px;
  line-height: 19px;
  text-align: center;
}

.hg-sticky-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 148px;
  min-height: 58px;
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(181, 21, 27, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--hg-ink);
  box-shadow: 0 18px 48px rgba(24, 24, 24, 0.14);
  backdrop-filter: blur(14px);
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hg-sticky-cart:hover {
  color: var(--hg-red);
  border-color: rgba(181, 21, 27, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(24, 24, 24, 0.18);
}

.hg-sticky-cart-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  background: #fff;
}

.hg-sticky-cart-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 13px;
  width: 15px;
  height: 13px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.hg-sticky-cart-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  width: 9px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.hg-sticky-cart-copy {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.hg-sticky-cart-label {
  font-size: 14px;
  font-weight: 800;
}

.hg-sticky-cart-hint {
  color: var(--hg-muted);
  font-size: 11px;
  font-weight: 650;
}

.hg-sticky-cart .cart-count {
  top: -4px;
  right: -4px;
}

.hg-sticky-cart.is-pulsing {
  animation: hg-cart-pulse 640ms ease;
}

.hg-sticky-cart.is-pulsing .hg-sticky-cart-icon {
  color: #fff;
  border-color: var(--hg-red);
  background: var(--hg-red);
}

.hg-cart-toast {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 121;
  display: grid;
  gap: 8px;
  min-width: 260px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(181, 21, 27, 0.2);
  border-left: 4px solid var(--hg-red);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(24, 24, 24, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hg-cart-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hg-cart-toast-title {
  color: var(--hg-ink);
  font-size: 15px;
  font-weight: 820;
}

.hg-cart-toast-link {
  color: var(--hg-red);
  font-size: 13px;
  font-weight: 800;
}

.hg-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(18, 18, 18, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hg-cart-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hg-cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 131;
  width: min(420px, 100vw);
  pointer-events: none;
  overflow: hidden;
}

.hg-cart-drawer-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--hg-line);
  box-shadow: -22px 0 56px rgba(24, 24, 24, 0.14);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.hg-cart-drawer.is-open {
  pointer-events: auto;
}

.hg-cart-drawer.is-open .hg-cart-drawer-panel {
  transform: translateX(0);
}

body.hg-cart-drawer-open {
  overflow: hidden;
}

.hg-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--hg-line);
}

.hg-cart-drawer-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.hg-cart-drawer-close {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hg-ink);
  font-size: 22px;
  line-height: 1;
}

.hg-cart-drawer-close:hover {
  border-color: var(--hg-red);
  background: #fff;
  color: var(--hg-red);
}

.hg-cart-drawer-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 18px 22px 22px;
}

.hg-cart-drawer-items {
  display: grid;
  gap: 0;
  overflow: auto;
}

.hg-cart-drawer-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 28px 14px 0;
  border-bottom: 1px solid var(--hg-line);
}

.hg-cart-drawer-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--hg-line);
  background: #fff;
}

.hg-cart-drawer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hg-cart-drawer-item-main {
  display: grid;
  gap: 6px;
  align-content: start;
}

.hg-cart-drawer-item-title {
  color: var(--hg-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.hg-cart-drawer-item-title:hover {
  color: var(--hg-red);
}

.hg-cart-drawer-item-meta {
  color: var(--hg-muted);
  font-size: 12px;
  font-weight: 650;
}

.hg-cart-drawer-item-total {
  color: var(--hg-red);
  font-size: 14px;
}

.hg-cart-drawer-remove {
  position: absolute;
  top: 12px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  color: var(--hg-red);
  font-size: 17px;
  line-height: 1;
}

.hg-cart-drawer-remove:hover {
  border-color: var(--hg-red);
  background: var(--hg-red);
  color: #fff;
}

.hg-cart-drawer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hg-line);
  font-size: 16px;
  font-weight: 850;
}

.hg-cart-drawer-summary strong {
  color: var(--hg-red);
}

.hg-cart-drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hg-cart-drawer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--hg-red);
  border-radius: 999px;
  background: var(--hg-red);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.hg-cart-drawer-button:hover {
  background: var(--hg-red-dark);
  border-color: var(--hg-red-dark);
  color: #fff;
}

.hg-cart-drawer-button.is-light {
  background: #fff;
  color: var(--hg-red);
}

.hg-cart-drawer-button.is-light:hover {
  background: var(--hg-red);
  color: #fff;
}

.hg-cart-drawer-empty {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 220px;
  text-align: center;
}

.hg-cart-drawer-empty p {
  margin: 0;
  color: var(--hg-muted);
  font-weight: 700;
}

.add_to_cart_button.is-adding,
.single_add_to_cart_button.is-adding {
  opacity: 0.72;
}

.add_to_cart_button.added {
  border-color: var(--hg-red);
  background: var(--hg-red);
  color: #fff;
  opacity: 1;
}

.added_to_cart.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 10px 16px;
  border: 1px solid var(--hg-red);
  border-radius: 999px;
  color: var(--hg-red);
  font-size: 13px;
  font-weight: 800;
}

.added_to_cart.wc-forward:hover {
  background: var(--hg-red);
  color: #fff;
}

body.woocommerce-cart .hg-cart-toast,
body.woocommerce-checkout .hg-cart-toast {
  display: none;
}

@keyframes hg-cart-pulse {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.07);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 720px) {
  .hg-sticky-cart {
    right: 14px;
    bottom: 14px;
    min-width: 124px;
    min-height: 52px;
    padding: 8px 14px 8px 10px;
  }

  .hg-sticky-cart-icon {
    width: 34px;
    height: 34px;
  }

  .hg-sticky-cart-hint {
    display: none;
  }

  .hg-cart-toast {
    right: 14px;
    bottom: 78px;
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .hg-cart-drawer {
    width: min(360px, 100vw);
  }

  .hg-cart-drawer-header {
    padding: 18px 16px 14px;
  }

  .hg-cart-drawer-content {
    padding: 14px 16px 18px;
  }

  .hg-cart-drawer-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .hg-cart-drawer-image {
    width: 62px;
    height: 62px;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-color: var(--hg-line);
  border-radius: 999px;
  background: #fff;
  gap: 4px;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--hg-ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 46px;
  padding-inline: 32px;
  border-top: 1px solid var(--hg-line);
  overflow: visible;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 46px;
  overflow: visible;
}

.primary-navigation .hg-native-menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 36px);
  width: 100%;
  max-width: none;
  height: 46px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.primary-navigation .hg-native-menu > .menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  height: 46px;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.primary-navigation .hg-native-menu > .menu-item > a {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0;
  color: var(--hg-ink);
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.primary-navigation .hg-native-menu > .menu-item-has-children > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu-toggle {
  display: none;
}

.submenu-toggle-icon {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  border: 0;
  transform: none;
  transition: transform 160ms ease;
}

.submenu-toggle-icon::before,
.submenu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.submenu-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.menu-item.is-open > .submenu-toggle .submenu-toggle-icon {
  transform: none;
}

.menu-item.is-open > .submenu-toggle .submenu-toggle-icon::after {
  opacity: 0;
}

.primary-navigation .hg-native-menu .sub-menu {
  position: absolute;
  top: 46px;
  left: 50%;
  z-index: 999;
  display: none;
  width: 260px;
  max-height: 380px;
  margin: 0;
  padding: 4px 0;
  overflow-y: auto;
  border: 1px solid var(--hg-line);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  list-style: none;
  transform: translateX(-50%);
}

.primary-navigation .hg-native-menu > .menu-item:hover > .sub-menu,
.primary-navigation .hg-native-menu > .menu-item:focus-within > .sub-menu {
  display: block;
}

.primary-navigation .hg-native-menu .sub-menu .sub-menu {
  display: none;
}

.primary-navigation .hg-native-menu .sub-menu .menu-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--hg-line);
}

.primary-navigation .hg-native-menu .sub-menu .menu-item:last-child {
  border-bottom: 0;
}

.primary-navigation .hg-native-menu .sub-menu a {
  display: block;
  width: 100%;
  min-height: 36px;
  padding: 10px 14px;
  background: #fff;
  color: var(--hg-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.primary-navigation .hg-native-menu .sub-menu a:hover {
  background: #fafafa;
  color: var(--hg-red);
}

.site-main {
  min-height: 60vh;
}

.hg-showcase {
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
  padding-bottom: 24px;
  background: #fff;
  overflow: hidden;
}

.hg-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.95fr);
  gap: 8px;
  width: 100%;
  height: calc(100vh - 205px);
  height: calc(100svh - 205px);
  min-height: 520px;
  max-height: none;
}

.hg-showcase-main,
.hg-showcase-side,
.hg-showcase-panel {
  min-width: 0;
}

.hg-showcase-main {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #f4f1ee;
}

.hg-showcase-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.hg-showcase-panel {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background: #ede8e3;
  color: #fff;
}

.hg-showcase-panel.is-large {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.hg-showcase-panel.is-large.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hg-showcase-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hg-showcase-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(181, 21, 27, 0.42) 0%, rgba(24, 24, 24, 0.16) 45%, rgba(24, 24, 24, 0.04) 100%);
}

.hg-showcase-panel.is-small .hg-showcase-shade {
  background: linear-gradient(90deg, rgba(24, 24, 24, 0.42), rgba(24, 24, 24, 0.08));
}

.hg-showcase-copy {
  position: absolute;
  left: clamp(24px, 3.4vw, 56px);
  bottom: clamp(24px, 3.4vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hg-showcase-panel.is-small .hg-showcase-copy {
  left: 28px;
  bottom: 28px;
  max-width: 360px;
}

.hg-showcase-label {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hg-showcase-title {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 760;
  line-height: 1;
}

.hg-showcase-panel.is-small .hg-showcase-title {
  font-size: clamp(23px, 2.1vw, 34px);
}

.hg-showcase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--hg-ink);
  font-size: 12px;
  font-weight: 800;
}

.hg-showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hg-ink);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.hg-showcase-arrow.is-prev {
  left: 22px;
}

.hg-showcase-arrow.is-next {
  right: 22px;
}

.hg-benefits {
  padding: 24px 0 8px;
  background: #fff;
}

.hg-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hg-line);
  border-bottom: 1px solid var(--hg-line);
}

.hg-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 118px;
  padding: 24px 18px;
  border: 0;
  background: transparent;
  text-align: center;
}

.hg-benefit-card + .hg-benefit-card {
  border-left: 1px solid var(--hg-line);
}

.hg-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  color: var(--hg-red);
  background: transparent;
  flex: 0 0 auto;
}

.hg-benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hg-benefit-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
}

.hg-benefit-copy strong {
  color: var(--hg-ink);
  font-size: 16px;
  font-weight: 620;
}

.hg-benefit-copy span {
  color: var(--hg-muted);
  font-size: 13px;
}

.hg-home-section {
  padding: 44px 0 10px;
  background: #fff;
}

.hg-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.hg-section-title {
  margin: 0;
  color: var(--hg-ink);
  font-size: clamp(24px, 1.9vw, 32px);
  font-weight: 620;
  line-height: 1.1;
  text-transform: none;
}

.hg-home-section > .hg-container > .hg-section-title {
  margin-bottom: 28px;
  text-align: center;
}

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

.hg-section-link {
  color: var(--hg-muted);
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid var(--hg-line);
}

.hg-section-link:hover {
  color: var(--hg-red);
  border-bottom-color: var(--hg-red);
}

.hg-scroll-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.hg-scroll-control {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hg-ink);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.hg-scroll-control:hover {
  border-color: var(--hg-red);
  background: #fff;
  color: var(--hg-red);
}

.hg-category-scroll-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.hg-category-scroll-shell.is-dragging {
  cursor: grabbing;
}

.hg-category-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 0 18px;
}

.hg-category-card,
.hg-product-card {
  display: block;
  min-width: 0;
}

.hg-category-card {
  flex: 0 0 clamp(210px, 18vw, 295px);
  -webkit-user-drag: none;
  user-select: none;
}

.hg-category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--hg-line);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.hg-category-card span {
  display: block;
  padding: 14px 0 10px;
  border-bottom: 1px solid var(--hg-line);
  font-weight: 550;
}

.hg-product-card {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hg-line);
}

.hg-product-image {
  position: relative;
  display: block;
  border: 1px solid var(--hg-line);
  background: #fff;
}

.hg-product-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
}

.hg-product-card h3 {
  min-height: 46px;
  margin: 13px 0 8px;
  font-size: 15px;
  font-weight: 650;
}

.hg-product-price {
  margin-bottom: 12px;
  color: var(--hg-red);
  font-weight: 800;
}

.content-layout,
.page-layout,
.home-content {
  padding: 44px 0;
}

body.home .home-content,
body.front-page .home-content,
body.page-id-95 .home-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.home .home-content > .hg-container,
body.front-page .home-content > .hg-container,
body.page-id-95 .home-content > .hg-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.home .home-content .elementor,
body.front-page .home-content .elementor,
body.page-id-95 .home-content .elementor {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.home .home-content .elementor-section.elementor-section-boxed > .elementor-container,
body.front-page .home-content .elementor-section.elementor-section-boxed > .elementor-container,
body.page-id-95 .home-content .elementor-section.elementor-section-boxed > .elementor-container,
body.home .home-content .elementor-container,
body.front-page .home-content .elementor-container,
body.page-id-95 .home-content .elementor-container,
body.home .home-content .e-con,
body.front-page .home-content .e-con,
body.page-id-95 .home-content .e-con {
  width: 100%;
  max-width: none !important;
}

body.home .home-content .elementor > :first-child,
body.front-page .home-content .elementor > :first-child,
body.page-id-95 .home-content .elementor > :first-child {
  width: min(100vw - 32px, 1760px);
  max-width: 1760px !important;
  margin: 0 auto !important;
  transform: none !important;
}

body.home .home-content .elementor > :first-child .elementor-widget-container,
body.front-page .home-content .elementor > :first-child .elementor-widget-container,
body.page-id-95 .home-content .elementor > :first-child .elementor-widget-container,
body.home .home-content .elementor > :first-child .elementor-image-carousel-wrapper,
body.front-page .home-content .elementor > :first-child .elementor-image-carousel-wrapper,
body.page-id-95 .home-content .elementor > :first-child .elementor-image-carousel-wrapper,
body.home .home-content .elementor > :first-child .swiper,
body.front-page .home-content .elementor > :first-child .swiper,
body.page-id-95 .home-content .elementor > :first-child .swiper,
body.home .home-content .elementor > :first-child .swiper-container,
body.front-page .home-content .elementor > :first-child .swiper-container,
body.page-id-95 .home-content .elementor > :first-child .swiper-container {
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(520px, 42vw, 760px);
}

body.home .home-content .elementor > :first-child img,
body.front-page .home-content .elementor > :first-child img,
body.page-id-95 .home-content .elementor > :first-child img {
  display: block;
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 42vw, 760px);
  object-fit: cover;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
}

h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.page-content,
.content-card {
  max-width: 960px;
}

.page-header {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hg-line);
}

.page-header h1 {
  font-size: clamp(30px, 4vw, 52px);
}

/* Elementor icon size limit — prevents huge SVG icons on all pages */
.elementor-icon,
.elementor-icon-box-icon .elementor-icon,
.elementor-widget-icon .elementor-icon {
  font-size: clamp(32px, 4vw, 52px) !important;
  width: auto !important;
  height: auto !important;
}

.elementor-icon svg,
.elementor-icon-box-icon svg,
.elementor-widget-icon svg {
  width: clamp(32px, 4vw, 52px) !important;
  height: clamp(32px, 4vw, 52px) !important;
  max-width: 52px !important;
  max-height: 52px !important;
}

.elementor-icon i {
  font-size: inherit !important;
}

@media (max-width: 720px) {
  .elementor-icon,
  .elementor-icon-box-icon .elementor-icon,
  .elementor-widget-icon .elementor-icon {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  .elementor-icon svg,
  .elementor-icon-box-icon svg,
  .elementor-widget-icon svg {
    width: clamp(28px, 7vw, 40px) !important;
    height: clamp(28px, 7vw, 40px) !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }
}

.entry-content > *:first-child {
  margin-top: 0;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--hg-line);
  background: var(--hg-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 44px 0;
}

.footer-copy {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--hg-muted);
}

.footer-navigation ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-navigation a {
  color: var(--hg-muted);
  font-size: 14px;
}

.footer-bottom {
  padding: 16px 0 24px;
  border-top: 1px solid var(--hg-line);
  color: var(--hg-muted);
  font-size: 13px;
}

.hg-shop-main {
  padding: 34px 0 56px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  float: none;
  width: auto;
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--hg-line);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 44px;
  padding: 0;
  margin: 12px 0 8px;
  color: var(--hg-ink);
  font-size: 15px;
  font-weight: 650;
}

.woocommerce ul.products li.product .price {
  color: var(--hg-red);
  font-size: 16px;
  font-weight: 800;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 12px;
}

.hg-stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hg-line);
  color: var(--hg-muted);
  font-size: 12px;
  font-weight: 800;
}

.hg-stock-badge.is-in-stock {
  color: var(--hg-green);
}

.hg-stock-badge.is-expected {
  border-color: rgba(181, 21, 27, 0.24);
  background: #fffafa;
  color: var(--hg-red);
}

.hg-stock-badge.is-out-of-stock {
  color: var(--hg-red);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.single-product .hg-shop-main {
  padding-top: 34px;
}

.single-product .woocommerce div.product {
  grid-template-columns: minmax(300px, 0.62fr) minmax(390px, 0.9fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.single-product .woocommerce div.product div.images {
  justify-self: center;
  width: 100%;
  max-width: 480px;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  margin: 0;
  border: 1px solid var(--hg-line);
  background: #fff;
}

.single-product .woocommerce div.product div.images img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image {
  display: flex;
  justify-content: center;
}

.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: auto !important;
  max-width: min(100%, 460px) !important;
  max-height: 410px;
  margin-inline: auto;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin: 12px 0 0;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs li {
  width: 54px !important;
  margin: 0 !important;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img {
  max-height: 54px;
  padding: 4px;
  border: 1px solid var(--hg-line);
  opacity: 0.72;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.single-product .woocommerce div.product div.images .flex-control-thumbs img:hover {
  opacity: 1;
}

.single-product .woocommerce div.product div.summary {
  width: 100%;
  max-width: 620px;
  padding-top: 8px;
}

.woocommerce div.product .product_title {
  font-size: clamp(30px, 4vw, 52px);
}

.single-product .woocommerce div.product .product_title {
  margin: 0 0 18px;
  color: var(--hg-ink);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 720;
  line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--hg-red);
  font-size: 26px;
  font-weight: 800;
}

.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
  margin-bottom: 16px;
  font-size: 24px;
}

.woocommerce div.product .stock {
  font-weight: 800;
}

.single-product .woocommerce div.product .stock {
  color: var(--hg-green);
  font-size: 14px;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--hg-line);
  border-bottom: 1px solid var(--hg-line);
}

.woocommerce div.product form.cart .button {
  flex: 1;
}

.single-product .woocommerce div.product form.cart {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 14px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--hg-line);
  border-bottom: 1px solid var(--hg-line);
}

.single-product .woocommerce div.product form.cart div.quantity {
  margin: 0;
}

.single-product .woocommerce div.product form.cart .qty {
  width: 76px;
  min-height: 46px;
  border-radius: 999px;
  text-align: center;
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
.single-product .woocommerce div.product form.cart .button,
.single-product .woocommerce div.product form.cart button.button {
  width: 100%;
  min-height: 46px;
  border-color: var(--hg-red) !important;
  border-radius: 999px !important;
  background: var(--hg-red) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button:hover,
.single-product .woocommerce div.product form.cart .button:hover,
.single-product .woocommerce div.product form.cart button.button:hover {
  border-color: var(--hg-red-dark) !important;
  background: var(--hg-red-dark) !important;
  color: #fff !important;
}

.single-product .woocommerce div.product form.cart > :not(.quantity):not(.single_add_to_cart_button):not(.button) {
  grid-column: 1 / -1;
  color: var(--hg-muted);
  font-size: 12px;
  line-height: 1.45;
}

.single-product .product_meta {
  margin-top: 18px;
  color: var(--hg-muted);
  font-size: 13px;
  line-height: 1.7;
}

.single-product .product_meta a {
  color: var(--hg-ink);
}

.single-product .woocommerce-tabs {
  display: none;
}

.hg-single-description {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hg-line);
}

.hg-single-description h2 {
  margin: 0 0 14px;
  color: var(--hg-ink);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.2;
}

.hg-single-description-content {
  color: #2c2c2c;
  font-size: 15px;
  line-height: 1.78;
}

.hg-single-description-content p {
  margin: 0 0 14px;
}

.hg-single-description-content ul,
.hg-single-description-content ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.single-product .woocommerce div.product .related.products,
.single-product .woocommerce div.product .upsells.products {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1180px;
  margin: 58px auto 0;
  text-align: center;
}

.single-product .woocommerce div.product .related.products > h2,
.single-product .woocommerce div.product .upsells.products > h2 {
  margin: 0 0 28px;
  color: var(--hg-ink);
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 650;
  line-height: 1.15;
}

.single-product .woocommerce div.product .related.products ul.products,
.single-product .woocommerce div.product .upsells.products ul.products {
  justify-content: center;
  text-align: left;
}

body.single-product .hg-shop-main > .hg-container {
  width: min(100% - 64px, 1240px) !important;
  max-width: 1240px !important;
}

body.single-product .woocommerce div.product {
  display: grid !important;
  grid-template-columns: 460px minmax(0, 1fr) !important;
  gap: 72px !important;
  align-items: start !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
}

body.single-product .woocommerce div.product div.images,
body.single-product.woocommerce div.product div.images,
body.single-product .woocommerce div.product div.images.woocommerce-product-gallery {
  float: none !important;
  width: 460px !important;
  max-width: 460px !important;
  min-width: 0 !important;
  margin: 0 !important;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  width: 460px !important;
  max-width: 460px !important;
  margin: 0 !important;
}

body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image,
body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 460px !important;
  max-width: 460px !important;
  height: 390px !important;
}

body.single-product .woocommerce div.product div.images img,
body.single-product .woocommerce div.product div.images img.wp-post-image {
  width: auto !important;
  height: auto !important;
  max-width: 420px !important;
  max-height: 360px !important;
  margin: auto !important;
  object-fit: contain !important;
}

body.single-product .woocommerce div.product div.summary {
  width: auto !important;
  max-width: 620px !important;
  margin: 0 !important;
}

.woocommerce table.shop_table {
  border-color: var(--hg-line);
  border-radius: var(--hg-radius);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-top-color: var(--hg-line);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 24px;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--hg-line);
  border-top: 3px solid var(--hg-red);
  border-radius: 0;
  background: #fffafa;
  color: var(--hg-ink);
  box-shadow: 0 18px 38px rgba(24, 24, 24, 0.06);
  font-weight: 700;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--hg-red);
}

@media (max-width: 1080px) {
  .site-header .hg-container {
    width: 100%;
    max-width: 100vw;
    padding-inline: 18px;
  }

  .header-main {
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 10px;
  }

  .site-branding {
    position: static;
    min-width: 0;
    transform: none;
    text-align: left;
  }

  .site-branding .custom-logo {
    max-width: min(180px, 42vw);
  }

  .header-actions {
    display: none;
    margin-left: 0;
    width: 100%;
  }

  .primary-navigation {
    display: none;
  }

  .menu-open .primary-navigation {
    display: block;
  }

  .menu-open .primary-navigation::before {
    content: "Κατηγορίες";
    display: block;
    width: min(100%, 520px);
    margin: 4px auto 8px;
    color: var(--hg-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-open .header-actions {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    gap: 8px;
    width: auto;
    max-width: 100%;
    overflow: visible;
  }

  .menu-open .header-search {
    flex: 1 1 auto;
    min-width: 0;
    position: static;
  }

  .menu-open .header-search form,
  .menu-open .woocommerce-product-search {
    min-width: 0;
    width: 100%;
  }

  .menu-open .header-search input[type="search"] {
    min-width: 0;
  }

  .menu-open .header-search button {
    flex: 0 0 auto;
    padding-inline: 12px;
  }

  .menu-open .cart-link {
    flex: 0 0 42px;
  }

  .menu-open .hg-live-search {
    position: static;
  }

  .menu-open .hg-live-search-panel {
    position: fixed;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 108px);
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 132px);
    padding: 13px;
    border-radius: 16px;
  }

  .header-nav-row {
    display: block;
    min-height: 0;
    padding-bottom: 14px;
  }

  .primary-navigation .hg-native-menu {
    display: block;
    height: auto;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--hg-line);
    border-radius: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu > .menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 46px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--hg-line);
    border-radius: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu > .menu-item:last-child {
    margin-bottom: 0;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open {
    border-left: 2px solid var(--hg-red);
    background: #fffafa;
  }

  .primary-navigation .hg-native-menu > .menu-item > a {
    height: auto;
    min-height: 46px;
    padding: 13px 8px 13px 2px;
    font-size: 13px;
    line-height: 1.25;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a {
    padding-left: 10px;
    color: var(--hg-red);
    font-weight: 760;
  }

  .primary-navigation .hg-native-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #fff;
    color: var(--hg-ink);
  }

  .menu-item.is-open > .submenu-toggle {
    border-color: rgba(181, 21, 27, 0.18);
    background: #fff7f7;
    color: var(--hg-red);
  }

  .submenu-toggle:hover {
    border-color: var(--hg-red);
    background: #fff;
    color: var(--hg-red);
  }

  .primary-navigation .hg-native-menu .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: none !important;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 4px 0 8px 12px;
    overflow: visible;
    border: 0;
    border-top: 1px solid rgba(181, 21, 27, 0.1);
    background: #fff;
    box-shadow: none;
    transform: none;
  }

  .primary-navigation .hg-native-menu .menu-item.is-open > .sub-menu {
    display: block !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    align-items: center;
    min-height: 40px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--hg-line);
    border-radius: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open {
    background: #fffafa;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item:last-child {
    border-bottom: 0;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    min-height: 40px;
    padding: 10px 8px 10px 18px;
    color: var(--hg-ink);
    font-size: 13px;
    font-weight: 620;
    line-height: 1.25;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red);
    font-weight: 780;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu {
    margin: 0 0 4px 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(181, 21, 27, 0.18);
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu a {
    padding-left: 18px;
    color: var(--hg-muted);
    font-size: 12.5px;
    font-weight: 600;
  }

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

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

  body.single-product .hg-shop-main > .hg-container {
    width: min(100% - 28px, 680px) !important;
  }

  body.single-product .woocommerce div.product {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    max-width: 680px !important;
  }

  body.single-product .woocommerce div.product div.images,
  body.single-product.woocommerce div.product div.images,
  body.single-product .woocommerce div.product div.images.woocommerce-product-gallery,
  body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: 440px !important;
    margin-inline: auto !important;
  }

  body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image,
  body.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image a {
    width: 100% !important;
    max-width: 440px !important;
    height: 350px !important;
  }

  body.single-product .woocommerce div.product div.images img,
  body.single-product .woocommerce div.product div.images img.wp-post-image {
    max-width: 390px !important;
    max-height: 320px !important;
  }

  .hg-showcase-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .hg-showcase-main {
    height: 52vh;
    min-height: 360px;
    max-height: 480px;
  }

  .hg-showcase-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: 220px;
  }

  .hg-showcase-panel.is-small {
    min-height: 220px;
  }

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

  .hg-benefits-grid {
    gap: 12px;
    border: 0;
  }

  .hg-benefit-card {
    min-height: 88px;
    padding: 16px 12px;
    border-top: 1px solid var(--hg-line);
    border-bottom: 1px solid var(--hg-line);
  }

  .hg-benefit-card + .hg-benefit-card {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .hg-container {
    width: min(100% - 24px, var(--hg-container));
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 0 !important;
    padding: 0 0 12px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
    padding-top: 148px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link::before {
    height: 138px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img {
    height: 138px !important;
    max-height: 138px !important;
    padding: 10px !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 8px 0 5px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price {
    font-size: 12px !important;
    min-height: 0 !important;
    margin: 0 0 6px !important;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button {
    min-height: 28px !important;
    padding: 4px 6px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border-radius: 4px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hg-showcase-main {
    height: 54vh;
    min-height: 340px;
    max-height: 460px;
  }

  .hg-showcase-side {
    grid-template-columns: 1fr;
  }

  .hg-showcase-panel.is-small {
    min-height: 220px;
  }

  .hg-showcase-copy,
  .hg-showcase-panel.is-small .hg-showcase-copy {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .hg-showcase-title {
    font-size: clamp(38px, 13vw, 62px);
  }

  .hg-showcase-arrow {
    width: 44px;
    height: 44px;
    min-height: 44px;
    font-size: 34px;
  }

  .hg-showcase-arrow.is-prev {
    left: 12px;
  }

  .hg-showcase-arrow.is-next {
    right: 12px;
  }

  .hg-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hg-product-card {
    padding-bottom: 10px;
  }

  .hg-product-card h3 {
    min-height: 0;
    margin: 8px 0 4px;
    font-size: 12px;
  }

  .hg-product-price {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .hg-product-image img {
    padding: 8px;
  }

  .hg-product-card .add_to_cart_button {
    width: 100%;
    min-height: 28px;
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
  }

  .hg-section-heading {
    align-items: flex-end;
  }

  .hg-category-card {
    flex-basis: 230px;
  }

  .hg-category-card img {
    border-radius: 50%;
  }

  .hg-benefits-grid {
    grid-template-columns: 1fr;
  }

  .hg-benefit-card {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .woocommerce ul.products,
  .hg-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
    padding-top: 118px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link::before {
    height: 108px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img {
    height: 108px !important;
    max-height: 108px !important;
    padding: 8px !important;
  }
}

/* Legal / page content styles */
.entry-content {
  overflow-wrap: break-word;
  word-break: break-word;
}

.entry-content p {
  margin: 0 0 1em;
  font-size: 15px;
  line-height: 1.75;
  color: var(--hg-ink);
}

.entry-content h2 {
  margin: 2em 0 0.5em;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hg-ink);
}

.entry-content h3 {
  margin: 1.6em 0 0.4em;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--hg-ink);
}

.entry-content h4 {
  margin: 1.3em 0 0.3em;
  font-size: 15px;
  font-weight: 700;
  color: var(--hg-ink);
}

.entry-content a {
  color: var(--hg-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  opacity: 0.8;
}

.entry-content strong,
.entry-content b {
  font-weight: 700;
}

.entry-content hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid var(--hg-line);
}

.entry-content ul li,
.entry-content ol li {
  margin-bottom: 0.4em;
  font-size: 15px;
  line-height: 1.65;
}

.entry-content table,
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.entry-content .wp-block-table,
.entry-content figure.wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  max-width: 100%;
}

.entry-content td,
.entry-content th {
  padding: 8px 10px;
  border: 1px solid var(--hg-line);
  vertical-align: top;
  word-break: break-word;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}

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

@media (max-width: 720px) {
  .entry-content table,
  .entry-content .wp-block-table table {
    font-size: 13px;
  }

  .entry-content td,
  .entry-content th {
    padding: 6px 8px;
  }
}

/* Final single product layout */
body.single-product .hg-shop-main {
  padding: 42px 0 82px !important;
}

body.single-product .hg-shop-main > .hg-container {
  width: min(100% - 56px, 1240px) !important;
  max-width: 1240px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

body.single-product .hg-single-product {
  width: 100% !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
}

body.single-product .hg-single-product-layout {
  display: grid !important;
  grid-template-columns: 430px minmax(0, 620px) !important;
  gap: clamp(48px, 6vw, 88px) !important;
  align-items: start !important;
  justify-content: center !important;
  width: 100% !important;
}

body.single-product .hg-single-product-media {
  display: flex !important;
  justify-content: center !important;
  min-width: 0 !important;
}

body.single-product .hg-single-product-media div.images,
body.single-product .hg-single-product-media .woocommerce-product-gallery {
  float: none !important;
  width: 430px !important;
  max-width: 430px !important;
  margin: 0 !important;
}

body.single-product .hg-single-product-media .woocommerce-product-gallery__wrapper {
  display: block !important;
  width: 430px !important;
  max-width: 430px !important;
  margin: 0 !important;
  border: 1px solid var(--hg-line) !important;
  background: #fff !important;
}

body.single-product .hg-single-product-media .woocommerce-product-gallery__image,
body.single-product .hg-single-product-media .woocommerce-product-gallery__image a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 430px !important;
  max-width: 430px !important;
  min-height: 430px !important;
  height: 430px !important;
}

body.single-product .hg-single-product-media .woocommerce-product-gallery__image img,
body.single-product .hg-single-product-media img.wp-post-image {
  width: auto !important;
  height: auto !important;
  max-width: 390px !important;
  max-height: 390px !important;
  margin: auto !important;
  object-fit: contain !important;
}

body.single-product .hg-single-product-media .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: 430px !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
}

body.single-product .hg-single-product-media .flex-control-thumbs li {
  width: 54px !important;
  margin: 0 !important;
}

body.single-product .hg-single-product-media .flex-control-thumbs img {
  width: 54px !important;
  height: 54px !important;
  padding: 4px !important;
  border: 1px solid var(--hg-line) !important;
  object-fit: contain !important;
  opacity: 0.68 !important;
}

body.single-product .hg-single-product-media .flex-control-thumbs img.flex-active,
body.single-product .hg-single-product-media .flex-control-thumbs img:hover {
  opacity: 1 !important;
}

body.single-product .hg-single-product-summary {
  float: none !important;
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .hg-single-product-summary .product_title {
  margin: 0 0 18px !important;
  color: var(--hg-ink) !important;
  font-size: clamp(28px, 2.4vw, 40px) !important;
  font-weight: 720 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

body.single-product .hg-single-product-summary p.price,
body.single-product .hg-single-product-summary span.price {
  margin: 0 0 18px !important;
  color: var(--hg-red) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

body.single-product .hg-single-product-summary .stock {
  margin: 0 0 22px !important;
  color: var(--hg-green) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body.single-product .hg-single-product-summary .stock.out-of-stock {
  color: var(--hg-red) !important;
}

body.single-product .hg-single-product-summary form.cart {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  margin: 0 0 24px !important;
  padding: 18px 0 !important;
  border-top: 1px solid var(--hg-line) !important;
  border-bottom: 1px solid var(--hg-line) !important;
}

body.single-product .hg-single-product-summary form.cart .quantity {
  margin: 0 !important;
}

body.single-product .hg-single-product-summary form.cart .qty {
  width: 76px !important;
  min-height: 44px !important;
  border: 1px solid var(--hg-line) !important;
  border-radius: 999px !important;
  text-align: center !important;
}

body.single-product .hg-single-product-summary form.cart .single_add_to_cart_button,
body.single-product .hg-single-product-summary form.cart button.button,
body.single-product .hg-single-product-summary form.cart button.button.alt,
body.single-product.woocommerce div.product form.cart .button.alt,
body.single-product .woocommerce button.button.alt.single_add_to_cart_button {
  width: 100% !important;
  min-height: 44px !important;
  margin: 0 !important;
  border: 1px solid var(--hg-red) !important;
  border-radius: 999px !important;
  background: var(--hg-red) !important;
  background-color: var(--hg-red) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: none !important;
  box-shadow: none !important;
}

body.single-product .hg-single-product-summary form.cart .single_add_to_cart_button:hover,
body.single-product .hg-single-product-summary form.cart button.button:hover,
body.single-product .hg-single-product-summary form.cart button.button.alt:hover {
  border-color: var(--hg-red-dark) !important;
  background: var(--hg-red-dark) !important;
  background-color: var(--hg-red-dark) !important;
  color: #fff !important;
}

body.single-product .hg-single-product-summary form.cart > :not(.quantity):not(.single_add_to_cart_button):not(.button) {
  grid-column: 1 / -1 !important;
  color: var(--hg-muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.single-product .hg-single-description {
  margin-top: 24px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--hg-line) !important;
}

body.single-product .hg-single-description h2 {
  margin: 0 0 14px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

body.single-product .hg-single-description-content {
  color: #242424 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

body.single-product .product_meta {
  margin-top: 20px !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--hg-line) !important;
  color: var(--hg-muted) !important;
  font-size: 12px !important;
}

body.single-product .woocommerce-tabs {
  display: none !important;
}

body.single-product .hg-single-product-after {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 72px auto 0 !important;
  text-align: center !important;
}

body.single-product .hg-single-product-after .related.products,
body.single-product .hg-single-product-after .upsells.products {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

body.single-product .hg-single-product-after .related.products > h2,
body.single-product .hg-single-product-after .upsells.products > h2 {
  margin: 0 0 26px !important;
  font-size: clamp(24px, 2vw, 32px) !important;
  font-weight: 650 !important;
  line-height: 1.15 !important;
}

body.single-product .hg-single-product-after ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  text-align: left !important;
}

@media (max-width: 1080px) {
  body.single-product .hg-shop-main > .hg-container {
    width: min(100% - 28px, 680px) !important;
  }

  body.single-product .hg-single-product-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  body.single-product .hg-single-product-media div.images,
  body.single-product .hg-single-product-media .woocommerce-product-gallery,
  body.single-product .hg-single-product-media .woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: 430px !important;
    margin-inline: auto !important;
  }

  body.single-product .hg-single-product-media .woocommerce-product-gallery__image,
  body.single-product .hg-single-product-media .woocommerce-product-gallery__image a {
    width: 100% !important;
    max-width: 430px !important;
    min-height: 390px !important;
    height: 390px !important;
  }

  body.single-product .hg-single-product-media .woocommerce-product-gallery__image img,
  body.single-product .hg-single-product-media img.wp-post-image {
    max-width: 360px !important;
    max-height: 360px !important;
  }

  body.single-product .hg-single-product-summary {
    max-width: 680px !important;
  }

  body.single-product .hg-single-product-after ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  body.single-product .hg-shop-main {
    padding-top: 28px !important;
  }

  body.single-product .hg-single-product-summary form.cart {
    grid-template-columns: 1fr !important;
  }

  body.single-product .hg-single-product-summary form.cart .qty {
    width: 100% !important;
  }

  body.single-product .hg-single-product-after ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Single product hard layout reset: keep related products below, never beside summary. */
body.single-product .woocommerce div.product.hg-single-product,
body.single-product.woocommerce div.product.hg-single-product {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  clear: both !important;
}

body.single-product .woocommerce div.product.hg-single-product::before,
body.single-product .woocommerce div.product.hg-single-product::after {
  display: none !important;
  content: none !important;
}

body.single-product .woocommerce div.product.hg-single-product .hg-single-product-layout {
  display: grid !important;
  grid-template-columns: 430px minmax(0, 620px) !important;
  gap: 76px !important;
  align-items: start !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 1126px !important;
  margin: 0 auto !important;
}

body.single-product .woocommerce div.product.hg-single-product .hg-single-product-summary {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 620px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .woocommerce div.product.hg-single-product .hg-single-product-summary .product_title {
  max-width: 620px !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

body.single-product .woocommerce div.product.hg-single-product .hg-single-product-after {
  display: block !important;
  clear: both !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 72px auto 0 !important;
  padding-top: 34px !important;
  border-top: 1px solid var(--hg-line) !important;
}

body.single-product .woocommerce div.product.hg-single-product .hg-single-product-after .related.products,
body.single-product .woocommerce div.product.hg-single-product .hg-single-product-after .upsells.products {
  display: block !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

body.single-product .woocommerce div.product.hg-single-product .hg-single-product-after ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

body.single-product .woocommerce div.product.hg-single-product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product.hg-single-product form.cart button.single_add_to_cart_button,
body.single-product .woocommerce div.product.hg-single-product form.cart button.button.alt {
  border-color: var(--hg-red) !important;
  background: var(--hg-red) !important;
  background-color: var(--hg-red) !important;
  color: #fff !important;
}

@media (max-width: 1080px) {
  body.single-product .woocommerce div.product.hg-single-product .hg-single-product-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    max-width: 680px !important;
  }

  body.single-product .woocommerce div.product.hg-single-product .hg-single-product-after ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  body.single-product .woocommerce div.product.hg-single-product .hg-single-product-after ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Product card consistency */
body.single-product .hg-single-product-summary form.cart,
body.single-product .woocommerce div.product.hg-single-product form.cart {
  grid-template-columns: 86px minmax(280px, 1fr) !important;
  gap: 14px !important;
}

body.single-product .hg-single-product-summary form.cart .qty,
body.single-product .woocommerce div.product.hg-single-product form.cart .qty {
  min-height: 50px !important;
}

body.single-product .hg-single-product-summary form.cart .single_add_to_cart_button,
body.single-product .hg-single-product-summary form.cart button.single_add_to_cart_button,
body.single-product .hg-single-product-summary form.cart button.button.alt,
body.single-product .woocommerce div.product.hg-single-product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product.hg-single-product form.cart button.single_add_to_cart_button,
body.single-product .woocommerce div.product.hg-single-product form.cart button.button.alt,
body.single-product .woocommerce div.product.hg-single-product form.cart button[name="add-to-cart"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 280px !important;
  min-height: 52px !important;
  padding: 0 30px !important;
  border: 1px solid var(--hg-red) !important;
  border-radius: 999px !important;
  background: var(--hg-red) !important;
  background-color: var(--hg-red) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
body.single-product .hg-single-product-after ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  min-height: 430px !important;
  padding: 0 0 18px !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link {
  position: relative !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 0 !important;
  padding-top: 262px !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link::before,
body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: block !important;
  height: 250px !important;
  border: 1px solid var(--hg-line) !important;
  border-radius: var(--hg-radius) !important;
  background: #fff !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img,
body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 250px !important;
  max-height: 250px !important;
  margin: 0 !important;
  padding: 16px !important;
  border: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
}

.woocommerce ul.products li.product .hg-stock-badge,
.woocommerce-page ul.products li.product .hg-stock-badge,
body.single-product .hg-single-product-after ul.products li.product .hg-stock-badge {
  z-index: 3 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
  min-height: 60px !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 1.22 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
body.single-product .hg-single-product-after ul.products li.product .price {
  display: block !important;
  min-height: 24px !important;
  margin: 0 0 14px !important;
  color: var(--hg-red) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
body.single-product .hg-single-product-after ul.products li.product .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  margin-top: auto !important;
  padding: 0 14px !important;
  border: 1px solid #e5e0e8 !important;
  border-radius: 4px !important;
  background: #eeeaf1 !important;
  color: var(--hg-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

/* Mobile product grid overrides — must come AFTER the global !important block above */
@media (max-width: 720px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  body.single-product .hg-single-product-after ul.products li.product {
    min-height: 0 !important;
    padding: 0 0 10px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link {
    padding-top: 130px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link::before,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link::before {
    height: 120px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link img {
    height: 120px !important;
    max-height: 120px !important;
    padding: 8px !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 6px 0 4px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price,
  body.single-product .hg-single-product-after ul.products li.product .price {
    min-height: 0 !important;
    margin: 0 0 6px !important;
    font-size: 12px !important;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button,
  body.single-product .hg-single-product-after ul.products li.product .button {
    min-height: 32px !important;
    padding: 6px 8px !important;
    font-size: 10px !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link {
    padding-top: 105px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link::before,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link::before {
    height: 95px !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link img {
    height: 95px !important;
    max-height: 95px !important;
    padding: 6px !important;
  }
}

@media (max-width: 560px) {
  body.single-product .hg-single-product-summary form.cart,
  body.single-product .woocommerce div.product.hg-single-product form.cart {
    grid-template-columns: 1fr !important;
  }

  body.single-product .hg-single-product-summary form.cart .single_add_to_cart_button,
  body.single-product .hg-single-product-summary form.cart button.single_add_to_cart_button,
  body.single-product .hg-single-product-summary form.cart button.button.alt,
  body.single-product .woocommerce div.product.hg-single-product form.cart button[name="add-to-cart"] {
    min-width: 0 !important;
  }
}

/* Cart page */
body.woocommerce-cart .page-layout {
  width: min(100% - 48px, 1320px) !important;
  max-width: 1320px !important;
  padding: 48px 0 92px !important;
}

body.woocommerce-cart .page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
}

body.woocommerce-cart .page-header {
  width: min(100%, 1160px) !important;
  margin: 0 auto 30px !important;
}

body.woocommerce-cart .page-header h1 {
  margin: 0 !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--hg-line) !important;
  color: var(--hg-ink) !important;
  font-size: clamp(34px, 3.6vw, 52px) !important;
  font-weight: 760 !important;
  line-height: 1.08 !important;
}

body.woocommerce-cart .entry-content > .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 748px) 380px !important;
  gap: 32px !important;
  align-items: start !important;
  width: min(100%, 1160px) !important;
  margin: 0 auto !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  grid-column: 1 / -1 !important;
}

body.woocommerce-cart form.woocommerce-cart-form {
  grid-column: 1 !important;
  width: 100% !important;
  margin: 0 !important;
  min-width: 0 !important;
}

body.woocommerce-cart .cart-collaterals {
  grid-column: 2 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-cart .cart-collaterals::before,
body.woocommerce-cart .cart-collaterals::after {
  display: none !important;
  content: none !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 28px !important;
  border: 1px solid var(--hg-line) !important;
  background: #fff !important;
  box-shadow: 0 18px 55px rgba(22, 18, 18, 0.045) !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin: 0 0 18px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--hg-line) !important;
  color: var(--hg-ink) !important;
  font-size: clamp(25px, 2vw, 32px) !important;
  font-weight: 760 !important;
  line-height: 1.1 !important;
}

body.woocommerce-cart table.shop_table,
body.woocommerce-cart table.shop_table.cart {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid var(--hg-line) !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
  background: #fff !important;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
  padding: 15px 14px !important;
  border-top: 1px solid var(--hg-line) !important;
  color: var(--hg-ink) !important;
  font-size: 14px !important;
  line-height: 1.38 !important;
  vertical-align: middle !important;
}

body.woocommerce-cart table.shop_table thead th {
  border-top: 0 !important;
  background: #fbfaf9 !important;
  color: var(--hg-ink) !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

body.woocommerce-cart table.shop_table .product-remove {
  width: 42px !important;
  text-align: center !important;
}

body.woocommerce-cart table.shop_table .product-thumbnail {
  width: 76px !important;
}

body.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 60px !important;
  height: 60px !important;
  padding: 6px !important;
  border: 1px solid var(--hg-line) !important;
  background: #fff !important;
  object-fit: contain !important;
}

body.woocommerce-cart table.shop_table .product-name a {
  color: var(--hg-ink) !important;
  font-weight: 650 !important;
  text-decoration: none !important;
}

body.woocommerce-cart table.shop_table .product-name a:hover {
  color: var(--hg-red) !important;
}

body.woocommerce-cart table.shop_table .product-price,
body.woocommerce-cart table.shop_table .product-subtotal,
body.woocommerce-cart table.shop_table .order-total td,
body.woocommerce-cart table.shop_table .cart-subtotal td {
  white-space: nowrap !important;
}

body.woocommerce-cart table.shop_table .product-subtotal,
body.woocommerce-cart table.shop_table .order-total td {
  font-weight: 780 !important;
}

body.woocommerce-cart table.shop_table a.remove {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  color: var(--hg-red) !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

body.woocommerce-cart table.shop_table a.remove:hover {
  border-color: var(--hg-line) !important;
  background: #fff !important;
  color: var(--hg-red-dark) !important;
}

body.woocommerce-cart .quantity .qty {
  width: 68px !important;
  min-height: 38px !important;
  border: 1px solid var(--hg-line) !important;
  border-radius: 999px !important;
  text-align: center !important;
}

body.woocommerce-cart table.shop_table td.actions {
  padding: 18px 16px !important;
  background: #fff !important;
}

body.woocommerce-cart table.shop_table td.actions .coupon {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  float: left !important;
}

body.woocommerce-cart table.shop_table td.actions .coupon input.input-text {
  width: 158px !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid var(--hg-line) !important;
  border-radius: 999px !important;
}

body.woocommerce-cart table.shop_table td.actions .coupon .button,
body.woocommerce-cart table.shop_table td.actions button[name="update_cart"] {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border-color: #e5e0e8 !important;
  background: #eeeaf1 !important;
  color: var(--hg-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

body.woocommerce-cart table.shop_table td.actions button[name="update_cart"] {
  float: right !important;
}

body.woocommerce-cart table.shop_table td.actions button[name="update_cart"]:not(:disabled),
body.woocommerce-cart table.shop_table td.actions .coupon .button:hover {
  border-color: var(--hg-red) !important;
  background: var(--hg-red) !important;
  color: #fff !important;
}

body.woocommerce-cart .cart_totals table.shop_table {
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 15px 0 !important;
  border-top: 1px solid var(--hg-line) !important;
  background: transparent !important;
  font-size: 14px !important;
}

body.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
body.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
  border-top: 0 !important;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  color: var(--hg-ink) !important;
  font-size: 17px !important;
  font-weight: 820 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 22px 0 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.button.alt {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  border: 1px solid var(--hg-red) !important;
  border-radius: 999px !important;
  background: var(--hg-red) !important;
  background-color: var(--hg-red) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 820 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.button.alt:hover {
  border-color: var(--hg-red-dark) !important;
  background: var(--hg-red-dark) !important;
  background-color: var(--hg-red-dark) !important;
  color: #fff !important;
}

body.woocommerce-cart .woocommerce-shipping-destination,
body.woocommerce-cart .woocommerce-shipping-calculator {
  color: var(--hg-muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

body.woocommerce-cart .woocommerce-shipping-calculator a,
body.woocommerce-cart .shipping-calculator-button {
  color: var(--hg-red) !important;
  font-weight: 720 !important;
  text-decoration: none !important;
}

.hg-shipping-note {
  margin: 10px 0 14px !important;
  padding: 12px 14px !important;
  border: 1px solid var(--hg-line) !important;
  border-left: 3px solid var(--hg-red) !important;
  background: #fffafa !important;
  color: var(--hg-muted) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body.woocommerce-cart .hg-shipping-note-row td,
body.woocommerce-checkout .hg-shipping-note-row td {
  padding: 10px 0 !important;
  border-top: 0 !important;
}

body.woocommerce-cart .hg-shipping-note-row + .hg-shipping-note-row,
body.woocommerce-checkout .hg-shipping-note-row + .hg-shipping-note-row {
  display: none !important;
}

body.woocommerce-cart .hg-shipping-note,
body.woocommerce-checkout .hg-shipping-note {
  margin: 0 !important;
  padding: 13px 15px !important;
  border: 1px solid var(--hg-line) !important;
  border-left: 3px solid var(--hg-red) !important;
  background: #fffafa !important;
  color: var(--hg-muted) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

/* Checkout page */
body.woocommerce-checkout .page-layout {
  width: min(100% - 48px, 1440px) !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 48px 0 92px !important;
}

body.woocommerce-checkout .page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
}

body.woocommerce-checkout .page-header {
  width: min(100%, 1280px) !important;
  margin: 0 auto 30px !important;
  border-bottom: 0 !important;
}

body.woocommerce-checkout .page-header h1 {
  margin: 0 !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--hg-line) !important;
  color: var(--hg-ink) !important;
  font-size: clamp(34px, 3.6vw, 52px) !important;
  font-weight: 760 !important;
  line-height: 1.08 !important;
}

body.woocommerce-checkout .entry-content > .woocommerce {
  width: min(100%, 1240px) !important;
  margin: 0 auto !important;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-NoticeGroup {
  width: 100% !important;
  margin: 0 0 22px !important;
}

body.woocommerce-checkout .woocommerce-notices-wrapper:empty,
body.woocommerce-checkout .woocommerce-NoticeGroup:empty {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message {
  width: 100% !important;
  margin: 0 0 22px !important;
  padding: 15px 18px !important;
  border: 1px solid var(--hg-line) !important;
  border-top: 3px solid var(--hg-red) !important;
  background: #fbfaf9 !important;
  color: var(--hg-ink) !important;
  font-size: 14px !important;
}

body.woocommerce-checkout .woocommerce-info:empty,
body.woocommerce-checkout .woocommerce-error:empty,
body.woocommerce-checkout .woocommerce-message:empty {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-info li:empty,
body.woocommerce-checkout .woocommerce-error li:empty,
body.woocommerce-checkout .woocommerce-message li:empty {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-info:not(:has(li:not(:empty))):has(li),
body.woocommerce-checkout .woocommerce-error:not(:has(li:not(:empty))):has(li),
body.woocommerce-checkout .woocommerce-message:not(:has(li:not(:empty))):has(li) {
  display: none !important;
}

body.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 700px) minmax(460px, 560px) !important;
  gap: 46px !important;
  align-items: start !important;
  justify-content: center !important;
}

body.woocommerce-checkout #customer_details {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.woocommerce-checkout #customer_details::before,
body.woocommerce-checkout #customer_details::after,
body.woocommerce-checkout form.checkout::before,
body.woocommerce-checkout form.checkout::after {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
  margin: 0 0 18px !important;
  padding: 26px !important;
  border: 1px solid var(--hg-line) !important;
  background: #fff !important;
}

body.woocommerce-checkout h3 {
  margin: 0 0 18px !important;
  color: var(--hg-ink) !important;
  font-size: 20px !important;
  font-weight: 760 !important;
  line-height: 1.2 !important;
}

body.woocommerce-checkout form .form-row {
  margin: 0 0 14px !important;
  padding: 0 !important;
}

body.woocommerce-checkout form .form-row-first,
body.woocommerce-checkout form .form-row-last {
  width: calc(50% - 8px) !important;
}

body.woocommerce-checkout form .form-row-first {
  margin-right: 16px !important;
}

body.woocommerce-checkout form .form-row label {
  margin-bottom: 6px !important;
  color: var(--hg-ink) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

body.woocommerce-checkout form .form-row input.input-text,
body.woocommerce-checkout form .form-row textarea,
body.woocommerce-checkout form .form-row select,
body.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 44px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--hg-line) !important;
  border-radius: var(--hg-radius) !important;
  background: #fff !important;
  color: var(--hg-ink) !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0 !important;
  color: var(--hg-ink) !important;
  line-height: 22px !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  top: 9px !important;
  right: 10px !important;
}

body.woocommerce-checkout form .form-row textarea {
  min-height: 92px !important;
  resize: vertical !important;
}

body.woocommerce-checkout #order_review_heading {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  font-size: 28px !important;
  font-weight: 760 !important;
  line-height: 1.1 !important;
}

body.woocommerce-checkout #order_review {
  grid-column: 2 !important;
  grid-row: 2 !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 !important;
  padding: 26px !important;
  border: 1px solid var(--hg-line) !important;
  background: #fff !important;
  box-shadow: 0 18px 55px rgba(22, 18, 18, 0.045) !important;
}

body.woocommerce-checkout table.shop_table,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  background: transparent !important;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
  padding: 14px 0 !important;
  border-top: 1px solid var(--hg-line) !important;
  background: transparent !important;
  color: var(--hg-ink) !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
  vertical-align: top !important;
}

body.woocommerce-checkout table.shop_table thead th {
  border-top: 0 !important;
  color: var(--hg-ink) !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

body.woocommerce-checkout table.shop_table .product-name {
  width: 68% !important;
  padding-right: 18px !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout table.shop_table .product-total,
body.woocommerce-checkout table.shop_table tfoot td {
  width: 32% !important;
  text-align: right !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout table.shop_table .cart-subtotal th,
body.woocommerce-checkout table.shop_table .cart-subtotal td,
body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
  font-weight: 800 !important;
}

body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
  font-size: 16px !important;
}

body.woocommerce-checkout table.shop_table ul#shipping_method {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-checkout table.shop_table ul#shipping_method li {
  margin: 0 0 8px !important;
  padding: 0 !important;
}

body.woocommerce-checkout table.shop_table ul#shipping_method label {
  display: block !important;
  color: var(--hg-ink) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout table.shop_table tr.shipping th,
body.woocommerce-checkout table.shop_table tr.shipping td {
  vertical-align: top !important;
}

body.woocommerce-checkout table.shop_table tr.shipping td {
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout table.shop_table tr.shipping td .amount {
  display: inline-block !important;
  margin-left: 6px !important;
  font-weight: 820 !important;
  color: var(--hg-red) !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout #payment,
body.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 22px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
  padding: 0 !important;
  border: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 !important;
  padding: 14px 0 !important;
  border-top: 1px solid var(--hg-line) !important;
}

body.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 0 !important;
  padding: 16px !important;
  border: 1px solid var(--hg-line) !important;
  background: #fbfaf9 !important;
  color: var(--hg-muted) !important;
  font-size: 13px !important;
}

body.woocommerce-checkout #payment div.payment_box img {
  max-width: 180px !important;
  height: auto !important;
}

body.woocommerce-checkout #payment button#place_order,
body.woocommerce-checkout #payment .button,
body.woocommerce-checkout button[name="woocommerce_checkout_place_order"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin-top: 18px !important;
  border: 1px solid var(--hg-red) !important;
  border-radius: 999px !important;
  background: var(--hg-red) !important;
  background-color: var(--hg-red) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 820 !important;
  line-height: 1 !important;
}

body.woocommerce-checkout #payment button#place_order:hover,
body.woocommerce-checkout #payment .button:hover {
  border-color: var(--hg-red-dark) !important;
  background: var(--hg-red-dark) !important;
  background-color: var(--hg-red-dark) !important;
}

@media (max-width: 980px) {
  body.woocommerce-cart .entry-content > .woocommerce {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.woocommerce-cart form.woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals {
    grid-column: 1 !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 22px !important;
  }

  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

@media (max-width: 720px) {
  .site-header .hg-container {
    padding-inline: 12px;
  }

  .menu-open .site-header .hg-container {
    width: 100%;
    max-width: 100vw;
  }

  .menu-open .site-branding {
    display: none;
  }

  .menu-open .header-main {
    gap: 7px;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .menu-open .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    width: auto;
    max-width: 100%;
    gap: 7px;
  }

  .menu-open .header-search,
  .menu-open .hg-live-search {
    min-width: 0;
    width: 100%;
  }

  .menu-open .header-search form,
  .menu-open .woocommerce-product-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 6px;
    min-width: 0;
    width: 100%;
  }

  .menu-open .header-search input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .menu-open .header-search button {
    position: relative;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    margin-left: 0;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
  }

  .menu-open .header-search button::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 999px;
  }

  .menu-open .header-search button::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: translate(9px, 9px) rotate(45deg);
  }

  .menu-open .cart-link,
  .menu-open .menu-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .menu-open .hg-live-search-panel {
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 98px);
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 118px);
    overflow-x: hidden;
  }

  .hg-live-search-category,
  .hg-live-product {
    min-width: 0;
  }

  .hg-live-search-category span,
  .hg-live-search-category small,
  .hg-live-product-copy strong,
  .hg-live-product-copy small {
    overflow-wrap: anywhere;
  }

  .menu-open .primary-navigation::before {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    padding-inline: 2px;
  }

  .primary-navigation .hg-native-menu {
    max-width: 100%;
    border-radius: 0;
  }

  body.woocommerce-cart .page-layout {
    width: min(100% - 24px, 680px) !important;
    padding-top: 34px !important;
  }

  body.woocommerce-cart table.shop_table td.actions .coupon {
    float: none !important;
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  body.woocommerce-cart table.shop_table td.actions .coupon input.input-text {
    width: 100% !important;
  }

  body.woocommerce-cart table.shop_table td.actions button[name="update_cart"] {
    float: none !important;
    width: 100% !important;
  }

  body.woocommerce-checkout .page-layout {
    width: min(100% - 24px, 680px) !important;
    padding-top: 34px !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    padding: 20px !important;
  }

  body.woocommerce-checkout form .form-row-first,
  body.woocommerce-checkout form .form-row-last {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    margin-left: 8px;
    border: 1px solid var(--hg-line);
    border-radius: 999px;
    background: #fff;
    color: var(--hg-ink);
    box-shadow: none;
  }

  .menu-toggle:hover,
  .menu-open .menu-toggle {
    border-color: rgba(181, 21, 27, 0.3);
    background: #fffafa;
    color: var(--hg-red);
  }

  .menu-toggle span:not(.screen-reader-text) {
    width: 16px;
    height: 1.5px;
    background: currentColor;
  }

  .header-nav-row {
    padding: 0 16px 12px;
    border-top: 1px solid var(--hg-line);
  }

  .menu-open .primary-navigation::before {
    width: min(100%, 520px);
    margin: 8px auto 6px;
    padding: 0 2px;
  }

  .primary-navigation .hg-native-menu {
    width: 100%;
    max-width: 520px;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--hg-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .primary-navigation .hg-native-menu > .menu-item {
    grid-template-columns: minmax(0, 1fr) 36px;
    min-height: 44px;
    border: 0;
    border-bottom: 1px solid #ece7e3;
    border-radius: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open {
    border-left: 2px solid var(--hg-red);
    background: #fffafa;
  }

  .primary-navigation .hg-native-menu > .menu-item > a {
    min-height: 44px;
    padding: 12px 8px 12px 4px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a {
    padding-left: 12px;
    color: var(--hg-red);
  }

  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    margin: 0 2px 0 4px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--hg-ink);
    line-height: 1;
  }

  .menu-item.is-open > .submenu-toggle {
    border-color: rgba(181, 21, 27, 0.22);
    background: #fff;
    color: var(--hg-red);
  }

  .submenu-toggle-icon {
    display: block !important;
    position: relative !important;
    width: 12px !important;
    height: 12px !important;
    border: 0 !important;
    transform: none !important;
  }

  .submenu-toggle-icon::before,
  .submenu-toggle-icon::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    display: block !important;
    width: 10px !important;
    height: 1.5px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transform: translate(-50%, -50%) !important;
  }

  .submenu-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }

  .menu-item.is-open > .submenu-toggle .submenu-toggle-icon::after {
    opacity: 0 !important;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    box-sizing: border-box;
    width: calc(100% - 12px);
    margin: 0 0 4px 12px;
    padding: 2px 0 8px 12px;
    border: 0;
    border-left: 1px solid rgba(181, 21, 27, 0.18);
    border-top: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    grid-template-columns: minmax(0, 1fr) 32px;
    min-height: 38px;
    border: 0;
    border-bottom: 1px solid #f0ebe8;
    border-radius: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open {
    background: #fff;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    min-height: 38px;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red);
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu {
    width: calc(100% - 8px);
    margin: 0 0 4px 8px;
    padding-left: 10px;
    border-left: 1px solid rgba(181, 21, 27, 0.14);
  }
}

@media (max-width: 720px) {
  .site-header .hg-container {
    padding-inline: 10px;
  }

  .menu-open .header-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    width: 100%;
    overflow: visible;
  }

  .menu-open .header-actions {
    grid-column: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 7px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .menu-open .header-search,
  .menu-open .hg-live-search {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .menu-open .header-search form,
  .menu-open .woocommerce-product-search {
    grid-template-columns: minmax(0, 1fr) 40px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .menu-open .header-search input[type="search"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    padding-inline: 11px;
    font-size: 13.5px;
  }

  .menu-open .header-search button {
    align-self: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border: 1px solid rgba(181, 21, 27, 0.32);
    background: #fff;
    color: var(--hg-red);
  }

  .menu-open .header-search button:hover {
    background: #fff7f7;
  }

  .menu-open .cart-link,
  .menu-open .menu-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .menu-open .menu-toggle {
    grid-column: 2;
    margin-left: 0;
  }

  .menu-open .hg-live-search-panel {
    box-sizing: border-box;
    left: 8px;
    right: auto;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    padding: 12px;
    border-radius: 14px;
    overflow-x: hidden;
  }

  .hg-live-product {
    gap: 9px;
    padding: 7px 4px;
  }

  .hg-live-product-image {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .hg-live-product-copy {
    min-width: 0;
  }

  .hg-live-search-category span,
  .hg-live-search-category small,
  .hg-live-product-copy strong,
  .hg-live-product-copy small {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hg-live-search-category {
    padding: 8px 4px;
  }

  .header-nav-row {
    padding-inline: 12px;
  }

  .primary-navigation .hg-native-menu {
    width: 100%;
    max-width: 100%;
  }

  .primary-navigation .hg-native-menu > .menu-item {
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .primary-navigation .hg-native-menu > .menu-item > a {
    padding-left: 6px;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a {
    padding-left: 10px;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    width: calc(100% - 10px);
    margin-left: 10px;
    padding-left: 10px;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    padding: 10px 7px;
  }

  .submenu-toggle {
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
  }
}

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

  .site-header {
    z-index: 1000;
  }

  .menu-open .site-header::after {
    content: "";
    position: fixed;
    inset: var(--wp-admin--admin-bar--height, 0px) 0 0;
    z-index: 990;
    background: rgba(18, 18, 18, 0.38);
    pointer-events: none;
  }

  .site-header .hg-container.header-main {
    display: grid !important;
    grid-template-columns: 50px minmax(0, 1fr) 48px;
    grid-template-areas:
      "menu brand cart"
      "search search search";
    align-items: center;
    gap: 12px 8px;
    padding: 14px 12px 12px;
  }

  .header-spacer {
    display: none !important;
  }

  .site-branding,
  .menu-open .site-branding {
    grid-area: brand;
    display: block !important;
    justify-self: center;
    min-width: 0;
    text-align: center;
  }

  .site-branding .custom-logo {
    max-width: min(190px, 52vw);
  }

  .header-actions,
  .menu-open .header-actions {
    display: contents !important;
  }

  .header-search,
  .menu-open .header-search {
    grid-area: search;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .header-search form,
  .woocommerce-product-search,
  .menu-open .header-search form,
  .menu-open .woocommerce-product-search {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .header-search input[type="search"],
  .menu-open .header-search input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 14px;
  }

  .header-search button,
  .menu-open .header-search button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--hg-red);
    border-radius: 999px;
    background: var(--hg-red);
    color: #fff;
    font-size: 0;
  }

  .header-search button::before,
  .menu-open .header-search button::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 999px;
  }

  .header-search button::after,
  .menu-open .header-search button::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: translate(9px, 9px) rotate(45deg);
  }

  .cart-link,
  .menu-open .cart-link {
    grid-area: cart;
    justify-self: end;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .menu-toggle,
  .menu-open .menu-toggle {
    grid-area: menu;
    display: inline-flex !important;
    justify-self: start;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--hg-ink);
    gap: 7px;
    box-shadow: none;
  }

  .menu-toggle span:not(.screen-reader-text) {
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header-nav-row {
    position: fixed !important;
    top: var(--wp-admin--admin-bar--height, 0px);
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: block !important;
    width: min(86vw, 360px) !important;
    max-width: 360px !important;
    min-height: 0;
    padding: 18px 0 24px !important;
    overflow-y: auto;
    border: 0;
    border-right: 1px solid #ded8d4;
    background: #fff;
    box-shadow: 22px 0 48px rgba(0, 0, 0, 0.16);
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .menu-open .header-nav-row {
    transform: translateX(0);
  }

  .primary-navigation,
  .menu-open .primary-navigation {
    display: block !important;
    width: 100%;
    min-height: 0;
  }

  .menu-open .primary-navigation::before {
    display: none;
  }

  .primary-navigation .hg-native-menu {
    display: block !important;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu > .menu-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    min-height: 68px;
    border: 0;
    border-bottom: 1px solid #f0ece9;
    background: #fff;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open {
    border-left: 0;
    background: #fff;
  }

  .primary-navigation .hg-native-menu > .menu-item > a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 68px;
    padding: 0 8px 0 20px;
    color: var(--hg-ink);
    font-size: 20px;
    font-weight: 830;
    line-height: 1.1;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a {
    color: var(--hg-ink);
    padding-left: 20px;
  }

  .primary-navigation .hg-native-menu > .menu-item > a::before {
    content: "□";
    flex: 0 0 32px;
    width: 32px;
    color: #202020;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
  }

  .primary-navigation .hg-native-menu > .menu-item:nth-child(1) > a::before { content: "▱"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(2) > a::before { content: "○"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(3) > a::before { content: "▥"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(4) > a::before { content: "▤"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(5) > a::before { content: "▦"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(6) > a::before { content: "⌂"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(7) > a::before { content: "✧"; }
  .primary-navigation .hg-native-menu > .menu-item:nth-child(8) > a::before { content: "⌁"; }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a::before {
    color: var(--hg-red);
  }

  .primary-navigation .hg-native-menu > .menu-item-has-children > a::after {
    display: none !important;
  }

  .submenu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-width: 54px;
    height: 68px;
    min-height: 68px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hg-ink);
  }

  .menu-item.is-open > .submenu-toggle {
    background: transparent;
    color: var(--hg-ink);
  }

  .submenu-toggle-icon {
    display: block !important;
    width: 13px !important;
    height: 13px !important;
    border: 0 !important;
    border-right: 3px solid currentColor !important;
    border-bottom: 3px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(-45deg) !important;
  }

  .submenu-toggle-icon::before,
  .submenu-toggle-icon::after {
    display: none !important;
  }

  .menu-item.is-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg) !important;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: none !important;
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 0 0 10px;
    overflow: visible;
    border: 0;
    background: #fff;
    box-shadow: none;
    transform: none;
  }

  .primary-navigation .hg-native-menu .menu-item.is-open > .sub-menu {
    display: block !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 52px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #f3efed;
    background: #fff;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 8px 0 52px;
    color: #262626;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red);
    font-weight: 650;
  }

  .primary-navigation .hg-native-menu .sub-menu .submenu-toggle {
    width: 48px;
    min-width: 48px;
    height: 52px;
    min-height: 52px;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu {
    width: 100%;
    margin: 0;
    padding: 0 0 8px;
    border: 0;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu a {
    min-height: 44px;
    padding-left: 72px;
    color: var(--hg-muted);
    font-size: 15px;
  }

  .menu-open .hg-live-search-panel,
  .hg-live-search-panel {
    position: fixed !important;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 142px) !important;
    left: 10px !important;
    right: 10px !important;
    box-sizing: border-box !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 156px);
    border-radius: 14px;
    overflow-x: hidden;
  }
}

/* Mobile drawer final override. Keep this at the end so older menu rules cannot override it. */
@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header {
    z-index: 1300 !important;
    overflow: visible !important;
  }

  .site-header .hg-container.header-main {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 44px !important;
    grid-template-areas:
      "menu brand cart"
      "search search search" !important;
    align-items: center !important;
    gap: 14px 10px !important;
    min-height: 0 !important;
    padding: 16px 14px 14px !important;
  }

  .header-spacer {
    display: none !important;
  }

  .site-branding,
  .menu-open .site-branding {
    position: static !important;
    grid-area: brand !important;
    display: block !important;
    justify-self: center !important;
    min-width: 0 !important;
    transform: none !important;
    text-align: center !important;
  }

  .site-branding .custom-logo {
    max-width: min(190px, 54vw) !important;
    max-height: 54px !important;
    width: auto !important;
    height: auto !important;
  }

  .header-actions,
  .menu-open .header-actions {
    display: contents !important;
  }

  .menu-toggle,
  .menu-open .menu-toggle {
    grid-area: menu !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--hg-ink) !important;
    gap: 8px !important;
    box-shadow: none !important;
  }

  .menu-toggle:hover,
  .menu-open .menu-toggle:hover {
    background: transparent !important;
    color: var(--hg-red) !important;
  }

  .menu-toggle span:not(.screen-reader-text),
  .menu-open .menu-toggle span:not(.screen-reader-text) {
    display: block !important;
    width: 32px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(10px) rotate(45deg) !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0 !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-10px) rotate(-45deg) !important;
  }

  .cart-link,
  .menu-open .cart-link {
    grid-area: cart !important;
    justify-self: end !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
  }

  .header-search,
  .menu-open .header-search {
    grid-area: search !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .header-search form,
  .woocommerce-product-search,
  .menu-open .header-search form,
  .menu-open .woocommerce-product-search {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .header-search input[type="search"],
  .menu-open .header-search input[type="search"] {
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid var(--hg-line) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: var(--hg-ink) !important;
    font-size: 14px !important;
  }

  .header-search button,
  .menu-open .header-search button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--hg-red) !important;
    border-radius: 999px !important;
    background: var(--hg-red) !important;
    color: #fff !important;
    font-size: 0 !important;
  }

  .header-search button::before,
  .menu-open .header-search button::before {
    content: "" !important;
    width: 15px !important;
    height: 15px !important;
    border: 2px solid currentColor !important;
    border-radius: 999px !important;
    background: transparent !important;
  }

  .header-search button::after,
  .menu-open .header-search button::after {
    content: "" !important;
    position: absolute !important;
    width: 8px !important;
    height: 2px !important;
    background: currentColor !important;
    transform: translate(9px, 9px) rotate(45deg) !important;
  }

  .site-header::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1290 !important;
    background: rgba(18, 18, 18, 0.44) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  body.admin-bar .site-header::after {
    top: 46px !important;
  }

  .menu-open .site-header::after {
    opacity: 1 !important;
  }

  .header-nav-row,
  .menu-open .header-nav-row {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1310 !important;
    display: block !important;
    width: min(86vw, 360px) !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 18px 0 28px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid #e6dfdb !important;
    background: #fff !important;
    box-shadow: 28px 0 64px rgba(24, 24, 24, 0.18) !important;
    transform: translateX(-105%) !important;
    transition: transform 220ms ease !important;
  }

  body.admin-bar .header-nav-row,
  body.admin-bar.menu-open .header-nav-row {
    top: 46px !important;
  }

  .menu-open .header-nav-row {
    transform: translateX(0) !important;
  }

  .primary-navigation,
  .menu-open .primary-navigation {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .menu-open .primary-navigation::before {
    display: none !important;
  }

  .primary-navigation .hg-native-menu,
  .menu-open .primary-navigation .hg-native-menu {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    list-style: none !important;
  }

  .primary-navigation .hg-native-menu > .menu-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 58px !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #eee8e4 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open {
    border-left: 0 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 74px !important;
    padding: 0 10px 0 22px !important;
    color: var(--hg-ink) !important;
    font-size: 21px !important;
    font-weight: 820 !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a {
    color: var(--hg-ink) !important;
    padding-left: 22px !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a::before {
    content: "" !important;
    display: block !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    border: 2px solid currentColor !important;
    border-radius: 9px !important;
    background:
      linear-gradient(currentColor, currentColor) 50% 30% / 16px 2px no-repeat,
      linear-gradient(currentColor, currentColor) 50% 52% / 22px 2px no-repeat,
      linear-gradient(currentColor, currentColor) 50% 74% / 14px 2px no-repeat !important;
    color: inherit !important;
    opacity: 0.86 !important;
  }

  .primary-navigation .hg-native-menu > .menu-item:nth-child(2) > a::before,
  .primary-navigation .hg-native-menu > .menu-item:nth-child(7) > a::before {
    border-radius: 999px !important;
  }

  .primary-navigation .hg-native-menu > .menu-item:nth-child(3) > a::before,
  .primary-navigation .hg-native-menu > .menu-item:nth-child(4) > a::before {
    border-radius: 4px !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a::before {
    color: var(--hg-red) !important;
    border-color: var(--hg-red) !important;
    opacity: 1 !important;
  }

  .primary-navigation .hg-native-menu > .menu-item-has-children > a::after {
    display: none !important;
  }

  .submenu-toggle,
  .menu-open .submenu-toggle,
  .primary-navigation .hg-native-menu .submenu-toggle {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    width: 58px !important;
    min-width: 58px !important;
    height: auto !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--hg-ink) !important;
    box-shadow: none !important;
  }

  .submenu-toggle-icon,
  .menu-open .submenu-toggle-icon {
    display: block !important;
    width: 13px !important;
    height: 13px !important;
    border: 0 !important;
    border-right: 3px solid currentColor !important;
    border-bottom: 3px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(-45deg) !important;
    transition: transform 160ms ease !important;
  }

  .submenu-toggle-icon::before,
  .submenu-toggle-icon::after {
    display: none !important;
    content: none !important;
  }

  .menu-item.is-open > .submenu-toggle {
    color: var(--hg-red) !important;
  }

  .menu-item.is-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg) !important;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    position: static !important;
    display: none !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .primary-navigation .hg-native-menu .menu-item.is-open > .sub-menu {
    display: block !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 50px !important;
    min-height: 54px !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #f3efed !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    padding: 0 8px 0 54px !important;
    color: #2a2a2a !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.22 !important;
    white-space: normal !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red) !important;
    font-weight: 700 !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .submenu-toggle {
    width: 50px !important;
    min-width: 50px !important;
    min-height: 54px !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu a {
    min-height: 46px !important;
    padding-left: 74px !important;
    color: var(--hg-muted) !important;
    font-size: 15px !important;
  }

  .hg-live-search-panel,
  .menu-open .hg-live-search-panel {
    position: fixed !important;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 148px) !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1400 !important;
    box-sizing: border-box !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 166px) !important;
    padding: 12px !important;
    overflow-x: hidden !important;
    border-radius: 14px !important;
  }

  .hg-live-search-category,
  .hg-live-product,
  .hg-live-product-copy {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hg-live-product {
    gap: 10px !important;
  }

  .hg-live-product-image {
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
  }

  .hg-live-search-category span,
  .hg-live-search-category small,
  .hg-live-product-copy strong,
  .hg-live-product-copy small {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

@media (min-width: 721px) and (max-width: 782px) {
  body.admin-bar .site-header::after,
  body.admin-bar .header-nav-row {
    top: 46px !important;
  }
}

/* Final mobile drawer correction: must remain last. */
@media (max-width: 720px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header {
    position: relative !important;
    z-index: 2147483000 !important;
    overflow: visible !important;
    isolation: isolate !important;
  }

  .site-header .hg-container.header-main {
    grid-template-columns: 44px minmax(0, 1fr) 42px !important;
    grid-template-areas:
      "menu brand cart"
      "search search search" !important;
    gap: 12px 8px !important;
    padding: 14px 12px 13px !important;
  }

  .header-actions {
    display: contents !important;
  }

  .header-search {
    grid-area: search !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .header-search form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .header-search input[type="search"] {
    width: 100% !important;
    min-width: 0 !important;
  }

  .cart-link {
    grid-area: cart !important;
    justify-self: end !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  .menu-toggle {
    grid-area: menu !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 7px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--hg-ink) !important;
  }

  .menu-toggle span:not(.screen-reader-text) {
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    border-radius: 99px !important;
    background: currentColor !important;
    transition: opacity 160ms ease, transform 160ms ease !important;
  }

  .menu-open .menu-toggle {
    position: fixed !important;
    top: 14px !important;
    left: 16px !important;
    z-index: 2147483003 !important;
    background: transparent !important;
    color: var(--hg-red) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.admin-bar.menu-open .menu-toggle {
    top: 60px !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(9px) rotate(45deg) !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0 !important;
  }

  .menu-open .menu-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-9px) rotate(-45deg) !important;
  }

  .menu-open .site-branding,
  .menu-open .header-search,
  .menu-open .cart-link {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483001 !important;
    background: rgba(20, 20, 20, .46) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 180ms ease !important;
  }

  body.admin-bar .site-header::after {
    top: 46px !important;
  }

  .menu-open .site-header::after {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .header-nav-row,
  .menu-open .header-nav-row {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 2147483002 !important;
    display: block !important;
    width: min(88vw, 360px) !important;
    max-width: calc(100vw - 44px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    margin: 0 !important;
    padding: 70px 0 24px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-right: 1px solid #eee5e1 !important;
    background: #fff !important;
    box-shadow: 24px 0 58px rgba(0, 0, 0, .16) !important;
    transform: translateX(-105%) !important;
    transition: transform 210ms ease !important;
  }

  body.admin-bar .header-nav-row,
  body.admin-bar.menu-open .header-nav-row {
    top: 46px !important;
    height: calc(100vh - 46px) !important;
    height: calc(100dvh - 46px) !important;
    min-height: calc(100vh - 46px) !important;
    min-height: calc(100dvh - 46px) !important;
  }

  body.admin-bar .header-nav-row {
    padding-top: 72px !important;
  }

  .menu-open .header-nav-row {
    transform: translateX(0) !important;
  }

  .primary-navigation,
  .primary-navigation .hg-native-menu {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    list-style: none !important;
  }

  .menu-open .primary-navigation::before {
    display: none !important;
  }

  .header-nav-row *,
  .primary-navigation *,
  .primary-navigation *::before,
  .primary-navigation *::after {
    box-sizing: border-box !important;
  }

  .primary-navigation .hg-native-menu > .menu-item,
  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 46px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #eee8e4 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open,
  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open {
    border-left: 0 !important;
    background: #fff !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a,
  .primary-navigation .hg-native-menu .sub-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    padding: 0 6px 0 24px !important;
    color: var(--hg-ink) !important;
    font-size: 18px !important;
    font-weight: 650 !important;
    line-height: 1.18 !important;
    white-space: normal !important;
  }

  .primary-navigation .hg-native-menu > .menu-item > a::before,
  .primary-navigation .hg-native-menu .sub-menu a::before,
  .primary-navigation .hg-native-menu > .menu-item:nth-child(n) > a::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    flex: 0 0 0 !important;
    border: 0 !important;
    background: none !important;
  }

  .primary-navigation .hg-native-menu > .menu-item.is-open > a,
  .primary-navigation .hg-native-menu .sub-menu .menu-item.is-open > a {
    color: var(--hg-red) !important;
    font-weight: 700 !important;
  }

  .submenu-toggle,
  .primary-navigation .hg-native-menu .submenu-toggle {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    width: 46px !important;
    min-width: 46px !important;
    height: auto !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--hg-ink) !important;
  }

  .submenu-toggle-icon {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: rotate(-45deg) !important;
    transition: transform 160ms ease !important;
  }

  .submenu-toggle-icon::before,
  .submenu-toggle-icon::after {
    display: none !important;
    content: none !important;
  }

  .menu-item.is-open > .submenu-toggle {
    color: var(--hg-red) !important;
  }

  .menu-item.is-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg) !important;
  }

  .primary-navigation .hg-native-menu .sub-menu {
    position: static !important;
    display: none !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .primary-navigation .hg-native-menu .menu-item.is-open > .sub-menu {
    display: block !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .menu-item {
    grid-template-columns: minmax(0, 1fr) 42px !important;
    min-height: 48px !important;
    border-bottom-color: #f2eeec !important;
  }

  .primary-navigation .hg-native-menu .sub-menu a {
    min-height: 48px !important;
    padding-left: 34px !important;
    color: #343434 !important;
    font-size: 15.5px !important;
    font-weight: 450 !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .submenu-toggle {
    width: 42px !important;
    min-width: 42px !important;
    min-height: 48px !important;
  }

  .primary-navigation .hg-native-menu .sub-menu .sub-menu a {
    min-height: 44px !important;
    padding-left: 48px !important;
    color: var(--hg-muted) !important;
    font-size: 14px !important;
  }

  .hg-live-search-panel {
    position: fixed !important;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 142px) !important;
    right: 10px !important;
    left: 10px !important;
    z-index: 1400 !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .menu-open .hg-live-search-panel {
    display: none !important;
  }
}

/* === CATEGORY (SUBCATEGORY) LISTING — reset product-card bleed === */
.woocommerce ul.products li.product-category,
.woocommerce-page ul.products li.product-category {
  display: block !important;
  flex-direction: unset !important;
  min-height: 0 !important;
  padding: 0 0 20px !important;
  text-align: center !important;
}
.woocommerce ul.products li.product-category > a,
.woocommerce-page ul.products li.product-category > a {
  position: static !important;
  display: block !important;
  flex: unset !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  text-decoration: none !important;
  color: var(--hg-ink) !important;
}
.woocommerce ul.products li.product-category > a::before,
.woocommerce-page ul.products li.product-category > a::before {
  content: none !important;
  display: none !important;
  height: 0 !important;
  position: static !important;
  border: 0 !important;
  background: none !important;
}
.woocommerce ul.products li.product-category a img,
.woocommerce-page ul.products li.product-category a img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border: 1px solid var(--hg-line) !important;
  border-radius: var(--hg-radius) !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: auto !important;
}
.woocommerce ul.products li.product-category .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product-category .woocommerce-loop-category__title {
  display: block !important;
  min-height: 0 !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.3 !important;
  text-align: center !important;
}
.woocommerce-loop-category__title mark.count,
.woocommerce ul.products li.product-category mark.count,
.woocommerce-page ul.products li.product-category mark.count {
  display: block !important;
  background: transparent !important;
  color: var(--hg-muted) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 3px 0 0 !important;
}

/* === SVG ICON SIZE LIMIT IN PAGE CONTENT === */
.entry-content svg {
  max-width: 64px !important;
  max-height: 64px !important;
  width: auto !important;
  height: auto !important;
  display: inline-block !important;
}

/* === CONTACT / LEGAL PAGE LAYOUT === */
.page-content .entry-content {
  max-width: 800px;
  margin-inline: auto;
}
.page-content .entry-content .wp-block-columns {
  gap: 32px;
}
.entry-content iframe {
  max-width: 100% !important;
  height: auto !important;
  min-height: 280px;
}
.entry-content .wp-block-embed__wrapper iframe {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
}
@media (max-width: 720px) {
  .page-content .entry-content .wp-block-columns {
    flex-direction: column !important;
  }
  .page-content .entry-content .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
    text-align: center !important;
  }
  .page-content .entry-content .wp-block-column svg {
    margin-inline: auto !important;
  }
}

/* === CATEGORY THUMBNAIL: contain-fit like product cards, centered === */
.woocommerce ul.products li.product-category a img,
.woocommerce-page ul.products li.product-category a img {
  object-fit: contain !important;
  background: #fff !important;
  padding: 14px !important;
}

/* Prevent grid row-stretching on category pages */
.woocommerce ul.products,
.woocommerce-page ul.products {
  align-items: start !important;
}

/* === BIGGER PRODUCT CARD IMAGES ON MOBILE (720px) === */
@media (max-width: 720px) {
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link {
    padding-top: 180px !important;
  }
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before {
    height: 168px !important;
  }
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img {
    height: 168px !important;
    max-height: 168px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link {
    padding-top: 140px !important;
  }
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before {
    height: 128px !important;
  }
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img {
    height: 128px !important;
    max-height: 128px !important;
  }
}

/* === QUANTITY BUTTONS (+ / -) - proper size on all pages === */
.woocommerce .quantity button.minus,
.woocommerce .quantity button.plus,
.woocommerce .quantity .minus,
.woocommerce .quantity .plus {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-height: 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  border-radius: 4px !important;
  background: var(--hg-surface) !important;
  border: 1px solid var(--hg-line) !important;
  color: var(--hg-ink) !important;
  cursor: pointer !important;
}

/* === PAYMENT METHODS - remove accordion +/- symbols from plugins === */
body.woocommerce-checkout #payment .wc_payment_method [class*="accordion"]:not(div),
body.woocommerce-checkout #payment .wc_payment_method [class*="expand"]:not(div),
body.woocommerce-checkout #payment .wc_payment_method [class*="toggle"]:not(input):not(div),
.woocommerce-account .payment-method [class*="accordion"],
.woocommerce-account [class*="payment"] [class*="expand"] {
  display: none !important;
}

/* Catch oversized +/- text in payment or account pages */
.woocommerce-account .woocommerce .plus,
.woocommerce-account .woocommerce .minus {
  font-size: 14px !important;
  width: 28px !important;
  height: 28px !important;
  min-height: 0 !important;
  line-height: 28px !important;
}

/* === FINAL OVERRIDES: mobile archive cards + desktop checkout === */
.hg-category-track,
.hg-category-track.is-manual {
  animation: none !important;
  scroll-behavior: auto !important;
}

.hg-category-scroll-shell {
  overscroll-behavior-x: contain !important;
}

@media (max-width: 720px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 12px !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  body.single-product .hg-single-product-after ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 0 12px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--hg-line) !important;
    background: transparent !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    color: var(--hg-ink) !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link::before,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link::before {
    display: none !important;
    content: none !important;
  }

  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img,
  body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    padding: 8px !important;
    margin: 0 0 10px !important;
    border: 1px solid var(--hg-line) !important;
    border-radius: 4px !important;
    background: #fff !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
    min-height: 50px !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price,
  body.single-product .hg-single-product-after ul.products li.product .price {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    color: var(--hg-red) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button,
  body.single-product .hg-single-product-after ul.products li.product .button {
    width: 100% !important;
    min-height: 36px !important;
    margin-top: 8px !important;
    padding: 8px 9px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }

  .woocommerce ul.products li.product .hg-stock-badge,
  .woocommerce-page ul.products li.product .hg-stock-badge,
  body.single-product .hg-single-product-after ul.products li.product .hg-stock-badge {
    top: 8px !important;
    left: 8px !important;
    padding: 4px 7px !important;
    font-size: 11px !important;
  }

  .woocommerce ul.products li.product-category,
  .woocommerce-page ul.products li.product-category {
    display: block !important;
    text-align: center !important;
  }

  .woocommerce ul.products li.product-category a img,
  .woocommerce-page ul.products li.product-category a img {
    border-radius: 999px !important;
    object-fit: cover !important;
    padding: 0 !important;
  }

  .woocommerce ul.products li.product-category .woocommerce-loop-category__title,
  .woocommerce-page ul.products li.product-category .woocommerce-loop-category__title {
    font-size: 13px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .hg-category-track {
    gap: 16px !important;
  }

  .hg-category-card {
    flex: 0 0 132px !important;
    text-align: center !important;
  }

  .hg-category-card img {
    width: 132px !important;
    height: 132px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    padding: 0 !important;
    margin-inline: auto !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .hg-category-card span {
    padding: 10px 0 0 !important;
    border: 0 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .hg-products-grid,
  .home .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 12px !important;
  }

  .hg-product-card h3 {
    min-height: 48px !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
  }
}

@media (max-width: 390px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .hg-products-grid,
  .home .woocommerce ul.products {
    gap: 16px 10px !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 12.5px !important;
  }
}

@media (min-width: 981px) {
  body.woocommerce-checkout .page-layout {
    width: min(100% - 56px, 1320px) !important;
    max-width: 1320px !important;
  }

  body.woocommerce-checkout .entry-content > .woocommerce {
    width: 100% !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
  }

  body.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.85fr) !important;
    gap: 36px !important;
    align-items: start !important;
    justify-content: center !important;
    width: 100% !important;
  }

  body.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 460px !important;
    min-width: 0 !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields {
    padding: 28px !important;
  }

  body.woocommerce-checkout form .form-row-first,
  body.woocommerce-checkout form .form-row-last {
    float: none !important;
    display: inline-block !important;
    width: calc(50% - 10px) !important;
    vertical-align: top !important;
  }

  body.woocommerce-checkout form .form-row-first {
    margin-right: 16px !important;
  }

  body.woocommerce-checkout form .form-row-wide {
    clear: both !important;
    width: 100% !important;
  }

  body.woocommerce-checkout form .form-row input.input-text,
  body.woocommerce-checkout form .form-row textarea,
  body.woocommerce-checkout form .form-row select,
  body.woocommerce-checkout .select2-container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* === FINAL OVERRIDES: equal-height product cards and aligned buttons === */
.hg-product-grid,
.hg-products-grid,
.woocommerce ul.products,
.woocommerce-page ul.products {
  align-items: stretch !important;
}

.hg-product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-width: 0 !important;
}

.hg-product-card .hg-product-image {
  flex: 0 0 auto !important;
}

.hg-product-card h3 {
  min-height: 56px !important;
  margin: 12px 0 8px !important;
  font-size: 15px !important;
  line-height: 1.24 !important;
}

.hg-product-card h3 a {
  color: inherit !important;
}

.hg-product-card .hg-product-price {
  min-height: 22px !important;
  margin: 0 0 12px !important;
}

.hg-product-card .button,
.hg-product-card .add_to_cart_button {
  width: 100% !important;
  min-height: 38px !important;
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
body.single-product .hg-single-product-after ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
body.single-product .hg-single-product-after ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
  min-height: 56px !important;
  margin-bottom: 8px !important;
  line-height: 1.24 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
body.single-product .hg-single-product-after ul.products li.product .price {
  min-height: 22px !important;
  margin-top: auto !important;
  margin-bottom: 12px !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
body.single-product .hg-single-product-after ul.products li.product .button {
  width: 100% !important;
  min-height: 38px !important;
  margin-top: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 720px) {
  .hg-product-grid,
  .hg-products-grid,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    align-items: stretch !important;
  }

  .hg-product-card h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
  }

  .hg-product-card .button,
  .hg-product-card .add_to_cart_button,
  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button,
  body.single-product .hg-single-product-after ul.products li.product .button {
    min-height: 36px !important;
    padding: 8px 10px !important;
  }
}

/* === STOCK BADGE: compact overlay on product image (mobile) === */
/* Badge is now a sibling of the link (before_shop_loop_item priority 5),
   positioned absolute relative to li.product which WooCommerce always keeps position:relative */
@media (max-width: 720px) {
  .woocommerce ul.products li.product:not(.product-category) .hg-stock-badge,
  .woocommerce-page ul.products li.product:not(.product-category) .hg-stock-badge {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    z-index: 10 !important;
    padding: 2px 5px !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    border-radius: 3px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
  }
}

/* === FINAL OVERRIDES: lock product text height so prices/buttons align === */
.hg-product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  min-height: 56px !important;
  max-height: 56px !important;
}

.hg-product-card .hg-product-price,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
body.single-product .hg-single-product-after ul.products li.product .price {
  flex: 0 0 auto !important;
}

.hg-product-card .button,
.hg-product-card .add_to_cart_button,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
body.single-product .hg-single-product-after ul.products li.product .button {
  flex: 0 0 auto !important;
}

@media (max-width: 720px) {
  .hg-product-card h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body.single-product .hg-single-product-after ul.products li.product .woocommerce-loop-product__title {
    -webkit-line-clamp: 4 !important;
    min-height: 64px !important;
    max-height: 64px !important;
  }
}

/* === FINAL OVERRIDES: stock badge must sit inside product image === */
.woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link {
  position: relative !important;
}

.woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link .hg-stock-badge,
.woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link .hg-stock-badge,
body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link .hg-stock-badge,
.hg-product-image .hg-stock-badge {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  z-index: 6 !important;
}

@media (max-width: 720px) {
  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link {
    padding-top: 0 !important;
  }

  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
  }

  .woocommerce ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img,
  .woocommerce-page ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img,
  body.single-product .hg-single-product-after ul.products li.product:not(.product-category) a.woocommerce-LoopProduct-link img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    padding: 8px !important;
    margin: 0 0 10px !important;
    border: 1px solid var(--hg-line) !important;
    border-radius: 4px !important;
    background: #fff !important;
  }
}

/* === TRUE FINAL OVERRIDES: cart table must never collapse === */
body.woocommerce-cart .page-content,
body.woocommerce-cart .page-content .entry-content,
body.woocommerce-cart .entry-content {
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.woocommerce-cart .entry-content > .woocommerce {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
}

@media (min-width: 981px) {
  body.woocommerce-cart .entry-content > .woocommerce {
    display: grid !important;
    grid-template-columns: minmax(700px, 1fr) minmax(340px, 420px) !important;
    gap: 40px !important;
    align-items: start !important;
  }

  body.woocommerce-cart form.woocommerce-cart-form {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce-cart .cart-collaterals {
    width: 100% !important;
    max-width: 420px !important;
  }
}

body.woocommerce-cart table.shop_table.cart,
body.woocommerce-cart table.cart {
  width: 100% !important;
  table-layout: auto !important;
}

body.woocommerce-cart table.shop_table.cart th,
body.woocommerce-cart table.shop_table.cart td,
body.woocommerce-cart table.cart th,
body.woocommerce-cart table.cart td {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.woocommerce-cart table.shop_table.cart th.product-name,
body.woocommerce-cart table.shop_table.cart td.product-name,
body.woocommerce-cart table.cart th.product-name,
body.woocommerce-cart table.cart td.product-name {
  min-width: 300px !important;
  width: auto !important;
}

body.woocommerce-cart table.shop_table.cart td.product-name a,
body.woocommerce-cart table.cart td.product-name a {
  display: block !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.35 !important;
}

body.woocommerce-cart table.shop_table.cart .product-remove,
body.woocommerce-cart table.cart .product-remove {
  width: 40px !important;
  min-width: 40px !important;
}

body.woocommerce-cart table.shop_table.cart .product-thumbnail,
body.woocommerce-cart table.cart .product-thumbnail {
  width: 82px !important;
  min-width: 82px !important;
}

body.woocommerce-cart table.shop_table.cart .product-price,
body.woocommerce-cart table.shop_table.cart .product-quantity,
body.woocommerce-cart table.shop_table.cart .product-subtotal,
body.woocommerce-cart table.cart .product-price,
body.woocommerce-cart table.cart .product-quantity,
body.woocommerce-cart table.cart .product-subtotal {
  width: 112px !important;
  min-width: 92px !important;
  white-space: nowrap !important;
  text-align: center !important;
}

/* === TRUE FINAL OVERRIDES: spacious minimal checkout desktop === */
@media (min-width: 1200px) {
  body.woocommerce-checkout .page-layout {
    width: min(100% - 56px, 1340px) !important;
    max-width: 1340px !important;
    padding-top: 44px !important;
  }

  body.woocommerce-checkout .page-content,
  body.woocommerce-checkout .page-content .entry-content,
  body.woocommerce-checkout .entry-content {
    width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout .entry-content > .woocommerce {
    width: 100% !important;
    max-width: 1240px !important;
    margin-inline: auto !important;
  }

  body.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: minmax(560px, 650px) minmax(410px, 470px) !important;
    gap: 44px !important;
    align-items: start !important;
    justify-content: center !important;
    width: 100% !important;
  }

  body.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 470px !important;
    min-width: 0 !important;
  }

  body.woocommerce-checkout #order_review_heading {
    margin: 0 0 22px !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    padding: 28px !important;
    border: 1px solid var(--hg-line) !important;
    background: #fff !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields h3,
  body.woocommerce-checkout .woocommerce-additional-fields h3,
  body.woocommerce-checkout #order_review_heading {
    margin-bottom: 20px !important;
    font-size: clamp(26px, 2vw, 32px) !important;
    line-height: 1.08 !important;
  }

  body.woocommerce-checkout form .form-row {
    margin-bottom: 16px !important;
  }

  body.woocommerce-checkout form .form-row label {
    margin-bottom: 7px !important;
  }

  body.woocommerce-checkout form .form-row input.input-text,
  body.woocommerce-checkout form .form-row textarea,
  body.woocommerce-checkout form .form-row select,
  body.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 50px !important;
    padding-inline: 15px !important;
  }

  body.woocommerce-checkout table.shop_table,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
    width: 100% !important;
    table-layout: auto !important;
  }

  body.woocommerce-checkout table.shop_table th,
  body.woocommerce-checkout table.shop_table td {
    padding: 16px 14px !important;
    vertical-align: top !important;
  }

  body.woocommerce-checkout table.shop_table .product-name {
    width: auto !important;
    min-width: 230px !important;
    max-width: none !important;
    padding-right: 18px !important;
    line-height: 1.45 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.woocommerce-checkout table.shop_table .product-total,
  body.woocommerce-checkout table.shop_table tfoot td {
    width: 132px !important;
    min-width: 116px !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  body.woocommerce-checkout .hg-shipping-note {
    padding: 16px 18px !important;
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body.woocommerce-checkout table.shop_table tr.shipping th,
  body.woocommerce-checkout table.shop_table tr.shipping td {
    display: table-cell !important;
    width: auto !important;
  }

  body.woocommerce-checkout table.shop_table tr.shipping td {
    text-align: right !important;
  }

  body.woocommerce-checkout #payment {
    margin-top: 24px !important;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  body.woocommerce-checkout .page-layout {
    width: min(100% - 36px, 1120px) !important;
    max-width: 1120px !important;
  }

  body.woocommerce-checkout .entry-content > .woocommerce {
    max-width: 1060px !important;
  }

  body.woocommerce-checkout form.checkout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 430px) !important;
    gap: 34px !important;
  }

  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    max-width: 430px !important;
  }

  body.woocommerce-checkout table.shop_table .product-name {
    min-width: 220px !important;
    padding-right: 18px !important;
  }
}

/* === TRUE FINAL OVERRIDES: checkout order summary containment === */
body.woocommerce-checkout #order_review,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
  table-layout: fixed !important;
  border-collapse: collapse !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
  box-sizing: border-box !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .product-name {
  width: 68% !important;
  min-width: 0 !important;
  max-width: 68% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table .product-total {
  width: 32% !important;
  min-width: 0 !important;
  max-width: 32% !important;
  text-align: right !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th {
  width: 42% !important;
  min-width: 0 !important;
  max-width: 42% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot td {
  width: 58% !important;
  min-width: 0 !important;
  max-width: 58% !important;
  text-align: right !important;
  white-space: normal !important;
}

body.woocommerce-checkout table.shop_table tr.hg-shipping-note-row,
body.woocommerce-checkout table.shop_table tr.hg-shipping-note-row th,
body.woocommerce-checkout table.shop_table tr.hg-shipping-note-row td {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.woocommerce-checkout table.shop_table tr.hg-shipping-note-row td {
  padding: 14px 0 !important;
  text-align: left !important;
  white-space: normal !important;
}

body.woocommerce-checkout .hg-shipping-note {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  overflow: hidden !important;
}

body.woocommerce-checkout .hg-shipping-note-main,
body.woocommerce-checkout .hg-shipping-note-sub {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

/* === TRUE FINAL OVERRIDES: checkout table hard bounds === */
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .woocommerce-checkout-review-order {
  min-width: 0 !important;
}

body.woocommerce-checkout #order_review {
  contain: layout paint !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
  display: table !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  table-layout: fixed !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr {
  width: 100% !important;
  max-width: 100% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th *,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td * {
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead th:first-child,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-name {
  width: 70% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead th:last-child,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total {
  width: 30% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total * {
  text-align: right !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.hg-shipping-note-row {
  display: table-row !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.hg-shipping-note-row td {
  display: table-cell !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.hg-shipping-note-row td {
  padding: 14px 0 !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.woocommerce-checkout .hg-shipping-note {
  width: 100% !important;
  max-width: 100% !important;
  padding: 16px 18px !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.woocommerce-checkout .hg-shipping-note,
body.woocommerce-checkout .hg-shipping-note * {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td {
  text-align: right !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td *,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method li,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method label {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.order-total td {
  text-align: right !important;
  white-space: nowrap !important;
}

@media (min-width: 981px) {
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* === TRUE FINAL OVERRIDES: checkout summary compact type === */
body.woocommerce-checkout #order_review_heading {
  font-size: clamp(24px, 2vw, 30px) !important;
  line-height: 1.12 !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
  font-size: 14px !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead th:first-child,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-name {
  width: 62% !important;
  max-width: 62% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead th:last-child,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total {
  width: 38% !important;
  max-width: 38% !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
  font-size: 14px !important;
  line-height: 1.42 !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-name,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot td {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td *,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.order-total td {
  font-size: 14px !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method label {
  font-size: 13px !important;
  line-height: 1.35 !important;
}

body.woocommerce-checkout .hg-shipping-note {
  padding: 14px 16px !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td {
  min-width: 126px !important;
}

@media (max-width: 700px) {
  body.woocommerce-checkout #order_review_heading {
    font-size: 25px !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
    padding: 12px 12px !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead th:first-child,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-name {
    width: 64% !important;
    max-width: 64% !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead th:last-child,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total {
    width: 36% !important;
    max-width: 36% !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td * {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  body.woocommerce-checkout .hg-shipping-note {
    padding: 13px 14px !important;
    font-size: 12.5px !important;
  }
}

/* === TRUE FINAL MOBILE CART/CHECKOUT STABILITY === */
body.woocommerce-cart .hg-sticky-cart,
body.woocommerce-checkout .hg-sticky-cart,
body.woocommerce-cart .hg-cart-toast,
body.woocommerce-checkout .hg-cart-toast,
body.woocommerce-cart .hg-cart-drawer,
body.woocommerce-checkout .hg-cart-drawer,
body.woocommerce-cart .hg-cart-drawer-overlay,
body.woocommerce-checkout .hg-cart-drawer-overlay {
  display: none !important;
}

body.woocommerce-cart.hg-cart-drawer-open,
body.woocommerce-checkout.hg-cart-drawer-open {
  overflow: auto !important;
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.woocommerce-cart *,
  body.woocommerce-checkout * {
    box-sizing: border-box !important;
  }

  body.woocommerce-cart input,
  body.woocommerce-cart select,
  body.woocommerce-cart textarea,
  body.woocommerce-checkout input,
  body.woocommerce-checkout select,
  body.woocommerce-checkout textarea {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  .hg-cart-drawer {
    position: fixed !important;
    inset: 0 !important;
    top: 144px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    pointer-events: none !important;
    z-index: 9999 !important;
  }

  .hg-cart-drawer.is-open {
    pointer-events: auto !important;
  }

  .hg-cart-drawer-panel {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  body.admin-bar .hg-cart-drawer {
    top: 190px !important;
  }

  body.admin-bar .hg-cart-drawer-panel {
    height: 100% !important;
    max-height: 100% !important;
    margin-top: 0 !important;
  }

  .hg-cart-drawer-item {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .hg-cart-drawer-item-title,
  .hg-cart-drawer-item-meta,
  .hg-cart-drawer-item-total,
  .hg-cart-drawer-summary,
  .hg-cart-drawer-actions {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .hg-cart-drawer-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  body.woocommerce-cart .page-layout,
  body.woocommerce-cart .page-content,
  body.woocommerce-cart .entry-content,
  body.woocommerce-cart .entry-content > .woocommerce {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  body.woocommerce-cart .page-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px auto 18px !important;
    padding: 0 !important;
  }

  body.woocommerce-cart .page-header h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.05 !important;
  }

  body.woocommerce-cart form.woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto 18px !important;
  }

  body.woocommerce-cart table.shop_table.cart,
  body.woocommerce-cart table.shop_table.cart tbody,
  body.woocommerce-cart table.shop_table.cart tr,
  body.woocommerce-cart table.shop_table.cart td,
  body.woocommerce-cart table.cart,
  body.woocommerce-cart table.cart tbody,
  body.woocommerce-cart table.cart tr,
  body.woocommerce-cart table.cart td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce-cart table.shop_table.cart,
  body.woocommerce-cart table.cart {
    border: 0 !important;
    table-layout: auto !important;
    overflow: visible !important;
  }

  body.woocommerce-cart table.shop_table.cart thead,
  body.woocommerce-cart table.cart thead {
    display: none !important;
  }

  body.woocommerce-cart table.shop_table.cart tr.cart_item,
  body.woocommerce-cart table.cart tr.cart_item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 8px 14px !important;
    align-items: start !important;
    padding: 16px 14px !important;
    margin: 0 0 12px !important;
    border: 1px solid var(--hg-line, #eadfda) !important;
    border-radius: 16px !important;
    background: #fff !important;
  }

  body.woocommerce-cart table.shop_table.cart td,
  body.woocommerce-cart table.cart td {
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-remove,
  body.woocommerce-cart table.cart td.product-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
    z-index: 2 !important;
    text-align: center !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-thumbnail,
  body.woocommerce-cart table.cart td.product-thumbnail {
    grid-column: 1 !important;
    grid-row: 1 / span 4 !important;
    display: block !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-thumbnail img,
  body.woocommerce-cart table.cart td.product-thumbnail img {
    width: 78px !important;
    height: 78px !important;
    object-fit: contain !important;
    border: 1px solid var(--hg-line, #eadfda) !important;
    border-radius: 12px !important;
    background: #fff !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-name,
  body.woocommerce-cart table.cart td.product-name,
  body.woocommerce-cart table.shop_table.cart td.product-price,
  body.woocommerce-cart table.cart td.product-price,
  body.woocommerce-cart table.shop_table.cart td.product-quantity,
  body.woocommerce-cart table.cart td.product-quantity,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal,
  body.woocommerce-cart table.cart td.product-subtotal {
    grid-column: 2 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-name a,
  body.woocommerce-cart table.cart td.product-name a {
    display: block !important;
    max-width: calc(100% - 28px) !important;
    color: var(--hg-ink, #151515) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    overflow-wrap: anywhere !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-price,
  body.woocommerce-cart table.cart td.product-price,
  body.woocommerce-cart table.shop_table.cart td.product-quantity,
  body.woocommerce-cart table.cart td.product-quantity,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal,
  body.woocommerce-cart table.cart td.product-subtotal {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding-top: 4px !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-price::before,
  body.woocommerce-cart table.cart td.product-price::before {
    content: "Τιμή";
    color: var(--hg-muted, #777) !important;
    font-weight: 700 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-quantity::before,
  body.woocommerce-cart table.cart td.product-quantity::before {
    content: "Ποσότητα";
    color: var(--hg-muted, #777) !important;
    font-weight: 700 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-subtotal::before,
  body.woocommerce-cart table.cart td.product-subtotal::before {
    content: "Σύνολο";
    color: var(--hg-muted, #777) !important;
    font-weight: 700 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-subtotal,
  body.woocommerce-cart table.cart td.product-subtotal {
    color: var(--hg-red, #c8141d) !important;
    font-weight: 900 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.actions,
  body.woocommerce-cart table.cart td.actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 12px 0 0 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.actions .coupon,
  body.woocommerce-cart table.cart td.actions .coupon {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.woocommerce-cart table.shop_table.cart td.actions input,
  body.woocommerce-cart table.shop_table.cart td.actions button,
  body.woocommerce-cart table.cart td.actions input,
  body.woocommerce-cart table.cart td.actions button {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 22px 18px !important;
    border: 1px solid var(--hg-line, #eadfda) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals table,
  body.woocommerce-cart .cart-collaterals .cart_totals tbody,
  body.woocommerce-cart .cart-collaterals .cart_totals tr,
  body.woocommerce-cart .cart-collaterals .cart_totals th,
  body.woocommerce-cart .cart-collaterals .cart_totals td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    overflow-wrap: anywhere !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals tr {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--hg-line, #eadfda) !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals th {
    margin-bottom: 6px !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 720px) {
  body.woocommerce-checkout .page-layout,
  body.woocommerce-checkout .page-content,
  body.woocommerce-checkout .entry-content,
  body.woocommerce-checkout .entry-content > .woocommerce {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout .page-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px auto 18px !important;
    padding: 0 !important;
  }

  body.woocommerce-checkout .page-header h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.05 !important;
  }

  body.woocommerce-checkout form.checkout {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .woocommerce-checkout-review-order {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 18px !important;
    overflow: visible !important;
    contain: none !important;
  }

  body.woocommerce-checkout #order_review_heading {
    font-size: clamp(25px, 7vw, 34px) !important;
    line-height: 1.08 !important;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout #payment {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 18px !important;
    border: 1px solid var(--hg-line, #eadfda) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout form .form-row,
  body.woocommerce-checkout form .form-row-first,
  body.woocommerce-checkout form .form-row-last {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
    table-layout: auto !important;
    border: 0 !important;
    font-size: 13px !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead {
    display: none !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody tr,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--hg-line, #eadfda) !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
    padding: 4px 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td.product-total,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot td,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal td,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.order-total td {
    color: var(--hg-red, #c8141d) !important;
    font-weight: 900 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td *,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method li,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method label {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    text-align: left !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout .hg-shipping-note {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    margin: 0 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    text-align: left !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout #payment,
  body.woocommerce-checkout .woocommerce-checkout-payment,
  body.woocommerce-checkout #payment ul.payment_methods,
  body.woocommerce-checkout #payment ul.payment_methods li,
  body.woocommerce-checkout #payment div.payment_box,
  body.woocommerce-checkout #payment .form-row.place-order {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout #payment div.payment_box img,
  body.woocommerce-checkout #payment img {
    max-width: 100% !important;
    height: auto !important;
  }

  body.woocommerce-checkout #payment button#place_order,
  body.woocommerce-checkout #payment .button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    border-radius: 999px !important;
    background: var(--hg-red, #c8141d) !important;
    color: #fff !important;
  }
}

/* === ABSOLUTE FINAL: iOS-safe cart mobile layout via absolute positioning === */
@media (max-width: 720px) {
  /* Cart item row: position:relative block, right-padding for × button */
  body.woocommerce-cart table.shop_table.cart tr.cart_item,
  body.woocommerce-cart table.cart tr.cart_item {
    display: block !important;
    position: relative !important;
    padding: 16px 44px 16px 106px !important;
    min-height: 110px !important;
    margin-bottom: 12px !important;
    border: 1px solid var(--hg-line, #eadfda) !important;
    border-radius: 16px !important;
    background: #fff !important;
  }

  /* All td: block by default */
  body.woocommerce-cart table.shop_table.cart td,
  body.woocommerce-cart table.cart td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  /* Thumbnail: absolute left */
  body.woocommerce-cart table.shop_table.cart td.product-thumbnail,
  body.woocommerce-cart table.cart td.product-thumbnail {
    position: absolute !important;
    left: 16px !important;
    top: 16px !important;
    width: 78px !important;
    min-width: 0 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-thumbnail img,
  body.woocommerce-cart table.cart td.product-thumbnail img {
    width: 78px !important;
    height: 78px !important;
    object-fit: contain !important;
    border: 1px solid var(--hg-line, #eadfda) !important;
    border-radius: 10px !important;
    background: #fff !important;
    display: block !important;
  }

  /* Remove button: absolute top-right */
  body.woocommerce-cart table.shop_table.cart td.product-remove,
  body.woocommerce-cart table.cart td.product-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  /* Product name: full width of remaining space, normal word-wrap */
  body.woocommerce-cart table.shop_table.cart td.product-name,
  body.woocommerce-cart table.cart td.product-name {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-name a,
  body.woocommerce-cart table.cart td.product-name a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--hg-ink, #181818) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Price / Qty / Subtotal rows */
  body.woocommerce-cart table.shop_table.cart td.product-price,
  body.woocommerce-cart table.cart td.product-price,
  body.woocommerce-cart table.shop_table.cart td.product-quantity,
  body.woocommerce-cart table.cart td.product-quantity,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal,
  body.woocommerce-cart table.cart td.product-subtotal {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-top: 4px !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-price::before,
  body.woocommerce-cart table.cart td.product-price::before {
    content: "Τιμή" !important;
    color: var(--hg-muted, #6f6f6f) !important;
    font-weight: 600 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-quantity::before,
  body.woocommerce-cart table.cart td.product-quantity::before {
    content: "Ποσότητα" !important;
    color: var(--hg-muted, #6f6f6f) !important;
    font-weight: 600 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-subtotal::before,
  body.woocommerce-cart table.cart td.product-subtotal::before {
    content: "Σύνολο" !important;
    color: var(--hg-muted, #6f6f6f) !important;
    font-weight: 600 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-subtotal,
  body.woocommerce-cart table.cart td.product-subtotal {
    color: var(--hg-red, #b5151b) !important;
    font-weight: 800 !important;
  }

  /* Hide WooCommerce data-title pseudo-elements on name cell */
  body.woocommerce-cart table.cart td.product-name::before {
    display: none !important;
    content: none !important;
  }
}

/* ===== CHECKOUT: PREMIUM MINIMAL MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* ── PAGE BACKGROUND ── */
  body.woocommerce-checkout,
  body.woocommerce-checkout #page,
  body.woocommerce-checkout #content,
  body.woocommerce-checkout .site-content,
  body.woocommerce-checkout main.site-main {
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
  }

  /* ── PAGE WRAPPER ── */
  body.woocommerce-checkout .page-layout,
  body.woocommerce-checkout .page-content,
  body.woocommerce-checkout .entry-content,
  body.woocommerce-checkout .entry-content > .woocommerce,
  body.woocommerce-checkout .woocommerce {
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ── PAGE TITLE ── */
  body.woocommerce-checkout .page-header {
    padding: 20px 16px 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }
  body.woocommerce-checkout .page-header h1,
  body.woocommerce-checkout h1.entry-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #1a1a1a !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
  }

  /* ── FORM LAYOUT ── */
  body.woocommerce-checkout form.checkout,
  body.woocommerce-checkout form.woocommerce-checkout {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px 24px !important;
    background: transparent !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .woocommerce-checkout-review-order {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  /* ── SECTION CARDS ── */
  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    background: #ffffff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 12px !important;
    padding: 20px 16px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── SECTION TITLES (h3) ── */
  body.woocommerce-checkout h3,
  body.woocommerce-checkout .woocommerce-billing-fields h3,
  body.woocommerce-checkout .woocommerce-shipping-fields h3,
  body.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    line-height: 1.2 !important;
  }

  /* ── ORDER REVIEW HEADING ── */
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout h3#order_review_heading {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    padding: 0 !important;
    margin: 0 0 14px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* ── FORM ROWS ── */
  body.woocommerce-checkout form .form-row,
  body.woocommerce-checkout form .form-row-first,
  body.woocommerce-checkout form .form-row-last,
  body.woocommerce-checkout form p.form-row {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  /* ── LABELS ── */
  body.woocommerce-checkout form .form-row label,
  body.woocommerce-checkout form label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }

  /* ── INPUTS ── */
  body.woocommerce-checkout form input.input-text,
  body.woocommerce-checkout form input[type="text"],
  body.woocommerce-checkout form input[type="email"],
  body.woocommerce-checkout form input[type="tel"],
  body.woocommerce-checkout form input[type="number"],
  body.woocommerce-checkout form input[type="password"],
  body.woocommerce-checkout form select,
  body.woocommerce-checkout form textarea,
  body.woocommerce-checkout .select2-container .select2-selection--single {
    display: block !important;
    width: 100% !important;
    min-height: 50px !important;
    padding: 14px 16px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    background: #fafafa !important;
    background-color: #fafafa !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-checkout form textarea {
    min-height: 90px !important;
    resize: vertical !important;
  }
  body.woocommerce-checkout .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    line-height: 1 !important;
  }
  body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    font-size: 16px !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
  }

  /* ── COUPON NOTICE ── */
  body.woocommerce-checkout .woocommerce-info,
  body.woocommerce-checkout .woocommerce-error,
  body.woocommerce-checkout .woocommerce-message,
  body.woocommerce-checkout .woocommerce-NoticeGroup {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    margin-bottom: 14px !important;
    font-size: 13px !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── ORDER SUMMARY TABLE ── */
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border: 0 !important;
    border-collapse: collapse !important;
    background: transparent !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table thead {
    display: none !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tbody,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr {
    display: block !important;
    width: 100% !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr:last-child {
    border-bottom: 0 !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    background: transparent !important;
    width: auto !important;
    text-align: left !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td.product-name {
    flex: 1 1 auto !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    padding-right: 12px !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table td.product-total {
    flex: 0 0 auto !important;
    font-weight: 700 !important;
    color: #c0392b !important;
    text-align: right !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
    color: #c0392b !important;
    font-weight: 700 !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #c0392b !important;
  }
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total th {
    color: #1a1a1a !important;
  }

  /* ── SHIPPING ROW ── */
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping th,
  body.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr.shipping td {
    font-size: 13px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    color: #555 !important;
  }
  body.woocommerce-checkout table.shop_table ul#shipping_method,
  body.woocommerce-checkout table.shop_table ul#shipping_method li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    font-size: 13px !important;
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
  body.woocommerce-checkout table.shop_table ul#shipping_method label {
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: normal !important;
  }

  /* ── SHIPPING NOTE ── */
  body.woocommerce-checkout .hg-shipping-note {
    width: 100% !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    border-radius: 8px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    box-sizing: border-box !important;
  }

  /* ── PAYMENT SECTION RESET ── */
  body.woocommerce-checkout #payment,
  body.woocommerce-checkout .woocommerce-checkout-payment {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  body.woocommerce-checkout #payment ul.payment_methods {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
    width: 100% !important;
  }

  /* ── PAYMENT METHOD CARDS ── */
  body.woocommerce-checkout #payment ul.payment_methods li,
  body.woocommerce-checkout #payment ul.payment_methods > li {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    padding: 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked ~ label,
  body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type="radio"]:checked + label {
    color: #c0392b !important;
  }

  /* ── PAYMENT BOX (description inside each method) ── */
  body.woocommerce-checkout #payment div.payment_box {
    background: #f8f8f8 !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 14px !important;
    margin: 12px 0 0 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  body.woocommerce-checkout #payment div.payment_box img,
  body.woocommerce-checkout #payment ul.payment_methods li img {
    max-width: 130px !important;
    height: auto !important;
    display: block !important;
    margin: 0 0 10px !important;
  }
  body.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
  }
  body.woocommerce-checkout #payment .form-row.place-order {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* ── SUBMIT BUTTON ── */
  body.woocommerce-checkout #payment button#place_order,
  body.woocommerce-checkout #place_order,
  body.woocommerce-checkout button#place_order,
  body.woocommerce-checkout input#place_order,
  body.woocommerce-checkout button[name="woocommerce_checkout_place_order"],
  body.woocommerce-checkout #payment .button {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 24px !important;
    min-height: 58px !important;
    background: #c0392b !important;
    background-color: #c0392b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: center !important;
    cursor: pointer !important;
    margin-top: 20px !important;
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3) !important;
    letter-spacing: 0.2px !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }
}

/* ── HEADER SOCIAL ICONS ─────────────────────────────── */
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hg-ink);
  opacity: 0.65;
  transition: opacity 0.18s, color 0.18s;
  line-height: 1;
}

.header-social-link:hover {
  opacity: 1;
  color: #c0392b;
}

.header-social-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Hide on tablet / mobile — header grid has no space for it */
@media (max-width: 1080px) {
  .header-social {
    display: none;
  }
}

/* ── FOOTER LOGO + SOCIAL ICONS ──────────────────────── */
.footer-logo {
  margin-bottom: 14px;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo .custom-logo {
  max-height: 52px;
  width: auto;
  display: block;
}

.footer-copy {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--hg-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hg-muted);
  transition: color 0.18s;
  line-height: 1;
}

.footer-social-link:hover {
  color: #c0392b;
}

.footer-social-link svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* ── ELEMENTOR NESTED ACCORDION: hide SVG +/- toggle icons ── */
details[id^="e-n-accordion-item"] summary svg,
details[id^="e-n-accordion-item"] summary br,
.e-n-accordion details summary svg,
.e-n-accordion details summary br {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
