:root {
  --color-brand: #f9783c;
  --color-text: #4f4b4b;
  --color-bg-light: #ececec;
  --color-white: #ffffff;
  --container: 1200px;
}

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

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

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

.container {
  width: min(100% - 24px, var(--container));
  margin-inline: auto;
}

.header-topbar {
  background: var(--color-brand);
  color: var(--color-white);
}

.header-topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 4px;
}

.header-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
  white-space: nowrap;
}

.topbar-text {
  font-size: 1em;
  font-weight: 400;
}

.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  background: transparent;
}

.topbar-icon i {
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
}

.topbar-icon--circle {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.topbar-icon--circle i {
  color: var(--color-brand);
}

.topbar-icon--square {
  border-radius: 3px;
}

.header-topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.header-flag {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.header-flag--pl {
  background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%);
}

.header-main {
  background: var(--color-bg-light);
  border-top: 3px solid #d4d4d4;
}

.header-main__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.custom-logo-link img {
  display: block;
  max-height: 44px;
  width: auto;
}

.site-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 30px;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
}

.menu,
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu--primary {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu--primary > .menu-item {
  position: relative;
}

.menu--primary > .menu-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.menu--primary > .menu-item--facebook > a {
  justify-content: center;
  width: 34px;
  min-height: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.menu--primary > .menu-item--facebook > a i {
  font-size: 17px;
  line-height: 1;
}

.menu--primary > .menu-item--facebook > a::after {
  display: none;
}

.menu--primary .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid #ddd;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.menu--primary .sub-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 500;
}

.menu--primary .menu-item-has-children:hover > .sub-menu,
.menu--primary .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.site-main {
  padding-block: 32px;
}

.placeholder-section {
  padding: 48px 24px;
  border: 1px dashed #c7c7c7;
  background: #fafafa;
}

.site-footer {
  background: #2f2d31;
  color: #fff;
  font-size: 16px;
}

.site-footer__inner {
  padding: clamp(36px, 5vw, 62px) 0;
  display: grid;
  grid-template-columns: 1.05fr 0.7fr 1.2fr;
  gap: clamp(26px, 4vw, 70px);
}

.site-footer__title {
  margin: 0;
  color: var(--color-brand);
  font-size: clamp(1.4rem, 1.65vw, 2rem);
  font-weight: 700;
}

.site-footer__text {
  margin: 18px 0 0;
  max-width: 460px;
  color: #f3f3f3;
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  line-height: 1.25;
}

.footer-links {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 2px;
}

.footer-links a {
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.28rem);
}

.site-footer__contact-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
}

.site-footer__icon {
  width: 38px;
  height: 38px;
  border: 2px solid #d5d5d5;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.site-footer__cta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 0;
  flex: 1 1 0;
  padding: 10px 16px;
  border-radius: 7px;
  background: var(--color-brand);
  color: #fff;
  font-size: clamp(0.9rem, 0.92vw, 1.05rem);
  font-weight: 500;
}

.site-footer__cta-btn:hover,
.site-footer__cta-btn:focus-visible {
  color: #fff;
  filter: brightness(1.05);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__bottom p {
  margin: 0;
  padding: 12px 0;
  font-size: 14px;
  color: #d8d8d8;
}

.site-footer__colophon a {
  color: #fff;
  text-decoration: underline;
}

.site-footer__colophon a:hover,
.site-footer__colophon a:focus-visible {
  color: var(--color-brand);
}

@media (max-width: 1024px) {
  .header-topbar__inner {
    gap: 10px;
  }

  .header-topbar__right {
    gap: 14px;
  }

  .header-topbar__item {
    font-size: 13px;
  }

  .topbar-icon {
    width: 20px;
    height: 20px;
  }

  .topbar-icon i {
    font-size: 11px;
  }

  .menu--primary {
    gap: 20px;
    font-size: 15px;
  }

  .site-logo-placeholder {
    font-size: 28px;
    min-height: 28px;
    min-width: 100px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-topbar__inner {
    align-items: center;
    flex-direction: column;
    padding-block: 8px;
  }

  .header-topbar__right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-main__inner {
    align-items: center;
    flex-direction: column;
    padding-block: 12px;
  }

  .menu--primary {
    font-size: 14px;
    gap: 12px;
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 0;
  }

  .site-footer__cta-row {
    flex-direction: row;
  }

  .site-footer__cta-btn {
    width: auto;
  }
}

.site-logo-default {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .site-logo-default {
    width: 280px;
  }
}

.site-main--hero {
  padding-block: 0;
}

.hero-split {
  display: flex;
  width: 100%;
  min-height: clamp(360px, 47vw, 560px);
  overflow: hidden;
  background: #c8c8c8;
}

.hero-panel {
  position: relative;
  flex: 1 1 50%;
  min-height: inherit;
  background-color: #9ea4ab;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: flex-basis 520ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-panel__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: background-color 420ms ease, opacity 420ms ease;
}

.hero-panel__content {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  right: clamp(20px, 4vw, 72px);
  bottom: clamp(28px, 6vw, 82px);
  max-width: 560px;
  color: #fff;
  z-index: 2;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 380ms ease, opacity 340ms ease;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.24);
}

.hero-panel__title-hero {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 4.4vw, 3.85rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-text-stroke: 1px #111;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.hero-panel__subtitle-hero {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 700;
}

.hero-panel__text {
  margin: 6px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.95rem);
  font-weight: 400;
}

.hero-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(14px, 2.6vw, 34px);
  padding: 14px 30px;
  border-radius: 14px;
  background: var(--color-brand);
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-panel__button i {
  font-size: 1.1em;
}

.hero-panel__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.hero-panel__config-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  margin-left: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(32, 33, 36, 0.28);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-panel__config-link:hover,
.hero-panel__config-link:focus-visible {
  color: #ffffff;
  border-color: var(--color-brand);
  background: rgba(249, 120, 60, 0.88);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.hero-split[data-active='left'] .hero-panel--left,
.hero-split[data-active='right'] .hero-panel--right {
  flex-basis: 60%;
}

.hero-split[data-active='left'] .hero-panel--right,
.hero-split[data-active='right'] .hero-panel--left {
  flex-basis: 40%;
}

.hero-split[data-active='left'] .hero-panel--left .hero-panel__content,
.hero-split[data-active='right'] .hero-panel--right .hero-panel__content {
  transform: translateY(0);
  opacity: 1;
}

.hero-split[data-active='left'] .hero-panel--left .hero-panel__overlay {
  opacity: 1;
  background: rgba(249, 120, 60, 0.35);
}

.hero-split[data-active='left'] .hero-panel--right .hero-panel__overlay {
  opacity: 1;
  background: linear-gradient(90deg, rgba(18, 19, 24, 0.58), rgba(18, 19, 24, 0.24));
}

.hero-split[data-active='right'] .hero-panel--right .hero-panel__overlay {
  opacity: 1;
  background: rgba(249, 120, 60, 0.35);
}

.hero-split[data-active='right'] .hero-panel--left .hero-panel__overlay {
  opacity: 1;
  background: linear-gradient(90deg, rgba(18, 19, 24, 0.58), rgba(18, 19, 24, 0.24));
}
.hero-promo-bar {
  background: var(--color-brand);
  color: #fff;
  text-align: center;
}

.hero-promo-bar p {
  margin: 0;
  padding: 12px 20px;
  font-size: clamp(1.2rem, 2.2vw, 2.65rem);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-split {
    min-height: 520px;
  }

  .hero-panel__content {
    max-width: 74%;
  }
}

@media (max-width: 760px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }

  .hero-panel,
  .hero-split[data-active='left'] .hero-panel--left,
  .hero-split[data-active='right'] .hero-panel--right,
  .hero-split[data-active='left'] .hero-panel--right,
  .hero-split[data-active='right'] .hero-panel--left {
    flex-basis: auto;
    min-height: 320px;
  }

  .hero-panel__content {
    opacity: 1;
    transform: translateY(0);
    max-width: 90%;
  }
}

.promo-products {
  background: #ececec;
  padding: 28px 0 30px;
}

.promo-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.promo-products__title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  color: #2c2d31;
}

.promo-products__controls {
  display: inline-flex;
  gap: 8px;
}

.promo-products__nav {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #2d2f35;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-products__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.promo-products__viewport::-webkit-scrollbar {
  display: none;
}

.promo-products__track {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 4px 0 8px;
}

.promo-card {
  flex: 0 0 calc((100% - 3 * 26px) / 4);
  scroll-snap-align: start;
}

.promo-card__media {
  position: relative;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  aspect-ratio: 1.5 / 1;
  min-height: 180px;
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-card__badge {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0 0 0 7px;
  padding: 4px 10px;
  font-size: 1rem;
  line-height: 1;
}

.promo-card__price {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-brand);
  color: #fff;
  border-radius: 0 7px 0 0;
  padding: 6px 14px;
  font-size: clamp(0.95rem, 0.9vw, 1.2rem);
  line-height: 1;
  font-weight: 700;
}

.promo-card__title {
  margin: 10px 2px 0;
  text-align: left;
  font-size: clamp(0.95rem, 1vw, 1.35rem);
  line-height: 1.2;
  font-weight: 500;
  color: #1f2023;
  display: block;
  overflow: visible;
  text-overflow: initial;
  min-height: 0;
  width: 100%;
  max-width: none;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  padding: 0;
}

.promo-card__title a {
  color: inherit;
  display: block;
  width: 100%;
}

.promo-products__empty {
  margin: 0;
  padding: 10px 0;
  font-size: 1.1rem;
}

@media (min-width: 1420px) {
  .promo-card {
    flex-basis: calc((100% - 4 * 26px) / 5);
  }
}

@media (max-width: 1024px) {
  .promo-card {
    flex-basis: calc((100% - 2 * 18px) / 3);
  }

  .promo-products__track {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .promo-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .promo-products__title {
    font-size: 1.1rem;
  }

  .promo-card__price {
    font-size: 1rem;
    padding: 7px 12px;
  }

  .promo-card__title {
    font-size: 1.05rem;
    min-height: 2.5em;
  }
}
@media (max-width: 520px) {
  .promo-card {
    flex-basis: 88%;
  }

  .promo-products__header {
    margin-bottom: 10px;
  }
}
.hero-panel__title-accent {
  color: var(--color-brand);
  -webkit-text-stroke: 1px #111;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.45);
}

/* Global + menu hover effects */
a {
  transition: color 180ms ease, opacity 180ms ease;
}

a:hover,
a:focus-visible {
  color: var(--color-brand);
}

.menu--primary > .menu-item > a {
  position: relative;
  transition: color 220ms ease;
}

.menu--primary > .menu-item > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.menu--primary > .menu-item:hover > a,
.menu--primary > .menu-item:focus-within > a,
.menu--primary > .current-menu-item > a,
.menu--primary > .current-menu-ancestor > a {
  color: #1f2023;
}

.menu--primary > .menu-item:hover > a::after,
.menu--primary > .menu-item:focus-within > a::after,
.menu--primary > .current-menu-item > a::after,
.menu--primary > .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.menu--primary .sub-menu a {
  transition: background-color 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.menu--primary .sub-menu a:hover,
.menu--primary .sub-menu a:focus-visible {
  background: #f7f7f7;
  color: var(--color-brand);
  padding-left: 16px;
}
/* Keep contrast on orange topbar */
.header-topbar a:hover,
.header-topbar a:focus-visible {
  color: #fff;
  opacity: 0.86;
}
.garage-info {
  background: #efefef;
  padding: clamp(36px, 5vw, 72px) 0;
}

.garage-info__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.garage-info__title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a4747;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
}

.garage-info__title::before,
.garage-info__title::after {
  content: '';
  flex: 1;
  height: 5px;
  background: var(--color-brand);
  max-width: 180px;
}

.garage-info__subtitle {
  margin: 8px 0 0;
  color: #5a5858;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.garage-info__text {
  margin: 22px 0 0;
  color: #565353;
  font-size: 18px;
  line-height: 1.3;
  max-width: 680px;
  white-space: pre-line;
}

.garage-info__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 28px auto 0;
  min-width: 210px;
  padding: 13px 28px;
  border-radius: 14px;
  background: var(--color-brand);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: transform 200ms ease, filter 200ms ease;
}

.garage-info__button:hover,
.garage-info__button:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  filter: brightness(1.03);
}

.garage-info__media-wrap {
  position: relative;
  width: 100%;
  padding: 0;
}

.garage-info__media-shadow {
  position: absolute;
  inset: 0;
  background: var(--color-brand);
  border-radius: 8px;
  transform: translate(16px, 16px);
}

.garage-info__media {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
  aspect-ratio: 16 / 10;
  background: #dcdcdc;
}

.garage-info__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .garage-info__inner {
    grid-template-columns: 1fr;
  }

  .garage-info__title::before,
  .garage-info__title::after {
    max-width: 120px;
  }
}

@media (max-width: 640px) {
  .garage-info__title {
    gap: 8px;
    font-size: 30px;
  }

  .garage-info__title::before,
  .garage-info__title::after {
    height: 3px;
    max-width: 70px;
  }

  .garage-info__button {
    min-width: 180px;
    font-size: 20px;
  }

  .garage-info__media-shadow {
    transform: translate(10px, 10px);
  }
}
.garage-info--reverse .garage-info__content {
  order: 2;
}

.garage-info--reverse .garage-info__media-wrap {
  order: 1;
}

@media (max-width: 980px) {
  .garage-info--reverse .garage-info__content,
  .garage-info--reverse .garage-info__media-wrap {
    order: initial;
  }
}

.blog-advice {
  background: #ececec;
  padding: clamp(30px, 5vw, 54px) 0;
}

.blog-advice__header {
  margin-bottom: 24px;
}

.blog-advice__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #2c2d31;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 700;
}

.blog-advice__title::before,
.blog-advice__title::after {
  content: "";
  flex: 1;
  max-width: 420px;
  height: 4px;
  background: var(--color-brand);
}

.blog-advice__subtitle {
  margin: 4px 0 0;
  color: #555050;
  text-align: center;
  font-size: clamp(1.2rem, 1.3vw, 2rem);
  font-weight: 700;
}

.blog-advice__intro {
  margin: 26px 0 0;
  color: #5b5858;
  font-size: clamp(1rem, 1.1vw, 1.95rem);
  line-height: 1.2;
}

.blog-advice__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.blog-advice__viewport {
  margin-top: 26px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.blog-advice__viewport::-webkit-scrollbar {
  display: none;
}

.blog-advice__track {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 2px 0 8px;
}

.advice-tile {
  flex: 0 0 calc((100% - 2 * 30px) / 3);
  scroll-snap-align: start;
}

.advice-tile__media {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  background: #d9d9d9;
}

.advice-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advice-tile__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f2f2f2, #d8d8d8);
}

.advice-tile__title {
  margin: 8px 0 0;
  color: #1c1c1c;
  text-align: center;
  font-size: clamp(1.35rem, 1.1vw, 1.8rem);
  font-weight: 500;
  line-height: 1.25;
}

.advice-tile__title a {
  color: inherit;
}

.blog-advice__empty {
  margin: 0;
  color: #565353;
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .blog-advice__title {
    gap: 12px;
  }

  .blog-advice__title::before,
  .blog-advice__title::after {
    height: 3px;
  }

  .blog-advice__track {
    gap: 18px;
  }

  .advice-tile {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .blog-advice__title {
    justify-content: center;
    font-size: 1.9rem;
  }

  .blog-advice__title::before,
  .blog-advice__title::after {
    max-width: 56px;
  }

  .blog-advice__intro {
    margin-top: 14px;
    line-height: 1.35;
  }

  .blog-advice__viewport {
    margin-top: 18px;
  }

  .blog-advice__track {
    gap: 12px;
  }

  .advice-tile {
    flex-basis: 100%;
  }
}

.cta-strip {
  background: #f9783c;
  padding: 12px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-strip__text {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.cta-strip__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 68px;
  padding: 12px 28px;
  border-radius: 14px;
  background: #655f62;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2);
}

.cta-strip__button:hover,
.cta-strip__button:focus-visible {
  color: #fff;
  filter: brightness(1.04);
}

@media (max-width: 760px) {
  .cta-strip__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-strip__text {
    text-align: center;
  }

  .cta-strip__button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    min-height: 58px;
  }
}

.why-us {
  background: #ececec;
  padding: clamp(30px, 5vw, 54px) 0 clamp(34px, 5vw, 62px);
}

.why-us__header {
  margin-bottom: 28px;
}

.why-us__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #5a5556;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 700;
}

.why-us__title::before,
.why-us__title::after {
  content: "";
  flex: 1;
  max-width: 420px;
  height: 4px;
  background: var(--color-brand);
}

.why-us__subtitle {
  margin: 4px 0 0;
  color: #555050;
  text-align: center;
  font-size: clamp(1.2rem, 1.3vw, 2rem);
  font-weight: 700;
}

.why-us__intro {
  margin: 22px 0 0;
  color: #5b5858;
  font-size: clamp(1rem, 1.1vw, 1.95rem);
  line-height: 1.2;
}

.why-us__content {
  display: grid;
  grid-template-columns: 1.04fr 0.92fr;
  gap: clamp(26px, 4vw, 72px);
  align-items: center;
}

.why-us__media-wrap {
  position: relative;
}

.why-us__media-shadow {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: 4px;
  background: var(--color-brand);
  z-index: 1;
}

.why-us__media {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  aspect-ratio: 16 / 11.2;
}

.why-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-us__list-title {
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(1.2rem, 1.4vw, 2rem);
  font-weight: 500;
}

.why-us__list {
  margin: 22px 0 0;
  padding-left: 26px;
  color: #181818;
}

.why-us__list li {
  font-size: clamp(1.2rem, 1.25vw, 1.95rem);
  line-height: 1.35;
}

.why-us__list li + li {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .why-us__title {
    gap: 12px;
  }

  .why-us__title::before,
  .why-us__title::after {
    height: 3px;
  }

  .why-us__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-us__media-shadow {
    inset: 10px -10px -10px 10px;
  }
}

@media (max-width: 640px) {
  .why-us__title {
    font-size: 1.9rem;
  }

  .why-us__title::before,
  .why-us__title::after {
    max-width: 56px;
  }

  .why-us__intro {
    margin-top: 14px;
    line-height: 1.35;
  }

  .why-us__list {
    margin-top: 14px;
  }
}

.product-page {
  background: #efefef;
  padding: 24px 0 46px;
}

.product-page .woocommerce-breadcrumb {
  margin: 0 0 18px;
  color: #5f5b5b;
  font-size: 15px;
}

.product-page .woocommerce-breadcrumb a {
  color: #444;
}

.product-page__card {
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.product-page__media .woocommerce-product-gallery {
  margin: 0;
}

.product-page__media .woocommerce-product-gallery__wrapper {
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
}

.product-page__media .woocommerce-product-gallery__wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: zoom-in;
}

.product-page__media .woocommerce-product-gallery__trigger {
  display: none !important;
}

.product-page__media .flex-control-thumbs {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-page__media .flex-control-thumbs li {
  margin: 0;
}

.product-page__media .flex-control-thumbs img {
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  cursor: pointer;
  opacity: 0.88;
}

.product-page__media .flex-control-thumbs img.flex-active {
  border-color: var(--color-brand);
  opacity: 1;
}

.product-page__summary .product_title {
  margin: 0;
  color: #1f2023;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  line-height: 1.15;
}

.product-page__summary .price {
  margin: 0 0 10px;
  color: var(--color-brand);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
}

.product-page__summary .price del {
  font-size: 0.72em;
  opacity: 0.8;
}

.product-page__summary .woocommerce-product-details__short-description {
  margin-top: 14px;
  color: #545050;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.35;
}

.product-page__attributes {
  margin-top: 14px;
}

.product-page__attributes-title {
  margin: 0 0 8px;
  color: #1f2023;
  font-size: 1rem;
  font-weight: 700;
}

.product-page__attributes .shop_attributes {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}

.product-page__attributes .shop_attributes th,
.product-page__attributes .shop_attributes td {
  padding: 8px 10px;
  border-bottom: 1px solid #ececec;
  font-size: 0.94rem;
  text-align: left;
}

.product-page__hint {
  margin: 16px 0 0;
  color: #6a6565;
  font-size: 0.98rem;
}

.product-page__actions {
  margin-top: 16px;
}

.product-page__actions .price {
  display: block;
}

.product-page__promo-label {
  margin: 0 0 6px;
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-page__cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-page__cta--inquiry {
  background: #5e595d;
  color: #fff;
}

.product-page__cta--order {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 6px 14px rgba(249, 120, 60, 0.35);
  transform: translateY(-1px);
}

.product-page .single_add_to_cart_button.button.alt {
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
}

.product-page .single_add_to_cart_button.button.alt:hover,
.product-page .single_add_to_cart_button.button.alt:focus-visible {
  color: #fff;
  filter: brightness(1.04);
}

.product-page .promo-products--related {
  margin-top: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.product-page__description {
  margin-top: 24px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-page__description-title {
  margin: 0 0 12px;
  color: #1f2023;
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
}

.product-page__description-content {
  color: #4f4b4b;
  font-size: 1rem;
  line-height: 1.45;
}

.product-page__description-content > *:first-child {
  margin-top: 0;
}

.product-page__description-content > *:last-child {
  margin-bottom: 0;
}

.product-page__forms {
  margin-top: 24px;
}

.product-page__form-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.product-page__form-tab {
  min-height: 56px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: #5e595d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.product-page__form-tab.is-active {
  background: var(--color-brand);
  box-shadow: 0 8px 18px rgba(249, 120, 60, 0.3);
}

.product-page__form-panel.is-hidden {
  display: none;
}

.product-page__inquiry {
  margin-top: 0;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-page__order-placeholder {
  margin-top: 0;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-page__order-placeholder h2 {
  margin: 0;
  color: #1f2023;
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
}

.product-page__order-placeholder p {
  margin: 10px 0 0;
  color: #5f5b5b;
}

.product-order-form__lead {
  margin: 10px 0 16px;
  color: #4f4b4b;
  font-size: 0.98rem;
  line-height: 1.45;
}

.product-order-form__inline-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #343434;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-order-form__inline-check input[type='checkbox'] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  appearance: auto;
  background: #fff;
}

.product-order-form__company.is-hidden {
  display: none;
}

.product-order-form__clause {
  margin: 4px 0 0;
  color: #5a5656;
  font-size: 0.94rem;
  line-height: 1.4;
}

.product-page__inquiry-title {
  margin: 0 0 14px;
  color: #1f2023;
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
}

.product-page__inquiry-notice {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.product-page__inquiry-notice--success {
  background: #e9f8ee;
  color: #176133;
}

.product-page__inquiry-notice--error {
  background: #fdecec;
  color: #8b1f1f;
}

.product-inquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-inquiry-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.product-inquiry-form__row label {
  color: #353535;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-inquiry-form__row input,
.product-inquiry-form__row textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  color: #2b2b2b;
  font: inherit;
}

.product-inquiry-form__row input[type='checkbox'] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
}

.product-inquiry-form__row textarea {
  min-height: 120px;
  resize: vertical;
}

.product-inquiry-form__row--wide {
  grid-column: 1 / -1;
}

.product-inquiry-form__consent {
  margin-top: 10px;
}

.product-inquiry-form__consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #343434;
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-inquiry-form__consent input {
  margin-top: 2px;
}

.product-inquiry-form__consent a {
  color: var(--color-brand);
  text-decoration: underline;
}

.product-inquiry-form__consent--danger {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #e48f8f;
  border-radius: 8px;
  background: #fff2f2;
}

.product-inquiry-form__consent--danger label {
  color: #8b1f1f;
  font-weight: 700;
}

.product-inquiry-form__submit {
  margin-top: 14px;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.product-inquiry-form__submit:hover,
.product-inquiry-form__submit:focus-visible {
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .product-page__grid {
    grid-template-columns: 1fr;
  }

  .product-inquiry-form__grid {
    grid-template-columns: 1fr;
  }

  .product-page__form-switch {
    grid-template-columns: 1fr;
  }
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.88);
  padding: 24px;
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox__image {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.product-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.shop-page {
  background: #efefef;
  padding: 24px 0 42px;
}

.garage-category__header {
  margin-bottom: 16px;
}

.garage-category__title {
  margin: 0;
  color: #242428;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.garage-category__description {
  margin: 8px 0 0;
  color: #5f5a5a;
  font-size: 1rem;
}

.garage-category__filters {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.garage-filter-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.garage-filter-card:hover,
.garage-filter-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-brand);
}

.garage-filter-card.is-active {
  border-color: var(--color-brand);
  box-shadow: 0 8px 18px rgba(249, 120, 60, 0.28);
}

.garage-filter-card__media {
  aspect-ratio: 16 / 10;
  background: #dadada;
}

.garage-filter-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.garage-filter-card__media--all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5b575a;
  color: #fff;
  font-weight: 700;
}

.garage-filter-card__label {
  display: block;
  padding: 10px 10px 12px;
  color: #1f2023;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.garage-category__products ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.garage-category__products {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.garage-category__products ul.products::before,
.garage-category__products ul.products::after {
  content: none !important;
  display: none !important;
}

.garage-category__products ul.products li.product,
.garage-category__products ul.products li.promo-card {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.garage-category__products ul.products li.product .promo-card__title,
.garage-category__products ul.products li.promo-card .promo-card__title {
  width: 100% !important;
  max-width: 100% !important;
}

.garage-category__products ul.products li.product .promo-card__title a,
.garage-category__products ul.products li.promo-card .promo-card__title a {
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere;
}

.garage-category__pagination {
  margin-top: 16px;
}

.garage-category__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.garage-category__pagination a,
.garage-category__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  color: #2b2d31;
}

.garage-category__pagination .current {
  background: var(--color-brand);
  color: #fff;
}

.garage-category__empty {
  margin: 0;
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  color: #5f5a5a;
}

@media (max-width: 1100px) {
  .garage-category__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .garage-category__products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .garage-category__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garage-category__products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .garage-category__filters {
    grid-template-columns: 1fr;
  }

  .garage-filter-card__media {
    display: none;
  }

  .garage-filter-card__label {
    padding: 12px 14px;
  }

  .garage-category__products ul.products {
    grid-template-columns: 1fr;
  }
}

.poradnik-page {
  background: #efefef;
  padding: 24px 0 42px;
}

.poradnik-page__header {
  margin-bottom: 18px;
}

.poradnik-page__title {
  margin: 0;
  color: #242428;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
}

.poradnik-page__subtitle {
  margin: 8px 0 0;
  color: #5f5a5a;
  font-size: 1rem;
}

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

.poradnik-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.poradnik-card__media {
  display: block;
  aspect-ratio: 1.5 / 1;
  background: #d9d9d9;
}

.poradnik-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poradnik-card__body {
  padding: 12px 12px 14px;
}

.poradnik-card__title {
  margin: 0;
  color: #1f2023;
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
  line-height: 1.25;
}

.poradnik-card__title a {
  color: inherit;
}

.poradnik-card__excerpt {
  margin: 8px 0 0;
  color: #5f5a5a;
  font-size: 0.95rem;
  line-height: 1.4;
}

.poradnik-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.poradnik-card__button:hover,
.poradnik-card__button:focus-visible {
  color: #fff;
  filter: brightness(1.05);
}

.poradnik-page__pagination {
  margin-top: 18px;
}

.poradnik-page__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.poradnik-page__pagination a,
.poradnik-page__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  color: #2b2d31;
}

.poradnik-page__pagination .current {
  background: var(--color-brand);
  color: #fff;
}

.poradnik-page__empty {
  margin: 0;
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  color: #5f5a5a;
}

@media (max-width: 1024px) {
  .poradnik-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .poradnik-page__grid {
    grid-template-columns: 1fr;
  }
}

.post-single-page {
  background: #efefef;
  padding: 24px 0 42px;
}

.post-single {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.post-single__header {
  padding: 22px 22px 14px;
}

.post-single__title {
  margin: 0;
  color: #242428;
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  line-height: 1.15;
}

.post-single__meta {
  margin-top: 10px;
  color: #6a6565;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-single__dot {
  line-height: 1;
}

.post-single__media {
  background: #ddd;
}

.post-single__media img {
  width: 100%;
  height: auto;
  display: block;
}

.post-single__content {
  padding: 22px;
  color: #3e3b3b;
  font-size: 1.06rem;
  line-height: 1.7;
}

.post-single__content > *:first-child {
  margin-top: 0;
}

.post-single__content > *:last-child {
  margin-bottom: 0;
}

.post-single__nav {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.post-single__nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  color: #2e2d31;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-single__nav-next {
  text-align: right;
}

.post-single__empty {
  margin: 0;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  color: #5f5a5a;
}

@media (max-width: 760px) {
  .post-single__header,
  .post-single__content {
    padding: 16px;
  }

  .post-single__nav {
    grid-template-columns: 1fr;
  }

  .post-single__nav-next {
    text-align: left;
  }
}

.contact-page {
  background: #efefef;
  padding: 24px 0 42px;
}

.contact-page__header {
  margin-bottom: 18px;
}

.contact-page__title {
  margin: 0;
  color: #242428;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
}

.contact-page__subtitle {
  margin: 8px 0 0;
  color: #5f5a5a;
  font-size: 1rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  margin-top: 18px;
}

.contact-page__card--form {
  max-width: none;
}

.contact-page__extras {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-page__markets {
  margin-bottom: 0;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-page__markets-header h2 {
  margin: 0;
  color: #1f2023;
  font-size: 1.25rem;
}

.contact-page__markets-header p {
  margin: 8px 0 0;
  color: #5f5a5a;
  font-size: 0.96rem;
}

.contact-page__market-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-market-card {
  padding: 12px;
  border-radius: 10px;
  background: #f7f7f7;
  border: 1px solid #ececec;
}

.contact-market-card h3 {
  margin: 6px 0 0;
  color: #242428;
  font-size: 1rem;
}

.contact-market-card p {
  margin: 6px 0 0;
  color: #666060;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-market-card__seller {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.contact-market-card__seller a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f2d31;
  font-size: 0.92rem;
}

.contact-market-card__seller i {
  color: var(--color-brand);
}

.contact-market-card__flag {
  display: inline-block;
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.contact-market-card__flag--pl {
  background: linear-gradient(to bottom, #ffffff 50%, #dc143c 50%);
}

.contact-market-card__flag--cz {
  background:
    linear-gradient(150deg, #11457e 0 32%, transparent 32%),
    linear-gradient(to bottom, #ffffff 50%, #d7141a 50%);
}

.contact-market-card__flag--sk {
  background: linear-gradient(to bottom, #ffffff 33%, #0b4ea2 33% 66%, #ee1c25 66%);
}

.contact-page__card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 18px;
}

.contact-page__card h2 {
  margin: 0 0 12px;
  color: #1f2023;
  font-size: 1.25rem;
}

.contact-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-page__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f3d3d;
}

.contact-page__list i {
  color: var(--color-brand);
  font-size: 1.05rem;
}

.contact-page__notice {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-page__notice--success {
  background: #e9f8ee;
  color: #176133;
}

.contact-page__notice--error {
  background: #fdecec;
  color: #8b1f1f;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__row label {
  color: #353535;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  color: #2b2b2b;
  font: inherit;
}

.contact-form__row textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__row--wide {
  grid-column: 1 / -1;
}

.contact-form__consent {
  margin-top: 12px;
}

.contact-form__consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #343434;
  font-size: 0.95rem;
}

.contact-form__consent input[type='checkbox'] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.contact-form__consent a {
  color: var(--color-brand);
  text-decoration: underline;
}

.contact-form__submit {
  margin-top: 14px;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  filter: brightness(1.05);
}

.contact-page__faq {
  margin-top: 0;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-page__faq-header h2 {
  margin: 0;
  color: #1f2023;
  font-size: 1.25rem;
}

.contact-page__faq-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.contact-faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fafafa;
  overflow: hidden;
}

.contact-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  color: #2d2d2f;
  font-weight: 700;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item p {
  margin: 0;
  padding: 0 14px 12px;
  color: #5f5a5a;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

.colors-page {
  background: #efefef;
  padding: 24px 0 42px;
}

.colors-page__header {
  margin-bottom: 14px;
}

.colors-page__title {
  margin: 0;
  color: #242428;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
}

.colors-page__hero {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.colors-page__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.colors-page__subtitle {
  margin: 14px 0 0;
  color: #5f5a5a;
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 1040px;
}

.colors-page__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.colors-page__tab {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: #5e595d;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.colors-page__tab.is-active {
  background: var(--color-brand);
  box-shadow: 0 8px 16px rgba(249, 120, 60, 0.3);
}

.colors-group {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 18px;
}

.colors-group.is-hidden {
  display: none;
}

.colors-group__title {
  margin: 0;
  color: #1f2023;
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
}

.colors-group__description {
  margin: 8px 0 0;
  color: #666060;
  font-size: 0.95rem;
}

.colors-group__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.color-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}

.color-card__swatch {
  position: relative;
  height: 92px;
}

.color-card__swatch--image {
  height: 170px;
  background: #ddd;
}

.color-card__swatch--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-colors-panel='ral-matt'] .color-card__swatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.22) 0 0.8px, rgba(0, 0, 0, 0) 0.8px 3.2px),
    repeating-radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.22) 0 0.9px, rgba(0, 0, 0, 0) 0.9px 3.8px),
    repeating-linear-gradient(34deg, rgba(255, 255, 255, 0.09) 0 2px, rgba(0, 0, 0, 0.09) 2px 4px),
    linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.2));
  background-size: 12px 12px, 14px 14px, 6px 6px, 100% 100%;
  mix-blend-mode: soft-light;
  opacity: 0.9;
  pointer-events: none;
}

[data-colors-panel='ral-matt'] .color-card__swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 30%),
    linear-gradient(10deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 45%);
  opacity: 0.7;
  pointer-events: none;
}

.color-card__body {
  padding: 10px;
}

.color-card__name {
  margin: 0;
  color: #1f2023;
  font-size: 0.98rem;
}

.color-card__label {
  margin: 4px 0 0;
  color: #6a6565;
  font-size: 0.86rem;
}

.color-card__structure {
  margin: 4px 0 0;
  color: #4f4b4b;
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 980px) {
  .colors-group__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .colors-page__tabs {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .colors-group__grid {
    grid-template-columns: 1fr;
  }
}

/* Modern homepage refresh */
:root {
  --color-brand: #f9783c;
  --color-brand-dark: #df5d22;
  --color-ink: #202124;
  --color-muted: #68615f;
  --color-panel: #ffffff;
  --color-line: rgba(32, 33, 36, 0.1);
  --color-bg-light: #f4f3f1;
  --shadow-soft: 0 18px 48px rgba(24, 26, 30, 0.12);
  --shadow-lift: 0 24px 58px rgba(24, 26, 30, 0.18);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 120, 60, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f4f3f1 42rem);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(32, 33, 36, 0.08);
}

.admin-bar .site-header {
  top: 32px;
}

.header-topbar {
  background: linear-gradient(90deg, var(--color-brand-dark), var(--color-brand));
}

.header-topbar__inner {
  min-height: 36px;
}

.header-topbar__item {
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-topbar__item:hover,
.header-topbar__item:focus-visible {
  transform: translateY(-1px);
}

.topbar-icon {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.topbar-icon--circle {
  background: rgba(255, 255, 255, 0.95);
}

.header-main {
  background: rgba(255, 255, 255, 0.9);
  border-top: 0;
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled .header-main {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.12);
}

.site-header .header-topbar,
.site-header .header-topbar__inner,
.site-header .header-main,
.site-header .header-main__inner,
.site-header .custom-logo-link img,
.site-header .site-logo-default,
.site-header .menu--primary > .menu-item > a,
.site-header .menu-toggle {
  transition:
    min-height 240ms var(--ease-out),
    max-height 240ms var(--ease-out),
    padding 240ms var(--ease-out),
    opacity 180ms ease,
    transform 240ms var(--ease-out),
    width 240ms var(--ease-out),
    box-shadow 220ms ease;
}

.site-header.is-compact .header-topbar {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-header.is-compact .header-topbar__inner {
  min-height: 0;
  padding-block: 0;
  transform: translateY(-8px);
}

.site-header.is-compact .header-main__inner {
  min-height: 58px;
}

.site-header.is-compact .custom-logo-link img {
  max-height: 40px;
}

.site-header.is-compact .site-logo-default {
  width: 270px;
}

.site-header.is-compact .menu--primary > .menu-item > a {
  min-height: 34px;
}

.site-header.is-compact .menu-toggle {
  transform: scale(0.92);
}

.header-main__inner {
  position: relative;
  min-height: 78px;
}

.custom-logo-link,
.site-logo-placeholder {
  transition: transform 220ms var(--ease-out), opacity 220ms ease;
}

.custom-logo-link:hover,
.custom-logo-link:focus-visible,
.site-logo-placeholder:hover,
.site-logo-placeholder:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

.custom-logo-link img {
  max-height: 52px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.menu--primary {
  gap: clamp(18px, 2.2vw, 34px);
  color: #242428;
}

.menu--primary > .menu-item > a {
  min-height: 42px;
  font-weight: 700;
}

.menu--primary > .menu-item > a::after {
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
}

.menu--primary .sub-menu {
  top: calc(100% + 8px);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.menu--primary .menu-item-has-children:hover > .sub-menu,
.menu--primary .menu-item-has-children:focus-within > .sub-menu {
  transform: translateY(0);
}

.menu--primary > .menu-item--facebook > a {
  width: 40px;
  min-height: 40px;
  color: var(--color-brand);
  border: 1px solid rgba(249, 120, 60, 0.2);
  box-shadow: 0 10px 24px rgba(249, 120, 60, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(32, 33, 36, 0.1);
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms var(--ease-out), opacity 180ms ease;
}

.site-header.is-nav-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-split {
  min-height: clamp(520px, 56vw, 720px);
  background: #1f2023;
  isolation: isolate;
}

.hero-panel {
  overflow: hidden;
  transform: translateZ(0);
  transition: flex-basis 620ms var(--ease-out), filter 420ms ease;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto clamp(18px, 3vw, 42px) clamp(18px, 3vw, 42px);
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, var(--color-brand), rgba(255, 255, 255, 0));
  opacity: 0.65;
  pointer-events: none;
}

.hero-panel__overlay {
  z-index: 1;
}

.hero-panel__content {
  z-index: 3;
  bottom: clamp(42px, 7vw, 96px);
  max-width: 620px;
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
}

.hero-panel__title-hero {
  max-width: 10ch;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.65rem, 5.7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.48);
}

.hero-panel__title-accent {
  color: var(--color-brand);
  -webkit-text-stroke: 0;
  text-shadow: inherit;
}

.hero-panel__subtitle-hero {
  max-width: 28ch;
  font-size: clamp(1.18rem, 2vw, 2rem);
  line-height: 1.08;
}

.hero-panel__text {
  max-width: 34rem;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 1.5;
}

.hero-panel__button,
.garage-info__button,
.cta-strip__button,
.site-footer__cta-btn,
.contact-form__submit,
.product-inquiry-form__submit,
.poradnik-card__button {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, filter 220ms ease;
}

.hero-panel__button::before,
.garage-info__button::before,
.cta-strip__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-out);
}

.hero-panel__button:hover::before,
.hero-panel__button:focus-visible::before,
.garage-info__button:hover::before,
.garage-info__button:focus-visible::before,
.cta-strip__button:hover::before,
.cta-strip__button:focus-visible::before {
  transform: translateX(120%);
}

.hero-panel__button:hover,
.hero-panel__button:focus-visible,
.garage-info__button:hover,
.garage-info__button:focus-visible,
.cta-strip__button:hover,
.cta-strip__button:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.hero-split[data-active='left'] .hero-panel--left,
.hero-split[data-active='right'] .hero-panel--right {
  flex-basis: 62%;
}

.hero-split[data-active='left'] .hero-panel--right,
.hero-split[data-active='right'] .hero-panel--left {
  flex-basis: 38%;
  filter: saturate(0.85) brightness(0.84);
}

.hero-split[data-active='left'] .hero-panel--left .hero-panel__overlay,
.hero-split[data-active='right'] .hero-panel--right .hero-panel__overlay {
  opacity: 1;
  background: linear-gradient(135deg, rgba(249, 120, 60, 0.36), rgba(18, 19, 24, 0.08));
}

.hero-promo-bar {
  background: linear-gradient(90deg, #2f2d31, #4b4749 44%, var(--color-brand));
  overflow: hidden;
}

.hero-promo-bar p {
  padding: 14px 20px;
  font-size: clamp(1rem, 1.5vw, 1.55rem);
  letter-spacing: 0;
}

.promo-products,
.blog-advice,
.why-us {
  background: var(--color-bg-light);
}

.promo-products {
  padding: clamp(38px, 5vw, 72px) 0;
}

.promo-products__header,
.blog-advice__header,
.why-us__header {
  align-items: flex-end;
  margin-bottom: clamp(18px, 2.8vw, 34px);
}

.promo-products__title,
.blog-advice__title,
.why-us__title,
.garage-info__title {
  color: var(--color-ink);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.promo-products__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--color-brand);
}

.promo-products__nav {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.promo-products__nav:hover,
.promo-products__nav:focus-visible {
  background: var(--color-brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 120, 60, 0.25);
}

.promo-products__track,
.blog-advice__track {
  padding: 10px 2px 18px;
}

.promo-card {
  border-radius: 8px;
  transition: transform 260ms var(--ease-out);
}

.promo-card:hover,
.promo-card:focus-within,
.advice-tile:hover,
.advice-tile:focus-within {
  transform: translateY(-6px);
}

.promo-card__media,
.advice-tile__media {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.promo-card__media::after,
.advice-tile__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.promo-card__media:hover::after,
.promo-card__media:focus-visible::after,
.advice-tile:hover .advice-tile__media::after,
.advice-tile:focus-within .advice-tile__media::after {
  opacity: 1;
}

.promo-card__media img,
.advice-tile__media img,
.garage-info__media img,
.why-us__media img {
  transition: transform 520ms var(--ease-out), filter 260ms ease;
}

.promo-card:hover .promo-card__media img,
.promo-card:focus-within .promo-card__media img,
.advice-tile:hover .advice-tile__media img,
.advice-tile:focus-within .advice-tile__media img,
.garage-info__media-wrap:hover .garage-info__media img,
.why-us__media-wrap:hover .why-us__media img {
  transform: scale(1.05);
}

.promo-card__badge,
.promo-card__price {
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(24, 26, 30, 0.16);
}

.promo-card__badge {
  top: 10px;
  right: 10px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.promo-card__price {
  left: 10px;
  bottom: 10px;
  background: rgba(249, 120, 60, 0.96);
}

.promo-card__title,
.advice-tile__title {
  font-weight: 700;
}

.promo-card__title a,
.advice-tile__title a {
  transition: color 180ms ease;
}

.garage-info {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}

.garage-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(249, 120, 60, 0.08), transparent 38%);
  pointer-events: none;
}

.garage-info--reverse {
  background: #f7f6f4;
}

.garage-info__inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.garage-info__content {
  max-width: 620px;
}

.garage-info__title {
  display: block;
}

.garage-info__title::before,
.garage-info__title::after,
.blog-advice__title::before,
.blog-advice__title::after,
.why-us__title::before,
.why-us__title::after {
  content: none;
}

.garage-info__title::after,
.blog-advice__title::after,
.why-us__title::after {
  content: '';
  display: block;
  width: 84px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--color-brand);
}

.garage-info__title::after {
  margin-left: 0;
}

.garage-info__subtitle,
.blog-advice__subtitle,
.why-us__subtitle {
  color: var(--color-ink);
  text-align: left;
  line-height: 1.25;
}

.blog-advice__subtitle,
.why-us__subtitle {
  text-align: center;
}

.garage-info__text,
.blog-advice__intro,
.why-us__intro {
  color: var(--color-muted);
  line-height: 1.65;
}

.garage-info__button {
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
}

.garage-info__media-shadow,
.why-us__media-shadow {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-brand), #2f2d31);
  opacity: 0.95;
}

.garage-info__media,
.why-us__media {
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.blog-advice {
  padding: clamp(52px, 6vw, 86px) 0;
}

.blog-advice__header {
  text-align: center;
}

.blog-advice__intro,
.why-us__intro {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.advice-tile {
  border-radius: 8px;
  transition: transform 260ms var(--ease-out);
}

.advice-tile__media {
  position: relative;
}

.cta-strip {
  padding: clamp(26px, 4vw, 44px) 0;
  background:
    linear-gradient(135deg, rgba(47, 45, 49, 0.92), rgba(47, 45, 49, 0.78)),
    linear-gradient(90deg, var(--color-brand), var(--color-brand-dark));
}

.cta-strip__inner {
  min-height: 112px;
}

.cta-strip__text {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.4vw, 2.6rem);
  line-height: 1.08;
}

.cta-strip__button {
  min-height: 58px;
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.cta-strip__button:hover,
.cta-strip__button:focus-visible {
  color: var(--color-ink);
}

.why-us {
  padding: clamp(54px, 6vw, 88px) 0 clamp(58px, 7vw, 98px);
}

.why-us__content {
  align-items: stretch;
}

.why-us__list-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.why-us__list {
  padding-left: 0;
  list-style: none;
}

.why-us__list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-ink);
  font-size: clamp(1rem, 1.15vw, 1.25rem);
}

.why-us__list li::before {
  content: '\F26E';
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: "bootstrap-icons";
  color: var(--color-brand);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.promo-card.reveal-on-scroll:nth-child(2),
.advice-tile.reveal-on-scroll:nth-child(2) {
  transition-delay: 70ms;
}

.promo-card.reveal-on-scroll:nth-child(3),
.advice-tile.reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

.promo-card.reveal-on-scroll:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1024px) {
  .header-main__inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    transform: none !important;
    transition: none;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: block;
    max-height: min(72vh, 560px);
    padding: 14px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lift);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms var(--ease-out);
  }

  .site-header.is-nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu--primary {
    display: grid;
    gap: 4px;
    justify-content: stretch;
  }

  .menu--primary > .menu-item > a {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .menu--primary > .menu-item > a::after {
    content: none;
  }

  .menu--primary .sub-menu {
    display: none;
  }

  .menu--primary > .menu-item--facebook > a {
    width: 100%;
  }

  body.nav-is-open {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .header-topbar {
    display: none;
  }

  .header-topbar__inner {
    align-items: stretch;
    gap: 8px;
  }

  .header-topbar__item--left {
    justify-content: center;
  }

  .header-main__inner {
    position: relative;
    flex-direction: row;
    padding-block: 10px;
  }

  .site-logo-default {
    width: min(240px, 64vw);
  }

  .site-header.is-compact .header-main__inner {
    min-height: 58px;
    padding-block: 6px;
  }

  .site-header.is-compact .site-logo-default {
    width: min(205px, 56vw);
  }

  .hero-split {
    min-height: auto;
  }

  .hero-panel,
  .hero-split[data-active='left'] .hero-panel--left,
  .hero-split[data-active='right'] .hero-panel--right,
  .hero-split[data-active='left'] .hero-panel--right,
  .hero-split[data-active='right'] .hero-panel--left {
    min-height: 420px;
    filter: none;
  }

  .hero-panel__content {
    max-width: 94%;
    bottom: 30px;
  }

  .hero-panel__title-hero {
    max-width: 12ch;
  }

  .promo-products__header {
    align-items: flex-start;
  }

  .promo-card {
    flex-basis: 82%;
  }

  .garage-info__inner,
  .why-us__content {
    grid-template-columns: 1fr;
  }

  .garage-info--reverse .garage-info__content,
  .garage-info--reverse .garage-info__media-wrap {
    order: initial;
  }

  .garage-info__subtitle {
    text-align: left;
  }

  .cta-strip__inner {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .header-topbar__right {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-flag {
    display: none;
  }

  .hero-panel,
  .hero-split[data-active='left'] .hero-panel--left,
  .hero-split[data-active='right'] .hero-panel--right,
  .hero-split[data-active='left'] .hero-panel--right,
  .hero-split[data-active='right'] .hero-panel--left {
    min-height: 380px;
  }

  .hero-panel__button,
  .garage-info__button,
  .cta-strip__button {
    width: 100%;
  }

  .promo-products__header {
    flex-direction: column;
  }

  .promo-products__controls,
  .blog-advice__controls {
    width: 100%;
    justify-content: flex-end;
  }

  .promo-card {
    flex-basis: 92%;
  }

  .why-us__list-col {
    padding: 20px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Homepage typography correction */
.blog-advice__title,
.why-us__title {
  display: block;
  max-width: 900px;
  margin-inline: auto;
  color: var(--color-ink);
  text-align: center;
  font-size: clamp(1.85rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
}

.blog-advice__title::before,
.why-us__title::before {
  content: none;
}

.blog-advice__title::after,
.why-us__title::after {
  content: '';
  display: block;
  width: min(128px, 30vw);
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-dark));
}

.blog-advice__subtitle,
.why-us__subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  color: #2f2d31;
  text-align: center;
  font-size: clamp(1.04rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.28;
}

.blog-advice__intro,
.why-us__intro {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.65;
}

.promo-products__title {
  display: block;
  color: var(--color-ink);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
}

.promo-products__title::after {
  width: 76px;
  height: 4px;
  margin-top: 10px;
}

.garage-info__title {
  display: block;
  color: var(--color-ink);
  font-size: clamp(1.8rem, 2.7vw, 2.9rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: left;
}

.garage-info__title::before {
  content: none;
}

.garage-info__title::after {
  content: '';
  display: block;
  width: 92px;
  height: 4px;
  margin: 14px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-dark));
}

.garage-info__subtitle {
  max-width: 560px;
  margin-top: 14px;
  color: #2f2d31;
  text-align: left;
  font-size: clamp(1.04rem, 1.2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
}

.promo-card__title {
  min-height: 3.75em;
  margin: 12px 0 0;
  color: var(--color-ink);
  font-size: clamp(0.98rem, 1.02vw, 1.12rem);
  font-weight: 750;
  line-height: 1.25;
}

.promo-card__title a {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: inherit;
}

.promo-card__title a:hover,
.promo-card__title a:focus-visible {
  color: var(--color-brand-dark);
}

.garage-category__products ul.products li.product .promo-card__title,
.garage-category__products ul.products li.promo-card .promo-card__title {
  min-height: 3.75em;
}

@media (max-width: 760px) {
  .blog-advice__title,
  .why-us__title,
  .promo-products__title,
  .garage-info__title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .blog-advice__subtitle,
  .why-us__subtitle,
  .garage-info__subtitle {
    font-size: 1rem;
  }

  .promo-card__title {
    min-height: auto;
    font-size: 1rem;
  }
}

/* Stable compact header: avoid scroll jumps from changing sticky height */
.site-header .header-topbar,
.site-header .header-topbar__inner,
.site-header .header-main,
.site-header .header-main__inner,
.site-header .custom-logo-link img,
.site-header .site-logo-default,
.site-header .menu--primary > .menu-item > a,
.site-header .menu-toggle {
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.site-header.is-compact .header-topbar {
  max-height: none;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header.is-compact .header-topbar__inner {
  min-height: 36px;
  padding-block: 4px;
  transform: none;
}

.site-header.is-compact .header-main {
  transform: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(32, 33, 36, 0.16);
}

.site-header.is-compact .header-main__inner {
  min-height: 78px;
  padding-block: 0;
}

.site-header.is-compact .custom-logo-link img,
.site-header.is-compact .site-logo-default {
  transform: scale(0.74);
  transform-origin: left center;
}

.site-header.is-compact .site-logo-default {
  width: 360px;
}

.site-header.is-compact .menu--primary > .menu-item > a {
  min-height: 32px;
  padding-block: 2px;
  transform: translateY(-1px) scale(0.94);
  transform-origin: center;
}

.site-header.is-compact .menu-toggle {
  width: 38px;
  height: 38px;
  transform: scale(0.86);
}

.menu--primary > .menu-item-has-children::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
}

.site-header.is-compact .menu--primary .sub-menu {
  top: calc(100% + 2px);
}

@media (max-width: 760px) {
  .site-header.is-compact .header-topbar {
    opacity: 1;
    transform: none;
  }

  .site-header.is-compact .header-main__inner {
    min-height: 58px;
    padding-block: 6px;
  }

  .site-header.is-compact .header-main {
    transform: none;
  }

  .site-header.is-compact .site-logo-default {
    width: min(205px, 56vw);
    transform: none;
  }

  .site-header.is-compact .custom-logo-link img {
    max-height: 38px;
    transform: none;
  }

  .site-header.is-compact .menu-toggle {
    width: 38px;
    height: 38px;
    transform: none;
  }
}

/* Final header behavior split: animated desktop, stable mobile */
.site-header {
  transition: transform 240ms var(--ease-out), box-shadow 220ms ease;
}

@media (min-width: 761px) {
  .site-header.is-compact {
    transform: translateY(-36px);
  }

  .site-header.is-compact .header-topbar {
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .site-header.is-compact .header-main {
    transform: none;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(32, 33, 36, 0.16);
  }

  .site-header.is-compact .header-main__inner {
    min-height: 72px;
    padding-block: 0;
  }

  .site-header.is-compact .custom-logo-link img,
  .site-header.is-compact .site-logo-default {
    transform: scale(0.82);
    transform-origin: left center;
  }

  .site-header.is-compact .menu--primary > .menu-item > a {
    min-height: 36px;
    padding-block: 2px;
    transform: scale(0.96);
  }

  .site-header.is-compact .menu--primary .sub-menu {
    top: calc(100% + 4px);
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-compact {
    transform: none;
  }

  .site-header.is-compact .header-topbar,
  .site-header.is-compact .header-main,
  .site-header.is-compact .header-main__inner,
  .site-header.is-compact .custom-logo-link img,
  .site-header.is-compact .site-logo-default,
  .site-header.is-compact .menu-toggle {
    opacity: 1;
    transform: none;
  }

  .site-header.is-compact .header-main__inner {
    min-height: 70px;
    padding-block: 10px;
  }

  .site-header.is-compact .site-logo-default {
    width: min(240px, 64vw);
  }

  .site-header.is-compact .custom-logo-link img {
    max-height: 52px;
  }
}

.kennel-configurator-page {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 36%, #f3f4f5 100%);
  padding: 58px 0 72px;
}

.page-default {
  padding: 52px 0 72px;
  background: #f7f7f7;
}

.page-default__content {
  max-width: 100%;
}

.page-default__title {
  margin: 0 0 24px;
  color: #202124;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
}

.page-default__body > *:first-child {
  margin-top: 0;
}

.page-default__body > *:last-child {
  margin-bottom: 0;
}

.kennel-configurator-page__header {
  max-width: 840px;
  margin-bottom: 32px;
}

.kennel-configurator-page__eyebrow,
.kennel-configurator__eyebrow {
  margin: 0 0 10px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kennel-configurator-page__header h1 {
  margin: 0;
  color: #202124;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
}

.kennel-configurator-page__header p:not(.kennel-configurator-page__eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #626466;
  font-size: 18px;
  line-height: 1.65;
}

.kennel-configurator {
  color: #2b2d30;
}

.kennel-configurator__header {
  margin-bottom: 24px;
}

.kennel-configurator__header h2 {
  margin: 0;
  color: #202124;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.kennel-configurator__header p:not(.kennel-configurator__eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #626466;
  font-size: 16px;
  line-height: 1.65;
}

.kennel-configurator__notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.kennel-configurator__notice--success {
  background: #e9f7ef;
  color: #1f6a3b;
}

.kennel-configurator__notice--error {
  background: #fff0ec;
  color: #9c2f1e;
}

.kennel-configurator__form {
  margin: 0;
}

.kennel-configurator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.kennel-configurator__steps,
.kennel-configurator__summary {
  border: 1px solid #dddfe3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(32, 33, 36, 0.08);
}

.kennel-configurator__steps {
  padding: 20px;
}

.kennel-configurator__progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.kennel-configurator__progress-step {
  min-height: 58px;
  padding: 8px;
  border: 1px solid #d8dadd;
  border-radius: 6px;
  background: #f8f8f8;
  color: #55585c;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.kennel-configurator__progress-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 auto 5px;
  border-radius: 50%;
  background: #e4e6e8;
  color: #3f4246;
  font-size: 12px;
}

.kennel-configurator__progress-step.is-active {
  border-color: var(--color-brand);
  background: #fff6f1;
  color: #202124;
}

.kennel-configurator__progress-step.is-active span,
.kennel-configurator__progress-step.is-complete span {
  background: var(--color-brand);
  color: #ffffff;
}

.kennel-configurator__step {
  display: none;
  min-height: 430px;
  margin: 0;
  padding: 0;
  border: 0;
}

.kennel-configurator__step.is-active {
  display: block;
}

.kennel-configurator__step.has-error {
  animation: kennel-step-error 320ms ease;
}

.kennel-configurator__step legend {
  margin: 0 0 8px;
  color: #202124;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.kennel-configurator__step-lead {
  margin: 0 0 18px;
  color: #666a6e;
  line-height: 1.55;
}

.kennel-configurator__option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kennel-configurator__option {
  min-height: 246px;
  cursor: pointer;
}

.kennel-configurator__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.kennel-configurator__option-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  height: 100%;
  padding: 12px;
  border: 1px solid #d9dcdf;
  border-radius: 8px;
  background: #fbfbfb;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.kennel-configurator__option-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #eceff1;
  object-fit: cover;
}

.kennel-configurator__option-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #eceff1;
  color: #303236;
}

.kennel-configurator__option-fallback i {
  font-size: 21px;
}

.kennel-configurator__option-size {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(249, 120, 60, 0.14), rgba(32, 33, 36, 0.06)),
    #f1f2f3;
  color: #202124;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.kennel-configurator__option-size.is-xxl {
  font-size: clamp(38px, 4.6vw, 58px);
}

.kennel-configurator__option-size.is-xl {
  font-size: clamp(34px, 4vw, 52px);
}

.kennel-configurator__option-size.is-l {
  font-size: clamp(30px, 3.6vw, 46px);
}

.kennel-configurator__option-size.is-m {
  font-size: clamp(26px, 3.2vw, 38px);
}

.kennel-configurator__option-body strong {
  color: #202124;
  font-size: 18px;
  line-height: 1.25;
}

.kennel-configurator__option-body small {
  color: #64686d;
  font-size: 14px;
  line-height: 1.45;
}

.kennel-configurator__option:hover .kennel-configurator__option-body,
.kennel-configurator__option input:focus-visible + .kennel-configurator__option-body {
  border-color: #b9bdc2;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(32, 33, 36, 0.1);
  transform: translateY(-2px);
}

.kennel-configurator__option input:checked + .kennel-configurator__option-body {
  border-color: var(--color-brand);
  background: #fff7f3;
  box-shadow: 0 0 0 3px rgba(249, 120, 60, 0.16);
}

.kennel-configurator__option input:checked + .kennel-configurator__option-body .kennel-configurator__option-fallback {
  background: var(--color-brand);
  color: #ffffff;
}

.kennel-configurator__option input:checked + .kennel-configurator__option-body .kennel-configurator__option-size {
  background:
    linear-gradient(135deg, rgba(249, 120, 60, 0.22), rgba(249, 120, 60, 0.08)),
    #fff1e9;
  color: #161616;
}

.kennel-configurator__inline-group {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eceff1;
}

.kennel-configurator__inline-group h3 {
  margin: 0 0 12px;
  color: #202124;
  font-size: 20px;
}

.kennel-configurator__segmented,
.kennel-configurator__detail-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kennel-configurator__segmented label,
.kennel-configurator__detail-mode label {
  cursor: pointer;
}

.kennel-configurator__segmented input,
.kennel-configurator__detail-mode input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.kennel-configurator__segmented span,
.kennel-configurator__detail-mode span {
  display: grid;
  gap: 6px;
  height: 100%;
  padding: 16px;
  border: 1px solid #d9dcdf;
  border-radius: 8px;
  background: #fbfbfb;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.kennel-configurator__segmented strong,
.kennel-configurator__detail-mode strong {
  color: #202124;
  font-size: 17px;
}

.kennel-configurator__segmented small,
.kennel-configurator__detail-mode small {
  color: #64686d;
  font-size: 14px;
  line-height: 1.45;
}

.kennel-configurator__segmented input:checked + span,
.kennel-configurator__detail-mode input:checked + span {
  border-color: var(--color-brand);
  background: #fff7f3;
  box-shadow: 0 0 0 3px rgba(249, 120, 60, 0.16);
}

.kennel-configurator__wall-editor {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.kennel-configurator__wall-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e2e4e6;
  border-radius: 8px;
  background: #f7f8f9;
}

.kennel-configurator__wall-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4f5357;
  font-weight: 800;
}

.kennel-configurator__wall-legend i {
  display: inline-block;
  width: 34px;
  height: 24px;
  border: 1px solid rgba(32, 33, 36, 0.12);
  border-radius: 3px;
}

.kennel-configurator__wall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.kennel-configurator__wall {
  display: grid;
  gap: 9px;
  justify-items: center;
}

.kennel-configurator__wall-cells {
  display: grid;
  grid-template-columns: repeat(2, minmax(70px, 1fr));
  width: min(100%, 320px);
  aspect-ratio: 2 / 1.22;
  border: 2px solid #161616;
  background: #161616;
  gap: 3px;
}

.kennel-configurator__wall-cell {
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.kennel-configurator__wall-cell:hover,
.kennel-configurator__wall-cell:focus-visible {
  filter: brightness(1.05);
  outline: 3px solid rgba(249, 120, 60, 0.42);
  outline-offset: -3px;
}

.kennel-configurator__wall-cell:active {
  transform: scale(0.985);
}

.kennel-configurator__wall strong {
  color: #202124;
  font-size: 18px;
  line-height: 1.2;
}

.kennel-configurator__wall-cell.is-wood,
.kennel-configurator__wall-legend .is-wood {
  background:
    linear-gradient(90deg, rgba(70, 40, 20, 0.16) 1px, transparent 1px) 0 0 / 18px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(85, 45, 20, 0.1)),
    repeating-linear-gradient(90deg, #9a6a4c 0 16px, #b18161 16px 32px, #8f6044 32px 48px);
}

.kennel-configurator__wall-cell.is-profile,
.kennel-configurator__wall-legend .is-profile {
  background:
    repeating-linear-gradient(90deg, #8f908e 0 13px, #d8d9d7 13px 18px, #6f716f 18px 31px, #c5c6c4 31px 36px),
    linear-gradient(180deg, #9b9c9a, #707270);
}

.kennel-configurator__wall-cell.is-bars,
.kennel-configurator__wall-legend .is-bars {
  background:
    repeating-linear-gradient(90deg, transparent 0 12px, #767676 12px 16px, transparent 16px 28px),
    linear-gradient(180deg, #ececec, #c9c9c9);
}

.kennel-configurator__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kennel-configurator__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.kennel-configurator__field--wide {
  grid-column: 1 / -1;
}

.kennel-configurator__field label {
  color: #34373a;
  font-weight: 800;
}

.kennel-configurator__field input,
.kennel-configurator__field textarea,
.garage-configurator__field input,
.garage-configurator__field textarea,
.garage-configurator__field select {
  width: 100%;
  border: 1px solid #d6d9dd;
  border-radius: 6px;
  background: #ffffff;
  color: #202124;
  font: inherit;
  font-size: 16px;
}

.kennel-configurator__field input,
.garage-configurator__field input,
.garage-configurator__field select {
  min-height: 48px;
  padding: 0 13px;
}

.kennel-configurator__field textarea,
.garage-configurator__field textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.kennel-configurator__info {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--color-brand);
  border-radius: 6px;
  background: #f7f8f9;
  color: #4f5357;
  line-height: 1.55;
}

.kennel-configurator__info strong {
  color: #202124;
}

.kennel-configurator__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  color: #4b4f53;
  font-weight: 700;
  line-height: 1.45;
}

.kennel-configurator__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-brand);
  flex: 0 0 auto;
}

.kennel-configurator__consent a {
  color: var(--color-brand);
  text-decoration: underline;
}

.kennel-configurator__actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 24px;
}

.kennel-configurator__nav,
.kennel-configurator__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.kennel-configurator__nav {
  background: #eceff1;
  color: #303236;
}

.kennel-configurator__nav--next,
.kennel-configurator__submit {
  margin-left: auto;
  background: var(--color-brand);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(249, 120, 60, 0.28);
}

.kennel-configurator__nav:hover,
.kennel-configurator__submit:hover,
.kennel-configurator__nav:focus-visible,
.kennel-configurator__submit:focus-visible {
  transform: translateY(-2px);
  filter: brightness(0.98);
}

.kennel-configurator__nav:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.kennel-configurator .is-hidden {
  display: none;
}

.kennel-configurator__summary {
  position: sticky;
  top: 120px;
  padding: 20px;
}

.kennel-configurator__summary h3 {
  margin: 0 0 16px;
  color: #202124;
  font-size: 23px;
}

.kennel-configurator__summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.kennel-configurator__summary dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f2;
}

.kennel-configurator__summary dt {
  margin-bottom: 4px;
  color: #777b80;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kennel-configurator__summary dd {
  margin: 0;
  color: #202124;
  font-weight: 800;
  line-height: 1.45;
}

.kennel-configurator__summary p {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 6px;
  background: #f4f5f6;
  color: #55595d;
  line-height: 1.5;
}

.garage-configurator__grid,
.garage-configurator__contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.garage-configurator__contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.garage-configurator__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fafbfc);
}

.garage-configurator__field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #34373a;
  font-weight: 800;
}

.garage-configurator__field label i {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  background: #f0f2f4;
  color: var(--color-brand);
  font-size: 15px;
}

.garage-configurator__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5d6268 50%),
    linear-gradient(135deg, #5d6268 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.garage-configurator__field select:focus,
.garage-configurator__field input:focus,
.garage-configurator__field textarea:focus {
  border-color: var(--color-brand);
  outline: 3px solid rgba(249, 120, 60, 0.16);
}

.garage-configurator__field.is-disabled {
  opacity: 0.58;
}

.garage-configurator__field--wide {
  grid-column: 1 / -1;
}

.garage-configurator__note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--color-brand);
  border-radius: 6px;
  background: #f7f8f9;
  color: #55595d;
  line-height: 1.5;
}

.garage-configurator .is-hidden {
  display: none;
}

.garage-configurator__progress {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.garage-configurator__roof-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.garage-configurator__roof-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 14px;
  border: 1px solid #e1e5e8;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fafbfc);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.garage-configurator__roof-card:hover,
.garage-configurator__roof-card:focus-within {
  border-color: rgba(249, 120, 60, 0.55);
  box-shadow: 0 12px 26px rgba(32, 33, 36, 0.08);
}

.garage-configurator__roof-card:active {
  transform: translateY(1px);
}

.garage-configurator__roof-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.garage-configurator__roof-card:has(input:checked),
.garage-configurator__roof-card.is-checked {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(249, 120, 60, 0.16), 0 14px 30px rgba(32, 33, 36, 0.08);
}

.garage-configurator__roof-card:has(input:checked)::after,
.garage-configurator__roof-card.is-checked::after {
  content: "\F26A";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand);
  color: #ffffff;
  font-family: "bootstrap-icons";
  font-size: 14px;
}

.garage-configurator__roof-card strong {
  color: #202124;
  font-size: 15px;
  line-height: 1.25;
}

.garage-configurator__roof-icon {
  position: relative;
  display: block;
  height: 76px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    #eef2f4;
  overflow: hidden;
}

.garage-configurator__roof-icon::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16px;
  height: 30px;
  border: 2px solid rgba(32, 33, 36, 0.22);
  border-top: 0;
  background:
    repeating-linear-gradient(90deg, rgba(32, 33, 36, 0.11) 0 1px, transparent 1px 12px),
    #cfd6dc;
}

.garage-configurator__roof-icon::after {
  content: "";
  position: absolute;
  left: 43%;
  bottom: 16px;
  width: 14%;
  height: 22px;
  border: 2px solid rgba(32, 33, 36, 0.36);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 5px, rgba(32, 33, 36, 0.14) 5px 6px),
    var(--color-brand);
  box-shadow: 0 0 0 3px rgba(249, 120, 60, 0.12);
}

.garage-configurator__roof-icon i {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 45px;
  height: 24px;
  display: block;
  background:
    repeating-linear-gradient(90deg, rgba(32, 33, 36, 0.15) 0 2px, transparent 2px 14px),
    #9fa9b1;
}

.garage-configurator__roof-icon--gable i {
  clip-path: polygon(0 100%, 50% 8%, 100% 100%);
}

.garage-configurator__roof-icon--front_back_gable i {
  clip-path: polygon(0 78%, 50% 0, 100% 78%, 94% 100%, 50% 28%, 6% 100%);
}

.garage-configurator__roof-icon--back_slope i {
  clip-path: polygon(0 76%, 100% 34%, 100% 100%, 0 100%);
}

.garage-configurator__roof-icon--back_slope::after,
.garage-configurator__roof-icon--front_slope::after {
  left: auto;
  right: 18%;
  bottom: 20px;
  width: 13px;
  height: 18px;
  border: 2px solid rgba(32, 33, 36, 0.36);
  border-left: 0;
  border-radius: 0 3px 3px 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 4px, rgba(32, 33, 36, 0.14) 4px 5px),
    var(--color-brand);
}

.garage-configurator__roof-icon--front_slope i {
  clip-path: polygon(0 34%, 100% 76%, 100% 100%, 0 100%);
}

.garage-configurator__roof-icon--left_slope i {
  clip-path: polygon(0 58%, 100% 24%, 100% 100%, 0 100%);
}

.garage-configurator__roof-icon--right_slope i {
  clip-path: polygon(0 24%, 100% 58%, 100% 100%, 0 100%);
}

.garage-configurator__roof-icon--front_back_gable::after {
  left: 18%;
  right: auto;
  bottom: 20px;
  width: 13px;
  height: 18px;
  border: 2px solid rgba(32, 33, 36, 0.36);
  border-right: 0;
  border-radius: 3px 0 0 3px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 4px, rgba(32, 33, 36, 0.14) 4px 5px),
    var(--color-brand);
}

.garage-configurator__roof-icon em {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  padding: 2px 6px;
  border-radius: 999px;
  background: #ffffff;
  color: #4a4f54;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(32, 33, 36, 0.1);
}

.garage-configurator__opening-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.garage-configurator__opening-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 14px;
  border: 1px solid #e1e5e8;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fafbfc);
}

.garage-configurator__opening-card strong {
  display: block;
  margin-bottom: 4px;
  color: #202124;
  font-size: 17px;
}

.garage-configurator__opening-card p {
  margin: 0;
  color: #55595d;
  font-weight: 700;
  line-height: 1.4;
}

.garage-configurator__opening-drawing {
  position: relative;
  display: block;
  width: 92px;
  height: 104px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, 0.05) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(180deg, rgba(32, 33, 36, 0.05) 1px, transparent 1px) 0 0 / 16px 16px,
    #f1f4f6;
}

.garage-configurator__opening-card--door .garage-configurator__opening-drawing::before {
  content: "";
  position: absolute;
  left: 29px;
  bottom: 12px;
  width: 34px;
  height: 74px;
  border: 3px solid #4a5158;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(32, 33, 36, 0.18) 48% 52%, transparent 52%),
    linear-gradient(180deg, #d9dee2, #b9c0c6);
}

.garage-configurator__opening-card--door .garage-configurator__opening-drawing::after {
  content: "90 x 200";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  color: #4f8a45;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.garage-configurator__opening-card--window .garage-configurator__opening-drawing::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 34px;
  width: 52px;
  height: 38px;
  border: 3px solid #4a5158;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(32, 33, 36, 0.28) 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 0 48%, rgba(32, 33, 36, 0.28) 48% 52%, transparent 52%),
    #dcecf4;
}

.garage-configurator__opening-card--window .garage-configurator__opening-drawing::after {
  content: "80 x 60";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  color: #3f7f9f;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.garage-configurator__dimension-guide {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #e5e9ec;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 120, 60, 0.06), transparent 40%),
    linear-gradient(180deg, #ffffff, #f8fafb);
}

.garage-configurator__dimension-box {
  position: relative;
  min-height: 230px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, 0.05) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(32, 33, 36, 0.05) 1px, transparent 1px) 0 0 / 34px 34px,
    #f2f5f7;
  overflow: hidden;
}

.garage-configurator__dimension-box::before {
  content: "";
  position: absolute;
  left: 74px;
  bottom: 46px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #202124;
  box-shadow: 0 0 0 6px rgba(32, 33, 36, 0.08);
}

.garage-configurator__axis {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
}

.garage-configurator__axis::before,
.garage-configurator__axis::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.garage-configurator__axis b {
  position: absolute;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(32, 33, 36, 0.1);
  color: #202124;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.garage-configurator__axis--width {
  left: 78px;
  right: 34px;
  bottom: 50px;
  height: 3px;
  color: #f9783c;
  background: currentColor;
}

.garage-configurator__axis--width::before {
  left: 0;
  top: -3px;
  transform: rotate(-135deg);
}

.garage-configurator__axis--width::after {
  right: 0;
  top: -3px;
  transform: rotate(45deg);
}

.garage-configurator__axis--width b {
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
}

.garage-configurator__axis--length {
  left: 78px;
  bottom: 50px;
  width: 3px;
  height: 128px;
  color: #3f7f9f;
  background: currentColor;
  transform: rotate(52deg);
  transform-origin: 50% 100%;
}

.garage-configurator__axis--length::before {
  left: -3px;
  bottom: -1px;
  transform: rotate(135deg);
}

.garage-configurator__axis--length::after {
  left: -3px;
  top: -1px;
  transform: rotate(-45deg);
}

.garage-configurator__axis--length b {
  left: 16px;
  top: 42%;
  transform: rotate(-52deg);
}

.garage-configurator__axis--height {
  left: 78px;
  top: 28px;
  width: 3px;
  height: 152px;
  color: #4f8a45;
  background: currentColor;
}

.garage-configurator__axis--height::before {
  left: -3px;
  top: 0;
  transform: rotate(-45deg);
}

.garage-configurator__axis--height::after {
  left: -3px;
  bottom: 0;
  transform: rotate(135deg);
}

.garage-configurator__axis--height b {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.garage-configurator__dimension-legend {
  display: grid;
  gap: 11px;
}

.garage-configurator__dimension-legend strong {
  margin-bottom: 2px;
  color: #202124;
  font-size: 20px;
  line-height: 1.2;
}

.garage-configurator__dimension-legend span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d4247;
  font-weight: 700;
  line-height: 1.35;
}

.garage-configurator__legend-line {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.garage-configurator__legend-line--width {
  background: #f9783c;
}

.garage-configurator__legend-line--length {
  background: #3f7f9f;
}

.garage-configurator__legend-line--height {
  background: #4f8a45;
}

@keyframes kennel-step-error {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-6px);
  }

  70% {
    transform: translateX(6px);
  }
}

@media (max-width: 980px) {
  .kennel-configurator__layout {
    grid-template-columns: 1fr;
  }

  .kennel-configurator__summary {
    position: static;
    order: -1;
  }

  .kennel-configurator__progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .garage-configurator__progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .garage-configurator__roof-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garage-configurator__opening-preview {
    grid-template-columns: 1fr;
  }

  .garage-configurator__dimension-guide {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .kennel-configurator-page {
    padding: 38px 0 52px;
  }

  .kennel-configurator-page__header p:not(.kennel-configurator-page__eyebrow) {
    font-size: 16px;
  }

  .kennel-configurator__steps,
  .kennel-configurator__summary {
    padding: 16px;
  }

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

  .kennel-configurator__step {
    min-height: 0;
  }

  .kennel-configurator__step legend {
    font-size: 24px;
  }

  .kennel-configurator__option-grid,
  .kennel-configurator__contact-grid,
  .kennel-configurator__wall-grid,
  .kennel-configurator__segmented,
  .kennel-configurator__detail-mode,
  .garage-configurator__grid,
  .garage-configurator__contact {
    grid-template-columns: 1fr;
  }

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

  .garage-configurator__roof-type-grid {
    grid-template-columns: 1fr;
  }

  .garage-configurator__opening-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .garage-configurator__opening-drawing {
    width: 78px;
  }

  .garage-configurator__dimension-guide {
    padding: 14px;
  }

  .garage-configurator__dimension-box {
    min-height: 210px;
  }

  .garage-configurator__dimension-guide {
    gap: 16px;
  }

  .garage-configurator__axis--height {
    height: 128px;
  }

  .garage-configurator__axis--width,
  .garage-configurator__axis--length,
  .garage-configurator__axis--height {
    left: 58px;
  }

  .garage-configurator__dimension-box::before {
    left: 54px;
  }

  .garage-configurator__axis--width {
    right: 26px;
  }

  .garage-configurator__axis--length {
    height: 128px;
  }

  .kennel-configurator__wall-cells {
    width: 100%;
  }

  .kennel-configurator__option {
    min-height: 0;
  }

  .kennel-configurator__actions {
    flex-wrap: wrap;
  }

  .kennel-configurator__nav,
  .kennel-configurator__submit {
    flex: 1 1 150px;
  }
}
