/* Design tokens */
:root {
  --color-primary: #e74c3c;
  --color-primary-soft: rgba(231, 76, 60, 0.12);
  --color-primary-strong: rgba(231, 76, 60, 0.85);
  --color-bg: #f5f7fb;
  --color-surface: rgba(255, 255, 255, 0.86);
  --color-surface-elevated: rgba(255, 255, 255, 0.92);
  --color-border-subtle: rgba(10, 16, 34, 0.06);
  --color-text: #202637;
  --color-text-muted: #6c7280;
  --color-danger: #e74c3c;
  --color-success: #1abf5b;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --backdrop-blur: 18px;
  --transition-fast: 160ms ease-out;
  --transition-med: 220ms ease;

  --header-height: 72px;

  color-scheme: light;
}
* {
  touch-action: manipulation;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top, #f7f6f3 0, #ecebe7 42%, #e0ddd7 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  z-index: 999;
}

.skip-link:focus {
  left: 1.5rem;
}

/* Layout shell & sections */
.shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0 4rem;
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 1.5rem + 0.8vw, 2.25rem);
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Glass surfaces */
.glass {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--backdrop-blur));
}

/* Site header (legacy, hidden) */
.site-header {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.brand-product {
  font-weight: 600;
  letter-spacing: -0.04em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.45rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), #ff7b54);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-nav {
  display: none;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  color: var(--color-text-muted);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--color-primary-soft);
  color: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow-x: hidden;
  background:
    linear-gradient(
      to right,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(15, 23, 42, 0.65) 40%,
      rgba(15, 23, 42, 0.35) 70%,
      rgba(15, 23, 42, 0.15) 100%
    ),
    url('../img/hero-bg-1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 4rem;
  row-gap: 1.25rem;
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner > .hero-visual-wrapper {
  grid-column: 2;
  grid-row: 1;
  margin-top: 100px;
}

.hero-visual-wrapper {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.02rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(231, 76, 60, 0.25);
  border-radius: 8px;
}

.hero-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0rem;
}

.hero-logos-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-logo-baumit{
  background:rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  padding: 4px;
}
.hero-logo-baumit img {
  height: 74px;
  width: auto;
}

.hero-logo-mosaik img {
  max-width: 320px;
  height: auto;
}

/* Sticky header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
}

.sticky-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  gap: 0;
  min-height: 60px;
  height: 60px;
}

.lang-switcher-premium {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  left: auto;
  width: max-content;
  max-width: min(212px, calc(100% - 2rem));
  z-index: 20;
}

.lang-switcher-premium__details {
  position: relative;
}

.lang-switcher-premium__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.1),
    0 1px 2px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0f172a;
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.lang-switcher-premium__summary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.lang-switcher-premium__details[open] .lang-switcher-premium__summary {
  background: rgba(255, 255, 255, 0.95);
}

.lang-switcher-premium__summary::-webkit-details-marker {
  display: none;
}

.lang-switcher-premium__summary:focus-visible {
  outline: 2px solid rgba(223, 10, 37, 0.45);
  outline-offset: 2px;
}

.lang-switcher-premium__chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.52);
  margin-left: 0.1rem;
  transition: transform 0.2s ease;
}

.lang-switcher-premium__details[open] .lang-switcher-premium__chev {
  transform: rotate(180deg);
}

.lang-switcher-premium__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 212px;
  padding: 0.45rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.16),
    0 6px 16px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  animation: langPanelIn 0.22s ease;
}

@keyframes langPanelIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-switcher-premium__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.lang-switcher-premium__item:hover {
  background: rgba(15, 23, 42, 0.055);
}

.lang-switcher-premium__item:focus-visible {
  outline: 2px solid rgba(223, 10, 37, 0.45);
  outline-offset: 0;
}

.lang-switcher-premium__item.is-active {
  background: rgba(223, 10, 37, 0.12);
  color: #0f172a;
}

.lang-switcher-premium__tick {
  margin-left: auto;
  color: #000000;
  font-size: 0.8rem;
}

.lang-switcher-premium__label {
  flex: 1;
  text-align: left;
}

.lang-switcher-premium__flag {
  flex-shrink: 0;
  line-height: 0;
}

.lang-switcher-premium__flag-svg {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sticky-header-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sticky-logo-baumit img {
  height: 40px;
  width: auto;
}

.sticky-logo-mosaik img {
  height: 28px;
  width: auto;
}

.hero-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0rem;
}

.hero-logo-mosaik img {
  max-width: 280px;
  height: auto;
}

.sticky-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.sticky-nav ul {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.sticky-nav ul li {
  display: flex;
  align-items: stretch;
  margin: 0 0 0 3px;
  padding: 0;
  height: 100%;
}

.sticky-nav a.nav-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 10px;
  background: #f5f5f5;
  border-radius: 0;
  height: 100%;
  box-sizing: border-box;
  text-wrap: nowrap;
}

.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #999;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sticky-nav a.nav-step.active .step-circle {
  background: #df0a25;
  color: #fff;
}

.sticky-nav a.nav-step.active {
  color: #df0a25;
  background: #f5f5f5;
}

.sticky-nav a.nav-step.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #df0a25;
  border-radius: 0;
}

.sticky-nav a.nav-step.disabled {
  opacity: 0.4;
  filter: blur(1px);
  pointer-events: none;
  cursor: not-allowed;
}

.sticky-nav a.nav-step.disabled .step-circle {
  background: #e0e0e0;
  color: #bbb;
}

.sticky-nav a.nav-step:not(.disabled):hover {
  color: #df0a25;
}

.sticky-nav a.nav-step:not(.disabled):hover .step-circle {
  background: #df0a25;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .color-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .color-card {
    padding: 0.3rem 0.35rem;
  }
  .color-card__swatch {
    height: 28px !important;
    margin-top: 40px;
  }
  .color-card__meta{
    font-size: 0.6rem !important;
  }

  .hero-visual-wrapper{
    margin-top: 2.25rem !important;
  }
  .sticky-header .sticky-header-inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .sticky-header-logos {
    justify-content: inherit;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .sticky-header-inner {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .sticky-logo-baumit img {
    height: 32px;
  }

  .sticky-logo-mosaik img {
    height: 24px;
  }


  .sticky-nav {
    position: relative;
    width: 100%;
    flex: 1 1 100%;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    background: #f5f5f5;
    padding: 0;
    box-sizing: border-box;
    min-height: 48px;
    align-items: stretch;
  }

  .sticky-nav ul {
    gap: 0.5rem;
    flex-wrap: nowrap;
    align-items: stretch;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-top: 0;
    padding-bottom: 0;
    justify-content: flex-start;
  }

  .sticky-nav ul li {
    flex: none;
  }

  .sticky-nav a.nav-step {
    font-size: 0.85rem;
    gap: 0.5rem;
    height: 100%;
    min-height: 48px;
    padding: 0 0.5rem;
    justify-content: flex-start;
  }

  .sticky-nav a.nav-step .step-text {
    display: none;
  }

  .sticky-nav a.nav-step.active .step-text {
    display: inline;
  }

  .step-circle {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }


  @media (min-width: 601px) {
    .hero-logos {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      width: 100%;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .hero-logos-right {
      align-items: flex-start;
      margin-left: 0;
    }

    .hero-logo-baumit img {
      height: 56px;
    }

    .hero-logo-mosaik img {
      max-width: 260px;
    }

    .eyebrow {
      text-align: left;
      letter-spacing: 0.08em;
      font-size: 0.78rem;
      margin-bottom: 0;
    }
  }
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.1rem, 1.7rem + 1.4vw, 3rem);
  letter-spacing: -0.045em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  margin: 0 0 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1.1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-inner > .hero-actions-cluster {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
  padding: 1.15rem 1.5rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(15, 23, 42, 0.42) 50%,
    rgba(15, 23, 42, 0.55) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.hero-inner > .hero-actions-cluster > .hero-actions {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-inner > .hero-actions-cluster > .hero-actions--meta {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-inner > .hero-actions-cluster > .hero-actions--cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-actions-left {
  display: flex;
  gap: 32px;
  flex: none;
  width: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 2px solid #E2001A;
  padding-bottom: 8px;
  background: transparent;
  backdrop-filter: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  min-width: auto;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: visible;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: left;
  justify-content: flex-start;
  box-sizing: border-box;
}

.hero-meta-item::before {
  content: none;
}

.hero-meta-item strong {
  font-size: 22px;
  font-weight: 800;
  color: white;
  display: block;
}

.hero-meta-item .unit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.hero-meta-item:hover {
  border-color: #ff1a35;
}

.hero-actions .btn-primary {
  background: transparent;
  color: white;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  box-shadow: none;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.mt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.mt-icon svg {
  display: block;
}

.hero-actions .btn-primary .mt-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-actions .btn-primary .mt-icon svg {
  width: 16px;
  height: 16px;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-actions .btn-primary:hover {
  background: transparent;
  border-color: transparent;
}

.hero-actions .btn-primary:hover .mt-icon {
  background: white;
  color: #111;
  border-color: white;
  transform: translateX(4px);
}

.hero-actions .btn-primary:active .mt-icon {
  transform: translateX(2px);
}

.hero-visual-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.hero-product-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 400px;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.hero-bucket-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  min-width: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-palette-image {
  position: absolute;

  top: calc(-135px + 5%);
  right: calc(-110px + 5%);
  width: auto;
  max-width: 280px;
  height: auto;
  min-width: 0;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  z-index: 1;
  transform-origin: left bottom;
  animation: fadeInScale 0.8s ease-out 0.6s both, paletteSway 4s ease-in-out 1.4s infinite;
}

@keyframes paletteSway {
  0%, 100% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(1) rotate(5deg);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-visual {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual__image:hover {
  transform: scale(1.02);
}

.hero-badge {
  position: absolute;
  top: calc(1.4rem - 30px);
  left: calc(1.4rem - 30px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #df0a25 0%, #b3081e 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(223, 10, 37, 0.4);
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  font-size: 1rem;
  animation: badgeIconRotate 3s ease-in-out infinite;
}

.hero-badge span {
  white-space: nowrap;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(223, 10, 37, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(223, 10, 37, 0.6);
  }
}

@keyframes badgeIconRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.hero-colors-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.hero-colors-preview:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-colors-stack {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}

.hero-colors-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-colors-arrow:hover {
  background: rgba(231, 76, 60, 0.9);
  border-color: rgba(231, 76, 60, 1);
  transform: scale(1.1);
}

.hero-colors-arrow i {
  font-size: 1rem;
}

.hero-color-item {
  width: 140px;
  height: 100px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, z-index 0s;
  margin-left: -50px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-color-item:first-child {
  margin-left: 0;
}

.hero-color-item:hover {
  transform: translateY(-8px) scale(1.1);
  z-index: 10;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.hero-color-item:not(:hover) {
  transform: translateY(0) scale(1);
}

.hero-color-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-color-item:nth-child(1) {
  animation-delay: 0.6s;
}

.hero-color-item:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-color-item:nth-child(3) {
  animation-delay: 0.8s;
}

.hero-color-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-color-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-preview-skeleton {
  border-radius: 18px;
  height: min(320px, 60vw);
}

.hero-caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  cursor: pointer;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
  z-index: 10;
}

.scroll-indicator.scroll-indicator--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-indicator:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%) translateY(-4px);
}

.scroll-indicator span {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: #df0a25;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
  animation: scrollPulse 1.7s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
  white-space: nowrap;
  font-weight: 600;
}

.btn-primary {
  background: #df0a25;
  color: #fff;
  border-color: #df0a25;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #7d0615;
  border-color: #7d0615;
}

.btn-secondary {
  background: var(--color-surface-elevated);
  color: var(--color-text);
  border: 1px solid var(--color-border-subtle);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--color-primary-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px dashed rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-style: solid;
  color: var(--color-text);
  background: rgba(148, 163, 184, 0.08);
}

.btn-large {
  padding-block: 0.95rem;
  padding-inline: 1.9rem;
}

.btn-small {
  padding-block: 0.45rem;
  padding-inline: 1rem;
  font-size: 0.85rem;
}

#preview-download-pdf {
  background: #000;
  color: #fff;
  border-color: #000;
}

#preview-download-pdf:hover,
#preview-download-pdf:focus-visible {
  background: #333;
  color: #fff;
  border-color: #333;
}

#submit-btn {
  background: #df0a25;
  color: #fff;
  border-color: #df0a25;
}

#submit-btn:hover,
#submit-btn:focus-visible {
  background: #7d0615;
  border-color: #7d0615;
}

#mix-generate {
  background: #df0a25;
  color: #fff;
  border-color: #df0a25;
}

#mix-generate:hover,
#mix-generate:focus-visible {
  background: #7d0615;
  border-color: #7d0615;
}

.color-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Color palette grid */
.color-grid-wrapper {
  width: 100%;
  border-left: 1px solid #eef3fa;
  border-right: 1px solid #eef3fa;
  border-top: 1px solid #eef3fa;
  border-radius: 16px 16px 0 0;
  overflow: visible;
  background: transparent;
}

.color-grid-inner {
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
}

@media (max-width: 1400px) {
  .color-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1024px) {
  .color-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .color-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.color-grid__cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.color-grid__cell > .color-card {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

@media (min-width: 1401px) {
  .color-grid > .color-grid__cell:nth-child(8n) .color-card {
    border-right: none;
  }
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .color-grid > .color-grid__cell:nth-child(6n) .color-card {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .color-grid > .color-grid__cell:nth-child(4n) .color-card {
    border-right: none;
  }
}

.color-card {
  position: relative;
  padding: 0.75rem 0.75rem 0.5rem 0.75rem;
  border-radius: 0;
  background: #fff;
  border: none;
  border-right: 1px solid #eef3fa;
  border-bottom: 4px solid var(--border-color, rgba(148, 163, 184, 0.6));
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: box-shadow var(--transition-med), background var(--transition-med);
}

.color-card__zoom {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.color-card__zoom:hover {
  background: #fff;
  transform: scale(1.1);
}

@media (min-width: 1025px) and (hover: hover) {
  .color-card__zoom {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.88);
    pointer-events: none;
    transition:
      background var(--transition-fast),
      opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.32s,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }


  .color-card:hover .color-card__zoom,
  .color-card__zoom:focus-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .color-card__zoom:hover {
    transform: translateY(0) scale(1.1);
  }
}

.color-card__zoom .mt-icon svg {
  width: 14px;
  height: 14px;
}

.color-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  z-index: 1;
}

.color-card__swatch {
  border-radius: 12px;
  overflow: hidden;
  height: 72px;
  position: relative;
  transform-origin: center;
  transition: transform var(--transition-med);
}

@media (min-width: 1025px) {
  .color-card__swatch {
    margin-top: 20px;
  }
}

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

.color-card__tone {
  height: 3px;
  border-radius: 999px;
  background: var(--swatch-color, #e5e7eb);
}

.color-card__meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  text-wrap: nowrap;
  margin-bottom:10px;
}

.color-card__name {
  font-weight: 500;
  color: var(--color-text);
  margin:auto;
}

.color-card__tag {
  font-size: 0.75rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--color-text-muted);
}

.color-card__check {
  position: absolute;
  right: 0.6rem;
  top: 0.55rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  pointer-events: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.3s,
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.color-card.is-selected {
  border-right: 1px solid #eef3fa;
  border-bottom: 4px solid var(--border-color, rgba(148, 163, 184, 0.6));

  background: radial-gradient(
    circle at top left,
    rgba(0, 0, 0, 0.22),
    #ffffff 55%,
    #dddddd 100%
  );
}

.color-card.is-selected .color-card__check {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background: #df0a25;
  border-color: transparent;
  color: #fff;
}

/* Mix panel */
.mix-panel {
  padding: 1.5rem 1.4rem;
}

.mix-header h3 {
  margin: 0 0 0.35rem;
}

.mix-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mix-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mix-empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mix-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

@keyframes mix-item-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mix-item--enter-prep {
  opacity: 0;
  transform: translateY(10px);
}

.mix-item--enter {
  animation: mix-item-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .mix-item--enter-prep {
    opacity: 1;
    transform: none;
  }

  .mix-item--enter {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.mix-item__color-section {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: center;
  flex-shrink: 0;
}

.mix-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.mix-item__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mix-item__pct-readout {
  display: none;
}

.mix-item__swatch {
  width: 76px;
  height: 44px;
  overflow: hidden;
  position: relative;
}

.mix-item__swatch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mix-item__name {
  font-weight: 500;
  font-size: 0.65rem;
  text-align: center;
}

.mix-input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  overflow: hidden;
}

.mix-slider {
  width: 100%;
}

.mix-slider input[type='range'] {
  width: 100%;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  outline: none;
}

.mix-slider input[type='range']::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.22);
  cursor: pointer;
}

.mix-slider input[type='range']::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.22);
  cursor: pointer;
}

.mix-percentage-label {
  font-variant-numeric: tabular-nums;
}

.mix-remove {
  border: none;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.mix-remove:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.mix-remove .mt-icon svg {
  width: 1.15em;
  height: 1.15em;
}

.variant-6-btn .mt-icon svg {
  width: 12px;
  height: 12px;
}

.mix-spinner {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(148, 163, 184, 0.6);
}

.mix-spinner__btn {
  width: 24px;
  height: 50%;
  border: none;
  border-radius: 0;
  background: #ecf2fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.7rem;
  transition: background var(--transition-fast);
  padding: 0;
}

.mix-spinner__btn--up {
  border-top-right-radius: 999px;
}

.mix-spinner__btn--down {
  border-bottom-right-radius: 999px;
  border-top: 1px solid rgba(148, 163, 184, 0.6);
}

.mix-spinner__btn:hover {
  background: var(--color-primary-soft);
}

.mix-spinner__btn:active {
  background: var(--color-primary);
  color: #fff;
}

.mix-percentage-input {
  width: 5rem;
  padding: 0.4rem 1.8rem 0.4rem 0.5rem;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  background: transparent;
}

.mix-percentage-input:focus-visible {
  outline: none;
}

.mix-input-group:focus-within {
  border-color: var(--color-primary);
}

.mix-percentage-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px 0 0 999px;
}

.mix-percentage-symbol {
  position: absolute;
  right: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  pointer-events: none;
  font-weight: 600;
}

.mix-footer {
  margin-top: 1.75rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mix-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.mix-footer__left {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.mix-footer__right {
  display: flex;
  align-items: center;
  height: 100%;
}

.mix-total {
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  white-space: nowrap;
}

.mix-total span:last-child {
  font-weight: 600;
}

.mix-remaining {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  white-space: nowrap;
}

.mix-footer__buttons {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 0.75rem;
}

.mix-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.mix-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  overflow: hidden;
  display: flex;
}

.mix-bar__segment {
  height: 100%;
}

.mix-design-variants {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed rgba(148, 163, 184, 0.3);
}

.mix-design-variants h4 {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.design-variant {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(245, 247, 251, 0.5);
  border-radius: 8px;
  width: 130px;
}

.design-variant label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.variant-2-group {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  overflow: hidden;
}

.variant-2-spinner {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(148, 163, 184, 0.6);
}

.variant-2-btn {
  width: 32px;
  height: 50%;
  border: none;
  border-radius: 0;
  background: #ecf2fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.7rem;
  transition: background var(--transition-fast);
  padding: 0;
}

.variant-2-btn--up {
  border-bottom: 1px solid rgba(148, 163, 184, 0.6);
}

.variant-2-btn:hover {
  background: var(--color-primary-soft);
}

.variant-2-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.variant-2-input {
  width: 100%;
  padding: 0.4rem 1.5rem 0.4rem 0.5rem;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  background: transparent;
}

.variant-2-symbol {
  position: absolute;
  right: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  pointer-events: none;
  font-weight: 600;
}

.variant-3-wrapper {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  padding: 0.4rem 2.5rem 0.4rem 0.5rem;
  background: #fff;
}

.variant-3-input {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  background: transparent;
  padding: 0;
}

.variant-3-symbol {
  position: absolute;
  right: 2.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  pointer-events: none;
  font-weight: 600;
}

.variant-3-spinner {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.variant-3-btn {
  width: 20px;
  height: 18px;
  border: none;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.6rem;
  transition: background var(--transition-fast);
  padding: 0;
}

.variant-3-btn:hover {
  background: var(--color-primary-soft);
}

.variant-4-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.variant-4-input-wrapper {
  position: relative;
  flex: 1;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  padding: 0.4rem 1.5rem 0.4rem 0.5rem;
}

.variant-4-input {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  background: transparent;
  padding: 0;
}

.variant-4-symbol {
  position: absolute;
  right: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  pointer-events: none;
  font-weight: 600;
}

.variant-4-spinner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.variant-4-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.75rem;
  transition: all var(--transition-fast);
  padding: 0;
}

.variant-4-btn:hover {
  background: var(--color-primary-soft);
  border-color: var(--color-primary);
}

.variant-5-group {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 0 5px 5px 0;
  overflow: hidden;
}

.variant-5-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.4rem 1.5rem 0.4rem 0.5rem;
}

.variant-5-input {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  background: transparent;
  padding: 0;
}

.variant-5-symbol {
  position: absolute;
  right: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  pointer-events: none;
  font-weight: 600;
}

.variant-5-spinner {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(148, 163, 184, 0.6);
}

.variant-5-btn {
  width: 32px;
  height: 50%;
  border: none;
  border-radius: 0;
  background: #ecf2fa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.7rem;
  transition: background var(--transition-fast);
  padding: 0;
}

.variant-5-btn--up {
  border-bottom: 1px solid rgba(148, 163, 184, 0.6);
}

.variant-5-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.variant-6-group {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 130px;
}

.variant-6-spinner {
  display: flex;
}

.variant-6-btn {
  width: 32px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 0;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.7rem;
  transition: all var(--transition-fast);
  padding: 0;
}

.variant-6-spinner--left .variant-6-btn {
  border-right: none;
  border-radius: 5px 0 0 5px;
}

.variant-6-spinner--right .variant-6-btn {
  border-left: none;
  border-radius: 0 5px 5px 0;
}

.variant-6-btn:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.variant-6-input-wrapper {
  position: relative;
  flex: 1;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0.4rem 1.5rem 0.4rem 0.5rem;
}

.variant-6-input {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  background: transparent;
  padding: 0;
  outline: none;
}

.variant-6-input:focus {
  outline: none;
}

.variant-6-symbol {
  position: absolute;
  right: 0.5rem;
  top:0.55rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  pointer-events: none;
  font-weight: 600;
}

/* Preview card */
.preview-card {
  padding: 1.5rem 1.4rem 1.6rem;
}

.preview-card.is-hidden {
  display: none;
}

.preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  text-align: left;
}

.preview-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
  transition: grid-template-columns 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prima generare: fără panoul „Detalii”, evită jumătatea dreaptă goală a grid-ului */
.preview-content-wrapper.is-preview-loading {
  grid-template-columns: 1fr;
}

.preview-image-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-canvas-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f7fb;
  width: 100%;
}

.btn-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}

.btn-overlay:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

#preview-image-container {
  width: 100%;
  position: relative;
}

#preview-image-container.is-loading {
  min-height: min(52vw, 320px);
  border-radius: 12px;
  background: #f5f7fb;
}

#preview-image-container .preview-image-container__preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.25rem;
  min-height: min(48vw, 280px);
  box-sizing: border-box;
}

#preview-image-container .preview-image-container__spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.35);
  border-top-color: var(--color-primary);
  animation: spin 0.8s linear infinite;
}

#preview-image-container .preview-image-container__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 18rem;
  line-height: 1.45;
}

#preview-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.preview-bottom-section {
  margin-top: auto;
}

.preview-code-section {
  padding: 0.75rem 1rem;
  background: rgba(231, 76, 60, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(231, 76, 60, 0.2);
  flex-shrink: 0;
  margin-bottom: 0;
}

.preview-code-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preview-code-content > div {
  flex: 1;
}

.preview-code-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-code-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #df0a25;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.1em;
}

.preview-info-section {
  padding: 1.25rem;
  background: rgba(245, 247, 251, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.preview-info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.preview-colors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
  flex: 0;
}

.preview-color-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  border: none;
}

.preview-color-swatch {
  width: 100px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: none;
}

.preview-color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-color-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.preview-color-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: capitalize;
}

.preview-color-percentage {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.mix-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.2rem;
}

.mix-loader-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mix-loader-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.45);
  border-top-color: var(--color-primary);
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#mix-preview-canvas {
  display: block;
  width: 100%;
  height: auto;
  background: #e5e7eb;
}

.preview-skeleton {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
  justify-content: center;
}

.preview-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  flex-shrink: 0;
  font-style: italic;
}

.preview-form-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.preview-form-header {
  margin-bottom: 1.5rem;
  max-width: 55%;
}

.preview-form-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.preview-form-header p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 1.75rem;
}

/* Contact & order form */
.contact-card {
  background: #fff;
}

form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-row-single {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 2px solid rgba(148, 163, 184, 0.3);
  padding: 0.875rem 1.25rem;
  background: #ffffff;
  outline: none;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
  font-family: inherit;
  line-height: 1.5;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1), 0 4px 12px rgba(231, 76, 60, 0.15);
  background: #fff;
  transform: translateY(-1px);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field-error {
  min-height: 0;
  font-size: 0.78rem;
  color: var(--color-danger);
  margin-top: 0.25rem;
  display: block;
}

.field-error:empty {
  display: none;
}

#mix-form .form-field:has(> .field-error) {
  padding-bottom: 1.15rem;
}

#mix-form .field-error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin-top: 0;
  line-height: 1.3;
  text-wrap: nowrap;
}

.form-field input.field-error-active,
.form-field select.field-error-active,
.form-field textarea.field-error-active {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-field input:focus.field-error-active,
.form-field select:focus.field-error-active,
.form-field textarea:focus.field-error-active {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  z-index: 9999;
  left: -1px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-footer__submit {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex: 1 1 100%;
  justify-content: flex-start;
}

.form-footer__submit .form-status {
  margin-top: 0;
  flex: 1 1 12rem;
  min-width: min(100%, 10rem);
  max-width: 36rem;
}

.form-footer__submit .form-status:empty {
  display: none;
}

.turnstile-mix {
  flex: 1 1 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0.35rem 0 0.15rem;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-status--mix-inline.form-status--error {
  font-size: 0.85rem;
  line-height: 1.35;
}

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

.form-status--error {
  color: var(--color-danger);
  white-space: pre-wrap;
  word-break: break-word;
  font-weight: 600;
}

.form-success-message {
  margin-top: 2rem;
  padding: 2rem;
  background: #e9f0fa;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.form-success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.form-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
}

.form-loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(223, 10, 37, 0.1);
  border-top-color: #df0a25;
  border-radius: 50%;
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.form-loader-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.form-success-content {
  display: none;
}

.form-success-message.loaded .form-loader {
  display: none;
}

.form-success-message.loaded .form-success-content {
  display: block;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #df0a25 0%, #7d0615 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

.form-success-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-success-content > p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-success-code {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #df0a25;
  font-size: 1rem;
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-success-code strong {
  font-size: 1.2rem;
  color: #df0a25;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.75rem 0 1.6rem;
  background: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-websites {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-website-box {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
  min-width: 140px;
}

.footer-website-box:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  transform: translateY(-1px);
}

.footer-website-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}
.mt-0{
  margin-top:0 !important;
}
.footer-website-url {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.65);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
  }

  .site-footer .footer-brand {
    flex: none;
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .site-footer .footer-links {
    margin-left: 0;
    justify-content: left;
    width:100%;
  }
}

.shimmer {
  background: linear-gradient(
    120deg,
    rgba(148, 163, 184, 0.16) 0,
    rgba(148, 163, 184, 0.03) 25%,
    rgba(148, 163, 184, 0.18) 50%,
    rgba(148, 163, 184, 0.03) 75%,
    rgba(148, 163, 184, 0.16) 100%
  );
  background-size: 200% 100%;
  animation: shimmerMove 2s linear infinite;
}

@keyframes shimmerMove {
  0% {
    background-position-x: 200%;
  }
  100% {
    background-position-x: -200%;
  }
}

@media (max-width: 900px) {

  #hero.section.hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: clamp(1.25rem, 3vw, 2.5rem);

    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  #hero .hero-inner {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-height: 0;
    width: min(1120px, 100% - clamp(1.5rem, 5vw, 3rem));
    max-width: 1120px;
    margin-inline: auto;
    box-sizing: border-box;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    align-items: stretch;
    align-content: unset;
  }

  .hero-copy {
    flex-shrink: 0;
  }

  #hero .hero-inner > .hero-visual-wrapper {
    flex: 0 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    margin-top: clamp(0.35rem, 1.5vw, 0.85rem);
    padding-bottom: clamp(0.35rem, 2vw, 1rem);
    overflow-x: clip;
    padding-left: clamp(0.35rem, 2.5vw, 0.85rem);
    padding-right: clamp(0.35rem, 2.5vw, 0.85rem);
    box-sizing: border-box;
  }

  #hero .hero-copy h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.65rem, 2vw + 1.05rem, 2.55rem);
    line-height: 1.22;
  }

  #hero .hero-subtitle {
    line-height: 1.6;
    font-size: clamp(0.98rem, 1.2vw + 0.65rem, 1.12rem);
    margin-bottom: clamp(1.1rem, 3.5vw, 2rem);
  }

  #hero .hero-inner > .hero-actions-cluster {
    margin-top: clamp(0.75rem, 2.5vw, 1.35rem);
    margin-bottom: clamp(1rem, 3vw, 1.75rem);
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 16px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(15, 23, 42, 0.42) 50%,
      rgba(15, 23, 42, 0.55) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
  }

  #hero .hero-inner > .hero-actions-cluster > .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #hero .hero-inner > .hero-actions-cluster > .hero-actions--meta .hero-actions-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0;
    gap: 1rem 1.5rem;
  }

  #hero .hero-inner > .hero-actions-cluster > .hero-actions--cta {
    align-items: stretch;
  }

  #hero .hero-inner > .hero-actions-cluster .btn-primary {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  #hero .scroll-indicator {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 0.65rem));
    transform: translateX(-50%);
    z-index: 25;
  }

  #hero .scroll-indicator:hover {
    transform: translateX(-50%) translateY(-4px);
  }

  #hero .scroll-indicator.scroll-indicator--hidden:hover {
    transform: translateX(-50%);
  }

  .hero-product-container {
    min-height: clamp(260px, 48vw, 380px);
    padding: clamp(1rem, 3vw, 1.5rem);
  }

  .hero-bucket-image {
    max-height: clamp(260px, 42vw, 350px);
  }
  .sticky-nav a.nav-step {
    font-size: 0.75rem;
  }
  .hero h1 {
    width: 100%;
    max-width: 100%;
  }
  .hero-palette-image {
    max-width: min(320px, 38vw);
    top: clamp(-70px, -6vw, -35px);

    right: calc(clamp(-48px, -3vw, -8px) - 10%);
  }
  .preview-form-header {
    max-width: 100%;
  }
  .preview-code-section{
    margin-top:1rem;
  }
  .color-layout {
    gap: 1.75rem;
  }

  .preview-card,
  .mix-panel,
  .contact-card {
    border-radius: 20px;
  }

  #hero .hero-copy h1  {
    max-width:85% !important;
  }
  #hero .hero-copy h1 span{
    display: inline !important;
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(100% - 1.75rem, 720px);
  }
  .main-nav {
    display: none;
  }
  .variant-6-group{
    width:auto;
  }
  .preview-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .preview-title {
    font-size: 1.25rem;
  }

  .preview-info-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .preview-colors-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .preview-color-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
  }

  .preview-color-swatch {
    width: 100%;
    aspect-ratio: 2 / 1;
    height: auto;
    position: relative;
  }

  .preview-color-percentage {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .preview-color-info {
    flex-direction: column;
    gap: 0;
  }

  .preview-color-name {
    font-size: 0.85rem;
    text-align: center;
    margin-top: -10px;
  }
  .preview-bottom-section{
    margin-top:1rem;
  }
  .preview-form-header{
    width:100% !important;
    max-width: 100%;
  }
  .preview-code-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .preview-code-content .btn {
    order: 1;
  }

  .preview-code-content > div {
    order: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
  }

  .section {
    padding: 3.5rem 0 3rem;
  }

  .form-row,
  .form-row-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 1.5rem;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 1.5rem;
    background-attachment: scroll;
    background:
      linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.82) 0%,
        rgba(15, 23, 42, 0.75) 50%,
        rgba(15, 23, 42, 0.68) 100%
      ),
      url('../img/hero-bg-1.webp');
    background-size: cover;
    background-position: center;
  }


  #hero.section.hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 1.5rem;
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  #hero .hero-inner {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-height: 0;
    gap: clamp(0.9rem, 2.2vw, 1.2rem);
    align-items: stretch;
    align-content: unset;
    padding-top: 0;
    padding-bottom: 0;
  }

  #hero .hero-inner > .hero-copy {
    flex-shrink: 0;
  }

  #hero .hero-inner > .hero-visual-wrapper {
    flex: 0 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 1;
    /* margin-top: clamp(0.5rem, 2vw, 1.1rem); */
    margin-top:2rem;
    margin-bottom: 1rem;
    padding-bottom: clamp(0.35rem, 1.5vw, 0.85rem);
  }

  #hero .hero-inner > .hero-actions-cluster {
    padding: 1.05rem 1.1rem 1.1rem;
  }

  .hero-colors-preview {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .hero-colors-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-color-item {
    width: 70px;
    height: 70px;
    margin-left: -20px;
  }

  .hero-color-item:first-child {
    margin-left: 0;
  }

  .hero-bucket-image {
    max-height: 130px;
  }

  .hero-palette-image {
    max-width: 220px;
    top: -28px;
    right: calc(-32px - 10%);
    bottom: auto;
  }

  .scroll-indicator {
    bottom: clamp(1.75rem, 4vw, 2.25rem);
  }

  .hero-logo-mosaik img {
    max-width: 150px;
  }
  .hero-logos {
    margin-bottom: 0.5rem;
  }
  .hero-logos-right {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  #hero .hero-copy h1 {
    font-size: clamp(1.3rem, 1.2rem + 1.0vw, 3rem);
    margin-bottom: 0.95rem;
    margin-top: 1.35rem;
    line-height: 1.28;
  }


  #hero .hero-copy h1 .hero-line-wrapper--flow .hero-line {
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width:80%;
  }
  #hero .hero-subtitle {
    margin: 0 0 0.35rem 0;
    line-height: 1.62;
    font-size: 0.95rem;
  }
  .hero-inner > .hero-actions-cluster .btn-primary {
    width: auto;
    max-width: 100%;
  }

  .eyebrow {
    width: auto;
    letter-spacing: 0;
    margin-top: 7px;
    margin-bottom: 0;
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
  }


  .hero-product-container {
    min-height: min(220px, 42vw);
    padding: 0.65rem 0.5rem 0.35rem;
  }

  .hero-visual-wrapper {
    gap: 0.75rem;
  }
  .sticky-header-logos{
    width:100%;
  }


  .mix-panel {
    padding: 1rem;
  }

  .mix-list {
    gap: 0.9rem;
  }

  .mix-item {
    display: grid;

    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr) auto;
    grid-template-areas:
      'mix-mob-id mix-mob-id mix-mob-pct mix-mob-rm'
      'mix-mob-dn mix-mob-sl mix-mob-sl mix-mob-pl';
    align-items: center;
    column-gap: 0.35rem;
    row-gap: 6px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 0;
    position: relative;
  }

  .mix-item__color-section {
    grid-area: mix-mob-id;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
  }

  .mix-item__info {
    display: contents;
  }

  .mix-item .mix-slider {
    grid-area: mix-mob-sl;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 26px;
  }

  .mix-item__pct-readout {
    display: block;
    grid-area: mix-mob-pct;
    justify-self: end;
    align-self: center;
    margin: 0;
    padding: 0 0.2rem 0 0;
    font-size: 14px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--color-text);
    line-height: 1.1;
  }

  .mix-item__controls {
    display: contents;
  }

  .mix-item .variant-6-group {
    display: contents;
  }

  .mix-item .variant-6-spinner--left {
    grid-area: mix-mob-dn;
  }


  .mix-item .variant-6-input-wrapper {
    position: relative;
    grid-area: mix-mob-sl;
    justify-self: center;
    align-self: center;
    width: 1px;
    height: 1px;
    min-width: 0;
    min-height: 0;
    max-height: 1px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border: none;
    z-index: 0;
  }

  .mix-item .variant-6-spinner--right {
    grid-area: mix-mob-pl;
  }

  .mix-bar{
    width:100%;
  }

  .mix-item__name {
    position: static;
    text-align: left;
    background: transparent;
    padding: 0;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }


  .mix-item__swatch {
    overflow: hidden;
    width: 40px;
    height: 28px;
    flex-shrink: 0;
    margin-left: -10px;
    border-radius: 0 6px 6px 0;
  }

  .mix-item__swatch img {
    margin: 0;
    display: block;
    width: 102.857%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
  .mix-item .variant-6-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    min-width: 0;
    min-height: 0;
  }

  .mix-item .variant-6-symbol {
    display: none;
  }

  .mix-item .mix-remove {
    grid-area: mix-mob-rm;
    justify-self: end;
    align-self: center;
    min-width: 26px;
    min-height: 26px;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 6px;
    font-size: 0.75rem;
  }

  .mix-item .mix-remove:hover {
    background: rgba(239, 68, 68, 0.2);
  }


  .mix-item .mix-slider input[type='range'] {
    width: 100%;
    height: 19px;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    align-self: center;
  }

  .mix-item .mix-slider input[type='range']::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.35);
  }

  .mix-item .mix-slider input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 19px;
    height: 19px;
    margin-top: -7px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.22);
    box-sizing: border-box;
    cursor: pointer;
  }

  .mix-item .mix-slider input[type='range']::-moz-range-track {
    height: 5px;
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    border: none;
  }

  .mix-item .mix-slider input[type='range']::-moz-range-thumb {
    width: 19px;
    height: 19px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.22);
    cursor: pointer;
  }

  .variant-6-group {
    width: auto;
    gap: 0;
  }

  .variant-6-btn {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .mix-item .variant-6-spinner--left .variant-6-btn,
  .mix-item .variant-6-spinner--right .variant-6-btn {
    min-width: 26px;
    min-height: 26px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.65);
    background: #f5f7fb;
    font-size: 0.65rem;
  }

  .mix-item .variant-6-spinner--left .variant-6-btn:hover,
  .mix-item .variant-6-spinner--right .variant-6-btn:hover {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
  }

  .variant-6-spinner--left .variant-6-btn {
    border-radius: 6px 0 0 6px;
    border-right: none;
  }

  .variant-6-spinner--right .variant-6-btn {
    border-radius: 0 6px 6px 0;
    border-left: none;
  }


  .mix-footer__top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mix-footer__left {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .mix-footer__right {
    width: 100%;
  }

  .mix-footer__buttons {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0.5rem 0.65rem;
    align-items: stretch;
  }

  .mix-footer__buttons .btn {
    width: 100%;
    min-height: 3rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    box-sizing: border-box;
  }
  .color-popup__content{
    padding:0.5rem !important;
  }
  .color-popup__header{
    margin-bottom: 0.2rem !important;
  }
  .color-popup__title{
    font-size: 1.2rem !important;
    line-height: 2.4rem;
  }
}

@media (max-width: 599px) {
  #hero .hero-logos {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
  }

  #hero .hero-copy h1 .hero-line-wrapper--flow .hero-line {
    max-width:95%;
  }
  #hero .hero-copy h1{
    max-width: 95% !important;
  }

  #hero .hero-logos-right {
    align-items: flex-start;
    margin-left: 0;
  }

  .hero-logo-baumit img {
    height: 50px;
  }

  .hero-logo-mosaik img {
    max-width: 220px;
  }

  #hero .hero-logos .eyebrow {
    text-align: left;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    margin-bottom: 0;
  }

  #hero .hero-inner > .hero-actions-cluster {
    gap: 0.85rem;
  }

  #hero .hero-inner > .hero-actions-cluster .btn-primary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  #hero .hero-inner > .hero-actions-cluster .hero-actions-left {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  #hero .hero-actions-left {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.4rem 0.55rem;
    width: 100%;
    max-width: 100%;
  }


  #hero .hero-actions-left .hero-meta-item {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  #hero .hero-actions .hero-meta-item {
    text-align: center;
    align-items: center;
    align-self: stretch;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    box-sizing: border-box;
  }

  #hero .hero-actions .hero-meta-item strong {
    font-size: clamp(0.8125rem, 3.4vw, 1rem);
    line-height: 1.15;
  }

  #hero .hero-actions .hero-meta-item .unit {
    font-size: clamp(0.5625rem, 2.1vw, 0.6875rem);
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
}

@media (max-width: 900px) and (min-width: 600px) {

  #hero .hero-logos {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  #hero .hero-logos-right {
    align-items: flex-start;
    margin-left: 0;
  }

  #hero .hero-logos .eyebrow {
    text-align: left;
    letter-spacing: 0.08em;
  }

  #hero .hero-visual-wrapper {
    overflow-x: clip;
    padding-left: clamp(0.35rem, 2.5vw, 1rem);
    padding-right: clamp(0.35rem, 2.5vw, 1rem);
  }

  #hero .hero-product-container {
    min-height: clamp(240px, 40vw, 360px);
    padding: clamp(0.85rem, 2.5vw, 1.35rem);
  }

  #hero .hero-bucket-image {
    max-height: clamp(220px, 42vw, 320px);
  }

  #hero .hero-palette-image {
    max-width: min(280px, 34vw);
    top: clamp(-55px, -6vw, -28px);
    right: calc(clamp(-36px, -3vw, -6px) - 10%);
  }

  #hero .hero-copy h1 {
    max-width: min(20em, 100%);
    font-size: clamp(1.55rem, 3.8vw + 0.5rem, 2.35rem);
    margin-top: clamp(0.85rem, 2vw, 1.35rem);
    margin-bottom: 0.75rem;
    line-height: 1.22;
  }

  #hero .hero-subtitle {
    max-width: min(38rem, 100%);
    font-size: clamp(1.2rem, 1.5vw + 0.35rem, 1.05rem);
    line-height: 1.58;
    margin-bottom: clamp(1rem, 3vw, 1.75rem);
  }

  #hero .hero-actions-left {
    gap: clamp(1rem, 3vw, 1.75rem);
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
  }

  #hero .hero-meta-item strong {
    font-size: clamp(17px, 2.2vw + 0.5rem, 21px);
  }
}

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

  .hero-colors-preview {
    padding: 0.75rem 0.9rem;
  }

  .hero-color-item {
    width: 60px;
    height: 60px;
    margin-left: -15px;
  }

  .hero-color-item:first-child {
    margin-left: 0;
  }

  .hero-colors-arrow {
    width: 32px;
    height: 32px;
  }

  #hero .hero-product-container {
    min-height: min(200px, 50vw);
    padding: 0.55rem 0.45rem 0.3rem;
  }

  #hero .hero-palette-image {
    max-width: 130px;
    top: -22px;
    right: -50px;
    bottom: auto;
  }

  .scroll-indicator {
    bottom: 1rem;
    width: 28px;
    height: 46px;
  }

  #hero .hero-inner > .hero-actions-cluster {
    padding: 0.95rem 0.85rem 1rem;
  }

  .hero-inner > .hero-actions-cluster .btn-primary {
    padding: 0.65rem 0;
    font-size: 0.95rem;
  }

  .hero-meta-item strong {
    display: block;
    line-height: 1.2;
  }

  .hero-meta-item .unit {
    display: block;
    margin-top: 0;
    line-height: 1.35;
  }

  .hero-colors-preview {
    width: 100%;
  }

  .hero-badge {
    top: calc(0.75rem - 30px);
    left: calc(0.75rem - 30px);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .hero-badge span {
    display: none;
  }

  .mix-footer__buttons {
    grid-template-columns: 55% 45%;
    gap: 0.45rem 0.55rem;
  }

  .mix-footer__buttons .btn {
    min-height: 3rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}

/* Color image popup */
.color-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.color-popup[aria-hidden='false'] {
  display: flex;
}

.color-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.color-popup__content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.color-popup__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.color-popup__title {
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  text-transform: capitalize;
}

.color-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.color-popup__close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.color-popup__close .mt-icon svg {
  width: 20px;
  height: 20px;
}

.color-popup__image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f7fb;
  width: 100%;
  padding-top: 20%;
  padding-bottom: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-popup__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.color-popup__logo-bottom-left {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}

.color-popup__baumit-logo {
  height: 40px;
  width: auto;
  display: block;
}

.color-popup__logo-bottom-right {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.color-popup__mosaik-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

.hero:not(.hero--maintenance) .hero-logos,
.hero:not(.hero--maintenance) .hero-copy h1,
.hero:not(.hero--maintenance) .hero-copy .hero-subtitle {
  opacity: 0;
}

#hero:not(.hero--maintenance) .hero-inner > .hero-actions-cluster {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.hero-line-wrapper {
  overflow: hidden;
  display: block;
  opacity: 1;
}

.hero-line-wrapper .hero-line {
  display: block;
  clip-path: inset(100% 0 0 0);
  opacity: 1;
}

.hero-line-wrapper--flow .hero-line {
  white-space: normal;
}

/* Hero motion & reveal */
@keyframes clipRevealLeft {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to { clip-path: inset(0 0% 0 0); opacity: 1; }
}

@keyframes clipRevealBottom {
  from { clip-path: inset(100% 0 0 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes heroGlassBarReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-animated .hero-logos {
  animation: clipRevealLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-animated .hero-copy h1 {
  animation: fadeIn 0.01s linear 0.35s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-animated .hero-line-wrapper:nth-child(1) .hero-line {
  animation: clipRevealBottom 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-animated .hero-line-wrapper:nth-child(2) .hero-line {
  animation: clipRevealBottom 1s cubic-bezier(0.16, 1, 0.3, 1) 0.47s forwards;
}

.hero-animated .hero-line-wrapper:nth-child(3) .hero-line {
  animation: clipRevealBottom 1s cubic-bezier(0.16, 1, 0.3, 1) 0.59s forwards;
}

.hero-animated .hero-subtitle {
  animation: clipRevealBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.hero-animated .hero-inner > .hero-actions-cluster {
  animation: heroGlassBarReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.65s forwards;
}

@media (max-width: 768px) {
  .hero-animated .hero-inner > .hero-actions-cluster {
    animation: heroGlassBarReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
  }
}

.hero-visual-wrapper {
  perspective: 1200px;
}

.hero-product-container {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-palette-image {
  will-change: transform;
}

.hero-product-container::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero-bucket-image {
  will-change: transform, filter;
  transform-origin: center center;
}

@media (max-width: 768px) {

  .hero-visual-wrapper {
    perspective: none;
  }


  .hero-product-container {
    transition: transform 0.3s ease-out;
  }
}
