:root {
  --hp-font-sans: "Inter", system-ui, sans-serif;
  --hp-font-serif: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; }

/* ============================================================
   Hydrophob — base layout (desktop first), BEM structure.
   Blocks: hp-page, hp-container, hp-logo, hp-topbar, hp-lang,
   hp-cart, hp-call, hp-burger, hp-nav, hp-hero, hp-about,
   hp-btn, hp-eyebrow, hp-catalog, hp-toolbar, hp-select,
   hp-price, hp-search, hp-chips, hp-chip, hp-filters, hp-filter,
   hp-grid, hp-card, hp-pagination, hp-recommended, hp-footer.
   ============================================================ */

:root {
  --hp-dark: #0d0d0d;
  --hp-black: #000000;
  --hp-blue: #1a63e8;
  --hp-blue-hover: #1552c4;
  --hp-grey-bg: #eceded;
  --hp-line: #e2e3e5;
  --hp-muted: #8b8f95;
  --hp-text: #16181c;
  --hp-container: 1440px;
  --hp-pad: 40px;
}

/* ---------- page ---------- */
.hp-page {
  background: #fff;
  color: var(--hp-text);
  font-family: var(--hp-font-sans);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- container ---------- */
.hp-container {
  max-width: var(--hp-container);
  margin: 0 auto;
  padding: 0 var(--hp-pad);
}


/* ---------- iti ---------- */

.iti {
  width: 100%;
}

/* ---------- logo (placeholder) ---------- */
.hp-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}
.hp-logo__mark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.hp-logo__sub {
  font-size: 6px;
  letter-spacing: 0.42em;
  color: var(--hp-muted);
  margin-top: 4px;
}

/* ---------- lang switch ---------- */
.hp-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--hp-muted);
}
.hp-lang__item {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 0.15s ease;
}
.hp-lang__item--active {
  color: #fff;
}
.hp-lang__item:hover {
  color: #fff;
}

/* ---------- cart ---------- */
.hp-cart {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--hp-dark);
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.hp-cart__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--hp-blue);
  color: #fff;
  font-size: 9px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

/* ---------- call button ---------- */
.hp-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--hp-dark);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.hp-call:hover {
  background: var(--hp-blue);
  color: #fff;
}
.hp-call__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--hp-blue);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.hp-call:hover .hp-call__icon {
  background: #fff;
  color: var(--hp-blue);
}

/* ---------- burger ---------- */
.hp-burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}

/* ---------- topbar ---------- */
.hp-topbar {
  background: var(--hp-dark);
}
.hp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.hp-topbar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ---------- nav ---------- */
.hp-nav {
  background: var(--hp-black);
}

.hp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  height: 44px;
}

.hp-nav__link {
  color: #cfd2d6;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}
.hp-nav__link:hover,
.hp-nav__link--active {
  color: #fff;
}

.hp-nav__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- hero ---------- */
.hp-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--hp-dark);
}
.hp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 70%);
}
.hp-hero__content {
  position: relative;
  width: 100%;
  padding-bottom: 70px;
  color: #fff;
}
.hp-hero__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 18px;
}
.hp-hero__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 420px;
}

/* ---------- eyebrow ---------- */
.hp-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c3c6ca;
  margin: 0;
}
.hp-eyebrow--narrow {
  max-width: 120px;
}

/* ---------- about / line of protection ---------- */
.hp-about {
  padding: 88px 0 96px;
}
.hp-about__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
}
.hp-about__body {
  min-width: 0;
}
.hp-about__lead {
  font-size: 12.5px;
  color: #4a4e55;
  max-width: 700px;
  text-align: justify;
  margin: 0;
}
.hp-about__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 44px;
  margin: 56px 0 24px;
}
.hp-about__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
}
.hp-about__col {
  font-size: 12.5px;
  color: #4a4e55;
  margin: 0;
}

/* ---------- button ---------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hp-blue);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.hp-btn:hover {
  background: var(--hp-blue-hover);
}
.hp-btn--offset {
  margin-top: 36px;
}

/* ---------- catalog ---------- */
.hp-catalog {
  background: var(--hp-grey-bg);
  padding: 28px 0 60px;
}
.hp-catalog__body {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}
.hp-catalog__main {
  min-width: 0;
}

/* ---------- toolbar ---------- */
.hp-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 4px;
  padding: 10px 14px;
}

/* ---------- select ---------- */
.hp-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a4e55;
  white-space: nowrap;
}
.hp-select__icon {
  display: grid;
  place-items: center;
}
.hp-select__label {
  letter-spacing: inherit;
}
.hp-select__value {
  color: var(--hp-muted);
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
}
.hp-select__native {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}

/* ---------- price ---------- */
.hp-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a4e55;
  white-space: nowrap;
}
.hp-price__input {
  width: 54px;
  border: 1px solid var(--hp-line);
  border-radius: 3px;
  padding: 5px 8px;
  font-size: 11px;
  text-align: center;
  color: #4a4e55;
}

/* ---------- search ---------- */
.hp-search {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  min-width: 0;
}
.hp-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  font-size: 12px;
  color: #4a4e55;
  background: transparent;
}
.hp-search__submit {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--hp-blue);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ---------- chips ---------- */
.hp-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  padding-left: 260px;
}
.hp-chips__clear {
  margin-left: auto;
  font-size: 10px;
  color: #6b7076;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.hp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6d8db;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 10px;
  color: #6b7076;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.hp-chip:hover {
  border-color: var(--hp-blue);
  color: var(--hp-blue);
}
.hp-chip__icon {
  display: grid;
  place-items: center;
}

/* ---------- filters ---------- */
.hp-filters {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 0;
}
.hp-filter {
  background: #fff;
  border: 1px solid #e6e7e9;
  border-radius: 4px;
  padding: 16px 18px;
}
.hp-filter__title {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 12px;
}
.hp-filter__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #a7abb0;
  padding: 3px 0;
  cursor: pointer;
}
.hp-filter__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.hp-filter__box {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid #d6d8db;
  border-radius: 2px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.hp-filter__item:hover .hp-filter__box {
  border-color: var(--hp-blue);
}
.hp-filter__checkbox:checked + .hp-filter__box {
  border-color: var(--hp-blue);
  background: var(--hp-blue);
  box-shadow: inset 0 0 0 2px #fff;
}
.hp-filter__count {
  color: #c7cace;
}
.hp-catalog__empty {
  font-size: 13px;
  color: var(--hp-muted);
  padding: 40px 0;
  text-align: center;
}
.hp-catalog__more-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 0 4px;
}
.hp-catalog__more {
  opacity: 1;
  transition: opacity 0.15s ease;
}
.hp-catalog__more:disabled {
  opacity: 0.55;
  cursor: default;
}

/* ---------- product grid ---------- */
.hp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

/* ---------- product card ---------- */
.hp-card {
  background: #fff;
  border-radius: 3px;
  padding: 18px 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.hp-card:hover {
  border-color: var(--hp-line);
  background: #fafafa;
}
.hp-card__media {
  position: relative;
  height: 130px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.hp-card__img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 0.15s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hp-card:hover .hp-card__img {
  transform: scale(1.06);
}
.hp-card__img.is-swapping {
  opacity: 0;
}
.hp-card__media.is-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}
.hp-card__media.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--hp-line);
  border-top-color: var(--hp-blue);
  border-radius: 50%;
  animation: hpCardSpin 0.7s linear infinite;
}
@keyframes hpCardSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hp-card__img {
    transition-property: opacity;
  }
  .hp-card:hover .hp-card__img {
    transform: none;
  }
  .hp-card__media.is-loading::after {
    animation-duration: 1.4s;
  }
}
.hp-card__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.hp-card__sub {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 0 0 12px;
}
.hp-card__sub--flush {
  margin-bottom: 0;
}
.hp-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 0 12px;
}
.hp-card__stars {
  display: inline-flex;
  gap: 1px;
}
.hp-card__star {
  color: var(--hp-line);
  fill: none;
}
.hp-card__star--on {
  color: var(--hp-blue);
  fill: currentColor;
}
.hp-card__score {
  font-size: 9px;
  font-weight: 700;
}
.hp-card__reviews {
  font-size: 9px;
  color: var(--hp-muted);
}
.hp-card__price {
  font-size: 12px;
  font-weight: 700;
  margin: auto 0 0;
}
.hp-card__price--flush {
  margin: 0;
}
.hp-card__add {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--hp-blue);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.hp-card--plain {
  background: transparent;
}

/* card modifier: wide "kit" card */
.hp-card--wide {
  grid-column: span 2;
  padding: 0;
  text-align: left;
  overflow: hidden;
}
.hp-card__photo {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.hp-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 16px;
}
.hp-card__info {
  min-width: 0;
}

/* ---------- pagination ---------- */
.hp-pagination {
  background: #fff;
  border-radius: 3px;
  margin-top: 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  position: relative;
}
.hp-pagination__pages {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  font-size: 12px;
  color: #6b7076;
}
.hp-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease;
}
.hp-pagination__page:hover {
  color: var(--hp-blue);
}
.hp-pagination__page--active {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  color: var(--hp-text);
}
.hp-pagination__page--active:hover {
  color: var(--hp-text);
}
.hp-pagination__arrow {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  color: #6b7076;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.hp-pagination__arrow:hover {
  color: var(--hp-blue);
}
.hp-pagination__arrow--disabled {
  opacity: 0.35;
  cursor: default;
}

/* ---------- recommended ---------- */
.hp-recommended {
  padding: 64px 0 72px;
}
.hp-recommended__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

/* ---------- footer ---------- */
.hp-footer {
  background: var(--hp-dark);
  color: #fff;
  padding: 48px 0 26px;
}
.hp-footer__top {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
}
.hp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hp-footer__link {
  color: #cfd2d6;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.hp-footer__link:hover {
  color: #fff;
}
.hp-footer__social {
  display: flex;
  gap: 18px;
  color: #cfd2d6;
}
.hp-footer__social-link {
  color: inherit;
  display: grid;
  place-items: center;
  transition: color 0.15s ease;
}
.hp-footer__social-link:hover {
  color: var(--hp-blue);
}
.hp-footer__lang {
  display: flex;
  justify-content: center;
  margin: 34px 0 26px;
}
.hp-footer__divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 20px;
}
.hp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: var(--hp-muted);
}
.hp-footer__author-link {
  color: var(--hp-blue);
  text-decoration: none;
}

/* ============================================================
   About page blocks: hp-section, hp-intro, hp-mosaic, hp-tile,
   hp-row, hp-stats, hp-stat, hp-video, hp-dealer, hp-cta
   ============================================================ */

/* ---------- generic section ---------- */
.hp-section {
  padding: 80px 0 84px;
}
.hp-section--grey {
  background: var(--hp-grey-bg);
}
.hp-section--tight {
  padding: 56px 0 60px;
}
.hp-section__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.hp-section__body {
  min-width: 0;
}
.hp-section__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 44px;
  margin: 56px 0 24px;
}
.hp-section__lead {
  font-size: 12.5px;
  color: #4a4e55;
  max-width: 700px;
  text-align: justify;
  margin: 0;
}
.hp-section__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
}
.hp-section__col {
  font-size: 12.5px;
  color: #4a4e55;
  margin: 0;
}
.hp-section__note {
  display: block;
  margin-top: 44px;
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-muted);
  text-decoration: none;
}

/* ---------- mosaic gallery ---------- */
.hp-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 172px);
  gap: 10px;
}
.hp-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--hp-dark);
}
.hp-tile--main {
  grid-column: span 2;
  grid-row: span 2;
}
.hp-tile--wide {
  grid-column: span 2;
}
.hp-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.05) 70%);
}
.hp-tile__content {
  position: relative;
  padding: 18px 20px;
  color: #fff;
}
.hp-tile__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 20px;
  margin: 0;
}
.hp-tile__title--sm {
  font-size: 15px;
}
.hp-tile__text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  margin: 6px 0 0;
  max-width: 320px;
}

/* ---------- product row ---------- */
.hp-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.hp-card--framed {
  border: 1px solid var(--hp-line);
  padding: 26px 16px 28px;
}

/* ---------- stats ---------- */
.hp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.hp-stat {
  text-align: center;
}
.hp-stat__value {
  font-family: var(--hp-font-serif);
  font-size: 38px;
  line-height: 1;
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 0 18px;
}
.hp-stat__value::before,
.hp-stat__value::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 26px;
  height: 2px;
  background: var(--hp-blue);
}
.hp-stat__value::before {
  right: 100%;
}
.hp-stat__value::after {
  left: 100%;
}
.hp-stat__label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4e55;
  margin: 14px 0 0;
}

/* ---------- video ---------- */
.hp-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--hp-dark);
}
.hp-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  background: var(--hp-dark);
}
.hp-video__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-video__error {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.35);
}
.hp-video__error[hidden] {
  display: none;
}
.hp-video__controls {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0 28px 22px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  padding-top: 40px;
}
.hp-video__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  position: relative;
}
.hp-video__progress {
  position: absolute;
  inset: 0 auto 0 0;
  background: #fff;
  border-radius: 999px;
}
.hp-video__range {
  position: absolute;
  inset: -8px 0;
  width: 100%;
  height: calc(100% + 16px);
  margin: 0;
  appearance: none;
  background: none;
  cursor: pointer;
}
.hp-video__range::-webkit-slider-thumb {
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #fff;
}
.hp-video__range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #fff;
}
.hp-video__icon--pause,
.hp-video__icon--muted {
  display: none;
}
.hp-video__btn--play.is-playing .hp-video__icon--play {
  display: none;
}
.hp-video__btn--play.is-playing .hp-video__icon--pause {
  display: inline-flex;
}
[data-video-mute].is-muted .hp-video__icon--unmuted {
  display: none;
}
[data-video-mute].is-muted .hp-video__icon--muted {
  display: inline-flex;
}
.hp-video__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.hp-video__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 6px;
}
.hp-video__btn {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.hp-video__btn--play {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* ---------- dealer ---------- */
.hp-dealer {
  background: var(--hp-dark);
  color: #fff;
  padding: 76px 0 80px;
}
.hp-dealer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hp-dealer__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 44px;
  margin: 22px 0 18px;
}
.hp-dealer__text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  margin: 0 0 30px;
}
.hp-dealer__btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.hp-dealer__btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hp-dealer__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* ---------- cta ---------- */
.hp-cta__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 16px;
}
.hp-cta__text {
  font-size: 12.5px;
  color: #4a4e55;
  max-width: 560px;
  margin: 0 0 26px;
}

/* ============================================================
   Cart & Checkout blocks: hp-crumbs, hp-pagehead, hp-basket,
   hp-line, hp-qty, hp-summary, hp-sumrow, hp-back, hp-checkout,
   hp-panel, hp-field, hp-radio, hp-pay, hp-brands.
   ============================================================ */

.hp-shop {
  background: var(--hp-grey-bg);
  padding: 26px 0 70px;
}

/* ---------- breadcrumbs ---------- */
.hp-crumbs {
  font-size: 13px;
  color: var(--hp-muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hp-crumbs__link {
  color: inherit;
  text-decoration: none;
}
.hp-crumbs__link:hover {
  color: var(--hp-text);
}
.hp-crumbs__sep {
  color: var(--hp-muted);
}
.hp-crumbs__current {
  color: var(--hp-text);
  font-weight: 600;
}

/* ---------- page head ---------- */
.hp-pagehead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 46px 0 18px;
  border-bottom: 1px solid #cfd1d4;
  margin-bottom: 26px;
}
.hp-pagehead__title {
  font-family: var(--hp-font-serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.hp-pagehead__meta {
  font-size: 13px;
  color: var(--hp-muted);
}
.hp-pagehead__count {
  color: var(--hp-text);
  font-weight: 700;
}

/* ---------- back link ---------- */
.hp-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.hp-back--center {
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

/* ---------- basket layout ---------- */
.hp-basket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}
.hp-basket__list {
  display: grid;
  gap: 14px;
}

/* ---------- cart line ---------- */
.hp-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto 140px 32px;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
}
.hp-line__media {
  height: 130px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hp-line__img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
}
.hp-line__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.hp-line__sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 6px 0 0;
}
.hp-line__price {
  font-size: 15px;
  text-align: right;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
.hp-line__remove {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--hp-text);
  cursor: pointer;
}

.hp-line__bottom {
  display: contents;
}

/* ---------- quantity ---------- */
.hp-qty {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-qty__btn {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--hp-muted);
  cursor: pointer;
  font-size: 16px;
}
.hp-qty__btn:disabled {
  color: var(--hp-line);
  cursor: not-allowed;
}
.hp-qty__value--min {
  color: var(--hp-muted);
}
.hp-qty__value {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- summary ---------- */
.hp-summary {
  background: #fff;
  border-radius: 10px;
  padding: 34px 30px 30px;
}
.hp-summary__title {
  font-family: var(--hp-font-serif);
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 24px;
}
.hp-sumrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hp-line);
  font-size: 13px;
  color: var(--hp-muted);
}
.hp-sumrow__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-text);
}
.hp-sumrow--total {
  border-bottom: 2px solid var(--hp-text);
}
.hp-sumrow--total .hp-sumrow__label {
  color: var(--hp-text);
}
.hp-sumrow--total .hp-sumrow__value {
  font-size: 24px;
}
.hp-summary__action {
  margin-top: 26px;
}

/* ---------- wide button ---------- */
.hp-btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.hp-btn--light {
  background: #fff;
  color: var(--hp-text);
}
.hp-btn--light:hover {
  background: #f1f2f4;
}

/* ---------- checkout ---------- */
.hp-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}
.hp-checkout__col {
  display: grid;
  gap: 14px;
}
.hp-panel {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
.hp-panel--pay {
  background: var(--hp-blue);
  color: #fff;
}
.hp-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.hp-panel__title {
  font-family: var(--hp-font-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}
.hp-panel__step {
  font-family: var(--hp-font-serif);
  font-size: 26px;
  color: var(--hp-muted);
}
.hp-panel--pay .hp-panel__step {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- fields ---------- */
.hp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.hp-form__cell--full {
  grid-column: span 2;
}
.hp-field {
  width: 100%;
  height: 52px;
  border: 1px solid var(--hp-line);
  border-radius: 40px;
  background: #fff;
  padding: 0 24px;
  font: inherit;
  color: var(--hp-text);
}
.hp-field::placeholder {
  color: var(--hp-muted);
}
.hp-field--dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hp-field--dark::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.hp-select-field {
  position: relative;
}
.hp-suggest {
  position: relative;
}
.hp-suggest__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 6px;
}
.hp-suggest__item {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
}
.hp-suggest__item:hover {
  background: var(--hp-tint-strong, #f3f4f6);
}
.hp-searchdrop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-height: 320px;
  overflow-y: auto;
  z-index: 20;
  padding: 6px;
}
.hp-searchdrop[hidden] {
  display: none;
}
.hp-searchdrop__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}
.hp-searchdrop__item:hover {
  background: var(--hp-tint-strong, #f3f4f6);
}
.hp-searchdrop__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: var(--hp-grey-bg);
  border-radius: 6px;
  flex-shrink: 0;
}
.hp-searchdrop__title {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 2px;
}
.hp-searchdrop__price {
  font-size: 11.5px;
  color: var(--hp-muted);
  margin: 0;
}
.hp-searchdrop__empty {
  padding: 14px;
  font-size: 12.5px;
  color: var(--hp-muted);
  text-align: center;
}
.hp-searchdrop__all {
  display: block;
  margin-top: 4px;
  padding: 10px 8px;
  border-top: 1px solid var(--hp-line);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-blue);
  text-decoration: none;
}
.hp-searchdrop__all:hover {
  color: var(--hp-blue-hover);
}
.hp-select-field__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hp-text);
  pointer-events: none;
}
.hp-fieldlabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ---------- radios ---------- */
.hp-radios {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 20px;
}
.hp-radios--wrap {
  flex-wrap: wrap;
  gap: 14px 28px;
}
.hp-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-muted);
  cursor: pointer;
}
.hp-radio__input {
  width: 16px;
  height: 16px;
  accent-color: var(--hp-blue);
}
.hp-radio--active {
  color: var(--hp-blue);
}
.hp-panel--pay .hp-radio {
  color: rgba(255, 255, 255, 0.75);
}
.hp-panel--pay .hp-radio--active {
  color: #fff;
}

/* ---------- delivery ---------- */
.hp-delivery {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px;
}
.hp-cities {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--hp-muted);
  padding: 0 24px;
}
.hp-cities__item {
  cursor: pointer;
  transition: color 0.15s ease;
}
.hp-cities__item:hover {
  color: var(--hp-blue);
}
.hp-delivery[hidden],
.hp-courier-fields[hidden] {
  display: none;
}
.hp-delivery__toggle {
  grid-column: span 2;
}
.hp-delivery__address {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.hp-delivery__address[hidden] {
  display: none;
}
.hp-select-field .hp-field:disabled,
.hp-select-field .hp-field:read-only {
  color: var(--hp-muted);
  cursor: not-allowed;
}
.hp-pickup-info {
  font-size: 13px;
  color: var(--hp-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- payment brands ---------- */
.hp-brands {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  opacity: 0.5;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.hp-brands__item {
  color: #fff;
}
.hp-pay__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 16px;
  margin-top: 16px;
}
.hp-pay__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 26px 0 22px;
}
.hp-pay__note {
  margin: 14px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- recommended slider ---------- */
.hp-recommended__slider {
  margin-top: 28px;
  position: relative;
}
.hp-slider {
  overflow: hidden;
}
.hp-slider__slide {
  height: auto;
}
.hp-slider__nav {
  align-items: center;
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 50%;
  color: var(--hp-dark);
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  top: 38%;
  transition: background 0.2s ease, color 0.2s ease;
  width: 40px;
  z-index: 3;
}
.hp-slider__nav:hover {
  background: var(--hp-dark);
  color: #fff;
}
.hp-slider__nav--prev {
  left: -14px;
}
.hp-slider__nav--next {
  right: -14px;
}
.hp-slider__nav--disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ============================================================
   Dealer & Contacts blocks: hp-hero--inset, hp-benefits, hp-apply,
   hp-modal, hp-contacts, hp-info, hp-ask.
   ============================================================ */
.hp-hero--inset {
  background: var(--hp-dark);
  display: block;
  min-height: 0;
  padding: 0 0 0;
}
.hp-hero__frame {
  position: relative;
  margin: 0 auto;
  max-width: 1060px;
  height: 460px;
  overflow: hidden;
}
.hp-hero__overlay--center {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.hp-hero__title--center {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 62px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 56px;
}

/* ---------- benefits ---------- */
.hp-section__title--sm {
  font-size: 32px;
  margin-top: 0;
}
.hp-section__col--wide {
  max-width: 560px;
}
.hp-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 560px;
}
.hp-benefits__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-text);
  margin: 0;
}
.hp-benefits__text {
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 8px 0 0;
  padding-left: 32px;
  text-align: justify;
}

/* ---------- apply (dark form) ---------- */
.hp-apply {
  background: var(--hp-dark);
  color: #fff;
  padding: 72px 0 76px;
}
.hp-apply__grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
.hp-apply__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 44px;
  margin: 0 0 14px;
}
.hp-apply__text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 280px;
}
.hp-apply__form {
  max-width: 640px;
  margin-left: auto;
}
.hp-apply__submit {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.hp-apply__submit .hp-btn {
  max-width: 300px;
}
.hp-apply__note {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 260px;
}

/* ---------- modal ---------- */
.hp-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.82);
}
.hp-modal[hidden] {
  display: none;
}
.hp-modal__dialog {
  position: relative;
  width: 100%;
  background: var(--hp-dark);
  color: #fff;
  padding: 70px 20px 90px;
  text-align: center;
}
.hp-modal__close {
  position: absolute;
  top: 18px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.hp-modal__side {
  position: absolute;
  top: 90px;
  right: 10px;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
}
.hp-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--hp-blue);
  color: var(--hp-blue);
  margin-bottom: 24px;
}
.hp-modal__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 42px;
  margin: 0 0 16px;
}
.hp-modal__text {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

/* ---------- contacts ---------- */
.hp-contacts {
  padding: 0 0 40px;
}
.hp-contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 40px;
  align-items: start;
}
.hp-contacts__col {
  padding: 130px 0 60px;
}
.hp-contacts__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 68px;
  margin: 0 0 12px;
}
.hp-contacts__lead {
  font-size: 13px;
  color: var(--hp-muted);
  margin: 0;
  max-width: 460px;
}
.hp-contacts__lead-strong {
  color: var(--hp-text);
}
.hp-contacts__media {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}
.hp-contacts__img {
  display: block;
  width: 100%;
  height: 610px;
  object-fit: cover;
}
.hp-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
  margin: 70px 0 0;
  max-width: 560px;
  padding-left: 120px;
}
.hp-info__label {
  font-size: 12px;
  color: var(--hp-muted);
  margin-bottom: 6px;
}
.hp-info__value {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hp-info__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.hp-info__link:hover {
  color: var(--hp-blue);
}
.hp-info__sep {
  color: var(--hp-line);
  margin: 0 8px;
}

/* ---------- ask form ---------- */
.hp-ask {
  padding: 40px 0 90px;
}
.hp-ask__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 52px;
  margin: 0 0 10px;
  padding-left: 120px;
}
.hp-ask__text {
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 0 0 34px;
  padding-left: 120px;
}
.hp-ask__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 22px;
  padding-left: 120px;
}
.hp-ask__col {
  display: grid;
  gap: 14px;
  align-content: start;
}
.hp-field--soft {
  background: var(--hp-grey-bg);
  border-color: transparent;
}
.hp-field--area {
  height: 172px;
  border-radius: 18px;
  padding: 18px 24px;
  resize: vertical;
}
.hp-ask__note {
  font-size: 9px;
  color: var(--hp-muted);
  margin: 0;
  max-width: 300px;
}

/* ============================================================
   Search page blocks: hp-searchpage, hp-searchbar, hp-searchhead.
   ============================================================ */

.hp-searchpage {
  background: var(--hp-grey-bg);
  padding: 26px 0 90px;
}
.hp-searchbar {
  background: #fff;
  border-radius: 4px;
  padding: 14px 18px;
  margin-top: 22px;
}
.hp-searchbar__form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--hp-grey-bg);
  border-radius: 999px;
  padding: 5px 6px 5px 20px;
}
.hp-searchbar__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #4a4e55;
}
.hp-searchbar__submit {
  width: 40px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--hp-blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.hp-searchbar__submit:hover {
  background: var(--hp-blue-hover);
}

.hp-searchhead {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  padding: 46px 0 30px;
}
.hp-searchhead__body {
  max-width: 700px;
}
.hp-searchhead__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 14px;
  text-align: center;
}
.hp-searchhead__meta {
  margin: 0;
  font-size: 13px;
  color: #4a4e55;
  text-align: center;
}
.hp-searchhead__strong {
  font-weight: 700;
  color: var(--hp-text);
}
.hp-searchpage__results {
  min-height: 200px;
}
.hp-searchpage__empty {
  min-height: 300px;
}

/* ============================================================
   Product page blocks: hp-product, hp-specs, hp-volume,
   hp-gallery, hp-tabsec, hp-tabs, hp-tabpanel, hp-facts,
   hp-showcase, hp-promo, hp-crosssell
   ============================================================ */

.hp-product {
  background: var(--hp-grey-bg);
  padding: 26px 0 0;
}
.hp-product__top {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding: 26px 0 60px;
}
.hp-product__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 12px;
}
.hp-product__lead {
  font-size: 11.5px;
  color: #5a5f66;
  margin: 0 0 22px;
  max-width: 380px;
}
.hp-specs {
  margin: 0 0 16px;
}
.hp-specs__row {
  display: flex;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #6b7076;
  margin: 0 0 4px;
}
.hp-specs__key {
  margin: 0;
}
.hp-specs__value {
  margin: 0;
  font-weight: 700;
  color: var(--hp-text);
}
.hp-specs__value--stock {
  color: var(--hp-blue);
}
.hp-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #6b7076;
}
.hp-volume__control {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hp-volume__select {
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--hp-text);
  padding: 0 16px 0 0;
  cursor: pointer;
}
.hp-volume__icon {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: #6b7076;
}
.hp-product__price {
  font-family: var(--hp-font-serif);
  font-size: 40px;
  margin: 24px 0 26px;
}
.hp-product__currency {
  font-family: var(--hp-font-sans);
  font-size: 13px;
  color: #6b7076;
}
.hp-product__add {
  max-width: 340px;
}

/* ---------- gallery ---------- */
.hp-product__gallery {
  min-width: 0;
  width: 100%;
}
.hp-gallery {
  position: relative;
  width: 100%;
  min-width: 0;
}
.hp-gallery__swiper {
  width: 100%;
}
.hp-gallery__slide {
  background: #fff;
  display: grid;
  place-items: center;
  height: auto;
}
.hp-gallery__img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.hp-gallery__zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.hp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hp-line);
  color: var(--hp-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.hp-gallery__nav:hover {
  background: var(--hp-blue);
  color: #fff;
}
.hp-gallery__nav--prev {
  left: -14px;
}
.hp-gallery__nav--next {
  left: 380px;
}
.hp-gallery__nav--disabled {
  opacity: 0.4;
  cursor: default;
}
.hp-gallery__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.hp-gallery__dot {
  width: 26px;
  height: 2px;
  background: #c9cbce;
  display: block;
  cursor: pointer;
}
.hp-gallery__dot--active {
  background: var(--hp-text);
}

/* ---------- tabs ---------- */
.hp-tabsec {
  background: var(--hp-grey-bg);
  padding: 10px 0 70px;
}
.hp-tabs {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid #d6d8da;
  padding: 0 0 12px;
}
.hp-tabs__item {
  background: none;
  border: 0;
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hp-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}
.hp-tabs__item:hover {
  color: var(--hp-blue);
}
.hp-tabs__item--active {
  color: var(--hp-text);
  font-weight: 700;
}
.hp-tabpanel {
  max-width: 720px;
  padding-top: 30px;
}
.hp-tabpanel__title {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 12px;
}
.hp-tabpanel__text {
  font-size: 11.5px;
  color: #4a4e55;
  text-align: justify;
  margin: 0 0 20px;
}
.hp-tabpanel__subtitle {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 0 0 10px;
}
.hp-specs--table {
  margin: 0 0 22px;
}
.hp-specs--table .hp-specs__row {
  font-size: 11.5px;
  gap: 10px;
}
.hp-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hp-facts__item {
  margin-bottom: 18px;
}
.hp-facts__title {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 8px;
}
.hp-facts__text {
  font-size: 11.5px;
  color: #6b7076;
  margin: 0;
  padding-left: 26px;
}

/* ---------- dark showcase ---------- */
.hp-showcase {
  position: relative;
  background: var(--hp-black);
  color: #fff;
  padding: 0 0 60px;
  overflow: hidden;
}
.hp-showcase__block {
  position: absolute;
  top: 0;
  left: 210px;
  width: 130px;
  height: 170px;
  background: var(--hp-blue);
}
.hp-showcase__head {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 20px;
  padding-top: 70px;
  padding-bottom: 34px;
}
.hp-showcase__vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hp-muted);
}
.hp-showcase__intro {
  text-align: right;
}
.hp-showcase__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 12px;
}
.hp-showcase__text {
  font-size: 11.5px;
  color: #c2c6cb;
  margin: 0 0 0 auto;
  max-width: 460px;
}
.hp-showcase__slider {
  position: relative;
  padding: 0 var(--hp-pad) 46px;
}
.hp-showcase__slide {
  height: 150px;
}
.hp-showcase__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.hp-showcase__navs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}
.hp-showcase__nav {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hp-showcase__nav:hover {
  background: var(--hp-blue);
  border-color: var(--hp-blue);
}
.hp-showcase__nav--disabled {
  opacity: 0.35;
  cursor: default;
}

/* ---------- promo + cross-sell ---------- */
.hp-promo {
  background: var(--hp-black);
  padding: 40px 0 70px;
}
.hp-promo .hp-eyebrow {
  color: var(--hp-muted);
}
.hp-crosssell {
  background: #fff;
  padding: 56px 0 70px;
}

/* ---------- about tile popup (hp-tilepop) ---------- */
.hp-tilepop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--hp-dark);
  color: #fff;
  overflow-y: auto;
}
.hp-tilepop__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  min-height: 100%;
  gap: 60px;
  padding: 90px 60px 60px 0;
}
.hp-tilepop__close {
  position: absolute;
  top: 34px;
  right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.hp-tilepop__side {
  position: absolute;
  top: 120px;
  right: 18px;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}
.hp-tilepop__media {
  position: relative;
  height: 70vh;
  min-height: 420px;
}
.hp-tilepop__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-tilepop__body {
  max-width: 620px;
}
.hp-tilepop__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 26px;
}
.hp-tilepop__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 26px;
}
.hp-tilepop__subtitle {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
}
.hp-tilepop__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hp-tilepop__item {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}
.hp-tile--action {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

/* ============================================================
   Status pages (order success / fail)
   ============================================================ */
.hp-status {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: #f4f5f7;
}
.hp-status__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-status__logo {
  position: absolute;
  top: 40px;
  left: 60px;
}
.hp-status__watermark {
  position: absolute;
  top: 140px;
  right: 26px;
  writing-mode: vertical-rl;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(17, 17, 17, 0.18);
}
.hp-status__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
}
.hp-status__icon {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 3px solid currentColor;
}
.hp-status__icon--ok {
  color: #1a56f0;
}
.hp-status__icon--fail {
  color: #f0656c;
}
.hp-status__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 68px;
  line-height: 1;
  margin: 0 0 18px;
  color: #111;
}
.hp-status__lead {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
}
.hp-status__text {
  font-size: 17px;
  margin: 0;
  color: #333;
}
.hp-status__order {
  font-size: 16px;
  margin: 36px 0 34px;
  color: #333;
}
.hp-status__order-num {
  font-weight: 700;
  color: #1a56f0;
}
.hp-btn--pill {
  border-radius: 999px;
  padding: 16px 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
.hp-nav__extra {
  display: none;
}
.hp-lang--menu,
.hp-call--menu {
  display: none;
}
.hp-status__logo .hp-logo__mark {
  color: #111;
}
.hp-status__logo .hp-logo__sub {
  color: rgba(17, 17, 17, 0.55);
}

/* ============================================================
   Reviews & Blog blocks: hp-hero--short, hp-stars, hp-rating,
   hp-reviews, hp-review, hp-feature, hp-posts, hp-postcard,
   hp-post.
   ============================================================ */

.hp-hero--short {
  min-height: 420px;
}

/* ---------- stars ---------- */
.hp-stars {
  display: inline-flex;
  gap: 3px;
}
.hp-stars__icon {
  color: #c7cace;
}
.hp-stars__icon--on {
  color: var(--hp-blue);
  fill: var(--hp-blue);
}

/* ---------- rating summary ---------- */
.hp-rating {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--hp-line);
  margin-bottom: 34px;
}
.hp-rating__score {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-rating__value {
  font-family: var(--hp-font-serif);
  font-size: 56px;
  line-height: 1;
}
.hp-rating__count {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-muted);
}
.hp-rating__text {
  font-size: 12.5px;
  color: #4a4e55;
  max-width: 640px;
  margin: 0;
  text-align: justify;
}

/* ---------- reviews list ---------- */
.hp-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.hp-review {
  border: 1px solid var(--hp-line);
  background: #fff;
  padding: 22px 24px 24px;
}
.hp-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hp-review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--hp-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex: 0 0 auto;
}
.hp-review__ident {
  flex: 1 1 auto;
  min-width: 0;
}
.hp-review__name {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.hp-review__meta {
  font-size: 11px;
  color: var(--hp-muted);
  margin: 2px 0 0;
}
.hp-review__source {
  color: inherit;
  text-decoration: underline;
}
.hp-review__product {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-blue);
  margin: 0 0 8px;
}
.hp-review__product-link {
  color: inherit;
  text-decoration: none;
}
.hp-review__product-link:hover {
  text-decoration: underline;
}
.hp-review__text {
  font-size: 12.5px;
  color: #4a4e55;
  margin: 0;
  text-align: justify;
}

/* ---------- review form ---------- */
.hp-reviews__form-wrap {
  margin-top: 20px;
}
.hp-reviews__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
}
.hp-reviews__area {
  grid-column: 1 / -1;
  min-height: 120px;
}

/* ---------- featured post ---------- */
.hp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin: 32px 0 46px;
  color: inherit;
  text-decoration: none;
}
.hp-feature__media {
  overflow: hidden;
  background: var(--hp-grey-bg);
}
.hp-feature__img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hp-feature:hover .hp-feature__img {
  transform: scale(1.03);
}
.hp-feature__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  margin: 10px 0 16px;
}
.hp-feature__text {
  font-size: 12.5px;
  color: #4a4e55;
  margin: 0 0 14px;
}
.hp-feature__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 0;
}

/* ---------- posts grid ---------- */
.hp-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.hp-postcard {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.hp-postcard__media {
  position: relative;
  overflow: hidden;
  background: var(--hp-grey-bg);
  margin-bottom: 14px;
}
.hp-postcard__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hp-postcard:hover .hp-postcard__img {
  transform: scale(1.04);
}
.hp-postcard__tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(13, 13, 13, 0.82);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.hp-postcard__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.hp-postcard__text {
  font-size: 12.5px;
  color: #4a4e55;
  margin: 0 0 10px;
}
.hp-postcard__meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: auto 0 0;
}

/* ---------- single post ---------- */
.hp-post__head {
  max-width: 820px;
  margin: 34px 0 24px;
}
.hp-post__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.06;
  margin: 10px 0 14px;
}
.hp-post__meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 0;
}
.hp-post__media {
  overflow: hidden;
  background: var(--hp-grey-bg);
  margin-bottom: 34px;
}
.hp-post__img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hp-post__body {
  max-width: 780px;
}
.hp-post__lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-text);
  margin: 0 0 20px;
}
.hp-post__p {
  font-size: 13px;
  color: #4a4e55;
  margin: 0 0 16px;
  text-align: justify;
}
.hp-post__subtitle {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 30px;
  margin: 32px 0 14px;
}
.hp-post__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.hp-post__item {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #4a4e55;
  margin-bottom: 10px;
}
.hp-post__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--hp-blue);
}

/* ---------- legal pages ---------- */
.hp-legal {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}
.hp-legal__aside {
  position: sticky;
  top: 100px;
  padding-top: 40px;
}
.hp-legal__aside-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 0 0 14px;
}
.hp-legal__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-legal__menu-link {
  font-size: 12px;
  color: #4a4e55;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hp-legal__menu-link:hover {
  color: var(--hp-blue);
}
.hp-legal__menu-link--active {
  color: var(--hp-text);
  border-left-color: var(--hp-blue);
}
.hp-legal__body {
  max-width: 780px;
}

.hp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.hp-footer__legal-link {
  font-size: 11px;
  color: var(--hp-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hp-footer__legal-link:hover {
  color: #fff;
}

/* ============================================================
   Catalog page: hp-catalogpage.
   ============================================================ */
.hp-catalogpage {
  padding-top: 32px;
}
.hp-catalogpage__lead {
  max-width: 640px;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--hp-muted);
}

/* ============================================================
   Account & auth blocks: hp-auth, hp-code, hp-account, hp-order,
   hp-favs, hp-myreview, hp-signin, hp-check, hp-nf.
   ============================================================ */

/* ---------- auth pages ---------- */
.hp-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
  padding: 46px 0 60px;
}
.hp-auth__card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  max-width: 620px;
}
.hp-auth__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--hp-blue);
  color: var(--hp-blue);
  margin-bottom: 18px;
}
.hp-auth__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 12px;
}
.hp-auth__text {
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 0 0 26px;
  max-width: 440px;
}
.hp-auth__form {
  display: grid;
  gap: 14px;
  max-width: 440px;
}
.hp-auth__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hp-auth__note {
  font-size: 12px;
  color: var(--hp-muted);
  margin: 22px 0 0;
}
.hp-auth__link {
  color: var(--hp-blue);
  font-weight: 700;
  text-decoration: none;
}
.hp-auth__link:hover {
  text-decoration: underline;
}
.hp-auth__side {
  background: var(--hp-dark);
  color: #fff;
  border-radius: 10px;
  padding: 34px 30px;
}
.hp-auth__side-title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 18px;
}
.hp-auth__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.hp-auth__item {
  position: relative;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 18px;
}
.hp-auth__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-blue);
}

/* ---------- checkbox ---------- */
.hp-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--hp-muted);
}
.hp-check__input {
  width: 16px;
  height: 16px;
  accent-color: var(--hp-blue);
}

/* ---------- code modal ---------- */
.hp-modal--code {
  padding: 20px;
}
.hp-modal__dialog--code {
  max-width: 560px;
  border-radius: 10px;
  padding: 56px 32px 48px;
}
.hp-modal__mail {
  color: var(--hp-blue);
}
.hp-code {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 24px;
}
.hp-code__cell {
  width: 48px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  font-family: inherit;
}
.hp-code__cell:focus {
  outline: none;
  border-color: var(--hp-blue);
}
.hp-code__actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}
.hp-btn--muted {
  opacity: 0.55;
}
.hp-code__timer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.hp-code__resend {
  background: none;
  border: 0;
  color: var(--hp-blue);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

/* ---------- account layout ---------- */
.hp-account {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.hp-account__aside {
  background: #fff;
  border-radius: 10px;
  padding: 26px 22px;
}
.hp-account__user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hp-line);
}
.hp-account__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--hp-blue);
  color: #fff;
  font-weight: 700;
}
.hp-account__name {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}
.hp-account__mail {
  font-size: 11.5px;
  color: var(--hp-muted);
  margin: 4px 0 0;
}
.hp-account__nav {
  display: grid;
  gap: 4px;
  padding: 18px 0;
}
.hp-account__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hp-muted);
  text-decoration: none;
}
.hp-account__link:hover {
  background: var(--hp-grey-bg);
  color: var(--hp-text);
}
.hp-account__link--active {
  background: var(--hp-blue);
  color: #fff;
}
.hp-account__logout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text);
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid var(--hp-line);
  width: 100%;
  transition: color 0.15s ease;
}
.hp-account__logout:hover {
  color: var(--hp-blue);
}
.hp-account__body {
  display: grid;
  gap: 14px;
}
.hp-account__save {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

/* ---------- orders ---------- */
.hp-orders {
  display: grid;
  gap: 12px;
}
.hp-order {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.hp-order__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.hp-order__chevron {
  display: inline-flex;
  color: var(--hp-muted);
  transition: transform 0.2s ease;
}
.hp-order__row[aria-expanded="true"] .hp-order__chevron {
  transform: rotate(180deg);
}
.hp-order__panel {
  padding: 4px 24px 24px;
  border-top: 1px solid var(--hp-line);
  margin: 0 24px;
}
.hp-order__panel[hidden] {
  display: none;
}
.hp-order__items {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}
.hp-order__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-order__item-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--hp-grey-bg);
  flex-shrink: 0;
}
.hp-order__item-body {
  flex: 1;
  min-width: 0;
}
.hp-order__item-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
}
.hp-order__item-qty {
  font-size: 11.5px;
  color: var(--hp-muted);
  margin: 0;
}
.hp-order__item-total {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.hp-order__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hp-line);
}
.hp-order__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin: 0 0 6px;
}
.hp-order__value {
  font-size: 13.5px;
  font-weight: 800;
  margin: 0;
}
.hp-order__status {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  background: var(--hp-grey-bg);
  color: var(--hp-muted);
}
.hp-order__status--ok {
  background: rgba(28, 150, 80, 0.12);
  color: #1c9650;
}
.hp-order__status--wait {
  background: rgba(0, 110, 220, 0.12);
  color: var(--hp-blue);
}
.hp-order__status--fail {
  background: rgba(200, 40, 40, 0.12);
  color: #c82828;
}
/* ---------- favorites ---------- */
.hp-favs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hp-favs__action {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* ---------- my reviews / bonus ---------- */
.hp-bonus__text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 440px;
}
.hp-myreviews {
  display: grid;
  gap: 14px;
}
.hp-myreview {
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  padding: 20px;
}
.hp-myreview__title {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 8px;
}
.hp-myreview__text {
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 10px 0 0;
}

/* ---------- checkout sign-in ---------- */
.hp-signin {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.hp-signin__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hp-blue);
  color: var(--hp-blue);
  flex: none;
}
.hp-signin__body {
  min-width: 0;
  flex: 1;
}
.hp-signin__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
}
.hp-signin__text {
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 0 0 18px;
  max-width: 460px;
}
.hp-signin__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.hp-signin__note {
  font-size: 11.5px;
  color: var(--hp-muted);
  margin: 14px 0 0;
}

/* ---------- 404 ---------- */
.hp-nf {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  padding: 90px 40px 100px;
  text-align: center;
  margin: 40px 0 60px;
}
.hp-nf__watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  font-family: var(--hp-font-serif);
  font-size: 120px;
  letter-spacing: 0.2em;
  color: rgba(10, 10, 10, 0.04);
  pointer-events: none;
}
.hp-nf__code {
  position: relative;
  font-family: var(--hp-font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--hp-blue);
  margin: 0 0 10px;
}
.hp-nf__title {
  position: relative;
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 12px;
}
.hp-nf__text {
  position: relative;
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 0 0 28px;
}
.hp-nf__actions {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   Product reviews: hp-prodrev, hp-revform.
   ============================================================ */
.hp-prodrev {
  padding: 60px 0 20px;
}
.hp-prodrev__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hp-prodrev__title {
  font-family: var(--hp-font-serif);
  font-weight: 400;
  font-size: 38px;
  margin: 0;
}
.hp-prodrev__count {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-muted);
  border: 1px solid var(--hp-line);
  padding: 5px 10px;
}
.hp-prodrev__cta {
  margin-left: auto;
}
.hp-prodrev__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--hp-line);
  margin-bottom: 22px;
}
.hp-prodrev__empty {
  font-size: 12.5px;
  color: var(--hp-muted);
  margin: 0;
}

/* ---------- review popup form ---------- */
.hp-modal__dialog--review {
  max-width: 620px;
  padding: 60px 40px 56px;
}
.hp-revform {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  text-align: left;
}
.hp-revform__rate {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-revform__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.hp-revform__stars {
  display: inline-flex;
  gap: 4px;
}
.hp-revform__star {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.hp-revform__area {
  min-height: 120px;
}
.hp-revform__submit {
  justify-self: start;
}
.hp-revform__auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hp-revform__link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}
.hp-revform__link:hover {
  color: #fff;
}


/* ---------- popular reviews (home) ---------- */
.hp-poprev {
  background: #fff;
  padding: 56px 0 64px;
}
.hp-poprev__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.hp-poprev__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-blue);
}
.hp-poprev__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.hp-review--compact {
  padding: 20px 22px 22px;
}
.hp-review--link {
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.hp-review--link:hover {
  border-color: var(--hp-blue);
}
.hp-highlight {
  animation: hpHighlightFlash 2.4s ease-out;
  border-radius: 4px;
}
@keyframes hpHighlightFlash {
  0% {
    box-shadow: inset 0 0 0 3px var(--hp-blue), 0 0 0 3px var(--hp-blue);
    background-color: rgba(26, 99, 232, 0.08);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(26, 99, 232, 0), 0 0 0 0 rgba(26, 99, 232, 0);
    background-color: rgba(26, 99, 232, 0);
  }
}

/* ---------- form validation highlight ---------- */
.hp-field.is-invalid {
  border-color: #e5484d;
  color: #e5484d;
}
.hp-field.is-invalid::placeholder {
  color: #e5484d;
}

/* ---------- scroll reveal (section/page titles) ---------- */
.is-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 2px;
  background: currentColor;
  vertical-align: baseline;
  animation: hpTypingCaretBlink 0.7s steps(1) infinite;
}
@keyframes hpTypingCaretBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ---------- repeatable scroll fade (cards, columns, stats) ---------- */
.hp-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.hp-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hp-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- product gallery lightbox ---------- */
.hp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.94);
  padding: 60px;
}
.hp-lightbox[hidden] {
  display: none;
}
.hp-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hp-lightbox__close {
  position: absolute;
  top: 34px;
  right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s ease;
}
.hp-lightbox__close:hover {
  color: var(--hp-blue);
}
.hp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: none;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hp-lightbox__nav:hover {
  background: var(--hp-blue);
  border-color: var(--hp-blue);
}
.hp-lightbox__nav--prev {
  left: 24px;
}
.hp-lightbox__nav--next {
  right: 24px;
}

/* Original Hydrophob logo asset (not Lovable placeholder). */
.hp-logo { flex-direction: row; align-items: center; }
.hp-logo__img { display: block; height: 45px; width: auto; }
