/* Hamogelakia global chrome styles — public, non-generated asset. */
@font-face {
  font-family: "Hmg Comfortaa";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/hamogelakia/comfortaa-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Hmg Comfortaa";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/hamogelakia/comfortaa-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Hmg Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("fonts/hamogelakia/noto-sans-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Hmg Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("fonts/hamogelakia/noto-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.hmg-chrome {
  --hmg-yellow: #fedc00;
  --hmg-ink: #241f21;
  --hmg-lime: #b9dc43;
  --hmg-cream: #fff9e8;
  --hmg-paper: #fffef9;
  --hmg-line: rgba(36, 31, 33, 0.18);
  color: var(--hmg-ink);
  font-family: "Hmg Noto Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.hmg-chrome a {
  color: inherit;
  text-decoration: none;
}

.hmg-chrome button,
.hmg-chrome input {
  font: inherit;
}

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

.hmg-chrome[hidden],
.hmg-chrome [hidden] {
  display: none !important;
}

.hmg-chrome--header,
.hmg-chrome--footer {
  display: none;
}

html.hmg-chrome-server .site-wrapper > header {
  display: none !important;
}

html.hmg-chrome-server .hmg-chrome--header {
  display: block;
  min-height: 82px;
  visibility: hidden;
}

.hmg-chrome--header {
  position: sticky;
  z-index: 500;
  top: 0;
}

body.hmg-header-ready .hmg-chrome--header,
body.hmg-footer-ready .hmg-chrome--footer {
  display: block;
}

html.hmg-chrome-server body.hmg-header-ready .hmg-chrome--header {
  min-height: 0;
  visibility: visible;
}

body.hmg-header-ready .site-wrapper > header {
  display: none !important;
}

body.hmg-footer-ready .site-wrapper > footer {
  display: none !important;
}

.hmg-chrome-header {
  position: relative;
  border-bottom: 2px solid var(--hmg-ink);
  background: rgba(255, 249, 232, 0.96);
  box-shadow: 0 8px 30px rgba(36, 31, 33, 0.08);
  backdrop-filter: blur(18px);
}

.hmg-chrome-header__row {
  width: min(1380px, calc(100% - 40px));
  min-height: 80px;
  display: grid;
  grid-template-columns: 196px minmax(390px, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin: 0 auto;
}

.hmg-chrome-header__brand,
.hmg-chrome-header__brand #logo {
  width: 196px;
  min-width: 0;
  margin: 0;
}

.hmg-chrome-header__brand #logo a {
  display: flex;
  align-items: center;
}

.hmg-chrome-header__brand #logo img {
  width: 190px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.hmg-chrome-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 25px);
}

.hmg-chrome-header__nav a,
.hmg-chrome-header__nav-trigger {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hmg-ink);
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.hmg-chrome-header__nav a::after,
.hmg-chrome-header__nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--hmg-yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.hmg-chrome-header__nav a:hover::after,
.hmg-chrome-header__nav a:focus-visible::after,
.hmg-chrome-header__nav-trigger:hover::after,
.hmg-chrome-header__nav-trigger:focus-visible::after,
.hmg-chrome-header__nav-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.hmg-chrome-header__nav-smile {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 50%;
  background: var(--hmg-yellow);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
}

.hmg-chrome-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hmg-chrome-search {
  position: relative;
  width: clamp(205px, 17vw, 270px);
  height: 44px;
  flex: 0 1 auto;
}

.hmg-chrome-search #me_search,
.hmg-chrome-search #search {
  position: relative;
  width: 100%;
  height: 44px;
  margin: 0;
}

.hmg-chrome-search #me_search > .search-trigger,
.hmg-chrome-search #search > .search-trigger {
  display: none !important;
}

.hmg-chrome-search #me_search > .me_seach_dropdown {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 44px;
  display: flex !important;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  overflow: visible;
  padding: 0;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.hmg-chrome-search #me_search .me-search-input {
  min-width: 0;
  height: 100%;
  flex: 1 1 auto;
}

.hmg-chrome-search #me_search_input {
  width: 100%;
  height: 100%;
  padding: 0 8px 0 16px;
  border: 0 !important;
  background: transparent;
  color: var(--hmg-ink);
  box-shadow: none !important;
  font-size: 14px;
}

.hmg-chrome-search #me_search_input::placeholder {
  color: rgba(36, 31, 33, 0.54);
}

.hmg-chrome-search #me_search .clearable__clear {
  right: 4px;
}

.hmg-chrome-search #me_search .btn-me-search {
  position: static !important;
  width: 37px;
  height: 37px;
  min-width: 37px;
  display: grid;
  place-items: center;
  margin-right: 3px;
  padding: 0;
  border: 0 !important;
  border-radius: 50%;
  background: var(--hmg-yellow) !important;
  color: var(--hmg-ink) !important;
  box-shadow: none !important;
}

.hmg-chrome-search #me_search .me_dropdown {
  top: calc(100% + 9px) !important;
  right: 0;
  left: 0;
  width: min(520px, 88vw);
  max-height: min(520px, 70vh);
  overflow-y: auto;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 18px;
  box-shadow: 7px 8px 0 var(--hmg-yellow);
}

.hmg-chrome-search #search > .dropdown-menu {
  position: static !important;
  width: 100%;
  min-width: 0;
  height: 44px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hmg-chrome-search #search .header-search {
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 999px;
  background: #fff;
}

.hmg-chrome-search #search .search-input {
  min-width: 0;
  height: 100%;
  flex: 1 1 auto;
  padding: 0 10px 0 16px;
  border: 0;
  background: transparent;
  color: var(--hmg-ink);
  box-shadow: none;
  font-size: 14px;
}

.hmg-chrome-search #search .search-button {
  width: 37px;
  height: 37px;
  min-width: 37px;
  margin-right: 3px;
  border: 0;
  border-radius: 50%;
  background-color: var(--hmg-yellow);
  color: var(--hmg-ink);
}

.hmg-chrome-account,
.hmg-chrome-language > #language,
.hmg-chrome-cart > #cart {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.hmg-chrome-account {
  display: grid;
  place-items: center;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 50%;
  background: var(--hmg-paper);
  transition: transform 160ms ease, background 160ms ease;
}

.hmg-chrome-account:hover,
.hmg-chrome-account:focus-visible {
  background: var(--hmg-yellow);
  transform: translateY(-2px);
}

.hmg-chrome-account svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hmg-chrome-language #language {
  position: relative;
  display: block;
}

.hmg-chrome-language #language .dropdown-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 50%;
  background: var(--hmg-paper);
  color: var(--hmg-ink);
}

.hmg-chrome-language #language .language-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hmg-chrome-language #language .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 150px;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 14px;
  box-shadow: 5px 6px 0 var(--hmg-yellow);
}

.hmg-chrome-cart #cart {
  position: relative;
  display: block;
}

.hmg-chrome-cart #cart > .cart-heading {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 50%;
  background: var(--hmg-ink);
  color: #fff;
}

.hmg-chrome-cart #cart-total {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hmg-chrome-cart #cart-items {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 999px;
  background: var(--hmg-yellow);
  color: var(--hmg-ink);
  font-size: 11px;
  font-weight: 800;
}

.hmg-chrome-cart #cart i {
  display: grid;
  place-items: center;
  font-size: 19px;
}

.hmg-chrome-cart #cart i svg {
  width: 22px;
  height: 22px;
  display: block !important;
}

.hmg-chrome-cart #cart-content {
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  width: min(390px, calc(100vw - 24px));
  min-width: 300px;
  overflow: hidden;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 18px;
  background: #fff;
  color: var(--hmg-ink);
  box-shadow: 7px 8px 0 var(--hmg-yellow);
}

.hmg-chrome-header__menu {
  min-height: 44px;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1.5px solid var(--hmg-ink);
  border-radius: 999px;
  background: var(--hmg-yellow);
  color: var(--hmg-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.hmg-chrome-header__menu i {
  position: relative;
  width: 17px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.hmg-chrome-header__menu i::after {
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  border-top: 2px solid currentColor;
  content: "";
}

.hmg-chrome-footer {
  position: relative;
  overflow: hidden;
  padding: 64px max(32px, calc((100% - 1380px) / 2)) 28px;
  background: var(--hmg-ink);
  color: #fff;
}

.hmg-chrome-footer__smile {
  position: absolute;
  top: -110px;
  right: 7%;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: end center;
  padding-bottom: 34px;
  border-radius: 50%;
  background: var(--hmg-yellow);
  display: none !important;
}

.hmg-chrome-smile {
  position: relative;
  width: 90px;
  height: 90px;
  display: block;
  border: 2px solid var(--hmg-ink);
  border-radius: 50%;
}

.hmg-chrome-smile i {
  position: absolute;
  top: 23px;
  width: 8px;
  height: 12px;
  border-radius: 50%;
  background: var(--hmg-ink);
}

.hmg-chrome-smile i:first-child {
  left: 23px;
}

.hmg-chrome-smile i:nth-child(2) {
  right: 23px;
}

.hmg-chrome-smile b {
  position: absolute;
  top: 36px;
  left: 22px;
  width: 43px;
  height: 28px;
  border-bottom: 7px solid var(--hmg-ink);
  border-radius: 0 0 50% 50%;
}

.hmg-chrome-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
  gap: 52px;
  padding-bottom: 70px;
}

.hmg-chrome-footer__logo a {
  display: inline-flex;
}

.hmg-chrome-footer__logo img {
  width: 270px;
  height: 96px;
  padding: 12px 16px;
  border: 2px solid var(--hmg-yellow);
  border-radius: 22px;
  background: #fff;
  object-fit: contain;
  object-position: left center;
  box-shadow: 6px 7px 0 var(--hmg-yellow);
}

.hmg-chrome-footer__brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.hmg-chrome-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hmg-chrome-footer__links > span {
  margin-bottom: 6px;
  color: var(--hmg-yellow);
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hmg-chrome-footer__links a {
  font-size: 14px;
}

.hmg-chrome-footer__links a:hover,
.hmg-chrome-footer__links a:focus-visible {
  color: var(--hmg-yellow);
}

.hmg-chrome-footer__contact a:first-of-type {
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.hmg-chrome-footer__contact small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hmg-chrome-footer__newsletter {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  margin-bottom: 38px;
  padding: 30px 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 26px 26px 26px 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hmg-chrome-footer__newsletter-copy,
.hmg-chrome-footer__newsletter-form,
.hmg-chrome-footer__newsletter-form .module-newsletter,
.hmg-chrome-footer__newsletter-form .module-body,
.hmg-chrome-footer__newsletter-form .newsletter-form,
.hmg-chrome-footer__newsletter-form form,
.hmg-chrome-footer__newsletter-form .input-group {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hmg-chrome-footer__newsletter-form .module-newsletter,
.hmg-chrome-footer__newsletter-form .module-body {
  display: block;
}

.hmg-chrome-footer__newsletter-copy > span {
  color: var(--hmg-yellow);
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hmg-chrome-footer__newsletter-copy h2 {
  max-width: 440px;
  margin: 8px 0 0;
  color: #fff;
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.2;
}

.hmg-chrome-footer__newsletter-form .module-newsletter {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hmg-chrome-footer__newsletter-form .module-newsletter > .module-title {
  display: none;
}

.hmg-chrome-footer__newsletter-form .module-body,
.hmg-chrome-footer__newsletter-form .newsletter-form,
.hmg-chrome-footer__newsletter-form form {
  margin: 0;
  padding: 0;
}

.hmg-chrome-footer__newsletter-form .input-group {
  width: 100%;
  display: flex;
}

.hmg-chrome-footer__newsletter-form .newsletter-email {
  min-width: 0;
  height: 50px;
  flex: 1 1 auto;
  padding: 0 18px;
  border: 1.5px solid var(--hmg-yellow);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: #fff;
  color: var(--hmg-ink);
  box-shadow: none;
  font-size: 15px;
}

.hmg-chrome-footer__newsletter-form .input-group-btn {
  display: flex;
}

.hmg-chrome-footer__newsletter-form .btn {
  min-width: 105px;
  height: 50px;
  padding: 0 20px;
  border: 1.5px solid var(--hmg-yellow);
  border-radius: 0 999px 999px 0;
  background: var(--hmg-yellow);
  color: var(--hmg-ink);
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}

.hmg-chrome-footer__newsletter-form .checkbox {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.hmg-chrome-footer__newsletter-form .checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hmg-chrome-footer__newsletter-form .checkbox input {
  margin: 4px 0 0;
  accent-color: var(--hmg-yellow);
}

.hmg-chrome-footer__newsletter-form .checkbox a,
.hmg-chrome-footer__bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hmg-chrome-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.hmg-chrome-footer__bottom a:hover,
.hmg-chrome-footer__bottom a:focus-visible {
  color: var(--hmg-yellow);
}

.hmg-chrome :focus-visible {
  outline: 3px solid var(--hmg-yellow);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  html.hmg-chrome-server .hmg-chrome--header {
    min-height: 126px;
  }

  html.hmg-chrome-server body.hmg-header-ready .hmg-chrome--header {
    min-height: 0;
  }

  .hmg-chrome-header__row {
    width: calc(100% - 28px);
    min-height: 0;
    grid-template-columns: minmax(148px, 1fr) auto auto;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 8px;
    padding: 6px 0 10px;
  }

  .hmg-chrome-header__brand,
  .hmg-chrome-header__brand #logo {
    width: min(180px, 100%);
  }

  .hmg-chrome-header__brand #logo img {
    width: min(176px, 100%);
    height: 58px;
  }

  .hmg-chrome-header__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .hmg-chrome-header__nav,
  .hmg-chrome-account,
  .hmg-chrome-language {
    display: none !important;
  }

  .hmg-chrome-search {
    width: 100%;
    height: 44px;
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hmg-chrome-header__actions {
    display: contents;
  }

  .hmg-chrome-cart {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hmg-chrome-header__menu {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }

  .hmg-chrome-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .hmg-chrome-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html.hmg-chrome-server .hmg-chrome--header {
    min-height: 120px;
  }

  html.hmg-chrome-server body.hmg-header-ready .hmg-chrome--header {
    min-height: 0;
  }

  .hmg-chrome-header__row {
    width: calc(100% - 22px);
    grid-template-columns: minmax(126px, 1fr) auto auto;
  }

  .hmg-chrome-header__brand,
  .hmg-chrome-header__brand #logo {
    width: min(154px, 100%);
  }

  .hmg-chrome-header__brand #logo img {
    width: min(150px, 100%);
    height: 52px;
  }

  .hmg-chrome-cart > #cart,
  .hmg-chrome-cart #cart > .cart-heading {
    width: 42px;
    height: 42px;
  }

  .hmg-chrome-header__menu {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hmg-chrome-search #me_search .me_dropdown {
    width: 100%;
    max-width: none;
  }

  .hmg-chrome-footer {
    padding: 54px 22px 22px;
  }

  .hmg-chrome-footer__smile {
    top: -90px;
    right: -34px;
    width: 180px;
    height: 180px;
  }

  .hmg-chrome-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
    padding-bottom: 45px;
  }

  .hmg-chrome-footer__brand,
  .hmg-chrome-footer__contact {
    grid-column: 1 / -1;
  }

  .hmg-chrome-footer__logo img {
    width: min(270px, 100%);
    height: auto;
    min-height: 88px;
  }

  .hmg-chrome-footer__newsletter {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
    padding: 24px 18px;
    border-radius: 23px 23px 23px 7px;
  }

  .hmg-chrome-footer__newsletter-copy h2 {
    font-size: 23px;
  }

  .hmg-chrome-footer__newsletter-form .newsletter-email {
    padding-left: 14px;
    font-size: 14px;
  }

  .hmg-chrome-footer__newsletter-form .btn {
    min-width: 88px;
    padding: 0 14px;
  }

  .hmg-chrome-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .hmg-chrome-header__menu span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .hmg-chrome-header__menu {
    width: 42px;
    justify-content: center;
    padding: 0;
  }
}

/* Header and newsletter polish: scoped to the Hamogelakia chrome so the native
   search, cart and newsletter behaviour remains untouched. */
.hmg-chrome-search #me_search .btn-me-search {
  border-radius: 50% !important;
}

.hmg-chrome-search #me_search .btn-me-search > .fa-search {
  position: relative;
  width: 18px;
  height: 18px;
  display: block !important;
  color: var(--hmg-ink);
  font-size: 0 !important;
  line-height: 0 !important;
}

.hmg-chrome-search #me_search .btn-me-search > .fa-search::before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 11px;
  height: 11px;
  display: block !important;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "" !important;
  font-family: inherit !important;
}

.hmg-chrome-search #me_search .btn-me-search > .fa-search::after {
  position: absolute;
  top: 12px;
  left: 11px;
  width: 7px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.hmg-chrome-search #me_search .btn-me-search:hover,
.hmg-chrome-search #me_search .btn-me-search:focus-visible {
  background: var(--hmg-lime) !important;
}

.hmg-chrome-cart #cart .cart-heading > .fa-shopping-cart {
  width: 22px;
  height: 22px;
  display: grid !important;
  place-items: center;
  font-size: 0 !important;
  line-height: 0 !important;
}

.hmg-chrome-cart #cart .cart-heading > .fa-shopping-cart::before {
  display: none !important;
  content: none !important;
}

.hmg-chrome-cart #cart .cart-heading .shopitnow-mobile-cart-icon {
  position: static !important;
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  overflow: visible;
  transform: none !important;
}

.hmg-chrome-cart #cart-items.count-zero {
  display: none !important;
}

@media (min-width: 1101px) {
  body.hmg-header-ready .hmg-chrome-search #me_search .me_seach_dropdown > .me_dropdown {
    position: absolute !important;
    z-index: 1010;
    top: calc(100% + 10px) !important;
    right: -156px !important;
    left: auto !important;
    width: min(960px, calc(100vw - 32px)) !important;
    min-width: 0 !important;
    max-width: min(960px, calc(100vw - 32px)) !important;
    height: auto !important;
    max-height: min(640px, calc(100vh - 112px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 1.5px solid var(--hmg-ink) !important;
    border-radius: 20px !important;
    background: var(--hmg-paper) !important;
    box-shadow: 8px 9px 0 var(--hmg-yellow) !important;
    overscroll-behavior: contain;
    transform: none !important;
  }

  body.hmg-header-ready .hmg-chrome-search #me_search .me_dropdown::before {
    display: none !important;
    content: none !important;
  }

  body.hmg-header-ready .hmg-chrome-search #me_search .me_dropdown > li {
    width: 100% !important;
    padding: 22px !important;
    list-style: none;
  }

  body.hmg-header-ready .hmg-chrome-search #me_search .me-dropdown-layout {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 200px minmax(0, 1fr) 230px !important;
    align-items: stretch !important;
    gap: 16px !important;
    margin: 0 !important;
  }

  body.hmg-header-ready .hmg-chrome-search #me_search .me-search-aside-left,
  body.hmg-header-ready .hmg-chrome-search #me_search .me-search-main,
  body.hmg-header-ready .hmg-chrome-search #me_search .me-search-aside-right {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}

.hmg-chrome-search #me_search .me_dropdown {
  color: var(--hmg-ink);
  font-family: "Hmg Noto Sans", Arial, sans-serif;
  font-size: 13px;
}

.hmg-chrome-search #me_search .me_dropdown .popular_search h4,
.hmg-chrome-search #me_search .me_dropdown .recent_search h4 {
  color: var(--hmg-ink);
  font-family: "Hmg Comfortaa", sans-serif;
  font-size: 13px;
}

.hmg-chrome-search #me_search .me_dropdown .popular_search li a,
.hmg-chrome-search #me_search .me_dropdown .recent_search li a {
  border-color: var(--hmg-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hmg-ink);
}

.hmg-chrome-search #me_search .me-help-panel {
  border-color: var(--hmg-line);
  border-radius: 14px;
  background: var(--hmg-cream);
  box-shadow: none;
}

.hmg-chrome-search #me_search .me-smartwatch-assist-link {
  border-color: var(--hmg-ink);
  border-radius: 11px;
  background: var(--hmg-ink);
}

.hmg-chrome-search #me_search .me-smartwatch-assist-icon {
  background: var(--hmg-yellow);
  color: var(--hmg-ink);
}

.hmg-chrome-search #me_search .me-smartwatch-assist-copy em {
  color: var(--hmg-yellow);
}

body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action {
  position: relative !important;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1.5px solid var(--hmg-ink) !important;
  border-radius: 50% !important;
  background: var(--hmg-yellow) !important;
  color: transparent !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: background 160ms ease, transform 160ms ease;
}

body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action::before,
body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block !important;
  border: 0 !important;
  border-radius: 999px;
  background: var(--hmg-ink);
  content: "" !important;
  transform: translate(-50%, -50%);
}

body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action::before {
  width: 14px;
  height: 2px;
}

body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action::after {
  width: 2px;
  height: 14px;
}

body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action:hover,
body.hmg-header-ready .hmg-chrome-search #me_search .me-search-result-actions > .me-search-cart-action:focus-visible {
  background: var(--hmg-lime) !important;
  color: transparent !important;
  transform: translateY(-1px);
}

.hmg-chrome-footer__newsletter-form .module-newsletter .module-body .input-group {
  width: 100% !important;
  height: 50px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: stretch !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .newsletter-email {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 50px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1.5px solid var(--hmg-yellow) !important;
  border-right: 0 !important;
  border-radius: 999px 0 0 999px !important;
  background: #fff !important;
  color: var(--hmg-ink) !important;
  box-shadow: none !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .input-group-btn {
  position: static !important;
  width: auto !important;
  height: 50px !important;
  display: flex !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .input-group-btn .btn {
  position: static !important;
  width: auto !important;
  min-width: 108px !important;
  height: 50px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border: 1.5px solid var(--hmg-yellow) !important;
  border-radius: 0 999px 999px 0 !important;
  background: var(--hmg-yellow) !important;
  color: var(--hmg-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .input-group-btn .btn::before {
  margin-right: 7px;
  color: currentColor;
  font-size: 18px !important;
  line-height: 1 !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .input-group-btn .btn span {
  line-height: 1;
}

body.hmg-footer-ready .hmg-chrome--footer .hmg-chrome-footer__newsletter-form .module-newsletter .input-group .input-group-btn > .btn.btn-primary {
  border-radius: 0 999px 999px 0 !important;
}

body.hmg-footer-ready .hmg-chrome--footer .hmg-chrome-footer__newsletter-form .module-newsletter .input-group .input-group-btn > .btn.btn-primary:hover,
body.hmg-footer-ready .hmg-chrome--footer .hmg-chrome-footer__newsletter-form .module-newsletter .input-group .input-group-btn > .btn.btn-primary:focus-visible {
  background: var(--hmg-lime) !important;
  color: var(--hmg-ink) !important;
  font-weight: 800 !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .checkbox {
  width: 100% !important;
  display: block !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .checkbox label {
  width: 100%;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: inherit !important;
  line-height: inherit !important;
  opacity: 1 !important;
}

.hmg-chrome-footer__newsletter-form .module-newsletter .checkbox input {
  position: static !important;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 2px 0 0 !important;
  accent-color: var(--hmg-yellow);
}

.hmg-chrome-footer__newsletter-form .module-newsletter .checkbox label a,
.hmg-chrome-footer__newsletter-form .module-newsletter .checkbox label b {
  margin: 0;
  padding: 0 !important;
  color: #fff !important;
  opacity: 1 !important;
}

@media (max-width: 640px) {
  .hmg-chrome-footer__newsletter-form .module-newsletter .newsletter-email {
    padding: 0 14px !important;
    font-size: 14px !important;
  }

  .hmg-chrome-footer__newsletter-form .module-newsletter .input-group-btn .btn {
    min-width: 88px !important;
    padding: 0 12px !important;
  }

  .hmg-chrome-footer__newsletter-form .module-newsletter .checkbox {
    font-size: 13px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmg-chrome *,
  .hmg-chrome *::before,
  .hmg-chrome *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keep the desktop product gallery and purchase panel visually balanced. */
@media (min-width: 1280px) {
  html.route-product-product .product-info > .product-left,
  html.route-product-product .product-info > .product-right {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
  }
}

/* Let the primary product photo use the complete mobile viewport. */
@media (max-width: 767px) {
  html.route-product-product .product-info .product-left .main-image {
    box-sizing: border-box;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-radius: 0 !important;
  }

  html.route-product-product .product-info .product-left .main-image > .swiper-container {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
  }
}

/* Keep product choices primary when the included-items panel moves below them. */
@media (min-width: 768px) {
  html.route-product-product .product-options .color-option.include-free-below .product-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 8px !important;
    scroll-padding-inline: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  html.route-product-product .product-options .color-option.include-free-below .product-grid > .product-layout {
    flex: 0 0 120px !important;
    width: 120px !important;
    min-width: 120px !important;
    scroll-snap-align: start;
  }

  html.route-product-product .product-options .color-option.include-free-below .included_free {
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  html.route-product-product .product-options .color-option.include-free-below .include_free_item {
    scroll-snap-align: start;
  }
}

/* Make only the confirmed in-stock state easy to scan without changing stock rules. */
html.route-product-product .availability-label--available {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #087f6e !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

html.route-product-product .availability-label--available::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1px solid #85d4c7;
  border-radius: 50%;
  background: #e0f7f1;
  color: #087f6e;
  font-size: 11px;
  font-weight: 800;
}

html.route-product-product .oalert .availability-label--available {
  margin-bottom: 4px;
}

html.route-product-product .product-cart-stock .availability-label--available {
  font-size: 12px;
  white-space: nowrap;
}

html.route-product-product .availability-detail {
  margin-left: 7px;
  color: #68717c;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

html.route-product-product .availability-detail--limited {
  color: #8f5f1b;
}

html.route-product-product .product-cart-stock .availability-detail {
  font-size: 11px;
}

/* Keep desktop Live Offers below the store header and away from the chat area. */
@media (min-width: 768px) {
  html.route-product-product #mobile-live-offers {
    --desktop-live-offers-top: clamp(98px, 12vh, 132px);
  }

  html.route-product-product #mobile-live-offers .desktop-live-offers-wrap {
    top: var(--desktop-live-offers-top) !important;
    right: clamp(16px, 2vw, 32px) !important;
    bottom: auto !important;
  }

  html.route-product-product #mobile-live-offers .desktop-live-offers-peek {
    top: var(--desktop-live-offers-top) !important;
    right: 0 !important;
    bottom: auto !important;
  }

  html.route-product-product #mobile-live-offers .mobile-live-offers-sheet {
    top: var(--desktop-live-offers-top) !important;
    right: clamp(16px, 2vw, 32px) !important;
    bottom: auto !important;
    height: min(640px, calc(100dvh - var(--desktop-live-offers-top) - 24px)) !important;
    max-height: calc(100dvh - var(--desktop-live-offers-top) - 24px) !important;
  }

  html.route-product-product #mobile-live-offers.is-detail .mobile-live-offers-sheet {
    height: min(720px, calc(100dvh - var(--desktop-live-offers-top) - 24px)) !important;
  }
}

/* Keep one clear video entry point on the product gallery. */
html.route-product-product .main-image .shopitnow-main-video-cta,
html.route-product-product .main-image .shopitnow-video-cta,
html.route-product-product .main-image .pm-main-video-play,
html.route-product-product .main-image .pm-main-video-quick-action {
  display: none !important;
}
