﻿/*
Theme Name: SAS Consulting Modern
Theme URI: https://sas.present.ba/
Author: Present / Codex
Description: Modern one-page WordPress theme for SAS Consulting d.o.o. Sarajevo.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: sas-consulting-modern
*/

:root {
  --ink: #111827;
  --muted: #596273;
  --line: #e3e8ef;
  --paper: #f6f7f8;
  --white: #ffffff;
  --coal: #151719;
  --steel: #31404f;
  --signal: #d92d20;
  --signal-dark: #a81f17;
  --gold: #f2b705;
  --green: #2b7a5b;
  --shadow: 0 18px 42px rgba(17, 24, 39, .10);
  --radius: 8px;
}


/* Unified SPC inner header and bottom slider - 2026-06-26 */
.inner-header {
  position: relative;
  overflow: visible;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.9), rgba(7, 9, 14, 0.68)),
    url("assets/voyagerfloor.com/assets/img/bg/header1.jpg") center / cover no-repeat !important;
}

.inner-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.42), rgba(3, 5, 10, 0.22)),
    rgba(8, 10, 16, 0.28);
  pointer-events: none;
}

.inner-header .navbar-wrap,
.inner-header .page-hero {
  position: relative;
  z-index: 2;
}

.inner-header .navbar-wrap {
  padding: 24px 20px 20px;
}

.inner-header .navbar {
  width: min(1180px, 100%);
  min-height: 76px;
}

.inner-header .brand-logo {
  width: 156px;
}

.inner-header .page-hero {
  padding-top: 66px;
}

.spc-related-section {
  padding: 72px 20px 82px;
  background: #f4f1ed;
  overflow: hidden;
}

.spc-related-section .section-inner {
  width: min(1180px, 100%);
}

.spc-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.spc-related-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 800;
}

.spc-related-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.spc-related-head p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.spc-related-slider {
  position: relative;
  overflow: hidden;
  padding: 4px 0 12px;
}

.spc-related-slider::before,
.spc-related-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 70px;
  pointer-events: none;
}

.spc-related-slider::before {
  left: 0;
  background: linear-gradient(90deg, #f4f1ed, rgba(244, 241, 237, 0));
}

.spc-related-slider::after {
  right: 0;
  background: linear-gradient(270deg, #f4f1ed, rgba(244, 241, 237, 0));
}

.spc-related-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: spcRelatedSlide 42s linear infinite;
}

.spc-related-slider:hover .spc-related-track {
  animation-play-state: paused;
}

@keyframes spcRelatedSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.spc-related-card {
  flex: 0 0 clamp(250px, 24vw, 330px);
  overflow: hidden;
  border: 1px solid rgba(18, 21, 25, 0.08);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(18, 21, 25, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.spc-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 40, 30, 0.35);
  box-shadow: 0 20px 42px rgba(18, 21, 25, 0.12);
}

.spc-related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ebe7e2;
}

.spc-related-card strong {
  display: block;
  padding: 16px 16px 6px;
  font-size: 18px;
}

.spc-related-card small {
  display: block;
  min-height: 54px;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .spc-related-head {
    display: block;
  }

  .spc-related-head p {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .inner-header .navbar-wrap {
    padding: 14px 14px 18px;
  }

  .inner-header .brand-logo {
    width: 138px;
  }

  .spc-related-section {
    padding: 54px 16px 64px;
  }

  .spc-related-slider::before,
  .spc-related-slider::after {
    width: 30px;
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.nav.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(17, 24, 39, .08);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: auto;
  height: 54px;
  display: block;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  box-shadow: none;
  object-fit: contain;
  transition: filter .25s ease, opacity .25s ease;
}

.brand-logo-scroll {
  display: none;
}

.nav.scrolled .brand-logo-light {
  display: none;
}

.nav.scrolled .brand-logo-scroll {
  display: block;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: currentColor;
  opacity: .72;
  font-size: 12px;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.menu > a,
.menu summary {
  opacity: .86;
}

.menu a:hover,
.menu summary:hover {
  opacity: 1;
  color: var(--gold);
}

.nav.scrolled .menu a:hover,
.nav.scrolled .menu summary:hover {
  color: var(--signal);
}

.menu-group {
  position: relative;
}

.menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .7;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  width: min(760px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
  transform: translateX(-50%);
}

.dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  color: var(--signal);
  background: #f6f8fb;
}

.dropdown-menu span,
.dropdown-menu small {
  display: block;
}

.dropdown-menu span {
  font-weight: 900;
}

.dropdown-menu small {
  margin-top: 4px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: currentColor;
  display: none;
  place-items: center;
  cursor: pointer;
}

.nav.scrolled .icon-btn {
  border-color: var(--line);
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: var(--signal);
  box-shadow: 0 14px 28px rgba(217,45,32,.20);
}
.btn-primary:hover { background: var(--signal-dark); }
.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255,255,255,.35);
}

.btn-outline {
  color: var(--signal);
  background: var(--white);
  border-color: var(--signal);
  box-shadow: none;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--signal);
  border-color: var(--signal);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 18, .78) 0%, rgba(9, 13, 18, .48) 47%, rgba(9, 13, 18, .12) 100%),
    url("https://sas.present.ba/assets/images/hero/1.jpg") center/cover fixed no-repeat;
  transform: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 174px 0 70px;
  display: grid;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #ffe9a8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--gold);
}

h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-weight: 700;
}

.hero-copy {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255,255,255,.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(17,24,39,.26);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 880px;
}

.hero-stat {
  padding: 20px;
  min-height: 100px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.hero-stat:last-child { border-right: 0; }
.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1;
}
.hero-stat span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}

section { padding: 92px 0; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--signal);
  font-size: 13px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  isolation: isolate;
  border: 1px solid var(--line);
}

.service:nth-child(1),
.service:nth-child(2),
.service:nth-child(3) { grid-column: span 2; }
.service:nth-child(4),
.service:nth-child(5) { grid-column: span 3; }

.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform .45s ease;
  z-index: -2;
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217,45,32,.96), rgba(168,31,23,.90)),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.20), transparent 34%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}

.service:hover img { transform: scale(1.04); }
.service:hover::after { opacity: .94; }

.service-content {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.service-content::before {
  content: "";
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.78);
}

.service:hover .service-content {
  opacity: 1;
  transform: translateY(0);
}

.service-tag {
  display: none;
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(10px);
}

.service h3 {
  margin-bottom: 12px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 700;
}

.service p {
  max-width: 310px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
}

.service-more {
  display: inline-flex;
  margin-top: 20px;
  min-height: 40px;
  padding: 0 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: background .2s ease, border-color .2s ease;
}

.service:hover .service-more {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.82);
}

.split {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 850px);
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--steel);
  font-weight: 600;
}

.check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.step {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.step-num {
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.quote {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .92), rgba(49, 64, 79, .76)),
    url("https://sas.present.ba/assets/images/portfolio/1.png") center/cover no-repeat;
}

#kontakt-finisher.quote {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .92), rgba(17, 24, 39, .66), rgba(17, 24, 39, .24)),
    url("assets/images/finisher-cta-machine.jpg") center/cover no-repeat;
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.quote h2 {
  max-width: 850px;
  font-size: clamp(28px, 4vw, 48px);
}

.quote p {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255,255,255,.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}

.contact-panel {
  padding: 34px 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.contact-item > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-item b { display: none; }
.contact-item > .contact-icon {
  color: var(--signal);
}

.contact-item a { color: var(--muted); font-weight: 700; }

.contact-item div span {
  color: var(--muted);
  font-weight: 700;
}
.contact-photo {
  min-height: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .icon-btn { display: grid; }
  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu a,
  .menu summary {
    padding: 14px;
    border-radius: 6px;
  }
  .menu a:hover,
  .menu summary:hover {
    background: var(--paper);
    color: var(--signal);
  }
  .menu-group {
    position: static;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 0 0 6px;
    padding: 6px;
    background: #f8fafc;
    box-shadow: none;
    transform: none;
  }
  .dropdown-menu a {
    padding: 12px;
  }
  .nav-actions .btn { display: none; }
  .section-head,
  .split-grid,
  .quote-inner,
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service,
  .service:nth-child(1),
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4),
  .service:nth-child(5),
  .service:nth-child(6) { grid-column: auto; }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-inner { min-height: 68px; }
  .brand small { display: none; }
  .hero { min-height: 88vh; }
  .hero-inner { padding: 112px 0 48px; }
  h1 { font-size: 40px; }
  .hero-copy { font-size: 16px; }
  .product-application-section .product-feature-grid article {
    min-height: auto;
    padding: 16px 18px;
  }
  .hero-strip,
  .process,
  .services-grid { grid-template-columns: 1fr; }
  .hero-stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .hero-stat:last-child { border-bottom: 0; }
  section { padding: 66px 0; }
  .service,
  .service-content { min-height: 0; }
  .contact-panel { padding: 22px; }
  .btn { width: 100%; }
}

.scaffold-page {
  background: var(--paper);
}

.product-page {
  background: var(--paper);
}

.product-hero {
  padding: 92px 0 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.product-hero-grid {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 13, 18, .86), rgba(9, 13, 18, .54) 50%, rgba(9, 13, 18, .18)),
    var(--product-hero-image, url("https://shop.present.ba/wp-content/uploads/2025/12/finisher-1.png")) center/cover no-repeat;
}

.product-hero-copy {
  width: min(780px, 100%);
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding: 46px 16px;
  color: var(--white);
}

.product-hero-copy .section-kicker {
  color: #ffb4ae;
}

.product-hero-copy h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 76px);
}

.product-hero-copy .lead {
  max-width: 700px;
  color: rgba(255,255,255,.84);
}

.product-section {
  padding: 92px 0;
}

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

.machine-card {
  display: grid;
  grid-template-rows: 280px 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.machine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  background: #f8fafc;
}

.machine-card-content {
  padding: 22px;
}

.machine-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.machine-card p {
  color: var(--muted);
  font-weight: 650;
}

.machine-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.machine-specs li {
  padding: 7px 10px;
  color: var(--signal);
  background: #fff3f1;
  border: 1px solid rgba(217, 45, 32, .16);
  font-size: 12px;
  font-weight: 800;
}

.machine-card .btn {
  margin-top: 20px;
  width: fit-content;
}

.parts-band {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17,24,39,.94), rgba(49,64,79,.82)),
    url("https://shop.present.ba/wp-content/uploads/2025/12/dijelovi.png") center/cover no-repeat;
}

.parts-band h2 {
  color: var(--white);
}

.parts-band .lead {
  color: rgba(255,255,255,.78);
}

.parts-catalog-section {
  padding: 92px 0;
  background: var(--white);
}

.parts-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.parts-catalog-grid article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 168px;
  padding: 18px;
  background: #fbfcfd;
  border: 1px solid var(--line);
}

.parts-catalog-grid img {
  width: 132px;
  height: 118px;
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.parts-catalog-grid h3 {
  margin: 0 0 8px;
  color: var(--signal);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.1;
}

.parts-catalog-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.parts-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.machine-detail-hero {
  min-height: 760px;
  padding: 142px 0 82px;
  color: var(--white);
  background:
    linear-gradient(112deg, #2b1208 0%, #6f260b 48%, #b9480f 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.machine-detail-hero-kh380 {
  background:
    linear-gradient(112deg, #3f2505 0%, #7d4a08 48%, #b87512 100%);
}

.doors-hero {
  padding-top: 82px;
  background: var(--paper);
}

.doors-hero-bg {
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(9, 14, 24, .86) 0%, rgba(9, 14, 24, .55) 48%, rgba(9, 14, 24, .16) 100%),
    var(--doors-hero-image) center/cover fixed no-repeat;
}

.doors-hero-content {
  padding: 92px 0;
  color: var(--white);
}

.doors-hero-content .section-kicker {
  color: #ffb4ae;
}

.doors-hero-content h1 {
  max-width: 880px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 78px);
  line-height: .98;
}

.doors-hero-content .lead {
  max-width: 700px;
  color: rgba(255,255,255,.82);
}

.doors-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.doors-split article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.doors-split h3 {
  color: var(--signal);
  font-size: 22px;
}

.doors-split p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.doors-install-grid figure {
  margin: 0;
}

.doors-install-grid {
  grid-template-columns: minmax(420px, .86fr) minmax(520px, 1.14fr);
  align-items: center;
}

.doors-steps {
  counter-reset: door-step;
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.doors-steps li {
  counter-increment: door-step;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
}

.doors-steps li::before {
  content: counter(door-step);
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--signal);
  font-size: 13px;
  font-weight: 900;
}

.doors-install-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.doors-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.doors-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
}

.doors-page .related-slider {
  position: relative;
  overflow: hidden;
  padding: 4px 0 12px;
}

.doors-page .related-slider::before,
.doors-page .related-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 76px;
  height: 100%;
  pointer-events: none;
}

.doors-page .related-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(245, 247, 250, 0));
}

.doors-page .related-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(245, 247, 250, 0));
}

.doors-page .related-slider-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: related-slide 30s linear infinite;
}

.doors-page .related-slider:hover .related-slider-track {
  animation-play-state: paused;
}

.doors-page .related-slider-track a {
  width: min(384px, 78vw);
  flex: 0 0 min(384px, 78vw);
}

@keyframes related-slide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 36px)); }
}

.doors-quote {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .9), rgba(17, 24, 39, .62), rgba(17, 24, 39, .22)),
    url("assets/images/doors-installation.png") center/cover no-repeat;
}

.spc-hero {
  padding-top: 82px;
  background: var(--paper);
}

.spc-hero-bg {
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(10, 16, 24, .84), rgba(10, 16, 24, .5), rgba(10, 16, 24, .12)),
    var(--spc-hero-image) center/cover fixed no-repeat;
}

.spc-hero-content {
  padding: 92px 0;
  color: var(--white);
}

.spc-hero-content .section-kicker {
  color: #ffb4ae;
}

.spc-hero-content h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 78px);
  line-height: .98;
}

.spc-hero-content .lead {
  max-width: 720px;
  color: rgba(255,255,255,.82);
}

.spc-info-grid {
  align-items: center;
}

.spc-info-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.spc-info-grid img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.spc-install-strip {
  padding: 72px 0;
  background: var(--white);
}

.spc-install-card {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.spc-install-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 70%;
  border: 1px solid var(--line);
}

.spc-install-card h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.spc-install-card p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}

.spc-application-text {
  max-width: 860px;
}

.spc-mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.spc-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.spc-spec-grid article {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.spc-spec-grid b {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.spc-spec-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.spc-layers-panel {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(320px, .75fr);
  gap: 36px;
  align-items: start;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.spc-layers-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.spc-layers-copy .lead {
  max-width: 640px;
  margin-bottom: 28px;
}

.spc-layer-list {
  display: grid;
  gap: 10px;
  max-width: 650px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: spc-layer;
}

.spc-layer-list li {
  counter-increment: spc-layer;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  row-gap: 3px;
  min-height: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
}

.spc-layer-list li::before {
  content: counter(spc-layer);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--signal);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.spc-layer-list strong {
  display: block;
  grid-column: 2;
  margin-bottom: 0;
  font-weight: 900;
}

.spc-layer-list span {
  grid-column: 2;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.spc-layers-visual {
  position: relative;
  margin-top: 218px;
  min-height: 0;
  display: grid;
  align-items: start;
  justify-items: center;
  background: var(--white);
}

.spc-layers-visual img {
  width: min(100%, 520px);
  object-fit: contain;
}

.spc-decor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.spc-decor-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
}

.spc-decor-grid img:first-child {
  grid-column: span 2;
}

.spc-feature-model {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
  gap: 18px;
  align-items: stretch;
  margin: 30px 0 24px;
}

.spc-feature-room,
.spc-feature-swatch {
  background: var(--white);
  border: 1px solid var(--line);
}

.spc-feature-room {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.spc-feature-swatch {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.spc-feature-swatch img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.spc-feature-swatch h3 {
  margin: 4px 0 10px;
  font-size: 32px;
  line-height: 1.05;
}

.spc-feature-swatch p:not(.section-kicker) {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.spc-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.spc-catalog-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.spc-catalog-room {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 68%;
  display: block;
}

.spc-catalog-meta {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.spc-catalog-meta img {
  width: 82px;
  height: 112px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.spc-catalog-meta h3 {
  margin: 3px 0 6px;
  font-size: 22px;
  line-height: 1.05;
}

.spc-catalog-meta span {
  display: block;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.spc-factory-section {
  background: var(--white);
}

.spc-factory-panel {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.spc-factory-copy h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.spc-factory-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.spc-factory-points article {
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.spc-factory-points b {
  display: block;
  margin-bottom: 6px;
  color: var(--signal);
  font-weight: 900;
}

.spc-factory-points span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.spc-factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spc-factory-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
}

.spc-color-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.spc-color-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.spc-color-grid img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  display: block;
}

.spc-color-grid h3 {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 13px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.spc-page .related-slider {
  position: relative;
  overflow: hidden;
  padding: 4px 0 12px;
}

.spc-page .related-slider::before,
.spc-page .related-slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 76px;
  height: 100%;
  pointer-events: none;
}

.spc-page .related-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(245, 247, 250, 0));
}

.spc-page .related-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(245, 247, 250, 0));
}

.spc-page .related-slider-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: related-slide 30s linear infinite;
}

.spc-page .related-slider:hover .related-slider-track {
  animation-play-state: paused;
}

.spc-page .related-slider-track a {
  width: min(384px, 78vw);
  flex: 0 0 min(384px, 78vw);
}

.spc-quote {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .92), rgba(17, 24, 39, .6), rgba(17, 24, 39, .2)),
    url("assets/images/spc-hero.png") center/cover no-repeat;
}

.machine-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .72fr);
  gap: 44px;
  align-items: center;
}

.machine-detail-copy h1 {
  max-width: 900px;
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: .96;
  color: var(--white);
}

.machine-detail-copy .lead {
  max-width: 720px;
  color: rgba(255,255,255,.78);
}

.detail-price-note {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin: 26px 0 0;
  padding: 16px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}

.detail-price-note span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-price-note strong {
  color: var(--white);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
}

.detail-price-note small {
  color: rgba(255,255,255,.72);
  font-weight: 750;
}

.machine-detail-media {
  position: relative;
  background: transparent;
  border: 0;
}

.machine-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0;
  filter: saturate(1.18) brightness(1.08) contrast(1.05) drop-shadow(0 32px 38px rgba(0,0,0,.28));
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
}

.spec-motion {
  margin: 28px 0 0;
  padding: 22px;
  background: linear-gradient(145deg, #fff 0%, #fff5f1 100%);
  border: 1px solid #ffd8cc;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.spec-motion img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.spec-table {
  display: grid;
  gap: 6px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) 1fr;
  gap: 10px;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid #e8edf3;
  border-left: 4px solid rgba(229, 40, 30, .82);
  box-shadow: 0 6px 14px rgba(15, 23, 42, .035);
}

.spec-table div:nth-child(even) {
  background: #fff7f4;
  border-left-color: #f97316;
}

.spec-table span {
  color: #e5291f;
  font-weight: 700;
}

.spec-table strong {
  color: var(--ink);
}

.detail-soft-section {
  background: var(--white);
}

.detail-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-check-grid li {
  padding: 14px 16px;
  color: var(--steel);
  background: #fbfcfd;
  border: 1px solid var(--line);
  font-weight: 750;
}

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

.equipment-card-grid article {
  display: grid;
  grid-template-rows: 150px auto;
  background: var(--white);
  border: 1px solid #e3e9f1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
  overflow: hidden;
}

.equipment-card-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #f8fafc;
}

.equipment-card-grid h3 {
  margin: 0;
  padding: 13px 14px;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.35;
  border-top: 1px solid #e8edf3;
}

.detail-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.detail-benefit-grid article {
  padding: 24px;
  background: var(--white);
}

.detail-benefit-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--signal);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 20px;
}

.detail-benefit-grid span {
  color: var(--muted);
  font-weight: 650;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
  background: #fbfcfd;
  border: 1px solid var(--line);
}

.related-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.related-slider {
  position: relative;
  overflow: hidden;
  padding: 4px 0 12px;
}

.related-slider::before,
.related-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.related-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255,255,255,0));
}

.related-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255,255,255,0));
}

.related-link-grid {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: relatedAutoSlide 38s linear infinite;
}

.related-slider:hover .related-link-grid {
  animation-play-state: paused;
}

@keyframes relatedAutoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.related-link-grid a {
  flex: 0 0 clamp(260px, 25vw, 340px);
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #e3e9f1;
  text-decoration: none;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.related-link-grid a:hover {
  border-color: rgba(229, 40, 30, .42);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
}

.related-link-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e8edf3;
}

.related-link-grid span {
  display: block;
  margin: 0 0 8px;
  padding: 14px 16px 0;
  color: #e5291f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-link-grid strong {
  display: block;
  padding: 0 16px 18px;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.4;
}

.machine-trio-quote {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .92), rgba(17, 24, 39, .64), rgba(17, 24, 39, .22)),
    url("assets/images/finisher-cta-machine.jpg") center/cover no-repeat;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-feature-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

.product-feature-grid b {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 20px;
}

.product-application-section {
  padding: 52px 0 60px;
}

.product-application-section .section-head {
  gap: 18px;
  margin-bottom: 14px;
}

.product-application-section .product-feature-grid article {
  min-height: 100px;
  padding: 18px 20px;
}

.product-application-section .product-feature-grid b {
  color: var(--signal) !important;
  margin-bottom: 5px;
}

.product-application-section .product-feature-grid span {
  line-height: 1.45;
}

.product-feature-grid span {
  color: var(--muted);
  font-weight: 650;
}

.scaffold-hero {
  padding: 92px 0 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.scaffold-hero-grid {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 18, .84), rgba(9, 13, 18, .52) 48%, rgba(9, 13, 18, .14)),
    var(--scaffold-hero-image, url("https://shop.present.ba/wp-content/uploads/2026/01/naslovna-1-1024x512.webp")) center/cover fixed no-repeat;
}

.scaffold-hero-copy {
  width: min(820px, 100%);
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding: 44px 16px;
  color: var(--white);
}

.scaffold-hero-copy .section-kicker {
  color: #ffb4ae;
}

.scaffold-hero-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 4.7vw, 68px);
}

.scaffold-hero-copy .lead {
  max-width: 660px;
  color: rgba(255,255,255,.84);
}

.scaffold-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.scaffold-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.scaffold-facts strong {
  color: var(--white);
}

.scaffold-section {
  padding: 92px 0;
}

.scaffold-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.scaffold-cards article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
}

.scaffold-cards b {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.12;
}

.scaffold-cards span {
  color: var(--muted);
  font-weight: 600;
}

.scaffold-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.scaffold-use-grid span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  font-weight: 800;
}

.package-grid {
  display: grid;
  gap: 22px;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.package-media {
  min-height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  padding: 18px;
  background: #f8fafc;
}

.package-media img {
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}

.package-content {
  padding: 30px;
}

.package-content h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.04;
}

.package-desc {
  color: var(--muted);
  font-weight: 600;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.price-old,
.price-new {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.price-old::before,
.price-new::before {
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-old::before {
  content: "Redovna cijena";
  color: var(--muted);
}

.price-new::before {
  content: "Akcijska cijena";
  color: rgba(255,255,255,.78);
}

.price-old {
  color: var(--muted);
  background: #fbfcfd;
}

.price-new {
  color: var(--white);
  background: var(--signal);
  border-color: var(--signal);
}

.package-content h4 {
  margin: 24px 0 10px;
  font-size: 14px;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  padding: 12px 12px 12px 38px;
  position: relative;
  border: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--steel);
  font-weight: 650;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}

.package-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--signal);
  background: #fbfcfd;
  color: var(--muted);
  font-weight: 700;
}

.package-note::before {
  content: "Napomena";
  display: block;
  margin-bottom: 5px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.scaffold-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scaffold-gallery figure {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 320px;
  border: 1px solid var(--line);
  background: var(--white);
}

.scaffold-gallery figcaption {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.scaffold-gallery .gallery-image {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 14px;
  background: #f8fafc;
}

.scaffold-gallery img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: transparent;
}

.scaffold-gallery figure.wide {
  grid-column: span 2;
}

.scaffold-gallery figure.photo .gallery-image {
  padding: 0;
  background: var(--coal);
}

.scaffold-gallery figure.photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: none;
  object-fit: cover;
  transition: transform .35s ease;
}

.scaffold-gallery figure.photo:hover img {
  transform: scale(1.03);
}

.scaffold-gallery figure.detail {
  min-height: 260px;
}

.scaffold-gallery figure.detail .gallery-image {
  min-height: 190px;
}

.scaffold-gallery figure.detail img {
  max-height: 230px;
}

.scaffold-band {
  padding: 78px 0;
  background: var(--coal);
  color: var(--white);
}

.scaffold-band .section-kicker {
  color: #ffb4ae;
}

.scaffold-band h2 {
  color: var(--white);
}

.scaffold-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 50px;
  align-items: start;
}

.scaffold-band .check-list li {
  color: rgba(255,255,255,.84);
}

.scaffold-steps {
  display: grid;
  gap: 34px;
}

@media (max-width: 980px) {
  .related-link-grid {
    animation-duration: 32s;
  }

  .doors-install-grid {
    grid-template-columns: 1fr;
  }

  .scaffold-band-grid {
    grid-template-columns: 1fr;
  }

  .scaffold-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .machine-grid,
  .detail-two-col,
  .parts-catalog-grid,
  .equipment-card-grid,
  .product-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-benefit-grid,
  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .scaffold-use-grid,
  .scaffold-gallery,
  .doors-split,
  .doors-gallery,
  .spc-decor-grid,
  .spc-color-grid,
  .spc-catalog-grid,
  .spc-layers-panel,
  .spc-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spc-decor-grid img:first-child {
    grid-column: auto;
  }

  .package-card {
    grid-template-columns: 1fr;
  }
}

/* Screenshot-matched McMillan-style first screen */
.old-product-hero {
  display: none !important;
}

.sas-mcmillan-hero {
  position: relative;
  min-height: 780px;
  background: #fbfaf7;
  overflow: hidden;
}

.sas-mcmillan-floor {
  position: relative;
  height: 560px;
  margin-right: 0;
  background-image: url("assets/images/roccia-gris/2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 0 -70px 90px rgba(255,255,255,.25);
}

.sas-mcmillan-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.04), transparent 35%, rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.05));
  pointer-events: none;
}

.sas-expand {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 36%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #111;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.sas-hero-actions {
  position: absolute;
  z-index: 3;
  left: 26%;
  bottom: 32px;
  display: flex;
  gap: 12px;
}

.sas-hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  color: #151515;
  background: rgba(255,255,255,.95);
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.sas-product-card {
  position: absolute;
  z-index: 5;
  top: 32px;
  right: 6.8%;
  width: min(535px, 38vw);
  min-height: 690px;
  padding: 34px 32px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.12);
}

.sas-stars {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.sas-stars span {
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}

.sas-product-finish {
  margin: 0 0 18px;
  color: #344050;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.sas-product-card h1 {
  margin: 0 0 4px;
  color: #000;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 800;
}

.sas-price {
  margin: 0 0 14px;
  color: #000;
  font-size: 30px;
  line-height: 1;
}

.sas-price span {
  font-size: 14px;
}

.sas-desc {
  max-width: 430px;
  margin: 0 0 24px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.55;
}

.sas-action-shots strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 16px;
}

.sas-action-shots div {
  display: flex;
  gap: 10px;
}

.sas-action-shots img {
  width: 92px;
  height: 154px;
  object-fit: cover;
  border: 4px solid #e7e1d8;
  border-radius: 5px;
}

.sas-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 32px 0 10px;
}

.sas-stock {
  color: #44833d;
  font-size: 14px;
}

.sas-outline-btn {
  padding: 12px 16px;
  border: 1px solid #111;
  border-radius: 7px;
  color: #111;
  font-size: 14px;
}

.sas-size-guide {
  display: block;
  margin: 0 0 18px;
  color: #111;
  text-align: right;
  text-decoration: underline;
}

.sas-order-box {
  padding: 24px;
  border: 1px solid #111;
  border-radius: 9px;
}

.sas-order-box label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #111;
  font-size: 18px;
}

.sas-order-box input {
  width: 104px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  text-align: right;
  font-size: 16px;
}

.sas-order-box p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 14px;
}

.sas-order-box p span {
  width: 32px;
  height: 16px;
  border-radius: 999px;
  background: #d8d8d8;
}

.sas-order-box div {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
}

.sas-order-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.sas-thumb-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 48px minmax(0, 940px) 48px;
  gap: 16px;
  align-items: center;
  margin: 32px 0 0 7.5%;
}

.sas-thumb-strip button {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 42px;
}

.sas-thumbs {
  display: flex;
  gap: 18px;
  overflow: hidden;
}

.sas-thumbs img {
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid transparent;
}

.sas-thumbs img.active {
  border: 2px solid #b49a78;
  padding: 6px;
  background: #fff;
  width: 104px;
  height: 104px;
}

@media (max-width: 1100px) {
  .sas-product-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(92%, 560px);
    margin: -80px auto 0;
  }

  .sas-expand {
    right: 20px;
  }

  .sas-hero-actions {
    left: 20px;
  }

  .sas-thumb-strip {
    margin-left: 20px;
    margin-right: 20px;
    grid-template-columns: 32px 1fr 32px;
  }
}

@media (max-width: 640px) {
  .sas-mcmillan-floor {
    height: 430px;
    background-size: cover;
  }

  .sas-hero-actions {
    flex-direction: column;
    bottom: 18px;
  }

  .sas-product-card {
    width: calc(100% - 28px);
    padding: 24px;
  }

  .sas-action-shots img {
    width: 31%;
  }
}

@media (max-width: 640px) {
  .related-slider::before,
  .related-slider::after {
    width: 28px;
  }

  .related-link-grid {
    animation-duration: 28s;
  }

  .scaffold-hero {
    padding: 84px 0 36px;
  }

  .scaffold-hero-grid {
    min-height: 430px;
  }

  .scaffold-hero-copy {
    padding: 28px;
    margin-left: 0;
  }

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

  .scaffold-cards {
    grid-template-columns: 1fr;
  }

  .scaffold-use-grid,
  .scaffold-gallery,
  .price-row,
  .package-list {
    grid-template-columns: 1fr;
  }

  .scaffold-gallery figure,
  .scaffold-gallery figure.wide {
    grid-column: auto;
    min-height: 0;
  }

  .scaffold-gallery .gallery-image {
    min-height: 0;
    padding: 12px;
  }

  .scaffold-gallery img {
    max-height: none;
    height: auto;
  }

  .scaffold-gallery figure.photo img {
    min-height: 240px;
  }

  .package-content {
    padding: 22px;
  }

  .product-hero {
    padding: 84px 0 36px;
  }

  .product-hero-grid {
    min-height: 460px;
  }

  .product-hero-copy {
    margin-left: 0;
    padding: 28px;
  }

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

  .machine-grid,
  .machine-detail-grid,
  .detail-two-col,
  .detail-check-grid,
  .detail-benefit-grid,
  .detail-gallery,
  .parts-catalog-grid,
  .equipment-card-grid,
  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .machine-detail-hero {
    min-height: 680px;
    padding: 112px 0 46px;
    background:
      linear-gradient(112deg, #2b1208 0%, #6f260b 48%, #b9480f 100%);
  }

  .machine-detail-hero-kh380 {
    background:
      linear-gradient(112deg, #3f2505 0%, #7d4a08 48%, #b87512 100%);
  }

  .doors-hero-bg {
    min-height: 560px;
    background:
      linear-gradient(90deg, rgba(9, 14, 24, .88), rgba(9, 14, 24, .46)),
      var(--doors-hero-image) center/cover no-repeat;
  }

  .doors-hero-content {
    padding: 58px 0;
  }

  .doors-hero-content h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .doors-split,
  .doors-gallery {
    grid-template-columns: 1fr;
  }

  .doors-split article {
    min-height: 0;
  }

  .doors-install-grid img {
    min-height: 280px;
  }

  .spc-hero-bg {
    min-height: 560px;
    background:
      linear-gradient(90deg, rgba(10, 16, 24, .88), rgba(10, 16, 24, .44)),
      var(--spc-hero-image) center/cover no-repeat;
  }

  .spc-hero-content {
    padding: 58px 0;
  }

  .spc-hero-content h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .spc-mini-grid,
  .spc-decor-grid,
  .spc-spec-grid,
  .spc-catalog-grid {
    grid-template-columns: 1fr;
  }

  .spc-layers-panel {
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }

  .spc-install-strip {
    padding: 44px 0;
  }

  .spc-install-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .spc-install-card img {
    aspect-ratio: 4 / 3;
  }

  .spc-install-card h2 {
    font-size: 34px;
  }

  .spc-layers-visual {
    margin-top: 0;
    min-height: 0;
    justify-items: center;
  }

  .spc-layer-list li {
    grid-template-columns: 38px 1fr;
    min-height: 0;
  }

  .spc-layer-list li::before {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .spc-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .spc-feature-model {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spc-feature-room {
    aspect-ratio: 4 / 3;
  }

  .spc-feature-swatch {
    grid-template-columns: 92px 1fr;
    padding: 14px;
  }

  .spc-feature-swatch img {
    height: 190px;
  }

  .spc-feature-swatch h3 {
    font-size: 26px;
  }

  .spc-catalog-meta {
    grid-template-columns: 78px 1fr;
  }

  .spc-catalog-meta img {
    width: 78px;
    height: 104px;
  }

  .spc-factory-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spc-factory-copy h2 {
    font-size: 34px;
  }

  .spc-factory-gallery {
    grid-template-columns: 1fr;
  }

  .spc-color-grid h3 {
    min-height: 48px;
    padding: 10px;
    font-size: 13px;
  }

  .spc-info-grid img {
    min-height: 260px;
  }

  .machine-detail-copy h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .machine-detail-media img {
    max-height: 420px;
  }

  .parts-catalog-grid article {
    grid-template-columns: 96px 1fr;
    min-height: auto;
    padding: 14px;
  }

  .parts-catalog-grid img {
    width: 96px;
    height: 86px;
    padding: 8px;
  }
}


/* ===== SPC podovi stranica ===== */

:root {
  --red: #ef2331;
  --ink: #111316;
  --muted: #5c6168;
  --soft: #f7f5f2;
  --soft-strong: #efebe6;
  --button: #f4eeee;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, Arial, sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 520px;
  color: var(--white);
  background: #17191f url("assets/voyagerfloor.com/assets/img/bg/header1.jpg") center / cover no-repeat;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 16, 22, 0.9) 0%, rgba(15, 16, 22, 0.62) 44%, rgba(15, 16, 22, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.24), rgba(7, 8, 12, 0.44));
}

.navbar-wrap,
.hero-content {
  position: relative;
  z-index: 2;
}

.navbar-wrap {
  z-index: 20;
  padding: 24px 20px 0;
}

.navbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
}

.sas-site-nav {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 156px;
  max-height: 56px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  font-size: 18px;
}

.brand-copy {
  font-size: 18px;
}

.nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > li > a.active,
.nav-links > li.is-current > a,
.nav-links > li > a:hover {
  color: #fff;
}

.has-menu {
  position: relative;
}

.has-menu::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 14px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 245px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 80;
}

.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  width: 100%;
  padding: 11px 13px;
  border-radius: 6px;
  color: #181a1f;
  font-size: 13px;
  font-weight: 700;
}

.dropdown a:hover {
  color: var(--red);
  background: #f8f2f2;
}

.dropdown a.active {
  color: var(--red);
  background: #f8f2f2;
}

.nav-cta,
.hero-button,
.wide-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta {
  padding: 10px 10px 10px 20px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 18px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-content {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 150px;
}

.hero-content h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-content em,
.strength-section em,
.manufacturing-intro em,
.section-kicker em,
.highlight-box em,
.split-copy em,
.section-center em,
.news-heading em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.hero-content p {
  max-width: 620px;
  margin: 28px 0 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.hero-button {
  padding: 10px 10px 10px 20px;
  color: var(--ink);
  background: #fff;
}

.intro-card-wrap {
  position: relative;
  z-index: 3;
  width: min(1100px, calc(100% - 40px));
  margin: -200px auto 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.intro-card {
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 20px 70px rgba(13, 16, 23, 0.12);
  pointer-events: auto;
}

.intro-card h2 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.2;
}

.intro-card p {
  margin: 0 0 20px;
  color: #202328;
  font-size: 16px;
  line-height: 1.65;
}

.wide-link {
  width: 100%;
  margin-bottom: 22px;
  padding: 10px 8px 10px 16px;
  color: #202328;
  background: var(--button);
  font-size: 14px;
}

main {
  background: var(--soft);
}

.strength-section {
  padding: 66px 20px 92px;
}

.section-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.accent {
  display: block;
  color: var(--red);
  font-size: 32px;
  font-weight: 800;
}

.strength-heading {
  margin-bottom: 18px;
}

.strength-section h2 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr 0.72fr;
  align-items: center;
  gap: 48px;
}

.strength-copy p {
  margin: 0;
  color: #17191d;
  font-size: 16px;
  line-height: 1.78;
}

.strength-copy p + p {
  margin-top: 24px;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(326px, 100%);
  margin-top: 26px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.catalog-button .arrow {
  color: var(--red);
  background: #fff;
}

.factory-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1.58 / 1;
  background: #ddd;
}

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

.note-card {
  width: 100%;
  max-width: 232px;
  justify-self: end;
  padding: 22px 22px 24px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(18, 21, 25, 0.1);
}

.pin {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 16px;
  transform: rotate(14deg);
}

.note-card ul {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}

.note-card li {
  margin: 0 0 9px;
  color: #15171a;
  font-size: 16px;
  line-height: 1.45;
}

.note-card li:last-child {
  margin-bottom: 0;
}

.manufacturing-intro {
  max-width: 850px;
  margin: 112px auto 0;
  text-align: center;
}

.manufacturing-intro h3 {
  margin: 0;
  color: #0d0f13;
  font-size: clamp(38px, 5vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.manufacturing-intro p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #08090b;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.section-soft {
  background: var(--soft-strong);
}

.metrics-section,
.collections-section,
.why-section,
.cappadocia-section,
.map-section,
.quality-section,
.private-label,
.supply-section,
.cta-section,
.news-section {
  padding: 82px 20px;
}

.metrics-section {
  padding-top: 76px;
}

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

.metric-card {
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 21, 25, 0.08);
}

.metric-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
}

.metric-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.metric-card h3 {
  margin: 0 0 10px;
  color: #0d0f13;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.section-kicker {
  color: var(--red);
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
}

.section-lead {
  margin: 12px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.wide-strip {
  width: min(1320px, calc(100% - 40px));
  margin: 34px auto 0;
}

.collection-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.collection-tile,
.solution-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  box-shadow: 0 20px 55px rgba(15, 17, 20, 0.09);
}

.collection-tile img,
.solution-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.collection-tile:hover img,
.solution-tile:hover img {
  transform: scale(1.035);
}

.collection-tile span,
.solution-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 13, 16, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.why-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: stretch;
  gap: 34px;
}

.highlight-box {
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: #15171b;
}

.highlight-box h2,
.split-copy h2,
.section-center h2,
.news-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.highlight-box ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.highlight-box li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

.highlight-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.light-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 210px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.light-button {
  color: var(--ink);
  background: #fff;
}

.dark-button {
  color: #fff;
  background: #111316;
}

.feature-photo,
.rounded-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
}

.feature-photo img,
.rounded-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-structure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 54px;
  padding: 28px 34px;
  border-radius: 18px;
  background: #fff;
}

.product-structure img {
  width: min(360px, 42%);
  max-height: 250px;
  object-fit: contain;
}

.product-structure p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.split-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 58px;
}

.split-copy p,
.split-copy li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.split-copy p {
  margin: 22px 0;
}

.split-copy ul {
  margin: 0;
  padding-left: 20px;
}

.script-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
}

.map-banner {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 46px;
  border-radius: 18px;
  background: #1b1e25 url("assets/voyagerfloor.com/assets/img/bg/map.jpg") center / cover no-repeat;
}

.map-card {
  width: min(390px, 100%);
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 19, 22, 0.88);
}

.map-card h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.15;
}

.map-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.quality-section .split-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.mini-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-tabs span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f2eeee;
  color: #1a1c20;
  font-size: 14px;
  font-weight: 700;
}

.section-center {
  text-align: center;
}

.section-center p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mc-product-hero {
  padding: 70px 20px 46px;
  background: #f6f4f1;
}

.mc-product-grid {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr);
  gap: 34px;
  align-items: start;
}

.mc-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 16px;
}

.mc-main-image,
.mc-thumb-grid img {
  background: #fff;
  border: 1px solid rgba(17, 19, 22, .08);
  box-shadow: 0 18px 55px rgba(17, 19, 22, .08);
}

.mc-main-image {
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 26px;
}

.mc-main-image img {
  width: min(72%, 420px);
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(17, 19, 22, .16));
}

.mc-thumb-grid {
  display: grid;
  gap: 14px;
}

.mc-thumb-grid img {
  width: 100%;
  height: 146px;
  padding: 12px;
  border-radius: 18px;
  object-fit: contain;
}

.mc-product-panel {
  position: sticky;
  top: 96px;
  padding: 34px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(17, 19, 22, .08);
  box-shadow: 0 28px 70px rgba(17, 19, 22, .1);
}

.mc-eyebrow,
.mc-section-title span,
.mc-overview-copy span {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}

.mc-product-panel h2 {
  margin: 14px 0 16px;
  color: #111316;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .94;
  letter-spacing: -.04em;
}

.mc-product-lead {
  color: #3f434a;
  font-size: 17px;
  line-height: 1.7;
}

.mc-stock-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: #0f5132;
  font-size: 14px;
  font-weight: 800;
}

.mc-stock-line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 6px rgba(22, 163, 74, .14);
}

.mc-price-box {
  padding: 22px;
  border-radius: 18px;
  background: #f6f4f1;
  border: 1px solid rgba(17, 19, 22, .08);
}

.mc-price-box small {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.mc-price-box strong {
  display: block;
  margin: 7px 0;
  color: #111316;
  font-size: 24px;
  line-height: 1.1;
}

.mc-price-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.mc-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #111316;
  background: #f4f4f4;
  font-size: 14px;
  font-weight: 900;
}

.mc-mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mc-mini-benefits span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 19, 22, .1);
  color: #22262c;
  font-size: 12px;
  font-weight: 800;
}

.mc-key-features,
.mc-product-overview,
.mc-spec-section,
.mc-faq-section {
  padding: 74px 20px;
  background: #fff;
}

.mc-section-title {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.mc-section-title h2,
.mc-overview-copy h2,
.mc-faq-grid h2 {
  margin: 0;
  color: #111316;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

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

.mc-feature-row article {
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
  background: #f6f4f1;
  border: 1px solid rgba(17, 19, 22, .08);
}

.mc-feature-row b {
  display: block;
  margin-bottom: 12px;
  color: #111316;
  font-size: 25px;
  line-height: 1.05;
}

.mc-feature-row p,
.mc-overview-copy p,
.mc-overview-points p,
.mc-faq-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.mc-model-intro {
  padding-top: 82px;
  background: #f6f4f1;
}

.mc-model-intro h2 {
  color: #111316;
}

.gallery-section {
  background: #f6f4f1;
}

.decor-swatch-grid {
  width: min(1280px, 100%);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.decor-swatch {
  min-height: 300px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17, 19, 22, .08);
  box-shadow: 0 18px 46px rgba(17, 19, 22, .07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.decor-swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(17, 19, 22, .12);
}

.decor-swatch img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(17, 19, 22, .12));
}

.decor-swatch span {
  display: block;
  margin-top: 12px;
  color: #111316;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.mc-product-overview {
  background: #111316;
}

.mc-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
}

.mc-overview-copy {
  padding: 34px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
}

.mc-overview-copy h2,
.mc-overview-copy p {
  color: #fff;
}

.mc-overview-copy p {
  opacity: .82;
}

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

.mc-overview-points article {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
}

.mc-overview-points strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.mc-overview-points b {
  display: block;
  margin-bottom: 8px;
  color: #111316;
  font-size: 22px;
}

.mc-spec-section {
  background: #f6f4f1;
}

.mc-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(17, 19, 22, .12);
  border: 1px solid rgba(17, 19, 22, .08);
}

.mc-spec-grid div {
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

.mc-spec-grid small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mc-spec-grid strong {
  color: #111316;
  font-size: 18px;
  line-height: 1.3;
}

.mc-faq-section {
  background: #fff;
}

.mc-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 40px;
}

.mc-faq-list {
  display: grid;
  gap: 12px;
}

.mc-faq-list details {
  padding: 22px 24px;
  border-radius: 18px;
  background: #f6f4f1;
  border: 1px solid rgba(17, 19, 22, .08);
}

.mc-faq-list summary {
  cursor: pointer;
  color: #111316;
  font-size: 18px;
  font-weight: 900;
}

.mc-faq-list p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .mc-product-grid,
  .mc-product-gallery,
  .mc-section-title,
  .mc-overview-grid,
  .mc-faq-grid {
    grid-template-columns: 1fr;
  }

  .mc-product-panel {
    position: static;
  }

  .mc-main-image {
    min-height: 420px;
  }

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

  .mc-feature-row,
  .mc-overview-points,
  .mc-spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .mc-product-hero,
  .mc-key-features,
  .mc-product-overview,
  .mc-spec-section,
  .mc-faq-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mc-product-panel {
    padding: 24px;
  }

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

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

/* Clean McMillan-like gallery reset after feedback */
.premium-product-hero {
  padding-top: 24px !important;
  background: #f7f5f1 !important;
}

.premium-product-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .72fr) !important;
  gap: 32px !important;
}

.mcm-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.mcm-gallery-card {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(17,19,22,.08);
}

.mcm-card-large {
  grid-row: span 2;
  min-height: 674px;
}

.mcm-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mcm-gallery-card:nth-child(2) img,
.mcm-gallery-card:nth-child(3) img {
  object-fit: contain;
  padding: 34px;
  background: #f2eee8;
}

.premium-info-card {
  box-shadow: none !important;
  border-radius: 0 !important;
  background: #fff !important;
}

.premium-info-card h1 {
  font-size: clamp(64px, 7.4vw, 108px) !important;
}

.premium-price,
.premium-calculator {
  border-radius: 0 !important;
}

.premium-primary,
.premium-secondary,
.premium-calculator input,
.premium-calculator span,
.premium-calculator button {
  border-radius: 0 !important;
}

.premium-card-grid article,
.premium-overview-grid article,
.life-card,
.premium-spec-grid,
.premium-compare-grid article,
.premium-faq details {
  border-radius: 0 !important;
}

@media (max-width: 980px) {
  .premium-product-grid,
  .mcm-gallery {
    grid-template-columns: 1fr !important;
  }

  .mcm-card-large,
  .mcm-gallery-card {
    min-height: 360px;
  }
}

/* McMillan-style single product page override: Bryson City */
.products-header {
  background: #090b10 !important;
}

.products-header::before {
  display: none !important;
}

.products-header .navbar-wrap {
  padding: 18px 20px !important;
}

.products-header .sas-site-nav {
  min-height: 68px;
}

.products-header .page-hero {
  display: none !important;
}

.mc-product-hero {
  padding: 34px 20px 72px !important;
  background: #f7f5f1 !important;
}

.mc-product-grid {
  width: min(1320px, 100%) !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .76fr) !important;
  gap: 28px !important;
}

.mc-product-gallery {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 14px !important;
}

.mc-main-image {
  min-height: 720px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.9), rgba(255,255,255,.38) 38%, rgba(219,210,196,.44) 100%),
    #eee6da !important;
  box-shadow: 0 22px 60px rgba(12, 14, 18, .1) !important;
}

.mc-main-image img {
  width: min(78%, 520px) !important;
  max-height: 650px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 30px 34px rgba(17, 19, 22, .17)) !important;
}

.mc-thumb-grid img {
  height: 168px !important;
  border-radius: 14px !important;
  padding: 8px !important;
  background: #fff !important;
}

.mc-product-panel {
  top: 22px !important;
  border-radius: 18px !important;
  padding: 34px !important;
  box-shadow: none !important;
}

.mc-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #111316;
  font-size: 14px;
  font-weight: 900;
}

.mc-rating span {
  color: #575d67;
  font-weight: 700;
}

.mc-product-panel .mc-eyebrow {
  color: #68707c !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  font-size: 15px !important;
}

.mc-product-panel h2 {
  margin: 8px 0 14px !important;
  font-size: clamp(52px, 6vw, 86px) !important;
  line-height: .92 !important;
  letter-spacing: -.065em !important;
}

.mc-product-lead {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 16px !important;
}

.mc-stock-line {
  padding: 10px 0;
  border-top: 1px solid rgba(17,19,22,.09);
  border-bottom: 1px solid rgba(17,19,22,.09);
}

.mc-price-box {
  margin-top: 18px;
  border-radius: 12px !important;
  background: #fff !important;
}

.mc-box-calculator {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(17,19,22,.1);
  border-radius: 12px;
  background: #f7f5f1;
}

.mc-box-calculator label {
  display: block;
  margin-bottom: 8px;
  color: #111316;
  font-size: 13px;
  font-weight: 900;
}

.mc-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mc-input-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17,19,22,.14);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
}

.mc-input-row button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: #111316;
  font-weight: 900;
}

.mc-box-row {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #4b525c;
  font-size: 14px;
}

.mc-box-row strong {
  color: #111316;
}

.mc-actions .nav-cta {
  background: #111316;
  color: #fff;
}

.mc-actions .nav-cta .arrow {
  background: var(--red);
  color: #fff;
}

.mc-secondary {
  background: #f2f2f2 !important;
}

.mc-mini-benefits {
  margin-top: 4px;
}

.mc-key-features {
  border-top: 1px solid rgba(17,19,22,.08);
}

.mc-section-title {
  grid-template-columns: 220px minmax(0, 1fr) !important;
}

.mc-section-title span {
  color: #111316 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  font-size: 24px !important;
}

.mc-feature-row article {
  min-height: 230px !important;
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 50px rgba(17,19,22,.07);
}

.mc-model-intro,
.gallery-section {
  background: #fff !important;
}

.mc-model-intro {
  padding-top: 56px !important;
  border-top: 1px solid rgba(17,19,22,.08);
}

.mc-model-intro h2 {
  font-size: clamp(38px, 4vw, 54px) !important;
}

.decor-swatch {
  border-radius: 14px !important;
  box-shadow: none !important;
}

.mc-product-overview {
  margin-top: 0;
}

@media (max-width: 980px) {
  .mc-product-grid,
  .mc-product-gallery,
  .mc-section-title {
    grid-template-columns: 1fr !important;
  }

  .mc-main-image {
    min-height: 460px !important;
  }
}

/* Premium ecommerce flooring product page - Bryson City */
.premium-announcement {
  position: relative;
  z-index: 30;
  padding: 9px 16px;
  text-align: center;
  color: #2b2d31;
  background: #f3eee6;
  border-bottom: 1px solid rgba(20, 23, 28, .08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.premium-icon-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-size: 20px;
  font-weight: 900;
}

.premium-product-page {
  background: #fbfaf7;
  color: #111316;
}

.premium-product-page .section-inner {
  width: min(1320px, calc(100% - 40px));
}

.premium-product-hero {
  padding: 36px 0 72px;
  background:
    radial-gradient(circle at 18% 0%, rgba(218, 197, 164, .25), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f0e8 100%);
}

.premium-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .72fr);
  gap: 28px;
  align-items: start;
}

.premium-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 16px;
}

.premium-visual,
.premium-thumb,
.premium-info-card,
.premium-card-grid article,
.premium-overview-grid article,
.life-card,
.premium-spec-grid div,
.premium-compare-grid article,
.premium-faq details {
  border: 1px solid rgba(17,19,22,.09);
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 70px rgba(17,19,22,.08);
}

.premium-visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e8dfd1;
  isolation: isolate;
}

.room-wall {
  position: absolute;
  inset: 0 0 37%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.45)),
    url("assets/images/spc-interior-floor.png") center / cover no-repeat;
  filter: saturate(.7) brightness(1.06);
}

.room-window {
  position: absolute;
  right: 10%;
  top: 8%;
  width: 24%;
  height: 34%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(184,205,220,.42));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.36), 0 28px 80px rgba(255,255,255,.35);
}

.floor-plane {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -10%;
  height: 56%;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    var(--floor-texture);
  background-size: 148px 100%, 210px 344px;
  background-repeat: repeat;
  transform: perspective(850px) rotateX(62deg);
  transform-origin: bottom center;
  box-shadow: inset 0 38px 70px rgba(255,255,255,.38), inset 0 -40px 80px rgba(91,66,33,.16);
}

.premium-room::after {
  content: "";
  position: absolute;
  inset: auto 6% 6% 6%;
  height: 30%;
  background: linear-gradient(110deg, rgba(255,255,255,.42), transparent 40%, rgba(0,0,0,.08));
  transform: perspective(900px) rotateX(63deg);
  transform-origin: bottom;
  pointer-events: none;
}

.premium-visual figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  color: #111316;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
}

.premium-thumbs {
  display: grid;
  gap: 14px;
}

.premium-thumb {
  position: relative;
  min-height: 168px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.premium-thumb span {
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  background-image: var(--floor-texture);
  background-size: 180px 295px;
  box-shadow: inset 0 18px 30px rgba(255,255,255,.28), 0 20px 28px rgba(17,19,22,.13);
}

.plank-stack span {
  inset: 22px 16px;
  transform: perspective(500px) rotateX(58deg) rotateZ(-8deg);
  box-shadow:
    0 13px 0 #d8c099,
    0 26px 0 #caaa7c,
    0 39px 0 #b98d5d,
    0 46px 26px rgba(17,19,22,.18);
}

.sunlight-floor span::after,
.sample-view span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.55), transparent 38%, rgba(0,0,0,.08));
}

.premium-thumb figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 8px;
  border-radius: 999px;
  color: #111316;
  background: rgba(255,255,255,.82);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.premium-info-card {
  position: sticky;
  top: 22px;
  padding: 34px;
  border-radius: 24px;
}

.premium-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #111316;
  font-size: 13px;
  font-weight: 900;
}

.premium-rating span {
  color: #68707c;
}

.premium-kicker,
.premium-heading span {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.premium-info-card h1 {
  margin: 10px 0 14px;
  color: #090b10;
  font-size: clamp(58px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -.07em;
}

.premium-lead {
  margin: 0;
  color: #505762;
  font-size: 17px;
  line-height: 1.72;
}

.premium-price {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 16px;
  background: #f5f0e8;
  border: 1px solid rgba(17,19,22,.08);
}

.premium-price small {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.premium-price strong {
  color: #090b10;
  font-size: 32px;
  line-height: 1;
}

.premium-price span,
.premium-calculator p,
.premium-service-notes {
  color: #606874;
  line-height: 1.55;
}

.premium-stock {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: #125d39;
  font-weight: 900;
}

.premium-stock i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #20bf63;
  box-shadow: 0 0 0 7px rgba(32,191,99,.13);
}

.premium-calculator {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(17,19,22,.09);
}

.premium-calculator label {
  display: block;
  margin-bottom: 10px;
  color: #111316;
  font-weight: 950;
}

.premium-calculator div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}

.premium-calculator input {
  min-height: 48px;
  border: 1px solid rgba(17,19,22,.14);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
}

.premium-calculator span,
.premium-calculator button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  font-weight: 950;
}

.premium-calculator span {
  background: #f4f4f4;
}

.premium-calculator button {
  color: #fff;
  background: #111316;
}

.premium-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.premium-primary,
.premium-secondary,
.premium-mobile-cart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 950;
}

.premium-primary,
.premium-mobile-cart a {
  color: #fff;
  background: #111316;
}

.premium-secondary {
  color: #111316;
  background: #f1f1f1;
}

.premium-service-notes {
  margin: 0;
  padding-left: 18px;
}

.premium-feature-cards,
.premium-overview,
.premium-lifestyle,
.premium-specs,
.premium-compare,
.premium-faq {
  padding: 82px 0;
}

.premium-feature-cards,
.premium-specs,
.premium-faq {
  background: #fff;
}

.premium-heading {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.premium-heading h2,
.premium-faq h2 {
  margin: 0;
  color: #090b10;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.premium-card-grid,
.premium-overview-grid,
.premium-spec-grid,
.premium-compare-grid {
  display: grid;
  gap: 16px;
}

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

.premium-card-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 20px;
}

.premium-card-grid i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: #111316;
  font-style: normal;
}

.premium-card-grid b,
.premium-overview-grid b,
.premium-compare-grid h3 {
  display: block;
  color: #090b10;
  font-size: 24px;
  line-height: 1.05;
}

.premium-card-grid p,
.premium-overview-grid p,
.premium-compare-grid p,
.premium-faq p {
  color: #596273;
  line-height: 1.65;
}

.premium-overview {
  color: #fff;
  background: #101216;
}

.premium-overview .premium-heading h2 {
  color: #fff;
}

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

.premium-overview-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}

.premium-overview-grid em {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-style: normal;
  font-weight: 950;
}

.premium-overview-grid b {
  color: #fff;
}

.premium-overview-grid p {
  color: rgba(255,255,255,.72);
}

.premium-lifestyle {
  background: #f5f0e8;
}

.premium-lifestyle-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.life-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.1)),
    url("assets/images/spc-feature-room.png") center / cover no-repeat;
}

.life-card:nth-child(2) { background-image: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.12)), url("assets/images/spc-interior-floor.png"); }
.life-card:nth-child(3) { background-image: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.14)), url("assets/images/spc-detail-1.jpg"); }
.life-card:nth-child(4) { background-image: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.08)), url("assets/images/spc-detail-2.jpg"); }

.life-card .floor-plane {
  height: 52%;
}

.life-card span {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: #111316;
  font-weight: 950;
}

.premium-spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(17,19,22,.1);
}

.premium-spec-grid div {
  min-height: 126px;
  padding: 22px;
  box-shadow: none;
}

.premium-spec-grid small {
  display: block;
  margin-bottom: 10px;
  color: #737b88;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.premium-spec-grid strong {
  color: #111316;
  font-size: 18px;
}

.premium-compare {
  background: #fbfaf7;
}

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

.premium-compare-grid article {
  padding: 26px;
  border-radius: 22px;
}

.premium-compare-grid p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(17,19,22,.08);
}

.premium-faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
}

.premium-faq details {
  margin-bottom: 12px;
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: none;
}

.premium-faq summary {
  cursor: pointer;
  color: #111316;
  font-size: 18px;
  font-weight: 950;
}

.premium-mobile-cart {
  display: none;
}

@media (max-width: 980px) {
  .premium-product-grid,
  .premium-gallery,
  .premium-heading,
  .premium-lifestyle-grid,
  .premium-faq-grid {
    grid-template-columns: 1fr;
  }

  .premium-info-card {
    position: static;
  }

  .premium-visual {
    min-height: 520px;
  }

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

  .premium-card-grid,
  .premium-overview-grid,
  .premium-spec-grid,
  .premium-compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .premium-announcement {
    font-size: 12px;
  }

  .premium-product-page .section-inner {
    width: min(100% - 28px, 1320px);
  }

  .premium-product-hero {
    padding-top: 18px;
  }

  .premium-visual {
    min-height: 420px;
  }

  .premium-thumbs,
  .premium-card-grid,
  .premium-overview-grid,
  .premium-spec-grid,
  .premium-compare-grid,
  .premium-actions {
    grid-template-columns: 1fr;
  }

  .premium-info-card {
    padding: 24px;
  }

  .premium-info-card h1 {
    font-size: 58px;
  }

  .premium-feature-cards,
  .premium-overview,
  .premium-lifestyle,
  .premium-specs,
  .premium-compare,
  .premium-faq {
    padding: 58px 0;
  }

  .premium-mobile-cart {
    position: fixed;
    z-index: 80;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,19,22,.1);
    box-shadow: 0 18px 50px rgba(17,19,22,.2);
  }

  .premium-mobile-cart span,
  .premium-mobile-cart strong {
    font-size: 13px;
    line-height: 1;
  }

  .premium-mobile-cart a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(250px, 1fr));
}

.solution-tile {
  min-height: 330px;
}

.supply-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 18px;
}

.supply-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.supply-copy {
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: min(460px, calc(100% - 72px));
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: rgba(13, 15, 19, 0.84);
}

.supply-copy > span:first-child {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 800;
}

.supply-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.cta-copy .large {
  color: #101216;
  font-size: 22px;
  font-weight: 800;
}

.news-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.small-accent {
  font-size: 20px;
}

.news-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.news-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 21, 25, 0.08);
}

.news-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card div {
  padding: 24px;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.22;
}

.news-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.news-card a {
  color: var(--red);
  font-weight: 800;
}

.footer {
  padding: 70px 20px 26px;
  color: #fff;
  background: #111316;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 42px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
}

.footer p {
  margin: 0 0 20px;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-button {
  display: inline-block;
  width: fit-content;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--red);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.inner-header {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 15, 19, 0.9), rgba(13, 15, 19, 0.58)),
    url("assets/voyagerfloor.com/assets/img/bg/header1.jpg") center / cover no-repeat;
}

.products-header {
  background:
    linear-gradient(90deg, rgba(13, 15, 19, 0.9), rgba(13, 15, 19, 0.5)),
    url("assets/voyagerfloor.com/assets/img/bg/products1.jpg") center / cover no-repeat;
}

.catalogs-header {
  background:
    linear-gradient(90deg, rgba(13, 15, 19, 0.78), rgba(13, 15, 19, 0.48)),
    url("assets/voyagerfloor.com/assets/img/bg/product.jpg") center / cover no-repeat;
}

.inner-header .navbar-wrap {
  padding-bottom: 20px;
}

.page-hero {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 92px;
}

.page-hero span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
}

.page-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.page-section {
  padding: 74px 20px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.page-card {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 21, 25, 0.08);
}

.page-card h2,
.page-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.15;
}

.page-card p,
.page-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.page-card p {
  margin: 0 0 16px;
}

.page-card ul {
  margin: 0;
  padding-left: 20px;
}

.page-media {
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
}

.page-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-list a,
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 21, 25, 0.07);
  font-weight: 800;
}

.page-cta {
  padding: 64px 20px;
  color: #fff;
  background: #15171b;
}

.page-cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-cta h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-info-stack {
  display: grid;
  gap: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 21, 25, 0.08);
}

.contact-form h2,
.contact-form p,
.contact-form-full,
.contact-checks,
.form-submit {
  grid-column: 1 / -1;
}

.contact-form h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.contact-form p {
  margin: -6px 0 4px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #15171b;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 21, 25, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  color: #111316;
  background: #f8f7f5;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-checks legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #15171b;
  font-size: 14px;
  font-weight: 800;
}

.contact-checks label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px 12px 44px;
  border: 1px solid rgba(18, 21, 25, 0.12);
  border-radius: 8px;
  background: #f8f7f5;
  cursor: pointer;
}

.contact-checks input {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.contact-checks span {
  color: #15171b;
  font-size: 14px;
  font-weight: 800;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  cursor: pointer;
}

.form-submit span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.76;
}

.form-error {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  color: #a21522;
  background: #fff1f3;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.form-error p {
  margin: 0;
  color: inherit;
}

.form-error a {
  justify-self: start;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
}

.contact-form.is-sent {
  align-content: center;
  min-height: 420px;
}

.form-confirmation {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 20px;
  text-align: center;
}

.form-confirmation span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.form-confirmation h2 {
  margin: 0;
  color: #101216;
  font-size: 34px;
  line-height: 1.1;
}

.form-confirmation p {
  max-width: 520px;
  margin: 0;
  color: #555b66;
  font-size: 16px;
  line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: inline-grid;
  gap: 2px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 50px rgba(18, 21, 25, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-float strong {
  font-size: 14px;
}

/* Unified mobile navigation - 2026-06-26 */
@media (max-width: 900px) {
  .navbar-wrap {
    z-index: 1000;
  }

  .sas-site-nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 8px;
    background: rgba(255,255,255,.10);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 1001;
    display: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 55px rgba(17, 24, 39, .24);
  }

  .nav-panel.is-open {
    display: block !important;
  }

  .nav-links,
  .nav-actions {
    display: block;
  }

  .nav-links a,
  .nav-phone {
    width: 100%;
    color: var(--ink);
  }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    background: transparent;
    box-shadow: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 12px;
    color: #fff;
    background: var(--red);
  }
}

.products-intro,
.decor-grid-section,
.gallery-section,
.project-cta-wrap {
  padding: 76px 20px;
}

.products-intro__inner {
  text-align: center;
}

.products-intro h2,
.gallery-intro h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.products-intro h2 em,
.gallery-intro h2 em {
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
}

.products-intro p,
.gallery-intro p {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.decor-list {
  display: grid;
  gap: 34px;
}

.decor-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 21, 25, 0.09);
}

.decor-card--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.decor-card__media {
  display: block;
  min-height: 350px;
  background: #ddd;
}

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

.decor-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
}

.decor-card__eyebrow {
  margin: 0 0 8px !important;
  color: var(--red) !important;
  font-weight: 800;
}

.decor-card h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

.decor-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.decor-card__cta {
  width: fit-content;
  min-width: 128px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  text-align: center;
}

.project-cta {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: 18px;
  background: #15171b;
  color: #fff;
}

.project-cta img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.project-cta__content {
  padding: 42px;
}

.project-cta__content h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
}

.project-cta__content p {
  max-width: 660px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.gallery-intro {
  padding: 74px 20px 34px;
  text-align: center;
}

.decor-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.decor-swatch {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 21, 25, 0.08);
}

.decor-swatch img {
  display: block;
  width: 100%;
  aspect-ratio: 0.62 / 1;
  object-fit: cover;
}

.decor-swatch span {
  display: block;
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-showcase,
.catalog-download-section,
.catalog-features {
  padding: 76px 20px;
}

.catalog-showcase-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 68px;
}

.catalog-showcase-copy h2 {
  margin: 0;
  color: #08090b;
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 800;
}

.catalog-showcase-copy h2 em {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 7vw, 82px);
  line-height: 0.95;
}

.catalog-showcase-copy p {
  max-width: 420px;
  margin: 26px 0 0;
  color: #111316;
  font-size: 17px;
  line-height: 1.52;
  font-weight: 500;
}

.catalog-showcase-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(18, 21, 25, 0.12);
}

.catalog-showcase-image img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.catalog-showcase-image figcaption {
  position: absolute;
  left: 36px;
  bottom: 28px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  font-style: italic;
  font-weight: 700;
}

.catalog-download-section {
  padding-top: 70px;
  padding-bottom: 74px;
}

.catalog-compact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: min(526px, 100%);
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(18, 21, 25, 0.12);
}

.catalog-compact-cover {
  display: block;
  width: 124px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f2f2;
}

.catalog-compact-cover img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.catalog-compact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 335px;
  padding: 28px 30px;
  border: 1px solid rgba(18, 21, 25, 0.08);
  border-radius: 18px;
  background: #fff;
}

.catalog-compact-actions img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: 0.55;
}

.catalog-compact-actions div {
  display: grid;
  gap: 12px;
}

.catalog-compact-actions a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

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

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 21, 25, 0.07);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.feature-pill img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.62;
}

.tech-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.catalog-tech-card {
  min-height: 350px;
  padding: 42px 34px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 21, 25, 0.08);
  text-align: center;
}

.catalog-tech-card img {
  width: 150px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 30px;
}

.catalog-tech-card h3 {
  margin: 0 0 14px;
  color: #050607;
  font-size: 24px;
  line-height: 1.18;
}

.catalog-tech-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.certificate-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.certificate-row div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px 4px;
  background: transparent;
  box-shadow: none;
  text-align: center;
  color: #8b8b8b;
  font-size: 13px;
  font-weight: 800;
}

.certificate-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 6;
  }

  .nav-panel {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    z-index: 40;
    display: none;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-links {
    display: block;
  }

  .nav-links a {
    width: 100%;
    color: var(--ink);
    padding: 12px 4px;
    line-height: 1.25;
  }

  .nav-links > li > a.active,
  .nav-links > li.is-current > a,
  .nav-links > li > a:hover {
    color: var(--red);
  }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    box-shadow: none;
    background: transparent;
  }

  .dropdown a {
    color: var(--muted);
    padding: 9px 10px;
  }

  .dropdown a.active,
  .dropdown a:hover {
    color: var(--red);
    background: #f8f2f2;
  }

  .nav-cta {
    margin-top: 10px;
    background: var(--button);
  }

  .nav-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-phone {
    color: var(--ink);
    padding: 8px 4px 0;
  }

  .hero-content {
    padding-top: 58px;
    padding-bottom: 220px;
  }

  .intro-card-wrap {
    margin-top: -175px;
    justify-content: center;
  }

  .strength-section {
    padding-top: 58px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .factory-panel {
    max-width: 560px;
  }

  .note-card {
    max-width: none;
    justify-self: stretch;
  }

  .note-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .note-card li {
    margin: 0;
  }

  .manufacturing-intro {
    margin-top: 68px;
  }

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

  .collection-grid,
  .solution-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .why-grid,
  .split-grid,
  .quality-section .split-grid,
  .news-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-photo img,
  .rounded-photo img {
    min-height: 320px;
  }

  .product-structure {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-structure img {
    width: min(420px, 100%);
  }

  .map-banner {
    min-height: 390px;
    padding: 28px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-grid,
  .link-list {
    grid-template-columns: 1fr;
  }

  .page-cta .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .decor-card,
  .decor-card--reverse,
  .project-cta {
    grid-template-columns: 1fr;
  }

  .decor-card--reverse .decor-card__media {
    order: -1;
  }

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

  .catalog-showcase-grid,
  .tech-card-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .hero {
    min-height: 650px;
  }

  .brand-mark {
    width: 46px;
    height: 38px;
    font-size: 16px;
  }

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

  .brand-logo {
    width: 132px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 50px;
    padding-bottom: 250px;
  }

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

  .hero-content p {
    font-size: 15px;
  }

  .intro-card-wrap {
    width: calc(100% - 32px);
    margin-top: -220px;
  }

  .intro-card {
    padding: 22px;
    border-radius: 16px 16px 0 0;
  }

  .accent {
    font-size: 28px;
  }

  .strength-section {
    padding: 48px 16px 70px;
  }

  .strength-section h2 {
    font-size: 42px;
  }

  .strength-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .catalog-button {
    width: 100%;
  }

  .note-card {
    padding: 20px;
  }

  .note-card ul {
    grid-template-columns: 1fr;
  }

  .manufacturing-intro h3 {
    font-size: 36px;
  }

  .manufacturing-intro p {
    font-size: 15px;
  }

  .metrics-section,
  .collections-section,
  .why-section,
  .cappadocia-section,
  .map-section,
  .quality-section,
  .private-label,
  .supply-section,
  .cta-section,
  .news-section {
    padding: 58px 16px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 0;
  }

  .section-kicker,
  .script-label {
    font-size: 32px;
  }

  .wide-strip {
    width: calc(100% - 32px);
  }

  .collection-grid,
  .solution-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .collection-tile,
  .solution-tile {
    min-height: 260px;
  }

  .highlight-box {
    padding: 28px 22px;
  }

  .highlight-box h2,
  .split-copy h2,
  .section-center h2,
  .news-heading h2 {
    font-size: 34px;
  }

  .product-structure {
    padding: 22px;
  }

  .product-structure p,
  .split-copy p,
  .split-copy li,
  .section-center p,
  .news-heading p {
    font-size: 15px;
  }

  .map-banner {
    min-height: 420px;
    padding: 18px;
  }

  .map-card {
    padding: 24px;
  }

  .supply-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 22px;
  }

  .supply-copy > span:first-child {
    font-size: 28px;
  }

  .footer {
    padding: 52px 16px 24px;
  }

  .page-hero {
    width: calc(100% - 32px);
    padding: 50px 0 70px;
  }

  .page-section,
  .page-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-card {
    padding: 22px;
  }

  .page-media img {
    min-height: 260px;
  }

  .contact-form {
    padding: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .products-intro,
  .decor-grid-section,
  .gallery-section,
  .project-cta-wrap,
  .gallery-intro {
    padding-left: 16px;
    padding-right: 16px;
  }

  .products-intro h2,
  .gallery-intro h2 {
    font-size: 34px;
  }

  .decor-card__media {
    min-height: 250px;
  }

  .decor-card__content,
  .project-cta__content {
    padding: 24px;
  }

  .decor-card h3 {
    font-size: 30px;
  }

  .decor-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .decor-swatch span {
    font-size: 13px;
  }

  .catalog-showcase,
  .catalog-download-section,
  .catalog-features {
    padding: 56px 16px;
  }

  .catalog-showcase-copy h2,
  .catalog-showcase-copy h2 em {
    font-size: 48px;
  }

  .catalog-showcase-image img {
    min-height: 280px;
  }

  .catalog-showcase-image figcaption {
    left: 22px;
    bottom: 18px;
    font-size: 40px;
  }

  .catalog-compact-card {
    flex-direction: column;
    width: min(360px, 100%);
  }

  .catalog-compact-actions {
    min-width: 0;
    width: 100%;
  }

  .feature-pill-grid,
  .certificate-row {
    grid-template-columns: 1fr;
  }

  .catalog-tech-card {
    min-height: 0;
    padding: 24px;
  }
}

/* Sticky SPC navigation - 2026-06-26 */
.navbar-wrap {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500 !important;
  padding: 12px 20px !important;
  background:
    linear-gradient(90deg, rgba(9, 11, 17, 0.94), rgba(18, 20, 28, 0.84));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.navbar-wrap .navbar {
  min-height: 72px;
}

.hero .hero-content {
  padding-top: 142px;
}

.inner-header .page-hero {
  padding-top: 150px !important;
}

.inner-header .navbar-wrap {
  padding-bottom: 12px !important;
}

@media (max-width: 900px) {
  .navbar-wrap {
    padding: 10px 16px !important;
  }

  .navbar-wrap .navbar {
    min-height: 62px;
  }

  .hero .hero-content {
    padding-top: 118px;
  }

  .inner-header .page-hero {
    padding-top: 126px !important;
  }

  .nav-panel {
    position: fixed !important;
    top: 84px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 1499 !important;
  }
}

@media (max-width: 560px) {
  .navbar-wrap {
    padding: 8px 12px !important;
  }

  .navbar-wrap .navbar {
    min-height: 58px;
  }

  .hero .hero-content {
    padding-top: 106px;
  }

  .inner-header .page-hero {
    padding-top: 112px !important;
  }

  .nav-panel {
    top: 76px !important;
    left: 12px !important;
    right: 12px !important;
  }
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.footer .legal-links a,
.footer-bottom .legal-links a {
  color: inherit;
  font-weight: 700;
  opacity: .82;
}

.footer .legal-links a:hover,
.footer-bottom .legal-links a:hover {
  opacity: 1;
}

/* Final mobile hamburger alignment - 2026-06-26 */
@media (max-width: 900px) {
  .navbar,
  .sas-site-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .menu-toggle {
    margin-left: auto !important;
    flex: 0 0 42px !important;
    order: 10 !important;
  }
}




.sas-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(10, 12, 16, .92);
  backdrop-filter: blur(8px);
}

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

body.sas-lightbox-open {
  overflow: hidden;
}

.sas-lightbox-image {
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background: #fff;
}

.sas-lightbox-close,
.sas-lightbox-nav {
  position: absolute;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #111;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.sas-lightbox-close {
  top: 24px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.sas-lightbox-nav {
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 42px;
}

.sas-lightbox-prev {
  left: 28px;
}

.sas-lightbox-next {
  right: 28px;
}

@media (max-width: 720px) {
  .sas-lightbox {
    padding: 18px;
  }

  .sas-lightbox-image {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 10px;
  }

  .sas-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .sas-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .sas-lightbox-prev {
    left: 10px;
  }

  .sas-lightbox-next {
    right: 10px;
  }
}

.roccia-story-section {
  padding: 72px 0 30px;
  background: #f7f6f2;
}

.roccia-story-card {
  max-width: 980px;
  padding: 44px 48px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.roccia-story-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #8b6f4d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.roccia-story-card h2 {
  margin: 0 0 22px;
  max-width: 760px;
  color: #111827;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.05em;
}

.roccia-story-card p {
  max-width: 850px;
  margin: 0 0 16px;
  color: #3f4652;
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 720px) {
  .roccia-story-section {
    padding: 42px 0 18px;
  }

  .roccia-story-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .roccia-story-card p {
    font-size: 16px;
  }
}

.roccia-story-card h3 {
  margin: 26px 0 12px;
  max-width: 760px;
  color: #1f2937;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.roccia-tech-strip {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #cfd3d8;
  color: #a9afb7;
  text-align: center;
}

.roccia-tech-title {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 34px 0;
  border-top: 1px solid #cfd3d8;
  color: #b5bac2;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.roccia-tech-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(54px, 1fr));
  gap: 13px 10px;
  align-items: start;
}

.roccia-tech-icons span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  line-height: 1.15;
  color: #a8aeb6;
}

.roccia-tech-icons i {
  width: 34px;
  height: 34px;
  border: 1px solid #c8ccd2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #a8aeb6;
  font-style: normal;
  font-size: 15px;
}

.roccia-cert-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.roccia-cert-row b {
  min-width: 38px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  color: #a9afb7;
  font-size: 14px;
  line-height: .9;
  text-transform: uppercase;
  opacity: .86;
}

.sas-product-card .sas-desc + .sas-desc {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .roccia-tech-title {
    padding-inline: 12px;
    white-space: normal;
    font-size: 11px;
  }

  .roccia-tech-icons {
    grid-template-columns: repeat(3, minmax(54px, 1fr));
  }
}

.roccia-tech-strip img {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  opacity: .88;
}

/* Roccia Gris requested refinements */
.sas-product-card .sas-price {
  display: none !important;
}

.roccia-tech-strip {
  margin-top: 16px !important;
  padding-top: 8px !important;
}

.roccia-tech-strip img {
  opacity: 1 !important;
  filter: contrast(1.45) brightness(.84) saturate(1.08);
}

/* Lift Roccia technical sticker closer to thumbnails */
.sas-product-card .sas-desc {
  font-size: 16px;
  line-height: 1.48;
  margin-bottom: 8px;
}

.sas-action-shots {
  margin-top: 14px !important;
}

.sas-action-shots img {
  height: 132px !important;
}

.roccia-tech-strip {
  margin-top: 6px !important;
  transform: translateY(-12px);
}

.roccia-tech-strip img {
  max-width: 410px !important;
  filter: contrast(1.65) brightness(.78) saturate(1.1) !important;
}

/* SPC models catalog page */
.models-catalog-hero {
  min-height: 430px;
  background: #e9e5dc;
  color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.models-catalog-hero .navbar-wrap { position: relative; z-index: 5; }
.models-catalog-hero .navbar { background: rgba(17, 19, 22, .94); border-radius: 0; }

.models-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 330px;
  padding: 74px 22px 34px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 34px;
}

.models-hero-copy span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9a6a24;
}

.models-hero-copy h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .86;
  letter-spacing: -.075em;
  color: #070707;
}

.models-hero-copy p {
  max-width: 480px;
  margin: 16px 0 0;
  color: #151515;
  font-size: 17px;
  line-height: 1.45;
}

.models-hero-board {
  margin: 0;
  height: 260px;
  transform: rotate(-9deg) translate(24px, 20px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.models-hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1.05);
}

.models-catalog-page { background: #fbfaf8; padding-bottom: 80px; }
.models-filter-bar { border-top: 1px solid rgba(15,23,42,.06); background: #fbfaf8; padding: 42px 20px 28px; }
.models-filter-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.models-filter-inner button { border: 0; border-radius: 999px; padding: 13px 18px; background: #f0ece5; color: #030303; font: inherit; font-size: 14px; cursor: default; }
.models-filter-inner p { margin: 0 22px; color: #111827; font-size: 15px; }
.models-grid-section { padding: 22px 20px 90px; }
.models-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.model-card { display: block; color: inherit; text-decoration: none; border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 18px 50px rgba(15,23,42,.07); transition: transform .22s ease, box-shadow .22s ease; }
.model-card:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(15,23,42,.12); }
.model-card figure { position: relative; margin: 0; aspect-ratio: 1 / .88; overflow: hidden; background: #e7e2da; }
.model-card figure::before, .model-card figure::after { content: "‹"; position: absolute; top: 50%; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; transform: translateY(-50%); color: #fff; font-size: 34px; text-shadow: 0 4px 18px rgba(0,0,0,.35); }
.model-card figure::before { left: 18px; }
.model-card figure::after { content: "›"; right: 18px; }
.model-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.model-card:hover img { transform: scale(1.035); }
.model-card div { position: relative; padding: 18px 18px 20px; }
.model-card span { position: absolute; right: 16px; top: -44px; padding: 8px 10px; border-radius: 6px; background: rgba(255,255,255,.92); color: #111; font-size: 12px; box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.model-card h2 { margin: 0 0 8px; color: #111827; font-size: 26px; letter-spacing: -.04em; }
.model-card p { margin: 0; color: #5d6470; font-size: 14px; line-height: 1.45; }
.model-card.is-placeholder { opacity: .9; }

@media (max-width: 980px) {
  .models-hero-inner { grid-template-columns: 1fr; padding-top: 44px; }
  .models-hero-board { height: 220px; transform: rotate(-5deg); }
  .models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .models-catalog-hero { min-height: auto; }
  .models-hero-inner { padding: 34px 18px 28px; }
  .models-hero-copy h1 { font-size: 54px; }
  .models-grid { grid-template-columns: 1fr; gap: 22px; }
  .models-filter-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .models-filter-inner p { display: none; }
}
