@font-face {
  font-family: "Poppins";
  src: url("./font/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./font/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./font/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./font/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #a39066;
  --color-bg: #ffffff;
  --color-text: #5f5b5c;
  --color-dark: #1d1d1f;
  --color-soft: #f1f1f1;
  --dark-constrast: #edad54;
  --content-max: 90rem;
  --shadow-soft: 0 1rem 2rem rgba(0, 0, 0, 0.08);
  --section-light: #ececed;
  --header-height: 3rem;
  --font-primary:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--section-light);
  color: var(--color-text);
  line-height: 1.7;
  font-family: var(--font-primary);
}

button,
input,
textarea,
select {
  font-family: var(--font-primary);
}

a {
  color: inherit;
}

main {
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

header {
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(0.25rem);
  border-bottom: 1px solid rgba(163, 144, 102, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 30;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

header a {
  text-decoration: none;
}

.logo {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  color: var(--color-primary);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

nav a {
  font-size: 0.75rem;
  letter-spacing: 0.04rem;
  font-weight: 700;
  color: #46413f;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 1;
}

.js header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.js header.nav-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

section {
  width: 100%;
  min-height: 45rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.js section.reveal-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

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

#banner {
  background-image: url("./images/1-1.jpg");
  background-size: cover;
  background-position: center;
  min-height: 40rem;
  padding: calc(var(--header-height) + 3rem) 6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
  line-height: 1.2;
  max-width: 100%;
  position: relative;
}

#banner h1 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.bannerCta {
  position: static;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 17rem;
  font-size: 1.15rem;
  color: #6d6450;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

#hero {
  background-image: url("./images/8-1.jpg");
  background-size: cover;
  background-position: center;
  padding: 4rem clamp(14rem, 22vw, 24rem) 4rem 4.5rem;
  gap: 3rem;
  background-attachment: scroll;
  position: relative;
  z-index: 1;
}

#hero .textFloatLeft {
  width: min(100%, 54rem);
}

.heroMobileVisual {
  display: none;
}

#hero .heroMobileVisual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#heroBenefits {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(24rem, 46rem) minmax(18rem, 30rem);
  justify-content: center;
  gap: 1.2rem;
  align-items: center;
  padding: 2.5rem 4.5rem 4rem;
  background: var(--section-light);
}

#heroBenefits .benefitsContent {
  max-width: 44rem;
  background: rgba(237, 237, 238, 0.94);
  padding: 2rem 2rem 2.2rem;
}

#heroBenefits .benefitsContent h2 {
  color: var(--color-primary);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

#heroBenefits .benefitsContent ul {
  margin-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.24rem;
}

#heroBenefits .benefitsVisual {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#heroBenefits .benefitsVisual img {
  width: 100%;
  max-width: 28rem;
  height: auto;
  align-self: center;
  object-fit: contain;
  display: block;
  border-radius: 0.1rem;
}

#ponudba {
  flex-wrap: wrap;
  align-content: center;
  gap: 2rem 3rem;
  padding: 4rem 7rem 5rem;
  background: var(--section-light);
}

#ponudba h1 {
  width: 100%;
  color: var(--color-primary);
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: -0.02rem;
}

#ponudba .leftColumn,
#ponudba .rightColumn {
  width: calc(50% - 1.5rem);
  font-size: 1.35rem;
}

#ponudba .rightColumn {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

#ponudba button {
  margin: 1rem auto 0;
  border: none;
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
  min-height: 3.7rem;
  width: min(100%, 33rem);
  cursor: pointer;
}

#ponudba button a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2ecdf;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.02rem;
  padding: 0.6rem 1rem;
}

main > section:not(#banner):not(#ponudba):not(#hero) {
  background: var(--section-light);
}

.textColumn {
  width: 33%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.2rem;
  gap: 1.2rem;
  background: var(--section-light);
}

.imageColumn {
  width: 67%;
  height: 100%;
}

.imageColumn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textColumn h2 {
  color: var(--color-primary);
  font-size: 2.9rem;
  line-height: 1.12;
}

.textColumn p {
  font-size: 1.3rem;
}

.textColumn p:last-child {
  margin-top: 0.5rem;
  border-left: 0.23rem solid var(--color-primary);
  padding-left: 0.9rem;
  font-weight: 700;
  color: #7e765f;
}

.moreLink {
  text-decoration: none;
}

.moreLink:hover {
  text-decoration: underline;
}

main > div:has(> a[href="#kontakt"]) {
  width: 100%;
  min-height: 4.8rem;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

main > div:has(> a[href="#kontakt"]) a {
  color: #f6f2e8;
  text-decoration: none;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
}

main > section:has(> h2):not(#ponudba):not(#hero) {
  flex-wrap: wrap;
  min-height: 25rem;
  gap: 2rem;
  align-content: center;
  padding: 5rem 7rem;
  background: var(--section-light);
}

main > section:has(> h2):not(#ponudba):not(#hero) > h2 {
  width: 100%;
  color: var(--color-primary);
  font-size: 3rem;
}

main > section:has(> h2):not(#ponudba):not(#hero) .leftColumn,
main > section:has(> h2):not(#ponudba):not(#hero) .rightColumn {
  width: calc(50% - 1rem);
  font-size: 1.28rem;
  font-style: italic;
}

main > section:has(> h2):not(#ponudba):not(#hero) .leftColumn,
main > section:has(> h2):not(#ponudba):not(#hero) .rightColumn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.novostiGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.novostiCard {
  background: #fff;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.novostiCard a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.novostiCard:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 1.6rem rgba(38, 38, 40, 0.12);
}

.novostiCard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.novostiCard span {
  padding: 1rem 1.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.textFloatLeft,
.textFloatRight {
  width: min(100%, 31rem);
  background: rgba(237, 237, 238, 0.94);
  padding: 2rem 2rem 2.4rem;
}

.textFloatLeft h2,
.textFloatRight h2 {
  color: var(--color-primary);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.textFloatLeft p {
  font-size: 1.26rem;
  white-space: pre-line;
}

.textFloatLeft h2:last-child {
  margin-top: 0.8rem;
}

.textFloatRight {
  overflow: hidden;
}

.textFloatRight ul {
  margin-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.24rem;
}

.textFloatRight img {
  width: 100%;
  margin-top: 1.3rem;
  border-radius: 0.1rem;
}

.subpageHero,
.subpageContent {
  min-height: auto;
  padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
  background: var(--section-light);
}

.subpageContent {
  padding-top: 0;
  padding-bottom: 4rem;
}

.subpageInner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  background: linear-gradient(160deg, #fcfcfd 0%, #f4f4f6 100%);
  border: 1px solid rgba(163, 144, 102, 0.2);
  box-shadow: var(--shadow-soft);
  border-radius: 0.8rem;
  padding: 2.2rem;
}

.subpageHero h1,
.subpageContent h2 {
  color: var(--color-primary);
  line-height: 1.2;
}

.subpageHero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.subpageContent h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.subpageHero p,
.subpageContent p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.subpageActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.subpageCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.6rem 1.1rem;
  background: var(--color-primary);
  color: #f2ecdf;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--color-primary);
  border-radius: 0.45rem;
}

.subpageCtaGhost {
  background: transparent;
  color: #6c5f43;
}

.pdfEmbedWrap {
  width: 100%;
  margin: 0 0 0.9rem;
  border: 1px solid rgba(163, 144, 102, 0.35);
  border-radius: 0.65rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0.8rem 1.8rem rgba(29, 29, 31, 0.12);
}

.pdfEmbedWrap iframe {
  width: 100%;
  height: 78rem;
  border: 0;
  display: block;
}

.pdfNote {
  color: #5f5b5c;
}

.catalogCarouselSection {
  min-height: auto;
  flex-direction: column;
  gap: 1.4rem;
  padding: 4rem 7rem 5rem;
  padding-bottom: 0;

  background: var(--section-light);
}

.catalogCarouselHeader {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.catalogCarouselHeader h2 {
  color: var(--color-primary);
  font-size: 2.3rem;
  line-height: 1.2;
}

.catalogCarouselHeader p {
  margin-top: 0.4rem;
  font-size: 1.05rem;
}

.catalogViewAllBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  background: var(--color-primary);
  color: #f7f2e8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.catalogCarouselTrack {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.catalogCard {
  background: #fff;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 3rem) / 4);
  min-height: 100%;
}

.catalogCardImageWrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f4f4f6;
}

.catalogCardImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogCardBody {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}

.catalogCardCategory {
  color: #7a7058;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
}

.catalogCardBody h3 {
  color: var(--color-dark);
  font-size: 1.2rem;
  line-height: 1.3;
}

.catalogCardBody p {
  font-size: 0.95rem;
}

.catalogCardMore {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.8rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(163, 144, 102, 0.5);
  color: #64593f;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.catalogPageHero,
.catalogPageContent,
.catalogItemPage {
  min-height: auto;
  padding: calc(var(--header-height) + 2.3rem) 1.5rem 2rem;
  background: var(--section-light);
}

.catalogPageHero {
  padding-top: 20px;
}

.catalogPageContent,
.catalogItemPage {
  padding-top: 0.6rem;
  padding-bottom: 3.5rem;
}

.catalogItemPage {
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(163, 144, 102, 0.1),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 22%,
      rgba(163, 144, 102, 0.08),
      transparent 32%
    ),
    var(--section-light);
}

.catalogPageInner,
.catalogItemInner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.catalogPageHero h1 {
  color: var(--color-primary);
  font-size: 2.35rem;
  line-height: 1.2;
}

.catalogPageHero p {
  margin-top: 0.7rem;
  font-size: 1.08rem;
}

.privacyContent {
  background: #fff;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.75rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.catalogFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: end;
  padding: 1.2rem;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.75rem;
  background: #fff;
}

.catalogFilters label {
  display: flex;
  flex-direction: column;
  flex: 1 1 14rem;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #615b4d;
}

.catalogFilters input,
.catalogFilters select {
  min-height: 2.6rem;
  border: 1px solid #d8d8da;
  border-radius: 0.5rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.95rem;
  color: #262628;
  background: #fff;
}

.catalogFilters button {
  flex: 0 0 auto;
  min-height: 2.6rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--color-primary);
  color: #f7f2e8;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
}

.catalogResultMeta {
  margin: 1rem 0 1.1rem;
  font-size: 0.95rem;
  color: #6f6a6a;
}

.catalogGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.catalogGridCard {
  background: #fff;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 2rem) / 3);
}

.catalogGridImage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f4f4f6;
}

.catalogGridImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogGridBody {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 13rem;
}

.catalogGridCategory {
  color: #7a7058;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.catalogGridBody h2 {
  color: var(--color-dark);
  font-size: 1.2rem;
  line-height: 1.28;
}

.catalogGridBody p {
  font-size: 0.95rem;
}

.catalogGridMore {
  margin-top: auto;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6a5d40;
}

.catalogPagination {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.catalogPagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(163, 144, 102, 0.4);
  color: #5f553d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.catalogPagination a.is-current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #f7f2e8;
}

.catalogEmpty {
  padding: 1.2rem;
  background: #fff;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.65rem;
}

.catalogItemInner {
  display: grid;
  grid-template-rows: 50px 1fr;
  gap: 0.7rem;
  align-items: stretch;
  min-height: clamp(36rem, calc(100dvh - 8rem), 52rem);
}

.catalogItemBreadcrumbRow {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  height: 50px;
}

.catalogItemCards {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  min-height: 0;
}

.catalogItemMedia {
  position: relative;
  flex: 1 1 48%;
  border: 1px solid rgba(163, 144, 102, 0.22);
  border-radius: 1rem;
  background: #fff;
  min-height: 0;
  box-shadow: 0 1.2rem 2.8rem rgba(40, 35, 25, 0.09);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.catalogEcoBadge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999rem;
  background: #1c9a43;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01rem;
  box-shadow: 0 0.45rem 1rem rgba(12, 63, 30, 0.22);
}

.catalogEcoBadgeItem {
  top: 1.2rem;
  right: 1.2rem;
}

.catalogItemMedia img {
  width: 100%;
  height: clamp(18rem, 54dvh, 34rem);
  object-fit: cover;
  display: block;
}

.catalogProductGallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: auto;
}

.catalogProductGallery.is-multi .catalogGalleryViewport {
  flex: 0 0 auto;
}

.catalogProductGallery.is-multi .catalogGalleryThumbs {
  flex: 0 0 auto;
  align-content: start;
}

.catalogProductGallery.is-single .catalogGalleryViewport {
  flex: 0 0 auto;
}

.catalogGalleryViewport {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(163, 144, 102, 0.22);
  background: #e8e8ec;
  height: clamp(18rem, 52dvh, 32rem);
}

.catalogGallerySlide {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  display: none;
  cursor: zoom-in;
  position: relative;
}

.catalogGallerySlide.is-active {
  display: block;
  height: 100%;
}

.catalogGallerySlide img,
.catalogGallerySlide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e8e8ec;
  display: block;
}

.catalogGalleryPlayBadge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(20, 20, 22, 0.62);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  padding-left: 0.2rem;
  pointer-events: none;
}

.catalogGalleryThumb {
  position: relative;
}

.catalogGalleryThumb video {
  width: 100%;
  height: 4.6rem;
  object-fit: cover;
  background: #e8e8ec;
  display: block;
}

.catalogGalleryThumb.is-video .catalogGalleryPlayBadge {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.7rem;
}

.catalogGalleryNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(20, 20, 22, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}

.catalogGalleryNav.is-prev {
  left: 0.6rem;
}

.catalogGalleryNav.is-next {
  right: 0.6rem;
}

.catalogGalleryThumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5.2rem, 1fr));
  gap: 0.45rem;
}

.catalogGalleryThumb {
  border: 1px solid rgba(163, 144, 102, 0.3);
  border-radius: 0.45rem;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.catalogGalleryThumb img {
  width: 100%;
  height: 4.6rem;
  object-fit: cover;
}

.catalogGalleryThumb.is-active {
  border-color: #8d7a4e;
}

.catalogBreadcrumbs {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.82rem;
  color: #6f6758;
  padding: 0.15rem 0.1rem;
}

.catalogBreadcrumbs a {
  text-decoration: none;
  color: #6f6758;
}

.catalogImageViewerDialog {
  border: none;
  margin: 0;
  padding: 2rem 4rem;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 0;
  background: rgba(10, 10, 12, 0.96);
  position: fixed;
  display: grid;
  place-items: center;
}

.catalogImageViewerDialog::backdrop {
  background: rgba(8, 8, 10, 0.78);
}

.catalogImageViewerStage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.catalogImageViewerStage img,
.catalogImageViewerStage video {
  max-width: 100%;
  max-height: 88dvh;
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  background: #c9c9cf;
  border-radius: 0.5rem;
}

.catalogImageViewerStage video {
  min-width: min(70vw, 60rem);
}

.catalogImageViewerStage .is-hidden {
  display: none;
}

.catalogImageViewerClose {
  display: inline-flex;
  background: #2d2d31;
  color: #fff;
  border: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
  cursor: pointer;
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}

.catalogImageViewerNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: rgba(45, 45, 49, 0.78);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.catalogImageViewerNav.is-prev {
  left: 0.7rem;
}

.catalogImageViewerNav.is-next {
  right: 0.7rem;
}

.catalogItemNoImage {
  min-height: 18rem;
  border-radius: 0.8rem;
  border: 1px dashed rgba(163, 144, 102, 0.4);
  color: #726a5a;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.catalogItemDetails {
  flex: 1 1 52%;
  border: 1px solid rgba(163, 144, 102, 0.22);
  border-radius: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #faf9f7 100%);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: 0 1.2rem 2.8rem rgba(40, 35, 25, 0.09);
}

.catalogItemDetailsFull {
  flex: 1 1 100%;
  max-width: 46rem;
  margin: 0 auto;
}

.catalogItemInner > .catalogItemDetailsFull {
  grid-row: 1 / -1;
  align-self: center;
}

.catalogItemBackLink {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999rem;
  border: 1px solid rgba(163, 144, 102, 0.38);
  background: #fff;
  color: #675c45;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.catalogItemMainContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.8rem;
  padding-bottom: 0;
  flex: 1 1 auto;
}

.catalogItemTitleBlock {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.catalogItemCategory {
  color: #7a7058;
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
}

.catalogItemDetails h1 {
  color: var(--color-dark);
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: -0.015rem;
}

.catalogItemLead {
  color: #4d4639;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
}

.catalogItemDetails p {
  font-size: 1.02rem;
  line-height: 1.62;
}

.catalogItemDescription {
  color: #6b6661;
}

.catalogSpecs {
  margin-top: 0.25rem;
  border: 1px solid rgba(163, 144, 102, 0.25);
  border-radius: 0.85rem;
  background: #fefdfb;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1 1 auto;
  justify-content: space-between;
}

.catalogSpecs div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(163, 144, 102, 0.12);
  flex: 1 1 0;
}

.catalogSpecs div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.catalogSpecs dt {
  flex: 0 0 9rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #5f5749;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.catalogSpecs dd {
  flex: 1 1 auto;
  font-size: 0.95rem;
  color: #474340;
}

.catalogItemActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0;
  padding-top: 0.55rem;
}

.catalogItemBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.6rem 1rem;
  border-radius: 0.58rem;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #f6f0e3;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.01rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.catalogItemBtn:hover {
  transform: translateY(-0.08rem);
  box-shadow: 0 0.5rem 1.2rem rgba(101, 89, 64, 0.24);
}

.catalogItemBtnGhost {
  background: #fff;
  color: #655940;
}

@media (max-width: 75rem) {
  .catalogCarouselSection {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .catalogCarouselTrack {
    flex-wrap: wrap;
  }

  .catalogCard {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .catalogPageHero,
  .catalogPageContent,
  .catalogItemPage {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .catalogFilters label {
    flex-basis: calc((100% - 0.9rem) / 2);
  }

  .catalogFilters button {
    flex: 1 1 100%;
  }

  .catalogGridCard {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .catalogItemInner {
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .catalogItemCards {
    flex-direction: column;
  }

  .catalogItemMedia {
    min-height: 18rem;
    aspect-ratio: 4 / 3;
  }

  .catalogEcoBadgeItem {
    top: 0.8rem;
    right: 0.8rem;
  }

  .catalogItemDetails {
    min-height: auto;
  }
}

footer {
  width: 100%;
  background-color: var(--color-dark);
}

.contactWrap {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  color: var(--color-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contactWrap h2 {
  text-align: center;
}

.contactWrap p {
  text-align: center;
}

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

.formRow {
  display: flex;
  gap: 0.75rem;
}

.formRow input:not([type="checkbox"]),
.contactForm textarea {
  width: 100%;
  border: 1px solid #4a4a4a;
  background-color: #fff;
  color: var(--color-dark);
  padding: 0.75rem;
}

.interestGroup input[type="checkbox"] {
  width: auto;
  flex: 0 0 auto;
}

.interestGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  align-items: flex-start;
  text-align: left;
}

.interestGroup span {
  width: 100%;
  text-align: left;
}

.interestGroup label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4rem;
  width: 100%;
  text-align: left;
}

.contactForm button {
  align-self: flex-end;
  border: none;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
}

.hpField {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.formStatus {
  margin: 0 0 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-align: left;
}

.formStatusOk {
  background-color: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #cdeccf;
}

.formStatusError {
  background-color: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.4);
  color: #f2c9c9;
}

.consentRow {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-soft);
  text-align: left;
}

.consentRow input[type="checkbox"] {
  width: auto;
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

.consentRow a {
  color: #d8c7a3;
}

.consentRow a:hover {
  color: #eadcc1;
}

.footerInfoWrap {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  border-top: 1px solid #2b2b2d;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footerInfo {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footerCol {
  flex: 1;
  color: var(--color-soft);
  text-align: center;
}

.footerCol h3 {
  margin-bottom: 0.7rem;
}

.socialRow {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.socialRow a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--dark-constrast);
  color: #fff;
  text-decoration: none;
}

.footerBottom {
  background-color: #19191b;
  padding: 0.8rem 1.25rem;
}

.footerBottom p {
  max-width: 75rem;
  margin: 0 auto;
  color: #5f5f61;
  font-size: 0.75rem;
}

@media (max-width: 80rem) {
  #ponudba,
  #banner,
  #hero,
  main > section:has(> h2):not(#ponudba):not(#hero) {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #banner {
    font-size: 2.5rem;
  }

  .textColumn h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 62rem) {
  section {
    min-height: auto;
  }

  #banner {
    min-height: 31rem;
    font-size: 2.1rem;
    padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
  }

  .bannerCta {
    margin-top: 10rem;
    width: 14rem;
    font-size: 1rem;
  }

  #ponudba {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  #ponudba h1 {
    font-size: 2.3rem;
  }

  #ponudba .leftColumn,
  #ponudba .rightColumn {
    width: 100%;
    font-size: 1.1rem;
  }

  #ponudba button a {
    font-size: 1.2rem;
  }

  main > section:not(#banner):not(#ponudba):not(#hero) {
    flex-direction: column;
  }

  .textColumn,
  .imageColumn {
    width: 100%;
  }

  .textColumn {
    order: 1;
    padding: 2.2rem 1.5rem;
    gap: 0.8rem;
  }

  .imageColumn {
    order: 2;
    min-height: 18rem;
  }

  .textColumn h2 {
    font-size: 1.9rem;
  }

  .textColumn p {
    font-size: 1.02rem;
  }

  main > section:has(> h2):not(#ponudba):not(#hero) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  main > section:has(> h2):not(#ponudba):not(#hero) > h2 {
    font-size: 2rem;
  }

  main > section:has(> h2):not(#ponudba):not(#hero) .leftColumn,
  main > section:has(> h2):not(#ponudba):not(#hero) .rightColumn {
    width: 100%;
    font-size: 1rem;
  }

  #hero {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.2rem 1.5rem;
    background-image: none;
    background-attachment: scroll;
  }

  .heroMobileVisual {
    display: block;
    width: calc(100% + 3rem);
    margin: -2.2rem -1.5rem 0;
  }

  #hero .heroMobileVisual img {
    max-height: 26rem;
    object-fit: cover;
    object-position: center 26%;
  }

  #hero .textFloatLeft {
    width: 100%;
  }

  #heroBenefits {
    padding: 1.2rem 1.5rem 2.2rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  #heroBenefits .benefitsContent {
    max-width: none;
    padding: 1.4rem;
  }

  #heroBenefits .benefitsContent h2 {
    font-size: 2rem;
  }

  #heroBenefits .benefitsContent ul {
    font-size: 1rem;
  }

  #heroBenefits .benefitsVisual {
    justify-content: center;
  }

  #heroBenefits .benefitsVisual img {
    max-width: 18rem;
    margin: 0 auto;
  }

  .textFloatLeft,
  .textFloatRight {
    width: 100%;
    padding: 1.4rem;
  }

  .textFloatLeft h2,
  .textFloatRight h2 {
    font-size: 2rem;
  }

  .textFloatLeft p,
  .textFloatRight ul {
    font-size: 1rem;
  }

  .subpageHero h1 {
    font-size: 2rem;
  }

  .subpageContent h2 {
    font-size: 1.55rem;
  }

  .subpageHero p,
  .subpageContent p {
    font-size: 1rem;
  }

  .subpageInner {
    padding: 1.4rem;
  }

  .catalogCarouselSection {
    padding: 2.5rem 1.5rem;
    padding-bottom: 0;
  }

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

  .catalogCarouselHeader h2 {
    font-size: 1.9rem;
  }

  .catalogViewAllBtn {
    width: 100%;
  }

  .catalogCarouselTrack {
    flex-wrap: wrap;
  }

  .catalogCard {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .catalogPageHero,
  .catalogPageContent,
  .catalogItemPage {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .catalogPageHero h1 {
    font-size: 2rem;
  }

  .catalogFilters {
    align-items: stretch;
  }

  .catalogFilters label {
    flex-basis: 100%;
  }

  .catalogGrid {
    flex-wrap: wrap;
  }

  .catalogGridCard {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .catalogItemInner {
    display: block;
    min-height: auto;
  }

  .catalogItemCards {
    flex-direction: column;
  }

  .catalogItemBreadcrumbRow {
    height: auto;
    margin-bottom: 0.7rem;
  }

  .catalogItemMedia,
  .catalogItemDetails {
    min-height: auto;
    flex-basis: auto;
    width: 100%;
  }

  .catalogItemMedia {
    aspect-ratio: auto;
  }

  .catalogGalleryViewport {
    height: clamp(15rem, 44dvh, 24rem);
  }

  .catalogItemDetails {
    padding: 1.35rem;
  }

  .catalogItemDetails h1 {
    font-size: 1.95rem;
  }

  .subpageActions {
    flex-direction: column;
  }

  .subpageCta {
    width: 100%;
  }

  .pdfEmbedWrap iframe {
    height: 34rem;
  }

  main > div:has(> a[href="#kontakt"]) a {
    font-size: 1.35rem;
    text-align: center;
    padding: 0.3rem 1rem;
  }
}

@media (max-width: 48rem) {
  .logo {
    font-size: 1.4rem;
    letter-spacing: 0.08rem;
  }

  .catalogPageHero,
  .catalogPageContent,
  .catalogItemPage {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .catalogFilters {
    flex-direction: column;
    align-items: stretch;
  }

  .catalogGrid {
    flex-direction: column;
  }

  .catalogCarouselTrack {
    flex-direction: column;
  }

  .catalogCard,
  .catalogGridCard {
    flex-basis: 100%;
  }

  .catalogEcoBadge {
    top: 0.45rem;
    right: 0.45rem;
    min-height: 1.6rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.66rem;
  }

  .catalogCardBody,
  .catalogGridBody {
    min-height: auto;
  }

  .catalogCardBody h3,
  .catalogGridBody h2 {
    font-size: 1.1rem;
  }

  .catalogItemDetails h1 {
    font-size: 1.7rem;
  }

  .catalogItemMedia {
    aspect-ratio: auto;
    min-height: 0;
  }

  .catalogItemBreadcrumbRow {
    margin: 0;
  }

  .catalogGalleryViewport {
    height: clamp(13rem, 42dvh, 22rem);
  }

  .catalogGalleryThumb img {
    height: 3.8rem;
  }

  .catalogImageViewerDialog {
    padding: 1rem 2rem;
  }

  .catalogSpecs div {
    flex-direction: column;
    gap: 0.25rem;
  }

  .catalogSpecs dt {
    flex-basis: auto;
  }

  nav {
    gap: 0.7rem;
  }

  nav a {
    font-size: 0.65rem;
  }

  header {
    padding: 0 0.8rem;
  }

  .formRow {
    flex-direction: column;
  }

  .contactForm button {
    align-self: stretch;
  }

  .consentRow {
    font-size: 0.85rem;
  }

  .footerInfo {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 30rem) {
  header {
    padding: 0 0.6rem;
  }

  .logo {
    font-size: 1.15rem;
    letter-spacing: 0.04rem;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.58rem;
    letter-spacing: 0.02rem;
  }

  #banner {
    font-size: 1.8rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .bannerCta {
    width: 100%;
    margin-top: 6rem;
  }

  #ponudba,
  #hero,
  #heroBenefits {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .catalogGalleryThumbs {
    grid-template-columns: repeat(auto-fill, minmax(4rem, 1fr));
  }

  .catalogItemPrice {
    font-size: 1.2rem;
  }

  .catalogPriceTable th,
  .catalogPriceTable td {
    padding: 0.45rem 0.55rem;
    font-size: 0.82rem;
  }
}

/* ---- Prices (catalog cards, carousel, item page) ---- */
.catalogItemPrice {
  font-size: 1.35rem;
  font-weight: 700;
  color: #5d4f2c;
  margin: 0.35rem 0 0.2rem;
}

.catalogGridPrice,
.catalogCardPrice {
  font-weight: 700;
  color: #5d4f2c;
  margin: 0.15rem 0 0.35rem;
}

/* ---- Price / dimensions table on item page ---- */
.catalogPriceTableWrap {
  margin-top: 1.4rem;
}

.catalogPriceTableTitle {
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: #2f2a1f;
}

.catalogPriceTableScroll {
  overflow-x: auto;
  border: 1px solid rgba(163, 144, 102, 0.28);
  border-radius: 0.6rem;
}

.catalogPriceTable {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}

.catalogPriceTable th,
.catalogPriceTable td {
  text-align: left;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(163, 144, 102, 0.2);
  white-space: nowrap;
}

.catalogPriceTable thead th {
  background: #f1ede1;
  font-weight: 700;
  color: #4a4332;
}

.catalogPriceTable tbody tr:nth-child(even) {
  background: rgba(241, 237, 225, 0.4);
}

.catalogPriceTable tbody tr:last-child td {
  border-bottom: 0;
}

/* ---- Placeholder when a product has no thumbnail image ---- */
.catalogNoThumb {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 11rem;
  background: #e8e8ec;
  color: #8a8472;
  font-size: 0.95rem;
  letter-spacing: 0.02rem;
}
