:root {
  --transition: 320ms cubic-bezier(.2, .7, .2, 1);
  --dark-text: #f5f3ef;
  --light-text: #111111;
  --dark-border: rgba(255, 255, 255, 0.78);
  --light-border: rgba(17, 17, 17, 0.52);
  --title-duration: 2.35s;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
}
img { display: block; max-width: 100%; }

.products {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}


.product-panel {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 20% 1fr 18%;
  align-items: center;
  justify-items: center;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
}


/* CSS-rendered backgrounds for perfect center symmetry while matching the reference look closely. */
.product-panel--dark {
  color: var(--dark-text);
}
.product-panel--dark::before {
  background-image:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 10%, rgba(255,255,255,0.03) 18%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 10%, rgba(0,0,0,0) 20%),
    repeating-linear-gradient(to left,
      rgba(255,255,255,0) 0 10.8px,
      rgba(255,255,255,0.115) 10.8px 12.7px,
      rgba(255,255,255,0) 12.7px 24px),
    linear-gradient(180deg, #3a3a3a 0%, #2b2d30 17%, #1a1d20 52%, #0a0b0d 100%);
  background-position: center, center, right top, center;
}

.product-panel--light {
  color: var(--light-text);
}
.product-panel--light::before {
  background-image:
    radial-gradient(circle at 50% 28%, rgba(0,0,0,0.055) 0%, rgba(0,0,0,0.03) 12%, rgba(0,0,0,0.012) 20%, rgba(0,0,0,0) 45%),
    repeating-linear-gradient(to right,
      rgba(0,0,0,0) 0 10.8px,
      rgba(0,0,0,0.078) 10.8px 12.7px,
      rgba(0,0,0,0) 12.7px 24px),
    linear-gradient(180deg, #f8f6f2 0%, #f4f1ed 35%, #efebe6 100%);
  background-position: center, left top, center;
}

.product-header {
  align-self: end;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1rem 0.8rem;
}

.title-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  will-change: transform, opacity;
  animation: titleDropIn var(--title-duration) 0.18s cubic-bezier(.18,.76,.2,1) both;
}

.title-lockup--4kb {
  animation-delay: 0.32s;
}

.product-title {
  margin: 0;
  font-size: clamp(1.98rem, 2.34vw, 3.195rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.title-line {
  display: block;
  width: calc(100% + 24px);
  height: 1.5px;
  margin-top: 0.38rem;
}
.product-panel--dark .title-line { background: rgba(255,255,255,0.38); }
.product-panel--light .title-line { background: rgba(0,0,0,0.24); }

@keyframes titleDropIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -74px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.machine-stage {
  align-self: center;
  width: min(88%, 720px);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0 0.3rem;
}

.machine-group {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2.4rem, 3.6vw, 3.6rem);
  transition: transform var(--transition);
  transform-origin: center center;
  outline: none;
}

.machine-group::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) scale(0.88);
  width: 108%;
  height: 88%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(42px);
  transition: opacity var(--transition), transform var(--transition), filter var(--transition);
  pointer-events: none;
  z-index: 0;
}

.product-panel--dark .machine-group::before {
  background: radial-gradient(circle, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.22) 38%, rgba(255,255,255,0) 72%);
}
.product-panel--light .machine-group::before {
  width: 126%;
  height: 102%;
  background: radial-gradient(circle, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.34) 34%, rgba(0,0,0,0.14) 56%, rgba(0,0,0,0) 78%);
}

.machine-group:hover,
.machine-group:focus-visible,
.machine-group:focus {
  transform: scale(1.05);
}

.machine-group:hover::before,
.machine-group:focus-visible::before,
.machine-group:focus::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.03);
}
.product-panel--light .machine-group:hover::before,
.product-panel--light .machine-group:focus-visible::before,
.product-panel--light .machine-group:focus::before {
  filter: blur(58px);
}

.machine-card {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.machine-image {
  width: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.machine-stage--3kb .machine-image--front,
.machine-stage--4kb .machine-image--front {
  height: clamp(279px, 26.1vw, 421px);
}

.machine-stage--3kb .machine-image--open,
.machine-stage--4kb .machine-image--open {
  height: clamp(299px, 27.9vw, 450px);
}

.catalog-links {
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 0.4rem 1.25rem 2rem;
}

.catalog-button {
  min-width: clamp(180px, 12.5vw, 230px);
  min-height: 47px;
  padding: 0.81rem 1.035rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.684rem, 0.765vw, 0.828rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.product-panel--dark .catalog-button {
  color: #fff;
  border: 1px solid var(--dark-border);
  background: #101113;
}
.product-panel--dark .catalog-button:hover,
.product-panel--dark .catalog-button:focus-visible {
  color: #111;
  background: #f4f1ea;
  border-color: #f4f1ea;
}
.product-panel--light .catalog-button {
  color: #171717;
  border: 1px solid var(--light-border);
  background: #f4f1ed;
}
.product-panel--light .catalog-button:hover,
.product-panel--light .catalog-button:focus-visible {
  color: #fff;
  background: #171717;
  border-color: #171717;
}
.catalog-button:hover { transform: translateY(-2px); }
.catalog-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.catalog-button--disabled,
.catalog-button--disabled:hover,
.catalog-button--disabled:focus-visible {
  opacity: .55;
  cursor: default;
  transform: none;
  pointer-events: none;
}

.product-panel--dark .catalog-button--disabled,
.product-panel--dark .catalog-button--disabled:hover,
.product-panel--dark .catalog-button--disabled:focus-visible {
  color: #fff;
  border-color: var(--dark-border);
  background: #101113;
}

.product-panel--light .catalog-button--disabled,
.product-panel--light .catalog-button--disabled:hover,
.product-panel--light .catalog-button--disabled:focus-visible {
  color: #171717;
  border-color: var(--light-border);
  background: #f4f1ed;
}

/* Subtle country-of-origin signature. Text only, shown briefly and then faded out. */
.origin-signature {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.78);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0,-8px,0);
  animation: originMessage 5.9s 0.8s cubic-bezier(.2,.7,.2,1) forwards;
}

.origin-copy {
  display: inline-block;
  line-height: 1.1;
  letter-spacing: .16em;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.origin-copy--single {
  opacity: .95;
}

@keyframes originMessage {
  0% {
    opacity: 0;
    transform: translate3d(0,-8px,0);
  }
  12% {
    opacity: .88;
    transform: translate3d(0,0,0);
  }
  65% {
    opacity: .88;
    transform: translate3d(0,0,0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0,0,0);
  }
}

/* Small static corner symbols as a subtle design signature. */
.corner-symbol {
  position: absolute;
  z-index: 25;
  pointer-events: none;
  opacity: .72;
}

.corner-symbol--crescent {
  left: 16px;
  bottom: 16px;
  width: 24px;
  height: 24px;
  background: url("assets/crescent-mark.png") center / contain no-repeat;
}

.corner-symbol--star {
  right: 18px;
  bottom: 18px;
  width: 9px;
  height: 9px;
  background: url("assets/star-mark.png") center / contain no-repeat;
}

@media (max-width: 1150px) and (min-width: 769px) {
  .product-panel { grid-template-rows: 18% 1fr 18%; }
  .machine-stage { width: 92%; }
  .machine-group { gap: 2rem; }
  .catalog-links { gap: 0.8rem; }
  .catalog-button { min-width: 0; width: 45%; }
}

@media (max-width: 768px) {
  .products { display: block; }

  /* On mobile each product becomes a full-width scene. The stripe tile is
     centered so the vertical rhythm stays perfectly symmetrical. */
  .product-panel--dark::before {
    background-image:
      radial-gradient(circle at 50% 28%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 10%, rgba(255,255,255,0.03) 18%, rgba(255,255,255,0) 44%),
      linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 10%, rgba(0,0,0,0) 20%),
      linear-gradient(to right,
        transparent 0 11.05px,
        rgba(255,255,255,0.115) 11.05px 12.95px,
        transparent 12.95px 24px),
      linear-gradient(180deg, #3a3a3a 0%, #2b2d30 17%, #1a1d20 52%, #0a0b0d 100%);
    background-size: 100% 100%, 100% 100%, 24px 100%, 100% 100%;
    background-position: center, center, center top, center;
    background-repeat: no-repeat, no-repeat, repeat-x, no-repeat;
  }

  .product-panel--light::before {
    background-image:
      radial-gradient(circle at 50% 28%, rgba(0,0,0,0.055) 0%, rgba(0,0,0,0.03) 12%, rgba(0,0,0,0.012) 20%, rgba(0,0,0,0) 45%),
      linear-gradient(to right,
        transparent 0 11.05px,
        rgba(0,0,0,0.078) 11.05px 12.95px,
        transparent 12.95px 24px),
      linear-gradient(180deg, #f8f6f2 0%, #f4f1ed 35%, #efebe6 100%);
    background-size: 100% 100%, 24px 100%, 100% 100%;
    background-position: center, center top, center;
    background-repeat: no-repeat, repeat-x, no-repeat;
  }

  .product-panel {
    min-height: max(780px, 100svh);
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 4.25rem 0 2.35rem;
  }

  .product-header {
    align-self: auto;
    padding: 0 1rem 0.4rem;
  }

  .product-title {
    font-size: clamp(2rem, 8.8vw, 3rem);
  }

  .title-line {
    margin-top: 0.34rem;
    width: calc(100% + 18px);
  }

  .machine-stage {
    width: 100%;
    min-height: 470px;
    padding: 1.15rem 0.45rem 0.8rem;
    overflow: visible;
  }

  /* Use the available phone width instead of shrinking both product images
     with viewport-height rules. This keeps the machines prominent even on
     320–430 px screens. */
  .machine-group {
    width: min(94vw, 590px);
    display: grid;
    align-items: end;
    justify-content: center;
    gap: clamp(10px, 3vw, 18px);
  }

  .machine-stage--3kb .machine-group {
    grid-template-columns: minmax(0, .68fr) minmax(0, 1.12fr);
  }

  .machine-stage--4kb .machine-group {
    width: min(90vw, 550px);
    grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
    gap: clamp(16px, 4vw, 24px);
  }

  .machine-card {
    width: 100%;
    min-width: 0;
  }

  .machine-stage--3kb .machine-image--front,
  .machine-stage--3kb .machine-image--open,
  .machine-stage--4kb .machine-image--front,
  .machine-stage--4kb .machine-image--open {
    width: 100%;
    height: auto;
    max-height: 415px;
    object-fit: contain;
    object-position: center bottom;
  }

  .catalog-links {
    flex-wrap: wrap;
    gap: 0.765rem;
    padding: 0.15rem 1rem 0;
  }

  .catalog-button {
    flex: 0 1 280px;
    width: min(82vw, 280px);
    max-width: 280px;
    min-height: 46px;
    font-size: 0.72rem;
  }

  .origin-signature {
    left: 14px;
    top: 14px;
  }

  .origin-copy {
    font-size: 7px;
    letter-spacing: .12em;
  }

  .corner-symbol--crescent {
    left: 12px;
    bottom: 12px;
    width: 21px;
    height: 21px;
    opacity: .62;
  }

  .corner-symbol--star {
    right: 14px;
    bottom: 14px;
    width: 8px;
    height: 8px;
    opacity: .62;
  }
}

@media (max-width: 430px) {
  .product-panel {
    min-height: max(760px, 100svh);
    padding-top: 4rem;
  }

  .machine-stage {
    min-height: 430px;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .machine-group {
    width: min(94vw, 405px);
    gap: clamp(9px, 2.8vw, 13px);
  }

  .machine-stage--4kb .machine-group {
    width: min(88vw, 378px);
    gap: clamp(14px, 4vw, 18px);
  }

  .machine-stage--3kb .machine-image--front,
  .machine-stage--3kb .machine-image--open,
  .machine-stage--4kb .machine-image--front,
  .machine-stage--4kb .machine-image--open {
    max-height: 390px;
  }

  .catalog-links {
    flex-direction: column;
  }

  .catalog-button {
    width: min(84vw, 290px);
    flex: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .machine-group,
  .machine-group::before,
  .catalog-button { transition: none; }
  .title-lockup { animation: none; }
  .origin-signature { animation: none; opacity: 0; transform: none; }
}


/* WhatsApp quote widget */
.quote-widget {
  position: fixed;
  right: 22px;
  bottom: 62px;
  z-index: 20000;
  font-family: Arial, Helvetica, sans-serif;
}

.quote-trigger {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 12px 34px rgba(0,0,0,.26);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.quote-trigger:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
  border-color: rgba(255,255,255,1);
}

.quote-trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.quote-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.quote-popover {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(390px, calc(100vw - 28px));
  padding: 20px;
  color: #151515;
  background: rgba(250,248,244,.992);
  border: 1px solid rgba(17,17,17,.14);
  box-shadow: 0 22px 64px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.quote-popover[hidden] { display: none; }

.quote-popover__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}

.quote-popover__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.quote-brand-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(37,211,102,.2);
}

.quote-kicker {
  display: block;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #209f4f;
}

.quote-popover h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: .015em;
}

.quote-intro {
  margin: 0 40px 16px 0;
  color: rgba(21,21,21,.66);
  font-size: 11px;
  line-height: 1.45;
}

.quote-close {
  width: 34px;
  height: 34px;
  margin-top: -4px;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: #242424;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.quote-close:hover { color: #25a955; }

.quote-form {
  display: grid;
  gap: 11px;
}

.quote-form__grid {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.quote-form__grid--two {
  grid-template-columns: minmax(0, 1.55fr) minmax(94px, .75fr);
}

.quote-form__grid--two:nth-of-type(2) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.quote-form label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .045em;
}

.quote-form label > span em {
  color: rgba(17,17,17,.52);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 10px 11px;
  border: 1px solid rgba(17,17,17,.19);
  border-radius: 0;
  color: #171717;
  background: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.quote-form textarea {
  min-height: 68px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(17,17,17,.38);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 0;
  border-color: #25a955;
  box-shadow: 0 0 0 2px rgba(37,211,102,.13);
  background: #fff;
}

.quote-error {
  min-height: 14px;
  margin: -1px 0 0;
  color: #9e1f1f;
  font-size: 10px;
  line-height: 1.3;
}

.quote-submit {
  min-height: 48px;
  border: 1px solid #1eaa52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  background: #25D366;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.quote-submit img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.quote-submit:hover {
  background: #20c45d;
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(37,211,102,.18);
}

.quote-footnote {
  margin: -1px 0 0;
  color: rgba(17,17,17,.48);
  font-size: 9px;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .quote-widget {
    right: 14px;
    bottom: 54px;
  }

  .quote-trigger {
    width: 56px;
    height: 56px;
  }

  .quote-trigger img {
    width: 100%;
    height: 100%;
  }

  .quote-popover {
    right: 0;
    bottom: 61px;
    width: min(370px, calc(100vw - 28px));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px;
  }

  .quote-intro { margin-right: 22px; }
}

@media (max-width: 430px) {
  .quote-form__grid--two,
  .quote-form__grid--two:nth-of-type(2) {
    grid-template-columns: 1fr;
  }

  .quote-popover {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 94px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-trigger,
  .quote-submit,
  .quote-form input,
  .quote-form select,
  .quote-form textarea { transition: none; }
}

/* Temporary catalog availability notice */
.catalog-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  max-width: min(420px, calc(100vw - 32px));
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,15,16,.95);
  color: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: .035em;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quote-brand-icon,
.quote-trigger img,
.quote-submit img {
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .catalog-toast { transition: none; }
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 110;
  width: min(720px, calc(100vw - 28px));
  padding: 18px 18px 16px;
  border: 1px solid rgba(17,17,17,.14);
  background: rgba(250,248,244,.98);
  color: #171717;
  box-shadow: 0 18px 60px rgba(0,0,0,.26);
  backdrop-filter: blur(12px);
  transform: translate(-50%, 0);
}

.cookie-banner[hidden],
.cookie-modal[hidden],
.cookie-overlay[hidden] {
  display: none;
}

.cookie-banner__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: .015em;
}

.cookie-banner__text,
.cookie-modal__intro,
.cookie-option__copy,
.cookie-note {
  margin: 0;
  color: rgba(23,23,23,.72);
  font-size: 12px;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-btn {
  min-height: 42px;
  padding: 11px 15px;
  border: 1px solid rgba(17,17,17,.22);
  background: #fff;
  color: #171717;
  font: 700 11px/1 Arial, Helvetica, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.cookie-btn--ghost {
  background: transparent;
}

.cookie-btn--primary {
  border-color: #1eaa52;
  background: #25D366;
  color: #fff;
}

.cookie-btn--primary:hover,
.cookie-btn--primary:focus-visible {
  background: #20c45d;
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #171717;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 111;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(2px);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 112;
  width: min(520px, calc(100vw - 28px));
  padding: 20px;
  border: 1px solid rgba(17,17,17,.14);
  background: rgba(250,248,244,.992);
  color: #171717;
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  transform: translate(-50%, -50%);
}

.cookie-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.cookie-modal__title {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: .01em;
}

.cookie-close {
  width: 34px;
  height: 34px;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: #242424;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.78);
}

.cookie-option__title {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

.cookie-switch {
  position: relative;
  width: 54px;
  height: 30px;
  display: inline-flex;
  align-items: center;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.cookie-switch__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(17,17,17,.18);
  transition: background-color 180ms ease;
}

.cookie-switch__thumb {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transition: transform 180ms ease;
}

.cookie-switch input:checked + .cookie-switch__track {
  background: rgba(37,211,102,.86);
}

.cookie-switch input:checked + .cookie-switch__track + .cookie-switch__thumb {
  transform: translateX(24px);
}

.cookie-switch--locked .cookie-switch__track {
  background: rgba(17,17,17,.28);
}

.cookie-switch--locked .cookie-switch__thumb {
  transform: translateX(24px);
  background: #fff;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-note {
  margin-top: 12px;
  font-size: 11px;
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100vw - 24px);
    bottom: 14px;
    padding: 16px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal {
    width: calc(100vw - 24px);
    padding: 18px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-btn,
  .cookie-switch__track,
  .cookie-switch__thumb {
    transition: none;
  }
}


/* =========================================================
   RESPONSIVE PRODUCT LAYOUT — 2026-09
   Content-driven vertical rhythm. Machine size follows viewport WIDTH,
   not viewport height, while preserving front/open relative scale.
   ========================================================= */
@media (max-width: 900px) {
  .products {
    display: block;
    min-height: 0;
  }

  /* Identical, center-anchored 24px stripe rhythm on both mobile panels. */
  .product-panel--dark::before {
    background-image:
      radial-gradient(circle at 50% 28%, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 10%, rgba(255,255,255,.03) 18%, rgba(255,255,255,0) 44%),
      linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 10%, rgba(0,0,0,0) 20%),
      repeating-linear-gradient(to right,
        transparent 0 11.05px,
        rgba(255,255,255,.115) 11.05px 12.95px,
        transparent 12.95px 24px),
      linear-gradient(180deg, #3a3a3a 0%, #2b2d30 17%, #1a1d20 52%, #0a0b0d 100%);
    background-position: center, center, center top, center;
    background-size: 100% 100%, 100% 100%, 24px 100%, 100% 100%;
    background-repeat: no-repeat, no-repeat, repeat-x, no-repeat;
  }

  .product-panel--light::before {
    background-image:
      radial-gradient(circle at 50% 28%, rgba(0,0,0,.055) 0%, rgba(0,0,0,.03) 12%, rgba(0,0,0,.012) 20%, rgba(0,0,0,0) 45%),
      repeating-linear-gradient(to right,
        transparent 0 11.05px,
        rgba(0,0,0,.078) 11.05px 12.95px,
        transparent 12.95px 24px),
      linear-gradient(180deg, #f8f6f2 0%, #f4f1ed 35%, #efebe6 100%);
    background-position: center, center top, center;
    background-size: 100% 100%, 24px 100%, 100% 100%;
    background-repeat: no-repeat, repeat-x, no-repeat;
  }

  .product-panel {
    height: auto;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    justify-items: center;
    row-gap: clamp(10px, 2.8vw, 18px);
    padding: 28px 0 calc(36px + 5vw);
  }

  /* Mobile panel height follows machine scale, not viewport height.
     The extra vertical allowance keeps each striped background about 5% longer
     than the previous mobile composition after the machines are reduced. */
  .product-panel--dark {
    --mobile-open-h: min(79vw, 430px);
    min-height: calc(var(--mobile-open-h) + 330px);
  }

  .product-panel--light {
    --mobile-open-h: min(68vw, 415px);
    min-height: calc(var(--mobile-open-h) + 285px);
  }

  /* Header occupies ~80px. Title starts directly beneath it. */
  .product-panel:first-of-type {
    padding-top: 94px;
  }

  .product-header {
    align-self: auto;
    padding: 0 12px;
  }

  .product-title {
    font-size: clamp(1.95rem, 8.4vw, 2.8rem);
  }

  .title-line {
    width: calc(100% + 18px);
    margin-top: .32rem;
  }

  .machine-stage {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 0 2px;
    overflow: visible;
  }

  .machine-group {
    width: 80vw;
    max-width: 80vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2vw;
  }

  .machine-card {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }

  /* Desktop front/open relative scale is preserved. */
  .machine-stage--3kb .machine-image--open,
  .machine-stage--4kb .machine-image--open {
    width: auto;
    height: var(--mobile-open-h);
    max-height: none;
    object-fit: contain;
  }

  .machine-stage--3kb .machine-image--front,
  .machine-stage--4kb .machine-image--front {
    width: auto;
    height: calc(var(--mobile-open-h) * .936);
    max-height: none;
    object-fit: contain;
  }

  /* 4KB remains fully separated on mobile. */
  .machine-stage--4kb .machine-card--open {
    margin-left: 0;
  }

  .catalog-links {
    align-self: auto;
    width: 100%;
    padding: 0 12px;
    margin: 0;
  }

  .catalog-button {
    width: min(82vw, 290px);
    max-width: 290px;
    min-height: 46px;
    flex: none;
    font-size: .72rem;
  }

  .origin-signature {
    top: 82px;
    left: 14px;
  }

  .corner-symbol--crescent { bottom: 10px; }
  .corner-symbol--star { bottom: 12px; }
}

@media (max-width: 430px) {
  .product-panel {
    padding: 24px 0 calc(32px + 5vw);
    row-gap: 8px;
  }

  .product-panel:first-of-type {
    padding-top: 92px;
  }

  /* At phone widths this keeps the striped panel approximately 5% longer
     than the previous composition while its height still follows machine size. */
  .product-panel--dark {
    min-height: calc(var(--mobile-open-h) + 242px + 25vw);
  }

  .product-panel--light {
    min-height: calc(var(--mobile-open-h) + 170px + 32vw);
  }

  .machine-stage--4kb .machine-card--open {
    margin-left: 0;
  }

  .catalog-links { flex-direction: column; }
}

@media (max-width: 360px) {
  .product-title { font-size: 1.85rem; }
}


/* Footer — copied from the existing Gites homepage implementation. */
.site-footer {
  width: 100%;
  background-color: #202020;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-logo img {
  width: 140px;
  margin: 0 auto 30px;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 0 20px;
  padding: 0;
}

.footer-nav li {
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-nav li:hover { opacity: 0.7; }

.footer-nav a {
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  transition: none;
}

.footer-nav a:hover {
  color: inherit;
  text-decoration: none;
}

.site-footer .copyright {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

/* Exact mobile footer rules used by /GitesMobil. */
@media (max-width: 768px) {
  .site-footer {
    padding: 24px 16px 40px;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
  }

  .site-footer .footer-logo img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    transform: translateY(-1px);
  }

  .site-footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    justify-items: center;
    gap: 20px 22px;
    list-style: none;
    padding: 0;
    margin: 60px auto 60px;
    max-width: 90vw;
  }

  .site-footer .copyright {
    margin-top: 10px;
    padding-top: 2px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    color: #bdbdbd;
  }
}

@media (max-width: 380px) {
  .site-footer .footer-nav {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

/* =========================================================
   PRODUCT VERTICAL ALIGNMENT — 2026-09-01
   Header geometry is intentionally untouched.
   Desktop: extend the product scene slightly and move the title/machines/CTA
   lower as one composition.
   Mobile: preserve machine scale, center the machine stage vertically inside
   each panel, and add only a small extra gap below the global header.
   ========================================================= */
@media (min-width: 901px) {
  .product-panel {
    min-height: calc(100svh + 72px);
    grid-template-rows: 22% 1fr 17%;
  }
}

@media (max-width: 900px) {
  .product-panel {
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
  }

  .machine-stage {
    align-self: center;
  }

  .product-panel:first-of-type {
    padding-top: 110px;
  }
}

@media (max-width: 430px) {
  .product-panel:first-of-type {
    padding-top: 108px;
  }
}

/* SEO/internal navigation: model headings link to crawlable detail pages without changing the visual design. */
.product-title a {
  color: inherit;
  text-decoration: none;
}
.product-title a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}
