:root {
  --ag-ink: #111;
  --ag-muted: #696969;
  --ag-line: #dedede;
  --ag-paper: #fff;
  --ag-wash: #f4f4f2;
  --ag-width: 1400px;
}

html { overflow-x: hidden; }
body { color: var(--ag-ink); overflow-x: hidden; }
.wa-box { width: 52px !important; height: 52px !important; }
.wa-box a, .wa-box img { width: 52px !important; height: 52px !important; }

.amorosa-field { display: block; margin: 0; }
.amorosa-field > span { display: block; margin-bottom: 9px; color: #555; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.amorosa-field em { color: #9b3131; font-style: normal; }
.amorosa-field input,
.amorosa-field select,
.amorosa-field textarea { display: block; width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid #bdbdbd; border-radius: 0; background: #fff; color: #111; font: inherit; font-size: 14px; line-height: 1.4; outline: none; box-shadow: none; transition: border-color .18s ease; }
.amorosa-field textarea { min-height: 112px; resize: vertical; }
.amorosa-field input:focus,
.amorosa-field select:focus,
.amorosa-field textarea:focus { border-color: #111; box-shadow: none; }
.amorosa-field input[aria-invalid="true"],
.amorosa-field select[aria-invalid="true"],
.amorosa-field textarea[aria-invalid="true"] { border-color: #9b3131; background: #fffafa; }
.amorosa-alert { display: grid; padding: 15px 17px; gap: 4px; border-left: 3px solid #777; background: var(--ag-wash); color: #333; font-size: 12px; line-height: 1.45; }
.amorosa-alert strong { font-weight: 600; }
.amorosa-alert--error { border-left-color: #9b3131; background: #f8eeee; color: #722727; }
.amorosa-alert--success { border-left-color: #4b785d; background: #eef5f0; color: #31533d; }
.amorosa-button { display: inline-flex; width: fit-content; min-width: 190px; min-height: 52px; padding: 0 24px; border: 1px solid #111; border-radius: 0; align-items: center; justify-content: center; background: #111; color: #fff; font: inherit; font-size: 10px; font-weight: 600; letter-spacing: .08em; line-height: 1.2; text-align: center; text-transform: uppercase; cursor: pointer; }
.amorosa-button:hover, .amorosa-button:focus { background: #fff; color: #111; }
.amorosa-button:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
.amorosa-button--secondary { background: transparent; color: #111; }
.amorosa-button--secondary:hover, .amorosa-button--secondary:focus { background: #111; color: #fff; }
@media (max-width: 767px) {
  .amorosa-button { width: 100%; }
}
.amorosa-field input::placeholder,
.amorosa-field textarea::placeholder { color: #999; opacity: 1; }

/* ===========================================================
   Catalog product options modal
   =========================================================== */
body.ajax-overlay-open { overflow: hidden; }

.ajax-overlay {
  display: flex;
  padding: 32px;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  background: rgba(17, 17, 17, 0);
  backdrop-filter: blur(0);
  transition: opacity .24s ease, visibility .24s ease, background-color .24s ease, backdrop-filter .24s ease;
}
.ajax-overlay.visible {
  background: rgba(17, 17, 17, .48);
  backdrop-filter: blur(3px);
}
.ajax-overlay .product-option-wrap {
  width: min(820px, calc(100vw - 64px));
  height: auto;
  margin: auto;
  text-align: left;
}
.ajax-overlay .product-option-wrap::before { display: none; }
.ajax-overlay .product-options {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  max-height: none;
}
.ajax-overlay .product-options .options {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ag-line);
  border-radius: 0;
  background: var(--ag-paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  text-align: left;
}
.ajax-overlay .product-options .ajax-overlay_close {
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 0;
  transition: background-color .18s ease, color .18s ease;
}
.ajax-overlay .product-options .ajax-overlay_close::before {
  content: "\00d7";
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.ajax-overlay .product-options .ajax-overlay_close:hover,
.ajax-overlay .product-options .ajax-overlay_close:focus {
  background: #111;
  color: #fff !important;
  text-decoration: none;
}
.ajax-overlay .product-options .ajax-overlay_close:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.ajax-overlay .product-option-modal {
  display: grid;
  margin: 0;
  padding: 42px;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 46px;
  align-items: start;
}
.ajax-overlay .product-option-modal > .fn-img {
  display: block;
  width: 100%;
  height: 340px;
  grid-column: 1;
  grid-row: 1 / 4;
  padding: 24px;
  border: 1px solid var(--ag-line);
  background: #fff;
  object-fit: contain;
}
.ajax-overlay .product-option-modal > h3 {
  margin: 7px 44px 28px 0;
  grid-column: 2;
  color: #111;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.12;
  text-transform: none;
}
.ajax-overlay .product-option-modal > .form-group {
  width: 100%;
  margin: 0;
  grid-column: 2;
}
.ajax-overlay .product-option-modal .col-sm-18 {
  float: none;
  width: 100%;
  min-height: 0;
  padding: 0;
}
.ajax-overlay .product-option-modal .tx-hint {
  margin: 0 0 8px;
  color: var(--ag-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.ajax-overlay .product-option-modal__variant { margin-bottom: 26px !important; }
.ajax-overlay .product-option-modal__price { margin: 16px 0 0; color: #111; font-size: 18px; font-weight: 600; }
.ajax-overlay .product-option-modal__price .price-old { margin-left: 9px; color: #888; font-size: 13px; font-weight: 400; text-decoration: line-through; }
.ajax-overlay .product-option-modal__variant .form-control,
.ajax-overlay .product-option-modal__variant .sbHolder {
  width: 100%;
  height: 48px;
  border: 1px solid #bdbdbd;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.ajax-overlay .product-option-modal__variant .sbSelector {
  height: 46px;
  padding: 0 44px 0 14px;
  color: #111;
  font-size: 14px;
  line-height: 46px;
}
.ajax-overlay .product-option-modal__variant .sbToggle { width: 44px; height: 46px; }
.ajax-overlay .product-option-modal__variant .sbOptions {
  left: -1px;
  right: -1px;
  width: auto;
  border-color: #bdbdbd;
  background: #fff;
}
.ajax-overlay .product-option-modal__actions > .col-sm-18 {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.ajax-overlay .product-option-modal .amount-box {
  display: grid;
  flex: 0 0 148px;
  width: 148px;
  margin: 0;
  grid-template-columns: 44px 60px 44px;
  grid-template-rows: auto 48px;
}
.ajax-overlay .product-option-modal .amount-box .tx-hint {
  grid-column: 1 / 4;
  grid-row: 1;
}
.ajax-overlay .product-option-modal .amount-box span,
.ajax-overlay .product-option-modal .amount-box input {
  width: auto !important;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  line-height: 46px;
  text-align: center;
  box-shadow: none;
}
.ajax-overlay .product-option-modal .amount-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 400;
}
.ajax-overlay .product-option-modal .amount-box input { border-right: 0; border-left: 0; font-size: 14px; }
.ajax-overlay .product-option-modal .amount-box span:hover { background: #111; color: #fff; }
.ajax-overlay .product-option-modal .i-add-cart.btn-primary {
  flex: 1 1 auto;
  min-width: 150px;
  min-height: 48px;
  margin: 0;
  padding: 0 22px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ajax-overlay .product-option-modal .i-add-cart.btn-primary:hover,
.ajax-overlay .product-option-modal .i-add-cart.btn-primary:focus {
  background: #fff;
  color: #111 !important;
}
.ajax-overlay .product-option-modal__status { margin: 18px 0 0; grid-column: 2; color: #31533d; font-size: 12px; font-weight: 600; }

@media (max-width: 860px) {
  .ajax-overlay { padding: 20px; align-items: flex-start; }
  .ajax-overlay .product-option-wrap { width: min(520px, calc(100vw - 40px)); }
  .ajax-overlay .product-option-modal { display: block; padding: 28px; }
  .ajax-overlay .product-option-modal > .fn-img { width: 100%; height: min(310px, 42vh); margin-bottom: 24px; }
  .ajax-overlay .product-option-modal > h3 { margin: 0 42px 24px 0; font-size: 24px; }
}

@media (max-width: 520px) {
  .ajax-overlay { padding: 12px; }
  .ajax-overlay .product-option-wrap { width: calc(100vw - 24px); }
  .ajax-overlay .product-option-modal { padding: 20px; }
  .ajax-overlay .product-option-modal__actions > .col-sm-18 { display: block; }
  .ajax-overlay .product-option-modal .amount-box { margin-bottom: 14px; }
  .ajax-overlay .product-option-modal .i-add-cart.btn-primary { width: 100%; }
}

/* ===========================================================
   Announcement bar
   =========================================================== */
.notice { min-height: 36px; padding: 0 !important; background: #131313 !important; color: #fff !important; }
.notice__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: var(--ag-width); min-height: 36px; margin: 0 auto; padding: 0 24px; font-size: 11px; line-height: 36px; letter-spacing: .02em; }
.notice__text { flex: 1 1 auto; }
.notice__phones { flex: 0 0 auto; display: flex; align-items: center; gap: 18px; }
.notice__phones a { color: #fff; }
.notice__phones a:hover,
.notice__phones a:focus { color: #fff !important; text-decoration: underline; text-underline-offset: 3px; }
.notice__phones a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.notice__phones sup { margin-left: 3px; font-size: 9px; opacity: .6; }

/* ===========================================================
   Header — donor geometry: logo | nav | actions
   =========================================================== */
header.hd { position: relative; z-index: 50; background: #fff; border-bottom: 1px solid var(--ag-line); }

.hd__bar {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: var(--ag-width);
  margin: 0 auto;
  padding: 24px 24px;
}

.hd__burger { display: none; }

.hd__logo { flex: 0 0 auto; display: block; line-height: 0; }
.hd__logo img { display: block; height: 40px; width: auto; }

.hd-nav { flex: 1 1 auto; min-width: 0; }
.hd-nav__head,
.hd-nav__close { display: none; }
.hd-nav__wrap { overflow: visible; }

.hd-nav__list { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: clamp(14px, 1.3vw, 26px); margin: 0; padding: 0; list-style: none; }
.hd-nav__item { position: relative; }
.hd-nav__link { display: block; padding: 10px 0; color: var(--ag-ink); font-size: 14px; font-weight: 500; letter-spacing: .01em; line-height: 1.2; text-transform: lowercase; white-space: nowrap; text-decoration: none; }
.hd-nav__link:hover,
.hd-nav__link:focus { color: var(--ag-ink) !important; text-decoration: underline; text-underline-offset: 4px; }
.hd-nav__link:focus-visible { outline: 2px solid var(--ag-ink); outline-offset: 3px; }
.hd-nav__toggle { display: none; }

/* desktop dropdown */
.hd-nav__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ag-ink);
  border-left: 1px solid var(--ag-line);
  border-right: 1px solid var(--ag-line);
  border-bottom: 1px solid var(--ag-line);
  background: #fff;
  box-shadow: 0 24px 48px rgba(0,0,0,.08);
  min-width: 460px;
  max-width: min(800px, calc(100vw - 48px));
  max-height: 74vh;
  overflow: auto;
  transform: translateX(-50%);
  list-style: none;
}
.hd-nav__item--parent:hover > .hd-nav__panel,
.hd-nav__item--parent:focus-within > .hd-nav__panel { display: block; }
.hd-nav__panel-inner { display: flex; align-items: stretch; gap: 44px; padding: 32px 34px; }
.hd-nav__panel-links { display: grid; flex: 1 1 auto; align-content: start; grid-auto-flow: row; grid-template-columns: repeat(3, minmax(150px, 1fr)); column-gap: 32px; row-gap: 12px; margin: 0; padding: 0; list-style: none; }
.hd-nav__panel-links li { break-inside: avoid; }
.hd-nav__panel-links > li > a,
.hd-nav__panel-links > li > .hd-nav__link { display: block; padding: 4px 0; font-size: 13px; font-weight: 600; letter-spacing: normal; text-transform: none; color: var(--ag-ink); line-height: 1.4; white-space: normal; }
.hd-nav__panel-links a:hover,
.hd-nav__panel-links a:focus { color: var(--ag-ink) !important; text-decoration: underline; text-underline-offset: 3px; }
.hd-nav__visual { position: relative; display: block; flex: 0 0 190px; overflow: hidden; background: var(--ag-wash); color: #fff; text-decoration: none; }
.hd-nav__visual img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hd-nav__visual:hover img,
.hd-nav__visual:focus img { transform: scale(1.05); }
.hd-nav__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%); }
.hd-nav__visual span { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.hd-nav__visual span i { font-style: normal; }

/* actions: search / account / cart */
.hd-search { position: relative; flex: 0 0 auto; }
.hd-search__toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; padding: 0; border: 0; background: transparent; color: var(--ag-ink); cursor: pointer; }
.hd-search__toggle:hover,
.hd-search__toggle:focus-visible,
.hd-account__toggle:hover,
.hd-account__toggle:focus-visible,
.hd-cart .cart-link:hover,
.hd-cart .cart-link:focus-visible { background: var(--ag-wash); color: var(--ag-ink) !important; text-decoration: none; }
.hd-search__toggle:focus-visible,
.hd-account__toggle:focus-visible,
.hd-cart .cart-link:focus-visible,
.hd__logo:focus-visible { outline: 2px solid var(--ag-ink); outline-offset: 3px; }
.hd-search__panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 60;
  width: min(620px, calc(100vw - 48px));
  max-height: 74vh;
  overflow: auto;
  margin-top: 0;
  padding: 34px 38px;
  border-top: 1px solid var(--ag-ink);
  border-left: 1px solid var(--ag-line);
  border-right: 1px solid var(--ag-line);
  border-bottom: 1px solid var(--ag-line);
  background: #fff;
  box-shadow: 0 24px 48px rgba(0,0,0,.08);
}
.hd-search.is-open .hd-search__panel { display: block; }
.hd-search #search { position: relative; display: block; width: 100%; }
.hd-search__form { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--ag-ink); }
.hd-search__input { flex: 1 1 auto; min-width: 0; height: 52px; padding: 0; border: 0; background: transparent; font: inherit; font-size: 20px; color: var(--ag-ink); }
.hd-search__input:focus { outline: none; }
.hd-search__input:focus-visible { box-shadow: 0 2px 0 0 var(--ag-ink); }
.hd-search__input::placeholder { color: #9c9c9c; }
.hd-search__submit { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 0; border: 0; background: transparent; color: var(--ag-ink); cursor: pointer; }

.hd-search__quicklinks { display: flex; margin-top: 22px; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.hd-search__quicklinks > span { flex: 0 0 auto; color: #999; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hd-search__quicklinks-list { display: flex; gap: 8px 18px; flex-wrap: wrap; }
.hd-search__quicklinks-list a { color: #555; font-size: 13px; }
.hd-search__quicklinks-list a:hover { color: #111; text-decoration: underline; text-underline-offset: 3px; }
.search.has-results .hd-search__quicklinks,
.search.has-empty .hd-search__quicklinks { display: none; }

#livesearch_search_results { display: grid; position: static; top: auto; left: auto; right: auto; z-index: auto; width: auto; min-width: 0; max-height: none; overflow: visible; margin: 26px 0 0; padding: 0; border: 0; box-shadow: none; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 16px; list-style: none; }
#livesearch_search_results li { min-width: 0; }
#livesearch_search_results li + li { border-top: 0; }
#livesearch_search_results a { display: flex; flex-direction: column; min-height: 0; padding: 0; gap: 8px; color: #111; }
#livesearch_search_results a:hover,
#livesearch_search_results a:focus-visible,
#livesearch_search_results li.highlighted a { background: transparent; outline: none; }
#livesearch_search_results img { display: block; float: none; width: 100%; height: auto; margin: 0; padding: 0; aspect-ratio: 1 / 1; object-fit: contain; background: #fff; border: 1px solid var(--ag-line); }
#livesearch_search_results .live-search__name { display: -webkit-box; min-width: 0; overflow: hidden; color: #111; font-size: 12.5px; line-height: 1.35; font-weight: 400; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
#livesearch_search_results .live-search__price { color: #111; font-size: 13px; font-weight: 600; white-space: nowrap; }
#livesearch_search_results li.highlighted a .live-search__name { text-decoration: underline; text-underline-offset: 3px; }
.live-search-empty { margin: 26px 0 0; padding: 30px 0; color: #777; font-size: 13px; text-align: center; }

.hd-account { position: relative; flex: 0 0 auto; display: flex; align-items: center; }
.hd-account__toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: var(--ag-ink); }
.hd-account__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 60;
  min-width: 190px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border-top: 1px solid var(--ag-ink);
  border-left: 1px solid var(--ag-line);
  border-right: 1px solid var(--ag-line);
  border-bottom: 1px solid var(--ag-line);
  background: #fff;
  box-shadow: 0 24px 48px rgba(0,0,0,.06);
}
.hd-account__menu a { display: block; padding: 9px 16px; font-size: 13px; color: var(--ag-ink); }
.hd-account__menu a:hover,
.hd-account__menu a:focus { background: var(--ag-wash); color: var(--ag-ink) !important; }

.hd-cart { position: relative; flex: 0 0 auto; }
.hd-cart .cart-link { position: relative; display: flex; align-items: center; gap: 8px; min-width: 38px; min-height: 38px; color: var(--ag-ink); }
.hd-cart .cart-link__label { font-size: 13px; }
.hd-cart .cart-link__count { display: inline-flex; min-width: 17px; height: 17px; padding: 0 4px; align-items: center; justify-content: center; border-radius: 50%; background: #111; color: #fff; font-size: 9px; line-height: 1; }

.hd__scrim { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* Toggled by osc.js for variant-dependent fields (old price, SKU, stock state) — never defined by any theme stylesheet, so these always rendered visible. */
.hidden-xs-up { display: none; }

.box-heading { margin-bottom: 30px; }
.box-heading h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -.035em; text-transform: none; }
.product-layout { height: auto; }
.product-thumb { display: flex; position: relative; height: 100%; min-height: 440px; flex-direction: column; border: 0; background: #fff; box-shadow: none; }
.product-thumb .image { position: relative; aspect-ratio: 1 / 1.12; min-height: 0; margin: 0 0 18px; background: #fff; overflow: hidden; }
.product-thumb .image .product-image { display: block; height: 100%; padding-bottom: 0 !important; }
.product-thumb .image img { width: 100%; height: 100%; object-fit: contain; padding: 2%; transition: transform .5s ease; }
.product-thumb:hover .image img { transform: scale(1.03); }
.product-thumb .caption { display: flex; flex: 1; flex-direction: column; padding: 0; }
.product-thumb .name { min-height: 3.9em; margin: 0 0 12px; }
.product-thumb .name a { display: -webkit-box; overflow: hidden; color: #161616; font-size: 14px; line-height: 1.3; font-weight: 400; text-transform: none; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-thumb .price { display: flex; min-height: 24px; align-items: baseline; gap: 9px; margin-top: auto; color: #111; font-size: 15px; font-weight: 600; }
.product-thumb .price-old { color: #888; font-size: 12px; font-weight: 400; }
.product-thumb .discount { top: 12px; left: 12px; right: auto; }
.product-thumb .discount span { min-width: 0; padding: 7px 9px; border-radius: 0; font-size: 11px; line-height: 1; }
.product-thumb .cart-button { position: absolute; z-index: 2; right: 12px; bottom: 12px; margin: 0; opacity: 0; pointer-events: none; transform: translateY(4px); transition: opacity .18s ease, transform .18s ease; }
.product-thumb:hover .cart-button,
.product-thumb:focus-within .cart-button { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (hover: none) {
  .product-thumb .cart-button { opacity: 1; pointer-events: auto; transform: none; }
}
.product-thumb .cart-button .btn-add-cart { display: flex; width: 38px; height: 38px; min-height: 0; align-items: center; justify-content: center; padding: 0; border: 1px solid #111; border-radius: 50%; background: #fff; color: #111; box-shadow: 0 4px 10px rgba(0,0,0,.1); }
.product-thumb .cart-button .btn-add-cart:hover { background: #111; color: #fff; }
.product-thumb .cart-button .btn-add-cart:disabled { border-color: #d7d7d7; background: #f4f4f2; color: #bbb; cursor: not-allowed; }
.product-thumb .cart-button .btn-add-cart i { font-size: 15px; }
.product-availability { min-height: 18px; margin: 5px 0 0; color: #777; font-size: 12px; }

.site-footer { margin: 0; padding: 0; border: 0; background: #111; color: #fff; }
.footer-newsletter__inner::before,
.footer-newsletter__inner::after,
.footer-main::before,
.footer-main::after,
.footer-bottom::before,
.footer-bottom::after { display: none; content: none; }
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,.25); background: #efefec; color: #111; }
.footer-newsletter__inner { display: grid; min-height: 270px; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); align-items: center; gap: 72px; padding-top: 44px; padding-bottom: 44px; }
.footer-newsletter__eyebrow { margin: 0 0 10px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-newsletter h2 { max-width: 520px; margin: 0; font-size: clamp(25px, 2.5vw, 36px); line-height: 1.08; font-weight: 500; letter-spacing: -.035em; }
.footer-newsletter__form, .footer-newsletter__form form { margin: 0; }
.footer-newsletter .newsletter-description { margin: 0 0 15px; color: #595959; font-size: 13px; }
.footer-newsletter__controls { display: flex; align-items: stretch; }
.footer-newsletter__controls .tm-login-form { flex: 1; }
.footer-newsletter .form-control { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #111; border-radius: 0; background: transparent; color: #111; box-shadow: none; }
.footer-newsletter #tm-newsletter-button { min-width: 150px; height: 48px; padding: 0 20px; border: 1px solid #111; border-radius: 0; background: #111; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .85fr; gap: 50px; padding-top: 42px; padding-bottom: 42px; }
.footer-brand__logo img { width: auto; height: 52px; filter: grayscale(1) brightness(0) invert(1); }
.footer-brand p { max-width: 310px; margin-top: 14px; color: #aaa; font-size: 13px; line-height: 1.6; }
.footer-column h3 { margin: 0 0 16px; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li + li { margin-top: 7px; }
.footer-column a { display: block; color: #c5c5c5; font-size: 13px; line-height: 1.45; }
.footer-column a:hover,
.footer-column a:focus { color: #fff !important; text-decoration: underline; text-underline-offset: 3px; }
.footer-column a:focus-visible,
.footer-brand__logo:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.footer-contacts { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contacts a + a { margin-top: 9px; }
.footer-contacts a span { margin-left: 5px; color: #777; font-size: 10px; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 20px; padding-bottom: 20px; border-top: 1px solid #303030; color: #777; font-size: 11px; }

@media (max-width: 1399px) {
  .hd__bar { gap: 20px; padding: 22px 20px; }
  .hd-nav__list { gap: clamp(10px, 1vw, 18px); }
  .hd-nav__link { font-size: 12.5px; }
}

@media (max-width: 1300px) {
  .hd-nav__list { gap: 6px; }
  .hd-nav__link { font-size: 11.5px; }
}

@media (max-width: 1279px) {
  body { padding-top: 0 !important; }
  .rd-mobilepanel, .rd-mobilemenu { display: none !important; }
  body.menu-open { overflow: hidden; }
  .notice__phones { display: none; }

  .hd__bar {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    min-height: 58px;
  }

  .hd__burger { display: inline-flex; order: 1; width: 44px; height: 44px; padding: 0; border: 0; align-items: center; justify-content: flex-start; background: transparent; }
  .hd__burger-icon { display: grid; width: 22px; gap: 5px; }
  .hd__burger-icon span { display: block; height: 1px; background: #111; }

  .hd-search { order: 2; }

  .hd__logo { order: 3; justify-self: center; }
  .hd__logo img { height: 36px; }

  .hd-account { order: 4; }
  .hd-cart { order: 5; justify-self: end; }

  .hd-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(88vw, 390px);
    padding: 0 22px 30px;
    overflow: auto;
    background: #fff;
    transform: translateX(-105%);
    transition: transform .28s ease;
  }
  .menu-open .hd-nav { transform: translateX(0); }

  .hd-nav__head { position: sticky; z-index: 2; top: 0; display: flex; min-height: 68px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ag-line); background: #fff; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
  .hd-nav__close { display: block; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: #111; font-size: 30px; font-weight: 300; }

  .hd__scrim { position: fixed; z-index: 100; inset: 0; display: block; border: 0; background: rgba(0,0,0,.42); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
  .menu-open .hd__scrim { opacity: 1; visibility: visible; }

  .hd-nav__wrap { overflow: visible; }
  .hd-nav__list { display: block; overflow: visible; padding: 10px 0 0; }
  .hd-nav__item { display: block; border-bottom: 1px solid var(--ag-line); }
  .hd-nav__link { display: block; min-height: 52px; padding: 17px 38px 15px 0; color: #111; font-size: 14px; line-height: 1.35; white-space: normal; text-transform: none; }

  .hd-nav__toggle { z-index: 2; top: 4px; right: -8px; display: block; position: absolute; width: 44px; height: 44px; border: 0; background: transparent; }
  .hd-nav__toggle::after { content: "+"; position: static; display: block; color: #111; font-size: 22px; font-weight: 300; line-height: 1; transform: none; }
  .hd-nav__item.is-expanded > .hd-nav__toggle::after { content: "\2212"; }

  .hd-nav__panel {
    position: static !important;
    display: none !important;
    transform: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 0 12px 14px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    column-count: 1 !important;
  }
  .hd-nav__item.is-expanded > .hd-nav__panel { display: block !important; }
  .hd-nav__panel a { min-height: 44px; padding: 12px 0; color: #555; font-size: 13px; line-height: 1.45; text-transform: none; }
  .hd-nav__panel-inner { display: block !important; padding: 0 !important; gap: 0 !important; }
  .hd-nav__panel-links { display: block !important; }
  .hd-nav__panel-links > li > a,
  .hd-nav__panel-links > li > .hd-nav__link { font-size: 13px; font-weight: 400; }
  .hd-nav__visual { display: none !important; }

  .hd-search__panel { position: fixed; top: 58px; left: 0; right: 0; width: auto; max-height: calc(100vh - 58px); padding: 22px 18px; border-left: 0; border-right: 0; box-shadow: 0 12px 24px rgba(0,0,0,.08); }
  .hd-search__input { height: 44px; font-size: 16px; }
  .hd-search__quicklinks { margin-top: 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  #livesearch_search_results { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }

  .hd-account__menu { right: -8px; }

  .footer-newsletter__inner { min-height: 0; grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 767px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .notice__inner { min-height: 30px; padding: 6px 16px; }
  .notice__text { font-size: 10px; }

  .hd__bar { min-height: 54px; }
  .hd__logo img { height: 30px; }
  .hd-search__panel { top: 54px; }
  .hd-search__toggle,
  .hd-account__toggle,
  .hd-cart .cart-link { width: 34px; height: 44px; min-width: 34px; min-height: 44px; }
  .hd-cart .cart-link__label { display: none; }
  .hd-cart .cart-link__count { position: absolute; top: 2px; right: -2px; }

  .wa-box { bottom: 10px !important; left: 10px !important; width: 44px !important; height: 44px !important; }
  .wa-box a, .wa-box img { width: 44px !important; height: 44px !important; }
  .box-heading { margin-bottom: 22px; }
  .product-thumb { min-height: 0; }
  .product-thumb .image { aspect-ratio: 1 / 1.05; margin-bottom: 14px; }
  .product-thumb .name { min-height: 4.1em; }
  .product-thumb .name a { font-size: 13px; -webkit-line-clamp: 3; }
  .product-thumb .cart-button .btn-add-cart { min-height: 44px; }
  .footer-newsletter__inner { padding-top: 38px; padding-bottom: 40px; }
  .footer-newsletter h2 { font-size: 27px; }
  .footer-newsletter__controls { display: block; }
  .footer-newsletter #tm-newsletter-button { width: 100%; margin-top: 10px; }
  .footer-main { grid-template-columns: 1fr; gap: 29px; padding-top: 36px; padding-bottom: 36px; }
  .footer-brand__logo img { height: 44px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; }
  .footer-bottom span + span { margin-top: 7px; }
}
