:root {
  --cmr-page-bg: #f5f3ed;
  --cmr-surface: #ffffff;
  --cmr-surface-soft: #e7f1ee;
  --cmr-ink: #172523;
  --cmr-muted: #63706d;
  --cmr-primary: #0f766e;
  --cmr-primary-deep: #0b5b55;
  --cmr-accent: #d97757;
  --cmr-accent-soft: #f5bfa4;
  --cmr-night: #13201f;
  --cmr-line: #d6dedb;
  --cmr-success: #176f4d;
  --cmr-danger: #a33b32;
  --cmr-shadow-sm: 0 10px 28px rgba(23, 50, 47, 0.10);
  --cmr-shadow-lg: 0 24px 62px rgba(11, 42, 39, 0.20);
  --cmr-radius-sm: 10px;
  --cmr-radius-md: 18px;
  --cmr-radius-lg: 30px;
  --cmr-shell: 1180px;
  --cmr-header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cmr-header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cmr-ink);
  background: var(--cmr-page-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.cmr-modal-lock {
  overflow: hidden;
}

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

a {
  color: var(--cmr-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cmr-primary-deep);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cmr-accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 15ch;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
}

.cmr-page {
  overflow-x: clip;
}

.cmr-shell {
  width: min(calc(100% - 40px), var(--cmr-shell));
  margin-inline: auto;
}

.cmr-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 10px 16px;
  border-radius: var(--cmr-radius-sm);
  color: #fff;
  background: var(--cmr-night);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.cmr-skip-link:focus {
  transform: translateY(0);
}

/* Hlavička a navigace */
.cmr-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: var(--cmr-header-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 243, 237, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cmr-header.cmr-header--scrolled {
  border-color: rgba(15, 118, 110, 0.13);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 24px rgba(23, 50, 47, 0.09);
}

.cmr-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.cmr-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cmr-ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.cmr-brand:hover {
  color: var(--cmr-ink);
}

.cmr-brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, var(--cmr-primary), var(--cmr-primary-deep));
  box-shadow: 0 7px 17px rgba(15, 118, 110, 0.24);
  font-size: 0.83rem;
}

.cmr-brand__name {
  white-space: nowrap;
  font-size: 1.16rem;
}

.cmr-navigation {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmr-navigation a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cmr-ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.cmr-navigation a:hover {
  color: var(--cmr-primary-deep);
  background: var(--cmr-surface-soft);
}

.cmr-menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  color: var(--cmr-ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cmr-selection {
  min-width: 48px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--cmr-line);
  border-radius: 999px;
  color: var(--cmr-ink);
  background: var(--cmr-surface);
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(23, 50, 47, 0.06);
}

.cmr-selection__count {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--cmr-accent);
  font-size: 0.73rem;
  font-weight: 800;
}

/* Úvodní obrazovka */
.cmr-hero {
  min-height: min(820px, 100svh);
  padding: calc(var(--cmr-header-height) + 54px) 0 62px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10, 24, 23, 0.80) 0%, rgba(10, 24, 23, 0.64) 45%, rgba(10, 24, 23, 0.20) 100%),
    url("../img/cmr-hero-store.webp") center / cover no-repeat;
}

.cmr-hero__layout {
  display: flex;
  align-items: center;
}

.cmr-hero__panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--cmr-radius-lg);
  color: #fff;
  background: rgba(12, 30, 28, 0.58);
  backdrop-filter: blur(13px);
  box-shadow: var(--cmr-shadow-lg);
}

.cmr-eyebrow {
  margin-bottom: 12px;
  color: var(--cmr-primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cmr-hero .cmr-eyebrow,
.cmr-section-heading--light .cmr-eyebrow {
  color: var(--cmr-accent-soft);
}

.cmr-hero__lead {
  max-width: 58ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.cmr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cmr-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cmr-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.cmr-button--primary {
  color: #fff;
  background: var(--cmr-primary);
  box-shadow: 0 9px 23px rgba(15, 118, 110, 0.24);
}

.cmr-button--primary:hover {
  color: #fff;
  background: var(--cmr-primary-deep);
  box-shadow: 0 13px 29px rgba(15, 118, 110, 0.30);
}

.cmr-button--ghost {
  border-color: rgba(255, 255, 255, 0.30);
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.cmr-button--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.cmr-benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cmr-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.cmr-benefit i {
  color: var(--cmr-accent-soft);
  font-size: 1.15rem;
}

/* Společné sekce */
.cmr-section {
  padding: clamp(74px, 10vw, 124px) 0;
}

.cmr-section--tinted {
  background: var(--cmr-surface-soft);
}

.cmr-section--dark {
  color: #fff;
  background: var(--cmr-night);
}

.cmr-section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.cmr-section-heading > p:last-child {
  color: var(--cmr-muted);
}

.cmr-section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.70);
}

.cmr-filter-row {
  margin: -18px 0 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.cmr-filter-row span {
  padding: 7px 13px;
  border: 1px solid var(--cmr-line);
  border-radius: 999px;
  color: var(--cmr-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

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

.cmr-product {
  overflow: hidden;
  border: 1px solid rgba(23, 50, 47, 0.10);
  border-radius: var(--cmr-radius-md);
  background: var(--cmr-surface);
  box-shadow: var(--cmr-shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cmr-product:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(23, 50, 47, 0.16);
}

.cmr-product__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #edf1ef;
}

.cmr-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2, .7, .2, 1);
}

.cmr-product:hover .cmr-product__media img {
  transform: scale(1.035);
}

.cmr-product__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(19, 32, 31, 0.82);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 800;
}

.cmr-product__body {
  padding: 23px;
}

.cmr-product__body > p {
  min-height: 76px;
  color: var(--cmr-muted);
}

.cmr-product__meta {
  margin: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cmr-product__meta strong {
  font-size: 1.24rem;
}

.cmr-stars {
  color: #e4a62d;
  white-space: nowrap;
  font-size: 0.86rem;
}

.cmr-button--product {
  width: 100%;
  border-color: var(--cmr-primary);
  color: var(--cmr-primary-deep);
  background: transparent;
}

.cmr-button--product:hover {
  color: #fff;
  background: var(--cmr-primary);
}

.cmr-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cmr-feature {
  padding: 29px 24px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--cmr-radius-md);
  background: rgba(255, 255, 255, 0.68);
}

.cmr-feature i {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--cmr-primary);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.22);
  font-size: 1.24rem;
}

.cmr-feature p {
  margin-bottom: 0;
  color: var(--cmr-muted);
}

.cmr-size-guide__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: var(--cmr-radius-lg);
  background: var(--cmr-surface);
  box-shadow: var(--cmr-shadow-sm);
}

.cmr-size-guide__layout h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.cmr-size-guide__layout p:last-child {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--cmr-muted);
}

.cmr-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  padding: 20px;
  display: none;
  place-items: center;
  background: rgba(7, 18, 17, 0.78);
  backdrop-filter: blur(10px);
}

.cmr-modal.cmr-modal--open {
  display: grid;
  animation: cmr-overlay-in 180ms ease both;
}

.cmr-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: clamp(26px, 5vw, 44px);
  border-radius: var(--cmr-radius-lg);
  background: var(--cmr-surface);
  box-shadow: var(--cmr-shadow-lg);
  animation: cmr-dialog-rise 220ms ease both;
}

.cmr-modal__dialog h2 {
  padding-right: 40px;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
}

.cmr-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--cmr-ink);
  background: var(--cmr-surface-soft);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.cmr-table-wrap {
  overflow-x: auto;
}

.cmr-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cmr-table-wrap th,
.cmr-table-wrap td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--cmr-line);
  text-align: left;
}

.cmr-table-wrap th {
  color: var(--cmr-primary-deep);
  background: var(--cmr-surface-soft);
}

.cmr-shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cmr-shipping-grid article {
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--cmr-radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.cmr-shipping-grid i {
  color: var(--cmr-accent-soft);
  font-size: 1.9rem;
}

.cmr-shipping-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.cmr-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cmr-review {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--cmr-line);
  border-radius: var(--cmr-radius-md);
  background: var(--cmr-surface);
  box-shadow: 0 8px 24px rgba(23, 50, 47, 0.07);
}

.cmr-review__top {
  margin-bottom: 13px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.cmr-review__top span {
  color: var(--cmr-muted);
  font-size: 0.84rem;
}

.cmr-review p {
  margin: 17px 0 0;
  color: var(--cmr-muted);
  font-style: italic;
}

.cmr-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.cmr-form,
.cmr-contact-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: var(--cmr-radius-md);
  background: var(--cmr-surface);
  box-shadow: var(--cmr-shadow-sm);
}

.cmr-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cmr-form__field {
  display: grid;
  gap: 7px;
}

.cmr-form__field:nth-of-type(4),
.cmr-form__consent,
.cmr-form > .cmr-button,
.cmr-form__status {
  grid-column: 1 / -1;
}

.cmr-form label {
  font-weight: 780;
}

.cmr-form input,
.cmr-form select,
.cmr-form textarea {
  width: 100%;
  border: 1px solid var(--cmr-line);
  border-radius: var(--cmr-radius-sm);
  color: var(--cmr-ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cmr-form input,
.cmr-form select {
  min-height: 48px;
  padding: 10px 13px;
}

.cmr-form textarea {
  min-height: 148px;
  padding: 12px 13px;
  resize: vertical;
}

.cmr-form input:focus,
.cmr-form select:focus,
.cmr-form textarea:focus {
  border-color: var(--cmr-primary);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.cmr-form .cmr-field--invalid {
  border-color: var(--cmr-danger);
  box-shadow: 0 0 0 4px rgba(163, 59, 50, 0.10);
}

.cmr-form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
}

.cmr-form__consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.cmr-form__consent label {
  color: var(--cmr-muted);
  font-size: 0.92rem;
  font-weight: 550;
}

.cmr-form__status {
  min-height: 24px;
  margin: 0;
  font-weight: 750;
}

.cmr-form__status.cmr-status--error {
  color: var(--cmr-danger);
}

.cmr-form__status.cmr-status--success {
  color: var(--cmr-success);
}

.cmr-contact-card {
  position: sticky;
  top: calc(var(--cmr-header-height) + 24px);
}

.cmr-contact-card > p {
  margin: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--cmr-line);
}

.cmr-contact-card > p:last-child {
  border-bottom: 0;
}

.cmr-contact-card i {
  margin-top: 4px;
  color: var(--cmr-primary);
}

.cmr-contact-card span {
  display: grid;
  gap: 2px;
}

.cmr-contact-card strong {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Právní stránka */
.cmr-legal {
  padding: calc(var(--cmr-header-height) + 72px) 0 100px;
}

.cmr-legal__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.cmr-legal__heading {
  position: sticky;
  top: calc(var(--cmr-header-height) + 34px);
}

.cmr-legal__heading h1 {
  max-width: 9ch;
  font-size: clamp(2.45rem, 6vw, 4.5rem);
}

.cmr-legal__heading p:last-child {
  color: var(--cmr-muted);
}

.cmr-legal__content {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(23, 50, 47, 0.10);
  border-radius: var(--cmr-radius-lg);
  background: var(--cmr-surface);
  box-shadow: var(--cmr-shadow-sm);
}

.cmr-legal__content section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--cmr-line);
}

.cmr-legal__content h2 {
  font-size: clamp(1.35rem, 3vw, 1.82rem);
}

.cmr-legal__content p,
.cmr-legal__content li {
  color: var(--cmr-muted);
}

.cmr-legal__content ul {
  padding-left: 22px;
}

/* Zápatí a hlášky */
.cmr-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.70);
  background: #0b1514;
}

.cmr-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.8fr));
  gap: 34px;
}

.cmr-brand--footer {
  margin-bottom: 18px;
  color: #fff;
}

.cmr-brand--footer:hover {
  color: #fff;
}

.cmr-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

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

.cmr-footer li + li {
  margin-top: 8px;
}

.cmr-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.cmr-footer a:hover {
  color: #fff;
}

.cmr-footer__bottom {
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.cmr-footer__bottom p {
  margin-bottom: 0;
}

.cmr-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  max-width: min(360px, calc(100% - 40px));
  padding: 14px 18px;
  border-radius: var(--cmr-radius-sm);
  color: #fff;
  background: var(--cmr-night);
  box-shadow: var(--cmr-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cmr-toast.cmr-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cmr-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cmr-dialog-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 960px) {
  :root {
    --cmr-header-height: 70px;
  }

  .cmr-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .cmr-menu-button {
    display: inline-flex;
  }

  .cmr-navigation {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    padding: 12px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--cmr-line);
    border-radius: var(--cmr-radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--cmr-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .cmr-navigation.cmr-navigation--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cmr-navigation a {
    padding: 11px 12px;
  }

  .cmr-product-grid,
  .cmr-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cmr-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cmr-contact__grid,
  .cmr-legal__layout {
    grid-template-columns: 1fr;
  }

  .cmr-contact-card,
  .cmr-legal__heading {
    position: static;
  }

  .cmr-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cmr-shell {
    width: min(calc(100% - 28px), var(--cmr-shell));
  }

  .cmr-brand__name {
    font-size: 1rem;
  }

  .cmr-menu-button__label {
    display: none;
  }

  .cmr-selection {
    min-width: 44px;
  }

  .cmr-hero {
    min-height: 720px;
    padding-top: calc(var(--cmr-header-height) + 28px);
    background-position: 58% center;
  }

  .cmr-hero__panel {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .cmr-actions,
  .cmr-actions .cmr-button {
    width: 100%;
  }

  .cmr-benefits {
    grid-template-columns: 1fr;
  }

  .cmr-product-grid,
  .cmr-feature-grid,
  .cmr-shipping-grid,
  .cmr-review-grid,
  .cmr-form,
  .cmr-footer__grid {
    grid-template-columns: 1fr;
  }

  .cmr-product__body > p {
    min-height: 0;
  }

  .cmr-size-guide__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cmr-size-guide__layout .cmr-button {
    width: 100%;
  }

  .cmr-shipping-grid article {
    padding: 24px;
  }

  .cmr-review__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .cmr-form__field:nth-of-type(4),
  .cmr-form__consent,
  .cmr-form > .cmr-button,
  .cmr-form__status {
    grid-column: auto;
  }

  .cmr-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ochrana rozvržení na velmi úzkých displejích */
.cmr-contact__grid > *,
.cmr-form,
.cmr-contact-card,
.cmr-form__field,
.cmr-form input,
.cmr-form select,
.cmr-form textarea {
  min-width: 0;
}

.cmr-contact-card a {
  overflow-wrap: anywhere;
}
