:root {
  --original-red: #a42325;
  --original-beige: #ead6c8;
  --original-footer: #f2f2f2;
  --original-black: #000000;
  --original-white: #ffffff;
  --original-line: #dedede;
  --page-margin: 16px;
  --header-height: 96px;
}

@media (min-width: 750px) {
  :root {
    --page-margin: 40px;
    --header-height: 122px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--original-white);
  color: var(--original-black);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

body.menu-open,
body.drawer-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  border-radius: 0;
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: -9999px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 10px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.original-page-width {
  width: calc(100% - (var(--page-margin) * 2));
  max-width: 1400px;
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 14px 24px;
  background: var(--original-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: filter 180ms ease;
}

.button:hover {
  filter: brightness(0.86);
}

.button--white {
  background: #fff;
  color: #000;
}

.button--outline {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

.button--wide {
  width: 100%;
}

/* Header — mirrors the original Savor theme proportions. */
.clone-header {
  position: relative;
  z-index: 30;
  height: var(--header-height);
  background: #fff;
  color: #000;
}

body[data-page="home"] .clone-header,
body[data-page="catalog"] .clone-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  color: #fff;
}

.clone-header__inner {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 178px minmax(0, 1fr) auto;
  align-items: center;
  padding-inline: var(--page-margin);
}

.clone-logo {
  display: flex;
  width: 178px;
  height: 100px;
  align-items: center;
}

.clone-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clone-nav {
  align-self: center;
  justify-self: start;
  margin-left: 20px;
}

.clone-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clone-nav a {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 22px 10px;
  color: currentColor;
  font-size: 20px;
  line-height: 1.67;
  text-transform: uppercase;
}

.clone-nav a:hover,
.clone-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.clone-header__actions,
.clone-header__mobile-left {
  display: flex;
  align-items: center;
}

.clone-header__mobile-left {
  display: none;
}

.icon-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 1px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 99px;
  background: var(--original-red);
  color: #fff;
  font-size: 10px;
}

.cart-count[data-empty="true"] {
  display: none;
}

/* Home hero */
.clone-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #d0d1d3;
  color: #fff;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clone-hero__content {
  position: absolute;
  z-index: 2;
  display: flex;
  inset: var(--header-height) var(--page-margin) 0;
  width: auto;
  height: auto;
  align-items: center;
  margin: 0;
  padding: 0;
}

.clone-hero__copy {
  width: 34%;
}

.clone-hero__copy h1 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.clone-hero__copy a {
  color: var(--original-red);
  font-size: 14px;
}

.clone-hero__dots {
  position: absolute;
  z-index: 4;
  right: var(--page-margin);
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 24px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  background: #fff;
}

/* Brand story */
.brand-story {
  padding: 60px 20px;
  background: #fff;
  overflow: hidden;
}

.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-story__logo {
  opacity: 0;
  transform: translateX(-50px);
}

.brand-story__content {
  opacity: 0;
  transform: translateX(50px);
}

.brand-story.is-visible .brand-story__logo,
.brand-story.is-visible .brand-story__content {
  opacity: 1;
  transform: none;
  transition: opacity 800ms ease, transform 800ms ease;
}

.brand-story__logo img {
  width: 100%;
  height: auto;
  transition: transform 300ms ease;
}

.brand-story__logo img:hover {
  transform: scale(1.02);
}

.brand-story h2 {
  margin: 0 0 20px;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-story__lead {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.6;
}

.brand-story__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.brand-story__card {
  min-height: 120px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.brand-story__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.brand-story__card h3 {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-story__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Product grids */
.home-products {
  padding-bottom: 40px;
  background: #fff;
}

.home-products h2 {
  margin: 0 0 32px;
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.clone-product-card {
  position: relative;
  min-width: 0;
  background: #fff;
}

.clone-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
  transition: transform 250ms ease-out;
}

.clone-product-card__gallery {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 320ms ease;
  will-change: transform;
}

.clone-product-card__gallery.has-secondary-image {
  width: 200%;
}

.clone-product-card__image {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
}

.clone-product-card__gallery.has-secondary-image .clone-product-card__image {
  width: 50%;
  flex-basis: 50%;
}

@media (any-pointer: fine) and (prefers-reduced-motion: no-preference) {
  .clone-product-card:hover .clone-product-card__media,
  .clone-product-card:focus-within .clone-product-card__media {
    transform: scale(1.015);
  }

  .clone-product-card:hover .clone-product-card__gallery.has-secondary-image,
  .clone-product-card:focus-within .clone-product-card__gallery.has-secondary-image {
    transform: translateX(-50%);
  }
}

.clone-product-card__status {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  padding: 5px 12px;
  border-radius: 20px;
  background: #000;
  color: #fff;
  font-size: 13px;
  transform: translateX(-50%);
}

.clone-product-card__status--new {
  left: 0;
  border-radius: 0;
  background: var(--original-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: none;
}

.clone-product-card__content {
  padding-top: 4px;
}

.clone-product-card__content h3 {
  margin: 0;
  color: var(--original-red);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
}

.clone-product-card__content p {
  display: none;
}

/* Information block */
.useful-section {
  padding-block: 40px;
  background: #fff;
}

.useful-panel {
  position: relative;
  min-height: 468px;
  overflow: hidden;
  background: #f4f4f4;
}

.useful-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.useful-panel__copy {
  position: relative;
  z-index: 2;
  width: 53%;
  padding: 32px;
}

.useful-panel h2 {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.useful-panel p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
}

/* Authenticator and lower sections */
.home-auth {
  display: grid;
  min-height: 60svh;
  grid-template-columns: 1fr 1fr;
  background: #000;
  color: #fff;
}

.home-auth__image {
  min-height: 420px;
}

.home-auth__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-auth__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.home-auth__eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
}

.home-auth__content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-auth__content p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.home-auth__copy .button {
  align-self: flex-start;
}

.precision-strip {
  background: var(--original-beige);
}

.precision-strip__inner {
  width: 33%;
  min-width: 370px;
  padding: 40px;
}

.precision-strip h2 {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.precision-strip p {
  margin: 0;
  font-size: 14px;
}

/* Footer */
.clone-footer {
  min-height: 184px;
  padding-block: 24px 20px;
  background: var(--original-footer);
  color: #000;
}

.clone-footer__grid {
  display: grid;
  width: calc(100% - (var(--page-margin) * 2));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.clone-footer h2 {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.clone-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clone-footer li + li {
  margin-top: 4px;
}

.clone-footer a:hover {
  text-decoration: underline;
}

.footer-news {
  display: grid;
  grid-template-columns: 1fr 44px;
  border-bottom: 1px solid #000;
}

.footer-news input {
  min-width: 0;
  border: 0;
  padding: 10px 0;
  background: transparent;
}

.footer-news button {
  border: 0;
  background: transparent;
  font-size: 22px;
}

.clone-footer__contact p {
  max-width: 370px;
  margin: 0 0 14px;
}

.clone-footer__contact a {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.clone-footer__bottom {
  display: none;
}

/* Catalog page */
.catalog-hero {
  position: relative;
  height: 402px;
  overflow: hidden;
  background: #8f8f8f;
  color: #fff;
}

.catalog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62);
}

.catalog-hero h1 {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: var(--page-margin);
  margin: 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-toolbar {
  position: relative;
  z-index: 20;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 8px var(--page-margin);
  background: #000;
  color: #fff;
}

.catalog-toolbar .search-field {
  display: none;
}

.catalog-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.catalog-sort {
  position: relative;
  height: 44px;
}

.catalog-sort__trigger {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.catalog-sort__trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.catalog-sort__trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.catalog-sort__menu {
  position: absolute;
  z-index: 30;
  top: 40px;
  right: 0;
  width: 198px;
  padding: 9px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: #000;
}

.catalog-sort__menu[hidden] {
  display: none;
}

.catalog-sort__menu [role="option"] {
  position: relative;
  display: block;
  width: 100%;
  min-height: 28px;
  border: 0;
  padding: 4px 8px 4px 21px;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  white-space: nowrap;
}

.catalog-sort__menu [role="option"]:hover,
.catalog-sort__menu [role="option"]:focus-visible {
  background: #f2f2f2;
  outline: none;
}

.catalog-sort__menu [role="option"][aria-selected="true"]::before {
  position: absolute;
  top: 4px;
  left: 2px;
  content: "✓";
  font-size: 16px;
  line-height: 20px;
}

.catalog-main {
  padding: 0 0 60px;
}

.catalog-main .clone-product-grid {
  gap: 8px 1px;
}

.catalog-main .clone-product-card__content {
  min-height: 42px;
  padding: 9px 12px;
  background: #f1f1f1;
}

.catalog-main .clone-product-card__content h3 {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 70px 20px;
  text-align: center;
}

/* Contact and utility pages */
.plain-main {
  padding: 32px var(--page-margin) 60px;
}

.plain-main > h1,
.registration-main > h1 {
  margin: 0 0 28px;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .field {
  min-width: 0;
}

.contact-form .field--full {
  grid-column: 1 / -1;
}

.contact-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--original-line);
  padding: 18px;
  background: #fff;
}

.contact-form input {
  height: 54px;
}

.contact-form textarea {
  height: 228px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.contact-details-original {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid var(--original-line);
}

.contact-details-original h2 {
  margin: 0 0 10px;
  font: 700 24px/1.1 Arial, sans-serif;
  text-transform: uppercase;
}

.registration-main {
  padding: 32px var(--page-margin) 60px;
}

.auth-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--original-line);
}

.backend-note {
  max-width: 680px;
  margin: 0 0 24px;
}

/* Product page */
.product-page {
  padding: 0 var(--page-margin) 60px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(330px, 1fr);
  gap: 40px;
  align-items: start;
}

.product-gallery {
  min-width: 0;
  padding-top: 40px;
}

.product-gallery__main {
  display: grid;
  min-height: 620px;
  place-items: start center;
  overflow: hidden;
  background: #fff;
}

.product-gallery__main img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.product-thumbnail {
  width: 76px;
  height: 76px;
  border: 1px solid var(--original-line);
  padding: 0;
  background: #fff;
}

.product-thumbnail.is-active {
  border-color: #000;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-information {
  min-width: 0;
  padding-top: 16px;
}

.product-information h1 {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-description {
  min-width: 0;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.4;
}

.product-description p,
.product-description ul,
.product-description ol {
  margin-top: 0;
  margin-bottom: 12px;
}

.product-description h2,
.product-description h3 {
  margin: 20px 0 10px;
  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-description h3 {
  font-size: 28px;
}

.table-wrap {
  width: 100%;
  margin-block: 14px;
  overflow-x: auto;
}

.product-description table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

.product-description th,
.product-description td {
  border: 1px solid #000;
  padding: 7px;
  text-align: left;
}

.product-action-original {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--original-line);
}

.product-action-original p {
  margin: 10px 0 0;
  font-size: 12px;
}

.safety-note {
  margin-top: 20px;
  padding: 12px;
  border: 1px solid var(--original-line);
}

/* Search and cart drawers */
.overlay {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.45);
}

.overlay.is-open {
  display: block;
}

.search-panel {
  max-height: 88vh;
  overflow: auto;
  padding: 28px var(--page-margin);
  background: #fff;
}

.search-panel__head,
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-panel__head h2,
.drawer__head h2 {
  margin: 0;
  font: 700 36px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.search-field {
  position: relative;
}

.search-panel .search-field {
  margin-top: 22px;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  transform: translateY(-50%);
}

.search-field input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--original-line);
  padding: 12px 16px 12px 46px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.search-result {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--original-line);
  padding: 8px;
}

.search-result img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 440px);
  height: 100%;
  flex-direction: column;
  padding: 24px;
  background: #fff;
}

.drawer__items {
  flex: 1;
  margin-block: 20px;
  overflow: auto;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid var(--original-line);
}

.drawer-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.drawer-item button {
  border: 0;
  background: transparent;
  font-size: 11px;
}

.drawer-empty {
  padding-block: 60px;
  text-align: center;
}

[data-reveal] {
  opacity: 1;
}

@media (max-width: 989px) {
  .brand-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-story__logo {
    max-width: 520px;
    margin-inline: auto;
  }

  .brand-story h2 {
    font-size: 34px;
  }

  .brand-story__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 749px) {
  .clone-header__inner {
    grid-template-columns: 88px 1fr 88px;
    padding-inline: 8px;
  }

  .clone-header__mobile-left {
    display: flex;
  }

  .clone-logo {
    width: 118px;
    height: 76px;
    justify-self: center;
  }

  .clone-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 70px 32px;
    background: #000;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
  }

  .clone-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .clone-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .clone-nav a {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 12px 0;
    font-size: 28px;
  }

  .clone-header__actions .search-trigger,
  .clone-header__actions .menu-toggle {
    display: none;
  }

  .clone-header__actions {
    justify-content: flex-end;
  }

  .clone-hero__content {
    align-items: center;
  }

  .clone-hero__copy {
    width: 53%;
  }

  .clone-hero__copy h1 {
    font-size: 40px;
    line-height: 0.9;
  }

  .hero-slide img {
    object-position: 40% center;
  }

  .clone-hero__dots {
    right: 16px;
    bottom: 18px;
  }

  .brand-story {
    padding: 60px 20px;
  }

  .brand-story__logo {
    max-width: 210px;
  }

  .brand-story__lead {
    font-size: 16px;
  }

  .clone-product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .catalog-main .clone-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 1px;
  }

  .home-products h2 {
    font-size: 30px;
  }

  .useful-panel {
    min-height: 520px;
  }

  .useful-panel > img {
    object-position: 62% center;
  }

  .useful-panel__copy {
    width: 100%;
    padding: 24px;
  }

  .useful-panel h2 {
    max-width: 260px;
    font-size: 36px;
  }

  .useful-panel p {
    max-width: 250px;
  }

  .home-auth {
    grid-template-columns: 1fr;
  }

  .home-auth__image {
    min-height: 50svh;
  }

  .home-auth__copy {
    min-height: 50svh;
    padding: 28px 20px;
  }

  .precision-strip__inner {
    width: 100%;
    min-width: 0;
    padding: 32px 20px;
  }

  .clone-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .catalog-hero {
    height: 319px;
  }

  .catalog-hero h1 {
    font-size: 40px;
  }

  .catalog-main {
    padding-inline: 0;
  }

  .catalog-toolbar {
    height: 44px;
    padding: 0 var(--page-margin);
  }

  .catalog-count {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .field,
  .contact-form .field--full {
    grid-column: 1;
  }

  .contact-details-original {
    grid-template-columns: 1fr;
  }

  .plain-main > h1,
  .registration-main > h1 {
    font-size: 40px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-gallery {
    padding-top: 10px;
  }

  .product-gallery__main {
    min-height: 0;
  }

  .product-information {
    padding-top: 0;
  }

  .product-information h1 {
    font-size: 40px;
  }

  .product-description h2 {
    font-size: 30px;
  }

  .search-results {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .brand-story__logo,
  .brand-story__content {
    opacity: 1;
    transform: none;
  }

  .clone-product-card__gallery {
    transition: none;
  }
}
