/**
* GENERAL
*/
@font-face {
  font-family: 'Overused Grotesk';
  src: url('../fonts/OverusedGrotesk-VF.woff2') format('woff2');
}

@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/ClashDisplay-Variable.woff2') format('woff2');
}
@font-face {
  font-family: "PP Editorial New";
  src: url("../fonts/PPEditorialNew-Italic.otf");
  font-weight: 400;
  font-style: italic;
}
:root {
  --white: #fff;
  --black: #0f0f0f;
  --gray: #8e8e8e;
  --primary: #b39673;
  --primary-hover: #9a7d5e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0;
  font-family: 'Overused Grotesk', sans-serif !important; 
}
figure,
ol,
p,
ul,
blockquote {
  margin: 0;
  padding: 0;
}
h2 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
}
em {
    font-family: 'PP Editorial New', sans-serif;
}
body {
    font-family: 'Overused Grotesk', sans-serif;
}
/* BUTTONS */
/* Only strip the focus ring; never force colors on click so buttons keep
   their own hover/focus styling while pressed (see :active rules below). */
button:focus,
button:active,
.btn:focus,
.btn:active,
.btn:first-child:active {
  outline: none !important;
  box-shadow: none !important;
}
.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2.5rem;
  border-radius: 3rem;
  background: #b39673;
  color: var(--white);
  width: fit-content;
  height: 3rem;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    15deg,
    #b39673,
    #c4a582,
    #d4b491,
    #e4c3a0,
    #f4d2af,
    #e4c3a0,
    #d4b491,
    #c4a582,
    #b39673
  ) no-repeat;
  background-size: 300%;
  background-position: left center;
  border-radius: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease, background-position 0.3s ease;
  z-index: -1;
}

.primary-btn:hover::before,
.primary-btn:focus::before,
.primary-btn:active::before {
  opacity: 1;
  background-position: right center;
}

.primary-btn:hover,
.primary-btn:focus,
.primary-btn:active {
  background: var(--primary-hover);
  color: var(--white);
}

.primary-btn > * {
  position: relative;
  z-index: 1;
}
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2.5rem;
  height: 3rem;

  border-radius: 3rem;
  border: none;
  outline: 1px solid rgba(0,0,0,0.08);
  outline-offset: -1px;

  cursor: pointer;
  white-space: nowrap;

  color: var(--black);
  background:
    linear-gradient(to right, #999 -10%, #999 48%, white 52%, white 110%);
  background-size: 220% 100%;
  background-position: right;
  
  transition: 
    background-position .35s ease,
    color .35s ease,
    border-color .35s ease;
}

.light-btn:hover,
.light-btn:focus,
.light-btn:active {
  background-position: left;
  color: white;
  border-color: #999;
}

.light-btn svg path {
  stroke: currentColor;
}

.transparent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2.5rem;
  border-radius: 3rem;
  background: transparent;
  color: var(--black);
  width: fit-content;
  height: 3rem;
  border: 1px solid rgba(15, 15, 15, 0.1);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.transparent-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    15deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  ) no-repeat;
  background-size: 300%;
  background-position: left center;
  border-radius: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease, background-position 0.3s ease;
  z-index: -1;
}

.transparent-btn:hover::before,
.transparent-btn:focus::before,
.transparent-btn:active::before {
  opacity: 1;
  background-position: right center;
}

.transparent-btn:hover,
.transparent-btn:focus,
.transparent-btn:active {
  border-color: rgba(15, 15, 15, 0.2);
  background: rgba(255, 255, 255, 0.03);
}
/* BUTTONS END */
.call-button:hover {
  background-color: #796346;
}

.contact-person a:hover {
  color: #796346;
}

.footer-middle a:hover {
  color: #818181;
}

.footer-middle-button:hover {
  background-color: #f5f5f5;
  color: #000000 !important;
}

.header-top a:hover,
.header-bottom-left a:hover {
  color: #a0a0a0;
}

.eshop-button:hover,
.eshop-button:focus,
.eshop-button:active {
  color: #ffffff;
  background-color: #796346;
}

li {
  list-style: none;
}

.hero-button2:hover,
.hero-button2:focus,
.hero-button2:active {
  background: none;
  border: 2px solid white;
  color: white;
}

.hero-button3:hover,
.hero-button3:focus,
.hero-button3:active {
  background: white;
  color: #000000;
}

body {
  font-family: 'Overused Grotesk', sans-serif !important;
  color: #000000;
  background-color: rgb(255, 255, 255);
}
.section-padding {
  padding: 3rem 0;
}
.section-padding-sm {
  padding: 2rem 0;
}
/**
* HEADER
*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.header.dark {
  color: var(--black) !important;
  position: static;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}
.header.dark.sticky {
  position: fixed;          /* dôležité – aby nebol v layout flow */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
  opacity: 0;
  pointer-events: none;

  background: var(--white); /* môže ostať */
  transition: opacity .3s ease;

  transform: translateY(-100%); /* skryjeme ho mimo viewportu */
}

.header.dark.sticky.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);       /* hladký nájazd */
}
.header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
#sticky-trigger {
  height: 1px;
  width: 100%;
}
.header {
  width: 100%;
  background-color: none;
}
.header-top {
  padding: 0.875rem 0;
  border-bottom: 1px solid #ffffff1a;
}
.dark .header-top {
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}
.header-top-left {
  display: flex;
  gap: 0.625rem;
}
.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-right li a {
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 1rem;
  color: #ffffff;
  text-decoration: none;
}
.dark .header-top-right li a {
  color: var(--black);
}
.header-top-left li,
.header-top-left li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-bottom {
  padding: 1rem 0;
}
.dark .header-bottom {
  padding: 1rem 0 1rem 0;
}
.header-bottom-left {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}
.header-bottom-left .furnetto-logo {
  display: flex;
}
.header-bottom-left .furnetto-logo svg,
.header-bottom-left .furnetto-logo img {
  width: 10.8125rem;
  height: auto;
}
.header-bottom-left li a {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
.header-bottom-left li .nav-toggle {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  appearance: none;
}
.dark .header-bottom-left li a {
  color: var(--black);
}
.dark .header-bottom-left li .nav-toggle {
  color: var(--black);
}
.header-bottom ul li {
  position: relative;
  line-height: normal;
}

.header-bottom-left li .nav-toggle {
    transition: all 0.3s ease-in-out;
}
.header-dropdown {
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  z-index: 99999;
  min-width: max-content;
  justify-items: center;
  align-items: center;

  transition: all 0.2s ease-in-out;
}
.header-dropdown li {
  width: 100%;
}

.header-dropdown li a {
  display: flex;
  width: 100%;
  color: #fff;
  padding: 0rem 1rem;
  text-decoration: none;
}
.dark .header-dropdown li a {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.header-dropdown li a:hover,
.dark .header-bottom-left .header-dropdown li a:hover {
  color: #eee;
  text-decoration: underline #eeeeee;
}
.header-bottom ul li:hover > .header-dropdown {
  opacity: 1;
  pointer-events: auto;
}
.header-bottom-right {
  align-items: center;
  justify-content: center;
}
.header-bottom-right div {
  margin-top: -20px;
}
.eshop-button {
  color: #ffffff;
  text-decoration: none;
  background: #b39673;
  padding: 0.5rem 2rem 0.5rem 2.5rem;
  gap: 6px;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  height: 3rem;
}
.header-bottom-left li a,
.header-bottom-left li .nav-toggle,
.header-top-right li a{
    transition: all 0.3s ease-in-out;
}
.header-bottom-left li a:hover,
.header-bottom-left li .nav-toggle:hover,
.header-top-right li a:hover {
   text-decoration: underline #eeeeee;
   color: #eeeeee;
}
.dark .header-bottom-left li a:hover,
.dark .header-bottom-left li .nav-toggle:hover,
.dark .header-top-right li a:hover {
   text-decoration: underline #000;
   color: #000;
}
.mobile-nav .nav-toggle {
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  appearance: none;
}
.header-top-left a svg {
    transition: transform 0.3s ease-in-out;
}
.header-top-left a svg:hover {
    transform: rotate(360deg);
}
/**
* HERO
*/
.hero {
  position: relative;
  height: 100vh;
  margin-bottom: 3rem;
}
.hero::after {
  position: absolute;
  content: '';
  inset: 0;
  background:
    /* jemné stmavenie celého obrazu */
    linear-gradient(
      rgba(22, 17, 10, 0.45),
      rgba(22, 17, 10, 0.45)
    ),

    /* silnejšie stmavenie okrajov (vignette) */
    radial-gradient(
      ellipse at center,
      rgba(22, 17, 10, 0.15) 35%,
      rgba(22, 17, 10, 0.55) 70%,
      #16110a 100%
    );
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  display: flex;
  align-items: center;
  color: #ffffff;
  position: relative;
  z-index: 2;

  height: 100%;
}

.hero-text h1 {
  /* font-family: 'Clash Display'; */
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.hero-button1 {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(150, 150, 150, 0.05) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 15px;
  /* padding: 10px 20px; */
  padding: 1.5rem;
}
.hero-button1 p {
  max-width: 14rem;
}
.portraits {
  display: flex;
}
.portraits li {
  margin-left: -10px;
}
.portraits li:first-child {
  margin-left: 0;
}
.portraits li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.hero-text p {
    font-size: 1.1rem;
}
.hero-button2 {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 25px;
  white-space: nowrap;
}

.hero-button3 {
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 25px;
  white-space: nowrap;
}
.hero .transparent-btn {
  border: 1px solid #FFF;
  color: var(--white);
}
/**
* REVIEW
*/

.text-block {
  max-width: 70ch;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 auto;
  color: #8e8e8e;
}

.fade-text {
  margin: 0.7em 0;
  color: inherit;
}

.line {
  display: block;
  color: inherit;
  --reveal: 0%;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .line {
    background-image: linear-gradient(
      90deg,
      #0f0f0f 0%,
      #0f0f0f var(--reveal, 0%),
      #8e8e8e var(--reveal, 0%),
      #8e8e8e 100%
    );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 0.2s ease-out, background-position 0.2s ease-out;
  }
}

.review-text {
  text-align: center;
}

.review-text h2 {
  color: #8e8e8e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.review-text p {
  /* font-family: 'Clash Display'; */
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0px;
}

.siva {
  color: #8e8e8e;
}

.review-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-card.review-card-block {
  height: 100%;
}
.review-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.review-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

.review-content {
  padding: 18px 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}

.stars {
  color: #f1c232;
  font-size: 18px;
}

.review-content h3 {
    font-family: "Overused Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.review-content p {
    display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;       
  -webkit-box-orient: vertical; 
  overflow: hidden;            
  text-overflow: ellipsis;
    font-weight: 400;
    font-size: 0.875rem;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  font-size: 0.875rem;
  color: #888;
}
#reviews-carousel {
  position: relative;
}

.custom-arrows.splide__arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.custom-arrows .splide__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #0f0f0f33;
  position: static;
  transform: translateX(0);
  opacity: 1;
}
.custom-arrows .splide__arrow svg {
  opacity: 1;
}
.splide__arrow--prev {
  border: 1px solid #0f0f0f14;
}
.splide__arrow--next {
  border: 1px solid #0f0f0f14;
}
.splide__arrow--prev svg {
    transform: scaleX(1);
}

/**
* STATS
*/
.stats-bg-wrapper {
  margin: 0 1rem;
  padding: 2rem 0 4rem 0;
  border-radius: 1.5rem;
  background: var(--white);
  position: relative;
}
.stats-bg-wrapper::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background: #f4f4f4;
  width: 100%;
  height: 80%;
  border-radius: inherit;
}
.stats-bg-wrapper .container {
  position: relative;
}
.product-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 22.375rem;
  border-radius: 1rem;
  transition: transform 0.3s ease-in-out;
}
.product-card:hover {
    transform: translateY(2%);
}
.product-card::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(52, 43, 31, 0) 39.81%,
      rgba(52, 43, 31, 0.5) 69.9%,
      #342b1f 100%
    ),
    linear-gradient(
      180deg,
      rgba(52, 43, 31, 0) 39.81%,
      rgba(52, 43, 31, 0.5) 69.9%,
      #342b1f 100%
    );
  border-radius: inherit;
  z-index: 2;
}
.product-card-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.product-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
.product-card-info {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.product-card-info h3 {
    font-size: 2rem;
    font-weight: 600;
}
.product-card-bottom {
  padding-top: 1.125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
}
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-box h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 7rem;
  font-weight: 500;
}
.stat-box h3 span:nth-of-type(2) {
  vertical-align: super;
  font-size: 60%;
  font-weight: 600;
}
.stat-box p {
  color: rgba(15, 15, 15, 0.7);
  font-size: 1.25rem;
  line-height: 1.75rem; /* 140% */
}


/**
* VIDEO
*/

.subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}
.subtitle-wrapper::before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.0625rem;
  background-color: var(--primary);
  opacity: 0.7;
}
.video-section {
  color: var(--white);
}
.video-section .subtitle-wrapper {
    color: var(--white);
}
.video-section .subtitle-wrapper::before {
    background-color: var(--white);
}
.video-section .container {
  background: var(--primary);
  border-radius: 1.5rem;
  position: relative;
}
.video-section h2 {
    color: var(--white);
}
.vis-left-side img {
  position: absolute;
  top: 50px;
  left: -23px;
  width: 38.75rem;
  height: 100%;
  border-radius: 1.5rem;
  background: var(--white);
  filter: brightness(0.8);
}
.vis-right-side {
  padding-top: 5.7rem;
  padding-bottom: 4.2rem;
  gap: 2rem;
  z-index: 6;
}
.vis-right-side-top {
    padding-right: 4rem;
}
.vis-right-side-bottom {
  padding-left: 3.75rem;
}
.vis-box {
  gap: 0.625rem;
  flex: 1 0 0;
  align-items: flex-start;
}
.vis-box-text {
  gap: 0.625rem;
  justify-content: center;
  flex: 1 0 0;
}
.vis-box-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4375rem;
}
.vis-box-text p {
  font-size: 0.875rem;
  font-weight: 500;
}
.vis-right-side-bottom .video-btns {
  margin-left: 2.1875rem;
}
.video-section .transparent-btn {
    color: var(--white);
    border: 1px solid var(--white);
}

/**
* SOLO CAROUSEL
*/
/* .carouselsolo {
  overflow-x: clip;
}
.swiper {
  width: 100%;
}

.swiper-slide {
  position: relative;
  width: 42.1875rem;
  box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.10);
}
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); 
  border-radius: 1rem;
  opacity: 1;
  transition: 0.3s ease;
  pointer-events: none;
}
.swiper-slide-active::after {
  opacity: 0;
}
.swiper-slide-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
}
.swiper-slide-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  user-select: none;
} */
.carousel .subtitle-text {
    color: #0f0f0fb2;;
}
.socials-wrapper {
  gap: 0.625rem;
}
.socials-wrapper .socials .social {
  align-items: center;
  font-size: 1.25rem;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
.socials-wrapper .socials .social:hover {
  color: var(--primary);
  text-decoration: underline var(--primary);
}
.socials-wrapper .socials .social svg path {
  transition: all 0.3s ease-in-out;
}
.socials-wrapper .socials .social:hover svg path {
  fill: var(--primary) !important;
}
.masonry-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 9rem;
    grid-auto-flow: dense;
    gap: 1.5rem;
}
.grid-item {
    display: block;
    overflow: hidden;
    border-radius: .5rem;
}
.grid-item .inspiration-gallery-img-wrapper {
    width: 100%;
    height: 100%;
    display: block;
}
.inspiration-gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.grid-item:hover img {
    transform: scale(1.02);
}
/* 8-item pattern (4 cols): row1 T S T S, row2 S T S T -> bottoms align */
.masonry-grid .grid-item:nth-child(8n+1) { grid-column: 1; grid-row: span 3; }
.masonry-grid .grid-item:nth-child(8n+2) { grid-column: 2; grid-row: span 2; }
.masonry-grid .grid-item:nth-child(8n+3) { grid-column: 3; grid-row: span 3; }
.masonry-grid .grid-item:nth-child(8n+4) { grid-column: 4; grid-row: span 2; }
.masonry-grid .grid-item:nth-child(8n+5) { grid-column: 1; grid-row: span 2; }
.masonry-grid .grid-item:nth-child(8n+6) { grid-column: 2; grid-row: span 3; }
.masonry-grid .grid-item:nth-child(8n+7) { grid-column: 3; grid-row: span 2; }
.masonry-grid .grid-item:nth-child(8n+8) { grid-column: 4; grid-row: span 3; }

.page-header {
  margin-bottom: 2.5rem;
}

.page-intro {
  max-width: 56rem;
}

.page-intro h1 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 0;
}

.page-intro h1,
.interiors-project__content h2 {
  text-wrap: balance;
}

.page-intro p {
  max-width: 60ch;
  margin: 1rem auto 0;
  color: rgba(15, 15, 15, 0.72);
  line-height: 1.6;
}

.reference-gallery {
  margin-top: 0.5rem;
}

.reference-empty {
  padding: 3rem 1.5rem;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: 1.25rem;
  background: #fafafa;
}

.reference-empty p {
  margin-bottom: 0;
  color: rgba(15, 15, 15, 0.72);
}

.interiors-projects {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.interiors-project + .interiors-project {
  padding-top: 3rem;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.interiors-project__content {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: flex-start;
}

.interiors-project__content h2 {
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0;
}

.project-summary {
  margin-bottom: 0;
  color: rgba(15, 15, 15, 0.72);
  line-height: 1.7;
  max-width: 48ch;
  font-size: 1rem;
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

.project-media-grid__item {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  background: #f4f4f4;
}

.project-media-grid__item--hero {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}

.project-media-grid__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.project-media-grid__item:not(.project-media-grid__item--hero):not(.project-media-grid__item--wide) {
  aspect-ratio: 1 / 1;
}

.project-media-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-media-grid__item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-media-grid__item:hover img {
  transform: scale(1.03);
}

.project-media-grid__empty {
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(15, 15, 15, 0.16);
  border-radius: 1rem;
  background: #fafafa;
}

.project-media-grid__empty p {
  margin-bottom: 0;
  color: rgba(15, 15, 15, 0.72);
}

.customer-references-feed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.customer-reference-item + .customer-reference-item {
  padding-top: 3rem;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.customer-reference-content {
  display: flex;
  flex-direction: column;
  max-width: 65ch;
}

.customer-reference-meta {
  color: rgba(15, 15, 15, 0.72);
  font-size: 0.95rem;
  line-height: 1.4;
}

.customer-reference-meta .author {
  color: var(--black);
  font-weight: 600;
}

.customer-reference-meta .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.28);
}

.customer-reference-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.customer-reference-description {
  margin-bottom: 0;
  color: rgba(15, 15, 15, 0.78);
  line-height: 1.7;
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.customer-reference-description.is-expanded {
  display: block;
}

.customer-reference-toggle-btn {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  transition: opacity 0.2s ease;
}

.customer-reference-toggle-btn:hover,
.customer-reference-toggle-btn:focus-visible {
  opacity: 0.75;
}

.customer-reference-toggle-btn:focus-visible {
  outline: 2px solid rgba(142, 108, 82, 0.45);
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

.customer-references .reference-gallery {
  margin-top: 0;
}

.customer-references .masonry-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 0.75rem;
}

.customer-references .masonry-grid .grid-item:nth-child(n) {
  grid-column: span 2;
  grid-row: auto;
  aspect-ratio: 4 / 3;
}

.customer-references .masonry-grid .grid-item > a {
  display: block;
  width: 100%;
  height: 100%;
}

.customer-references .masonry-grid .grid-item .inspiration-gallery-img-wrapper,
.customer-references .masonry-grid .grid-item .inspiration-gallery-img-wrapper picture,
.customer-references .masonry-grid .grid-item .inspiration-gallery-img-wrapper img {
  height: 100%;
}

.customer-references .masonry-grid.gallery-fill-last-row.remainder-2 .grid-item:nth-last-child(-n+2) {
  grid-column: span 3;
}

.customer-references .masonry-grid.gallery-fill-last-row.remainder-1 .grid-item:last-child {
  grid-column: 1 / -1;
}
/**
* FORM
*/
.contact-form-section {
  background: #f4f4f4;
  margin: 3rem 1rem;
  padding: 6rem 0;
  border-radius: 1.5rem;
}
.contact-form-section p {
  color: rgba(15, 15, 15, 0.7);
  line-height: 1.5rem; /* 150% */
}
.form-fields-wrapper .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-fields-wrapper label {
  font-weight: 600;
  line-height: 1.5rem;
  font-size: 1rem;
  color: var(--black);
}
.form-fields-wrapper .form-group input,
.form-fields-wrapper .form-group textarea {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.85rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1rem;
  align-self: stretch;
  flex-wrap: wrap;
  transition: all 0.3s ease-in-out;
}
.form-fields-wrapper .form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  line-height: 1;
  padding-left: 0;
}
.form-fields-wrapper a {
  color: var(--black);
  text-decoration: underline var(--black);
}
.form-fields-wrapper .form-group input:focus,
.form-fields-wrapper .form-group textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--primary);
  transition: all 0.3s ease;
}
.form-fields-wrapper input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  margin: 0;
  width: 1rem;
  height: 1rem;
  padding: 0.1875rem;
  border: 2px solid var(--primary);
  border-radius: 3px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-fields-wrapper input[type='checkbox']:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.contact-imgs-wrapper {
  position: relative;
  aspect-ratio: 8 / 10;
}
.contact-img-big {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.contact-img-small {
  position: absolute;
  width: 19.8125rem;
  height: 23.4375rem;
  border-radius: 1rem;
  bottom: -13rem;
  right: -1rem;
  transform: rotate(10deg);
}
.contact-sticker {
  position: absolute;
  top: -5rem;
  left: -7rem;
  transform: rotate(-10deg);
}
.contact-text-wrapper {
  position: absolute;
  bottom: -2rem;
  left: -4rem;
  display: inline-flex;
  transform: rotate(6deg);
  padding: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2.5rem;
  background: var(--white);
  box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.1);
}
.contact-text-wrapper p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem; /* 140% */
}
.form-fields-wrapper input[type='checkbox']:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  transition: all 0.1s ease;
}
.form-fields-wrapper input[type='text'],
.form-fields-wrapper textarea {
  caret-color: var(--primary);
  color: var(--primary);
}
/* === FIX FOR CHROME SAFARI AUTOFILL === */
.form-fields-wrapper .form-group input:-webkit-autofill,
.form-fields-wrapper .form-group input:-webkit-autofill:hover,
.form-fields-wrapper .form-group input:-webkit-autofill:focus,
.form-fields-wrapper .form-group textarea:-webkit-autofill,
.form-fields-wrapper .form-group textarea:-webkit-autofill:hover,
.form-fields-wrapper .form-group textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
    box-shadow: 0 0 0px 1000px var(--white) inset !important;

    /* Aby bola farba textu rovnaká ako normálne */
    -webkit-text-fill-color: var(--primary) !important;

    /* Zabráni Chrome-u, aby znova animoval autofill pozadie */
    transition: background-color 9999s ease-in-out 0s !important;
}

/**
* BLOG
*/
.blog {
  overflow: hidden;
}
.gallery-slider,
.gallery-slider .splide__track {
  overflow: visible;
}
.gallery-slider .splide__track {
  -webkit-clip-path: inset(-100vw -100vw -100vw 0vw);
  clip-path: inset(-100vw -100vw -100vw 0vw);
}

/* iOS Safari: overflow:visible + clip-path on the same element breaks Splide's
   child transforms, causing all slides to stack at position 0. Fall back to
   standard overflow:hidden so the carousel works correctly. */
@supports (-webkit-touch-callout: none) {
  .gallery-slider,
  .gallery-slider .splide__track {
    overflow: hidden;
  }
  .gallery-slider .splide__track {
    -webkit-clip-path: none;
    clip-path: none;
  }
}
.gallery-slider .splide__slide {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
  filter: blur(1px);
}
.gallery-slider .splide__slide.is-visible {
  opacity: 1;
  filter: blur(0);
  transition: all 0.3s ease-in-out;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gallery-card-img-wrapper {
  position: relative;
  aspect-ratio: 11 / 8;
  height: 15.3125rem;
}
.gallery-card-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
.gallery-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gallery-content .date {
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 500;
}
.gallery-content h3 {
  color: var(--black);
  font-family: 'Overused Grotesk', sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
}

.gallery-content p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--black);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 14px;
  color: #888;
}

#gallery-carousel {
  position: relative;
}

#gallery-carousel .custom-arrows {
  position: static;
  gap: 0.5rem;
}

#gallery-carousel .custom-arrows .splide__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #0f0f0f33;
  position: static;
  transform: translateY(0);
  opacity: 1;
}
.custom-arrows .splide__arrow svg,
.custom-arrows .splide__arrow img {
  opacity: 1;
  transform: scaleX(1);
}
#gallery-carousel .splide__arrow--prev {
  border: 1px solid #0f0f0f14;
  opacity: 1;
}
#gallery-carousel .splide__arrow--next {
  border: 1px solid #0f0f0f14;
  opacity: 1;
}

/* GALLERY */
.gallery {
  overflow: hidden;
}

/* HOME VIDEO CHANNEL */
.home-video-channel {
  overflow: hidden;
}
.home-video-channel-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.home-video-channel-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#subcategories-list,
#products-list,
#atypes-list,
#sendContact {
  scroll-margin-top: 7rem;
}
#sofa-carousel {
  position: relative;
}
#sofa-carousel .splide__slide a {
  display: block;
}
.sofa-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.sofa-img-wrapper::after {
  position: absolute;
  content: '';
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease-out;
}
.sofa-img-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease-out;
}
#sofa-carousel .splide__slide a:hover .sofa-img-wrapper::after,
#sofa-carousel .splide__slide a:focus-visible .sofa-img-wrapper::after {
  opacity: 1;
}
#sofa-carousel .splide__slide a:hover .sofa-img-wrapper svg,
#sofa-carousel .splide__slide a:focus-visible .sofa-img-wrapper svg {
  opacity: 1;
}
.sofa-img-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sofa-img-wrapper img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/**
* FOOTER
*/
.footer {
  padding-top: 3rem;
  color: var(--black);
}
.contact .primary-btn {
  padding: 0.5rem 2.5rem 0.5rem 2rem;
}
.contact p {
  color: var(--gray);
}
.contact-left {
  gap: 1.5rem;
}
.contact-left h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  max-width: 20.5rem;
}
.contact-left-text-wrapper {
  gap: 0.75rem;
}
.contact-right {
  gap: 2rem;
}
.contact-right img {
  width: 6rem;
  height: 6rem;
  border-radius: 6rem;
}
.contact-right h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem; /* 116.667% */
}
.contact-right h4 {
  font-family: 'Overused Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-right a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-right a:hover {
  text-decoration: underline var(--primary);
}
.footer-top {
  padding-bottom: 1.5rem;
}
.footer-top-left {
  gap: 2rem;
}
.footer-link {
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: var(--primary);
  text-decoration: underline var(--primary);
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(15, 15, 15, 0.08);
  transition: all 0.3s ease-in-out;
}
.footer-social:hover {
   background: #eeeeee;
   transform: scale(1.05);
}
.footer-bottom {
  padding: 2rem 0 0 0;
  border-top: 1px solid rgba(15, 15, 15, 0.1);
}
.footer-bottom p {
  color: var(--gray);
  text-align: center;
  font-size: 0.875rem;
}
.footer-bottom a {
  color: #b8b8b8;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.footer-copyright, .footer-copyright a {
  color: var(--black) !important;
  font-size: 1rem !important;
  font-weight: 400;
}
.footer-logo-box {
  transition: transform 0.3s ease;
}
.footer-logo-box svg {
    width: 8rem;
    height: auto;
}
.footer-logo-box:hover {
    transform: scale(1.05);
}
/* FOOTER END */

/* LENIS */

/* MOBILE */

/* Hide mobile nav by default */
.mobile-nav {
  /* display: none; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.mobile-nav ul {
    transition: all 0.3s ease-in-out;
}
.burger-furnetto {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.menu-top svg {
    width: 10rem;
}
/* Burger button styling */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.dark .burger span {
  background-color: var(--black);
}
.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 20px;
}

/* Mobile nav active state */
.mobile-nav.active {
  display: flex;
}
/* Submenu */
.mobile-submenu {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-submenu.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-submenu .transparent-btn {
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 1.2rem;
}
.mobile-submenu h3 {
    color: var(--white);
    font-size: 2rem;
}
.mobile-main {
  opacity: 0;
  transform: translateX(0);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-main.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-main.hidden {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}
.logo-mobile {
  width: 8.8125rem;
  height: 2.5rem;
}
.pop-up-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pop-up-hover:hover {
  transform: translateY(-6px);
  /*box-shadow: 0 12px 30px rgba(0,0,0,0.15);*/
}

/* Start hidden */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* When visible */
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.countup {
  display: inline-block;
}

/* ////////////////////////////////////////////////// */
/* HERO SECONDARY */
.hero-secondary {
  margin-top: 2rem;
}
.hero-secondary-bg-wrapper {
  border-radius: 1.5rem;
  background: #f4f4f4;
}
.hero-secondary-img-wrapper {
  position: relative;
  aspect-ratio: 1.3 / 1;
}
.hero-secondary-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
}
.breadcrumb {
  --bs-breadcrumb-divider: '|';
  --bs-breadcrumb-divider-color: rgba(15, 15, 15, 0.7);
  color: rgba(15, 15, 15, 0.7);
  margin-bottom: 0;
}
.hero-secondary-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hero-secondary-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-secondary-text-wrapper h1 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
}
.hero-secondary-text-wrapper p {
  color: rgba(15, 15, 15, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
/* HERO SECONDARY END */

/* PRODUCT FEATURES */
.features-wrapper {
  border-radius: 0.5rem;
  background: linear-gradient(91deg, #B39673 0.01%, #A27F55 99.99%);
  padding: 2rem 1.5rem;
}
.features-wrapper h2 {
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
}
.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  position: relative;
  white-space: nowrap;
}
/* .features-boxes-wrapper {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
} */
.feature-border {
  width: 0.0625rem;
  height: 100%;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
}
/* PRODUCT FEATURES END */

/* CATEGORIES */
.product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding: 3rem;
  background: #f4f4f4;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
}
.product-wrapper.action {
    border: 1px solid var(--primary);
}
.product-tag-wrapper {
  display: flex;
  padding: 0.375rem 0.875rem;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2.5rem;
  background: #dfdfdf;

  position: absolute;
  right: 0.6875rem;
  top: 0.75rem;
}
.product-tag-wrapper.icon {
    background: none;
    padding: 0;
}
.product-tag-wrapper p {
  font-weight: 500;
  line-height: 1.5rem;
}
.product-img-wrapper img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.product-wrapper:hover img {
    transform: scale(1.05);
}
.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}
.product-info h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
.product-info p {
  color: rgba(15, 15, 15, 0.7);
  line-height: 1.5rem;
}
/* CATEGORIES END */

/* ADVANTAGES */
.advantages-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.feature h3 {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 600;
}
.feature p {
  color: rgba(15, 15, 15, 0.7);
  line-height: 1.5rem; /* 150% */
}
/* ADVANTAGES END */

/* ////////////////////////////////////////////////// */
/* OTHER PRODUCTS */
.other-categories-wrapper {
  align-items: stretch;
}
.other-product-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: #f4f4f4;
}
.other-product-wrapper.active {
  border-color: var(--primary);
}
.other-product-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}
.other-product-img picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.other-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}
.other-product-wrapper:hover img {
  transform: scale(1.05);
}
.other-product-wrapper h2 {
  color: var(--black);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8rem;
}
/* OTHER PRODUCTS END */

/* FEATURES MESSAGE */
.features-message-wrapper {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
}
.features-message-wrapper p {
  color: var(--white);
  line-height: 1.5rem;
}
/* FEATURES MESSAGE END */

/* PRODUCTS LIST */
.grey-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  color: var(--black);
  width: fit-content;
  white-space: nowrap;
  transition: background 0.3s ease-in-out;
}
.grey-btn:hover,
.grey-btn:focus,
.grey-btn:active {
  background: #d1d0d0;
}
.grey-btn span {
  font-weight: 500;
  line-height: 1.5rem;
}
.product-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  flex-shrink: 0;
  position: relative;
  border-right: 1px solid rgba(15, 15, 15, 0.1);
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}
.product-box-wrapper.is-photo-mode-photo {
  gap: 2rem;
}
.product-box-wrapper.is-photo-mode-cutout {
  gap: 0;
}
.products-list-wrapper .row > div:nth-child(4n) .product-box-wrapper  {
  border-right: none;
}
.products-list-wrapper .row > div:nth-child(-n + 4) .product-box-wrapper {
  border-top: 1px solid rgba(15, 15, 15, 0.1);
}
.atypes-list-wrapper .row > div:nth-child(4n) .product-box-wrapper  {
  border-right: none;
}
.atypes-list-wrapper .row > div:nth-child(-n + 4) .product-box-wrapper {
  border-top: 1px solid rgba(15, 15, 15, 0.1);
}
.product-box-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.product-box-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.product-box-img picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.product-box-img.is-atype.is-photo-mode-photo {
  aspect-ratio: 5 / 3;
}
/* .product-box-img.is-photo-mode-cutout picture {
  padding: 0.5rem;
} */
.product-box-img.is-photo-mode-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-box-wrapper:hover img {
  transform: scale(1.05);
}
.product-box-info {
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-box-info h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}
.product-box-info small {
  color: rgba(15, 15, 15, 0.7);
  font-family: 'Overused Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.color-swatch {
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid rgba(15, 15, 15, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-price {
  display: flex;
  gap: .5rem;
  align-items: center;
  /* font-family: 'Clash Display', sans-serif; */
}
.product-price .old-price {
  color: #8E8E8E;
  text-decoration: line-through;
  font-size: 0.9rem;
}
.product-price .new-price {
  color: #B39673; /* tvoje zlaté zvýraznenie */
  font-weight: 500;
  font-size: 1.05rem;
}
.product-price .regular-price {
  font-weight: 500;
  font-size: 1.05rem;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-link {
  display: flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.375rem;
  background: #f4f4f4;
  color: var(--black);
  border: none;
}
.page-link:focus {
  outline: none;
  box-shadow: 0 0 0 4px #b3967398;
  color: var(--white);
  background: var(--primary);
}
.page-link:hover {
  background: var(--primary);
  color: var(--white);
}
.page-link.active {
  background: var(--primary);
  color: var(--white);
}
.grey-btn.bottom {
  padding: 0.75rem 4rem;
}
.catalog-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
}
.catalog-search-wrapper svg {
  position: absolute;
  left: 0.875rem;
  pointer-events: none;
  flex-shrink: 0;
}
.catalog-search-input {
  width: 100%;
  padding: 0.75rem 1.25rem 0.75rem 2.75rem;
  border-radius: 0.375rem;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  color: var(--black);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease-in-out;
  outline: none;
}
.catalog-search-input::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}
.catalog-search-input:focus {
  border-color: #d1d0d0;
}
.dropdown-menu {
  padding: 0.5rem 1rem;
  min-width: 16rem;
  white-space: nowrap;
}
/* PRODUCTS LIST END */

/* ////////////////////////////////////////////////// */
/* HERO PRODUCT */
.hero-product-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  background: #f4f4f4;
  position: relative;
}
.hero-product-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  position: absolute;
  left: 1.125rem;
  top: 1.125rem;
}
.hero-product-tag {
  display: flex;
  padding: 0.375rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2.5rem;
}
.hero-product-tag.red {
  background: #e84d4d;
  color: var(--white);
}
.hero-product-tag.blue {
  background: #3e69b1;
  color: var(--white);
}
.hero-product-sticker {
  position: absolute;
  right: 1.125rem;
  top: 1.125rem;
  z-index: 2;
  width: 6rem;
  height: auto;
}
.hero-product-img {
  position: relative;
}
.hero-product-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem 1rem 0 0;
}
.hero-product-img.is-photo-mode-cutout {
  padding: 2rem;
}
.hero-product-img.is-photo-mode-cutout img {
  object-fit: contain;
  border-radius: 0;
}
.gap-125 {
  gap: 0.125rem;
}
.gap-375 {
  gap: 0.375rem;
}
.gap-625 {
  gap: 0.625rem;
}
.hero-product-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-product-info-wrapper h1 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
}
.hero-product-info-top .rating {
  font-size: 1.125rem;
  color: var(--black);
}
.hero-product-info-wrapper p {
  color: rgba(15, 15, 15, 0.7);
  line-height: 1.5rem; /* 150% */
}
.hero-price-block .old-price {
  color: #8E8E8E;
  text-decoration: line-through;
  font-size: 1.25rem;
  font-weight: 500;
}
/* akciová cena – zvýraznená */
.hero-price-block .new-price {
  color: var(--black);
  font-family: 'Clash Display', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
}
/* bežná cena */
.hero-price-block .price {
  color: var(--black);
  font-family: 'Clash Display', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
}
.hero-product-info-bottom {
  font-size: 0.875rem;
}
.hero-product-small-img {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0.5rem;
}
.hero-product-small-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-product-small-img.is-photo-mode-cutout {
  padding: 0.375rem;
  background: #f4f4f4;
}
.hero-product-view-box {
  display: flex;
  padding: 1.5rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #f4f4f4;
}
.product-video-link {
    transition: transform 0.3s ease-in-out;
}
.product-video-link:hover {
    transform: translateY(-6%);
}
.hero-product-img img, .hero-product-small-img img {
    transition: transform 0.3s ease-in-out;
}
.hero-product-img:hover img, .hero-product-small-img:hover img {
    transform: scale(1.02);
}
/* HERO PRODUCT END */

/* PRODUCT DETAIL */
.selection-wrapper {
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
  overflow-y: auto;
}
.selection-bar {
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  /* font-family: 'Clash Display', sans-serif; */
  font-size: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  background: transparent;
  position: relative;
}
.selection-bar.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}
.selection-bar.active {
  color: var(--primary);
}
.selection-content { display: none; }
.selection-content.active { display: block; }
.border-middle-wrapper {
  height: 100%;
}
.border-middle {
  background: rgba(15, 15, 15, 0.1);
  width: 0.0625rem;
  height: 100%;
}
.product-detail-cells {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-detail-cell {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.1);
  color: var(--black);
}
.product-detail-cell .title {
  font-size: 1.125rem;
  font-weight: 600;
}
.selection-content {
  color: rgba(15, 15, 15, 0.7);
  line-height: 1.5rem;
}

/* PRODUCT DETAIL END */

/* /////////////////////////////////////////////////////////////////////////////////// */
/* ABOUT */
.about-img {
    aspect-ratio: 1.3 / 1;
    position: relative;   
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
.about-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}
.about-content-raw p, .about-content-raw li, .about-content-raw span {
  color: rgba(15, 15, 15, 0.70);
  line-height: 1.5rem;
}

/* /////////////////////////////////////////////////////////////////////////////////// */
/* POST */
.blog-post .post-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
    margin-bottom: .5rem;
}

.blog-post .post-date {
    font-size: 1rem;
    opacity: 0.6;
}

.blog-post .cover-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.post-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.post-content img {
  border-radius: 1.5rem;
  margin: 1rem 0;
  max-width: 100%;
  width: 100%;
}
.post-content ul, 
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.6rem;
}

.post-content ul li {
    position: relative;
    margin-bottom: .6rem;
    list-style: none;
    padding-left: 1.2rem;
}

/* ŠÍPKA PRE UL */
.post-content ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: #c38b5f; /* môžeš zmeniť farbu */
    font-weight: bold;
    font-size: 1.1rem;
}

/* ČÍSLOVANÝ ZOZNAM */
.post-content ol {
    counter-reset: counter;
}

.post-content ol li {
    counter-increment: counter;
    margin-bottom: .6rem;
    padding-left: 1.4rem;
    position: relative;
}

/* ŠÍPKA + ČÍSLO PRE OL */
.post-content ol li::before {
    content: counter(counter) ". ";
    position: absolute;
    left: 0;
    color: #c38b5f;
    font-weight: 700;
}

/* TAGS */
.post-tags .tag {
    display: inline-block;
    background: #f0f0f0;
    padding: .25rem .6rem;
    border-radius: 6px;
    margin-right: .4rem;
    font-size: .85rem;
}

/* BACK BUTTON */
.back-button {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: .2s;
}

.back-button:hover,
.back-button:focus,
.back-button:active {
    opacity: .7;
}
.featured-image {
    position: relative;
    aspect-ratio: 2 / 1;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
.post-products {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
}
.similar-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.post-products h3,
.similar-articles h3 {
    font-weight: 600;
}
.similar-articles .gallery-card-img-wrapper {
    aspect-ratio: 1 / 1;
}

/* FANCYBOX */
.product-gallery-fancybox .f-panzoom__wrapper {
    max-width: 1200px !important;
    max-height: 800px !important;
    width: auto !important;
    height: auto !important;
}
.product-gallery-fancybox .f-panzoom__content img,
.product-gallery-fancybox .f-panzoom__viewport img {
    width: auto !important;
    height: auto !important;
    max-width: 1200px !important;
    max-height: 800px !important;
    object-fit: contain;
}
.product-gallery-fancybox.is-photo-mode-cutout .f-panzoom__content {
    background: #f4f4f4 !important;
}
.product-gallery-fancybox .fancybox__slide img {
    width: 1200px !important;
    height: auto !important;
    max-width: 90vw !important;
}
.filters-wrapper {
  position: relative;
}
.filters-wrapper input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  margin: 0;
  width: 1rem;
  height: 1rem;
  padding: 0.1875rem;
  border: 2px solid var(--primary);
  border-radius: 3px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-wrapper input[type='checkbox']:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
/* /////////////////////////////////////////////////////////////////////////////////// */
/* CONTACT */
.contact-info-wrapper {
   gap: 1.5rem;
}
.contact-info-wrapper h2 {
  font-size: 1.75rem;
  line-height: 2.3rem;
}
.contact-info-icon {
    display: flex;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: rgba(199, 168, 138, 0.20);
}
.contact-info-wrapper span {
    font-weight: 500;
    color: rgba(15, 15, 15, 0.7);
    transition: all 0.3s ease-in-out;
}
.contact-info-box:hover span{
    color: var(--primary);
    text-decoration: underline var(--primary);
}
.contact-info-wrapper h3 {
    font-size: 1.5rem;
}
.iframe-wrapper {
    position: relative;
    aspect-ratio: 1.3 / 1;
}
.iframe-wrapper iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
}
.filter-title {
  font-weight: 500;
  font-size: 1.1rem;
}
.filter-row {
    cursor: pointer;
    padding: 6px 10px;
}

.filter-row input,
.filter-row label {
    pointer-events: none;
}
.filter-search-box {
    padding: 0.25rem 0.625rem 0.5rem;
}
.filter-products-scroll {
    max-height: 200px;
    overflow-y: auto;
}
.my-sofa-wrapper {
    background: #f4f4f4;
    padding: 3rem;
    border-radius: 1.5rem;
}

/* /////////////////////////////////////////////////////////////////////////////////// */
/* SAMPLES */
.sample-item-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    min-height: 20rem;
    flex: 1;
    position: relative;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}
.sample-item-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.sample-item-wrapper::after {
    position: absolute;
    content: '';
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    border-radius: 0.5rem;
}
.sample-item-wrapper h2 {
    font-size: 1.25rem;
    line-height: normal;
    color: var(--white);
}
.sample-item-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    
    z-index: 0;
    border-radius: 0.5rem;
}
.sample-item-bottom {
    position: relative;
    z-index: 2;
}
.sample-item-bottom .arrow-btn {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 624.9375rem;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    --bs-accordion-border-radius: 1.5rem;
    --bs-accordion-inner-border-radius: 1.5rem;
    /* --bs-accordion-border-color: rgba(15, 15, 15, 0.10);
    --bs-accordion-border-width: 1px; */
    --bs-accordion-border-color: none;
    --bs-accordion-border-width: 0px;
}
.accordion-item {
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
}
.accordion-header {
    font-family: 'Overused Grotesk', sans-serif;
}
.accordion-button {
    transition: all 0.3s ease-in-out;
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 15, 15, 0.10);
}
.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
    color: var(--black);
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0);
}
.accordion-collapse {
    border: 1px solid rgba(15, 15, 15, 0.10);
    /* border-top: none; */
    border-radius: 1.5rem;
}
.accordion-body {
    padding: 1.5rem;
}
.leather-sample-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.leather-sample-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
}
.leather-sample-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}
.leather-sample-img-wrapper:hover img {
    transform: scale(1.01);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.leather-sample-wrapper small {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(15, 15, 15, 0.7);
}
.leather-download-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
}
.leather-download-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 15, 15, 0.10);
}
.leather-download-wrapper .show-document {
    text-decoration: underline var(--black);
}
.download-btn {
    display: flex;
    height: 3rem;
    padding: 0.875rem 2.0625rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 624.9375rem;
    border: 1px solid #222;
    background: #FFF;
}
.wood-img-wrapper {
    position: relative;
    aspect-ratio: 1.5 / 1;
}
.wood-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    transition: transform .4s ease, box-shadow .4s ease;
}
.wood-img-wrapper:hover img {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.leg-item-wrapper {
    border-radius: 0.5rem;
    height: 100%;
    max-height: 33rem;
    overflow-y: auto;
    overflow-x: clip;
    background: #f5f5f5;
}
.leg-item-wrapper h3 {
    font-weight: 600;
    font-size: 1.5rem;
}
.leg-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    display: block;
    width: 100%;
}
.leg-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
}
.leg-img-wrapper:hover img {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.leg-bottom-wrapper {
    padding: 1.5rem;
    
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    
}
.sizes li {
    position: relative;
    padding-left: 1rem;
}
.sizes li::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 99999px;
    background: var(--primary);
}
.gdpr h3 {
    font-size: 2rem;
    font-weight: 500;
}
.privacy-wrapper p,
.privacy-wrapper li,
.privacy-wrapper strong,
.privacy-wrapper div {
    color: rgba(15, 15, 15, 0.70);
}
.privacy-wrapper h3 {
    color: var(--black);
}
.privacy-wrapper li {
    position: relative;
    padding-left: 1rem;
}
.privacy-wrapper li::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 99999px;
    background: var(--primary);
}

/* Custom Dropdown Styling */
.contact-form-section-small {
    margin: 2rem -0.75rem; /* Roztiahnutie na celú šírku */
    padding-bottom: 3rem;
    border-radius: 1.5rem;
  }
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}
.custom-select-wrapper select {
  display: none !important; /* Skryje natívny select */
}
.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.custom-select-trigger span {
  color: var(--black);
}
.custom-select-wrapper.open .custom-select-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid var(--primary);
}
.custom-select-trigger:after {
  content: '';
  width: 12px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15' fill='none'%3E%3Cpath d='M3 4.59375L6 7.65625L9 4.59375' stroke='%230F0F0F' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}
.custom-select-wrapper.open .custom-select-trigger:after {
  transform: rotate(180deg);
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  background: var(--white);
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  position: relative;
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-option:hover {
  background-color: var(--primary);
  color: var(--white);
}

.custom-option.selected {
  background-color: rgba(179, 150, 115, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.custom-option.selected:hover {
  background-color: var(--primary);
  color: var(--white);
}
.form-control:focus {
    box-shadow: none;
}
/* FILE UPLOAD */
.file-item {
  font-size: 0.9rem;
  color: var(--black);
  border-color: rgba(15, 15, 15, 0.1) !important;
}
.file-item .btn-close {
  font-size: 0.75rem;
}
/* Hero Excerpt Read More */
.excerpt-wrapper {
  position: relative;
  margin-bottom: 1rem;
}
.excerpt-content.collapsed {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-read-more {
  background: none;
  border: none;
  color: #0f0f0f;
  padding: 0;
  margin-top: 5px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
}
.btn-read-more:hover,
.btn-read-more:focus,
.btn-read-more:active {
  color: #555;
}
/* Hero Excerpt Read More - Robust Override */
.excerpt-content.collapsed {
  display: -webkit-box !important;
  line-clamp: 3 !important;
  -webkit-line-clamp: 3 !important;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-height: 4.8em; /* Fallback for browsers not supporting line-clamp ~ 1.6em * 3 */
}
.excerpt-content:not(.collapsed) {
  display: block !important;
  line-clamp: unset !important;
  -webkit-line-clamp: unset !important;
  max-height: none !important;
}

.product-gallery-fancybox.fancybox__container {
  --f-thumb-width: 170px;
  --f-thumb-height: 93px;
  --f-thumb-gap: 10px;
  --f-thumb-scale: 1;
}

.product-gallery-fancybox .f-thumbs__slide button {
  background: #ffffff;
  border-radius: 0.25rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.product-gallery-fancybox.is-photo-mode-cutout .f-thumbs__slide button {
  background: #f4f4f4;
}

.product-gallery-fancybox .f-thumbs__slide img {
  max-width: calc(100% - 0.5rem);
  max-height: calc(100% - 0.5rem);
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center;
}
.about h1,
.blog-section h1,
.your-project h1,
.contact h1,
.samples-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--black);
}