.hmsc-root {
  --hmsc-shadow: 0 24px 80px rgba(7, 48, 71, 0.24);
  --hmsc-border: rgba(7, 48, 71, 0.13);
  --hmsc-muted: #667680;
  --hmsc-danger: #b42318;
  --hmsc-success: #147a45;
  position: relative;
  z-index: 999999;
  font-family: "Poppins-Regular", "Poppins", "Trebuchet MS", sans-serif;
  color: var(--hmsc-text);
}
.hmsc-root * {
  box-sizing: border-box;
}
.hmsc-root [hidden] {
  display: none !important;
}
.hmsc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 25, 36, 0.58);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.hmsc-root.is-open .hmsc-overlay {
  opacity: 1;
}
.hmsc-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(var(--hmsc-width), calc(100vw - 28px));
  max-width: 100%;
  background: var(--hmsc-surface);
  display: flex;
  flex-direction: column;
  box-shadow: var(--hmsc-shadow);
  outline: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    transform 0.34s cubic-bezier(0.22, 0.78, 0.2, 1),
    visibility 0.34s;
}
.hmsc-side-right .hmsc-drawer {
  right: 0;
  transform: translateX(105%);
}
.hmsc-side-left .hmsc-drawer {
  left: 0;
  transform: translateX(-105%);
}
.hmsc-root.is-open .hmsc-drawer {
  transform: translateX(0);
  visibility: visible;
}
.hmsc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 22px 17px;
  background: var(--hmsc-primary);
  color: #fff;
  position: relative;
}
.hmsc-brand-lockup {
  min-width: 0;
}
.hmsc-brand-logo {
  display: block;
  width: auto;
  max-width: 118px;
  height: 28px;
  margin-bottom: 8px;
  object-fit: contain;
  object-position: left center;
}
.hmsc-kicker {
  display: block;
  color: var(--hmsc-highlight);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin-bottom: 4px;
}
.hmsc-header h2 {
  color: #fff;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0;
}
.hmsc-title-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 99px;
  background: var(--hmsc-accent);
  color: var(--hmsc-primary);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  vertical-align: middle;
}
.hmsc-header p {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.78;
  margin: 7px 0 0;
}
.hmsc-icon-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hmsc-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}
.hmsc-close:hover,
.hmsc-close:focus,
.hmsc-close:active {
  background: transparent;
}
.hmsc-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.hmsc-announcement {
  display: block;
  padding: 10px 18px;
  background: var(--hmsc-highlight);
  color: var(--hmsc-primary);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.hmsc-bxgy-announcement {
  padding: 12px 18px;
  border-top: 1px solid #d3d900;
  border-bottom: 1px solid #c3ca00;
  background: #f1ff00;
  color: var(--hmsc-primary);
  box-shadow: inset 0 -2px 0 rgba(7, 48, 71, 0.08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
.hmsc-bxgy-announcement__headline,
.hmsc-bxgy-announcement__progress {
  display: block;
}
.hmsc-bxgy-announcement__progress {
  margin-top: 2px;
}
.hmsc-shipping {
  padding: 14px 18px 12px;
  background: #edf7df;
  border-bottom: 1px solid #d9e9c2;
}
.hmsc-shipping-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--hmsc-primary);
}
.hmsc-shipping-copy strong {
  white-space: nowrap;
}
.hmsc-progress-track {
  height: 7px;
  background: #d4e4c2;
  border-radius: 99px;
  margin-top: 9px;
  overflow: hidden;
}
.hmsc-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--hmsc-accent), #42b878);
  border-radius: inherit;
  transition: width 0.45s ease;
}
.hmsc-shipping.is-complete .hmsc-progress-track span {
  background: #16a56b;
}
.hmsc-reward-strip {
  display: flex;
  gap: 0;
  padding: 12px 18px 10px;
  border-bottom: 1px solid var(--hmsc-border);
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}
.hmsc-reward-strip::-webkit-scrollbar {
  display: none;
}
.hmsc-reward {
  position: relative;
  min-width: 108px;
  flex: 1;
  text-align: center;
  padding: 0 6px;
  color: var(--hmsc-muted);
}
.hmsc-reward:not(:last-child):after {
  content: "";
  position: absolute;
  top: 11px;
  right: -18%;
  width: 36%;
  height: 2px;
  background: #d9e0e3;
}
.hmsc-reward-dot {
  width: 24px;
  height: 24px;
  border: 2px solid #c8d1d5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 5px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}
.hmsc-reward.is-reached {
  color: var(--hmsc-primary);
}
.hmsc-reward.is-reached .hmsc-reward-dot {
  background: var(--hmsc-accent);
  border-color: var(--hmsc-accent);
}
.hmsc-reward small {
  display: block;
  font-size: 10px;
  line-height: 1.2;
}
.hmsc-panel {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hmsc-scroll-region {
  overflow-y: auto;
  overscroll-behavior: contain;
  min-height: 0;
  flex: 1;
  padding: 0 18px 24px;
  scrollbar-width: thin;
  scrollbar-color: #bdc8cc transparent;
}
.hmsc-loading {
  display: grid;
  grid-template-columns: repeat(3, 8px);
  justify-content: center;
  gap: 7px;
  padding: 54px 20px 32px;
}
.hmsc-loading span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hmsc-accent);
  animation: hmsc-bounce 0.9s infinite alternate;
}
.hmsc-loading span:nth-child(2) {
  animation-delay: 0.14s;
}
.hmsc-loading span:nth-child(3) {
  animation-delay: 0.28s;
}
.hmsc-loading p {
  grid-column: 1/-1;
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--hmsc-muted);
}
@keyframes hmsc-bounce {
  to {
    transform: translateY(-7px);
  }
}
.hmsc-empty {
  text-align: center;
  padding: 34px 16px 28px;
}
.hmsc-empty-art {
  width: 160px;
  max-width: 75%;
  margin: 0 auto 15px;
}
.hmsc-art-sun {
  fill: var(--hmsc-highlight);
}
.hmsc-art-steam {
  fill: none;
  stroke: var(--hmsc-primary);
  stroke-width: 4;
  stroke-linecap: round;
}
.hmsc-art-basket {
  fill: var(--hmsc-accent);
  stroke: var(--hmsc-primary);
  stroke-width: 4;
  stroke-linejoin: round;
}
.hmsc-art-line {
  fill: none;
  stroke: var(--hmsc-primary);
  stroke-width: 2;
  opacity: 0.7;
}
.hmsc-empty h3,
.hmsc-saved-empty h3 {
  font-family: "GildsleyDemo-pggJa", "GildsleyDemo", serif;
  color: var(--hmsc-primary);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 8px;
}
.hmsc-empty p,
.hmsc-saved-empty p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--hmsc-muted);
  margin: 0 auto 18px;
  max-width: 300px;
}
.hmsc-cart-items {
  display: grid;
  gap: 0;
}
.hmsc-cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hmsc-border);
  position: relative;
}
.hmsc-cart-item.is-busy {
  opacity: 0.55;
  pointer-events: none;
}
.hmsc-cart-item.is-free {
  background: #fff;
}
.hmsc-cart-item-image {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 5px;
  background: #eef2ed;
}
.hmsc-cart-item-body {
  min-width: 0;
}
.hmsc-item-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}
.hmsc-item-name {
  min-width: 0;
  color: var(--hmsc-primary);
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}
.hmsc-item-name:hover {
  text-decoration: underline;
}
.hmsc-delete-item {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #cbd5d8;
  border-radius: 5px;
  background: #fff;
  color: var(--hmsc-primary);
  cursor: pointer;
  padding: 7px;
}
.hmsc-delete-item:hover {
  color: var(--hmsc-danger);
  border-color: currentColor;
  background: #fff;
}
.hmsc-delete-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.hmsc-item-meta {
  font-size: 10px;
  line-height: 1.45;
  color: var(--hmsc-muted);
  margin: 4px 0;
}
.hmsc-gift-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e1f6cc;
  color: #275913;
  border-radius: 99px;
  padding: 3px 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hmsc-free-current,
.hmsc-free-saving {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  white-space: nowrap;
}
.hmsc-item-original {
  color: #7b898f;
  font-size: 10px;
  font-weight: 500;
}
.hmsc-free-discount {
  color: #e1392d;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.hmsc-promotion-meta {
  margin-top: 7px;
}
.hmsc-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--hmsc-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hmsc-offer-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}
.hmsc-item-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin: 0;
  text-align: right;
}
.hmsc-item-price {
  color: var(--hmsc-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}
.hmsc-item-regular {
  text-decoration: line-through;
  color: #8a979d;
  font-size: 11px;
}
.hmsc-item-actions {
  display: grid;
  grid-template-columns: auto 32px;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
}
.hmsc-managed-quantity {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--hmsc-primary);
  font-size: 12px;
  font-weight: 600;
}
.hmsc-included-offer {
  display: block;
  margin-top: 5px;
  color: var(--hmsc-success);
  font-size: 11px;
  font-weight: 600;
}
.hmsc-quantity {
  display: grid;
  grid-template-columns: 32px 38px 32px;
  align-items: stretch;
  height: 32px;
  border: 1px solid #cbd5d8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.hmsc-quantity button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border: 0;
  background: #fff;
  color: var(--hmsc-primary);
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.hmsc-quantity button:hover {
  background: #fff;
}
.hmsc-quantity input {
  width: 100%;
  height: 30px;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center;
  line-height: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  appearance: textfield;
}
.hmsc-quantity input::-webkit-outer-spin-button,
.hmsc-quantity input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.hmsc-recommendations {
  margin-right: -18px;
  margin-left: -18px;
  padding: 24px 18px 12px;
  background: #fff;
}
.hmsc-section-heading span {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #839097;
  font-weight: 400;
}
.hmsc-section-heading h3 {
  font-family: "GildsleyDemo-pggJa", "GildsleyDemo", serif;
  color: var(--hmsc-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin: 4px 0 13px;
}
.hmsc-recommendation-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 148px;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 1px 10px;
  scrollbar-width: none;
}
.hmsc-recommendation-row::-webkit-scrollbar {
  display: none;
}
.hmsc-rec-card {
  scroll-snap-align: start;
  border: 1px solid var(--hmsc-border);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hmsc-rec-card img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  background: #edf1ed;
}
.hmsc-rec-body {
  padding: 9px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hmsc-rec-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--hmsc-primary);
  text-decoration: none;
  min-height: 38px;
}
.hmsc-rec-price {
  font-size: 11px;
  font-weight: 800;
  margin: 5px 0 8px;
}
.hmsc-rec-action {
  margin-top: auto;
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: var(--hmsc-primary);
  color: #fff;
  font:
    700 10px/1 "Poppins",
    sans-serif;
  padding: 9px 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.hmsc-coupon-section {
  padding: 9px 0;
  border-bottom: 1px solid var(--hmsc-border);
}
.hmsc-coupon-section.is-exclusive {
  display: none;
}
.hmsc-disclosure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--hmsc-primary);
  font:
    700 12px/1.4 "Poppins",
    sans-serif;
  padding: 6px 0;
  cursor: pointer;
}
.hmsc-disclosure > span:last-child {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s;
}
.hmsc-disclosure[aria-expanded="true"] > span:last-child {
  transform: rotate(45deg);
}
.hmsc-coupon-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 8px 0;
}
.hmsc-coupon-form input {
  min-width: 0;
  height: 42px;
  border: 1px solid #bdc9cd !important;
  border-radius: 10px !important;
  padding: 0 12px !important;
  font-size: 12px !important;
  box-shadow: none !important;
}
.hmsc-coupons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hmsc-coupon-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 99px;
  background: #e1f6cc;
  color: #275913;
  padding: 5px 8px 5px 10px;
  font-size: 10px;
  font-weight: 800;
}
.hmsc-coupon-chip button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}
.hmsc-total-details {
  max-height: min(34vh, 260px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #bdc8cc transparent;
}
.hmsc-total-details[hidden] {
  display: none !important;
}
.hmsc-totals {
  padding: 9px 0 4px;
}
.hmsc-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
  color: var(--hmsc-muted);
  font-size: 13px;
}
.hmsc-total-row strong {
  color: var(--hmsc-primary);
}
.hmsc-total-row.is-grand {
  border-top: 1px solid var(--hmsc-border);
  margin-top: 7px;
  padding-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--hmsc-primary);
}
.hmsc-total-row.is-saving {
  color: var(--hmsc-success);
}
.hmsc-total-toggle {
  appearance: none;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 !important;
  padding: 11px 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--hmsc-primary) !important;
  font: 600 15px/1.3 "Poppins", sans-serif !important;
  letter-spacing: 0 !important;
  text-align: left;
  text-transform: none !important;
  cursor: pointer;
}
.hmsc-total-details:not([hidden]) + .hmsc-total-toggle {
  border-top: 1px solid var(--hmsc-border) !important;
}
.hmsc-total-toggle:hover,
.hmsc-total-toggle:focus {
  background: transparent !important;
  color: var(--hmsc-primary) !important;
}
.hmsc-total-toggle:focus-visible {
  outline: 2px solid var(--hmsc-highlight);
  outline-offset: 2px;
}
.hmsc-total-toggle-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-width: 0;
}
.hmsc-total-toggle-value strong {
  color: var(--hmsc-primary);
  font-size: 15px;
  white-space: nowrap;
}
.hmsc-total-caret {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.hmsc-total-toggle[aria-expanded="true"] .hmsc-total-caret {
  transform: rotate(180deg);
}
.hmsc-footer {
  padding: 0 18px calc(14px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--hmsc-border);
  box-shadow: 0 -10px 28px rgba(7, 48, 71, 0.07);
}
.hmsc-footer > p {
  margin: 0 0 9px;
  text-align: center;
  color: var(--hmsc-muted);
  font-size: 9px;
}
.hmsc-footer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.hmsc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 12px;
  border: 2px solid var(--hmsc-primary);
  padding: 10px 15px;
  font: 400 14px/1 "Poppins-Regular", "Poppins", sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}
.hmsc-button-primary {
  background: var(--hmsc-primary);
  color: #fff;
}
.hmsc-button-primary:hover {
  background: #0a3e5b;
  color: #fff;
}
.hmsc-button-secondary {
  background: #fff;
  color: var(--hmsc-primary);
}
.hmsc-button-compact {
  min-height: 42px;
  background: var(--hmsc-highlight);
  color: var(--hmsc-primary);
  border-color: var(--hmsc-highlight);
  padding: 8px 14px;
  font-size: 12px;
}
.hmsc-notices {
  padding: 0 18px;
}
.hmsc-notice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 10px;
  background: #e9f3f8;
  color: var(--hmsc-primary);
  font-size: 11px;
  line-height: 1.4;
  border-left: 4px solid #4b8ba8;
}
.hmsc-notice.is-error {
  background: #fff0ef;
  color: #7c1d17;
  border-color: #d92d20;
}
.hmsc-notice.is-success {
  background: #eaf8ee;
  color: #185c33;
  border-color: #2f9e5b;
}
.hmsc-notice.is-warning {
  background: #fff7df;
  color: #634600;
  border-color: #e5a900;
}
.hmsc-notice button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.hmsc-floating {
  position: fixed;
  bottom: calc(var(--hmsc-offset-y) + env(safe-area-inset-bottom));
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--hmsc-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 13px 32px rgba(7, 48, 71, 0.27);
  cursor: pointer;
  z-index: 999990;
  transition: transform 0.2s ease;
}
.hmsc-floating:hover {
  transform: translateY(-3px);
}
.hmsc-floating-bottom-right {
  right: var(--hmsc-offset-x);
}
.hmsc-floating-bottom-left {
  left: var(--hmsc-offset-x);
}
.hmsc-floating-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hmsc-floating-count {
  position: absolute;
  right: -5px;
  top: -6px;
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--hmsc-highlight);
  color: var(--hmsc-primary);
  border: 2px solid #fff;
  font:
    800 10px/1 "Poppins",
    sans-serif;
}
.hmsc-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.hmsc-trigger-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--hmsc-highlight);
  color: var(--hmsc-primary);
  font-size: 10px;
  font-weight: 800;
}
.hmsc-save-product {
  margin-left: 9px;
  border: 1px solid var(--hmsc-primary, #073047);
  background: #fff;
  color: var(--hmsc-primary, #073047);
  border-radius: 8px;
  padding: 10px 13px;
  cursor: pointer;
}
.hmsc-root button:focus-visible,
.hmsc-root a:focus-visible,
.hmsc-root input:focus-visible {
  outline: 3px solid var(--hmsc-highlight) !important;
  outline-offset: 2px;
}
.hmsc-body-locked {
  overflow: hidden !important;
  touch-action: none;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
@media (max-width: 600px) {
  .hmsc-drawer {
    width: 100vw;
    max-width: none;
  }
  .hmsc-header {
    padding: 18px 16px 14px;
  }
  .hmsc-header h2 {
    font-size: 14px;
  }
  .hmsc-scroll-region {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hmsc-recommendations {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
  }
  .hmsc-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hmsc-total-details {
    max-height: min(32vh, 230px);
  }
  .hmsc-cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 11px;
  }
  .hmsc-cart-item-image {
    width: 72px;
    height: 72px;
  }
  .hmsc-item-actions {
    align-items: center;
  }
  .hmsc-floating {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  .hmsc-hide-mobile {
    display: none !important;
  }
}
@media (min-width: 601px) {
  .hmsc-hide-desktop {
    display: none !important;
  }
}
@media (max-width: 340px) {
  .hmsc-cart-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }
  .hmsc-cart-item-image {
    width: 62px;
    height: 62px;
  }
  .hmsc-quantity {
    grid-template-columns: 29px 34px 29px;
  }
  .hmsc-button {
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hmsc-root *,
  .hmsc-root *:before,
  .hmsc-root *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
