@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,700;1,400;1,700&display=swap");
.c-white {
  color: #fff !important;
}

.c-black {
  color: #000 !important;
}

.c-grey {
  color: rgb(150, 150, 150) !important;
}

.c-marble {
  color: #e1dfdd !important;
}

.c-ink {
  color: #030208 !important;
}

.c-cherry {
  color: #800020 !important;
}

.c-trans {
  color: rgba(0, 0, 0, 0) !important;
}

.c-light-cherry {
  color: #d12852 !important;
}

.c-pink {
  color: #FCD3C1 !important;
}

.c-slate {
  color: #393c45 !important;
}

.c-dark-slate {
  color: #1e2939 !important;
}

.c-granite {
  color: #2f2f2f !important;
}

.c-sand {
  color: #edd7cb !important;
}

.c-carnelian {
  color: #6b2525 !important;
}

.c-red-marble {
  color: #572015 !important;
}

.c-gold {
  color: linear-gradient(45deg, rgba(213, 168, 72, 0.8) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.8) 100%) !important;
}

.c-pyrite {
  color: #ac9f58 !important;
}

.c-aluminium {
  color: rgba(159, 173, 197, 0.8) !important;
}

.color-box {
  height: 5rem;
  width: 5rem;
  display: inline-block;
  margin: 0.5rem;
  border: #fff 1px solid;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}
.color-box:hover {
  transform: scale(1.05);
}
.color-box.c-white {
  background-color: #fff;
}
.color-box.c-black {
  background-color: #000;
}
.color-box.c-grey {
  background-color: rgb(150, 150, 150);
}
.color-box.c-marble {
  background-color: #e1dfdd;
}
.color-box.c-ink {
  background-color: #030208;
}
.color-box.c-cherry {
  background-color: #800020;
}
.color-box.c-trans {
  background-color: rgba(0, 0, 0, 0);
}
.color-box.c-light-cherry {
  background-color: #d12852;
}
.color-box.c-pink {
  background-color: #FCD3C1;
}
.color-box.c-slate {
  background-color: #393c45;
}
.color-box.c-dark-slate {
  background-color: #1e2939;
}
.color-box.c-granite {
  background-color: #2f2f2f;
}
.color-box.c-sand {
  background-color: #edd7cb;
}
.color-box.c-carnelian {
  background-color: #6b2525;
}
.color-box.c-red-marble {
  background-color: #572015;
}
.color-box.c-pyrite {
  background-color: #ac9f58;
}
.color-box.c-aluminium {
  background-color: rgba(159, 173, 197, 0.8);
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-grey {
  background-color: rgb(150, 150, 150);
}

.bg-marble {
  background-color: #e1dfdd;
}

.bg-ink {
  background-color: #030208;
}

.bg-cherry {
  background-color: #800020;
}

.bg-trans {
  background-color: rgba(0, 0, 0, 0);
}

.bg-light-cherry {
  background-color: #d12852;
}

.bg-pink {
  background-color: #FCD3C1;
}

.bg-slate {
  background-color: #393c45;
}

.bg-dark-slate {
  background-color: #1e2939;
}

.bg-granite {
  background-color: #2f2f2f;
}

.bg-sand {
  background-color: #edd7cb;
}

.bg-carnelian {
  background-color: #6b2525;
}

.bg-red-marble {
  background-color: #572015;
}

.bg-pyrite {
  background-color: #ac9f58;
}

.bg-aluminium {
  background-color: rgba(159, 173, 197, 0.8);
}

.bg-gold {
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.8) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.8) 100%);
}

.bg-silver {
  background: linear-gradient(45deg, rgba(162, 199, 212, 0.8) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(159, 173, 197, 0.8) 100%);
}

.schowaj {
  display: none;
}

.schowaj-mocno {
  display: none !important;
}

.is-hidden {
  display: none !important;
}

.is-fading {
  opacity: 0;
}

.animated-opacity {
  transition: opacity 0.25s ease-in-out;
}

.reset-fadeIn {
  animation: none !important;
}

.btn-hoverUp {
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-underline {
  position: relative;
  color: #FCD3C1;
  transition: color 0.2s ease-in-out;
  padding-bottom: 0.2rem;
  width: 100%;
}
.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.12rem;
  width: 0;
  background: #393c45;
  border-radius: 1rem;
  transition: width 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.animated-underline:hover, .animated-underline:focus {
  color: #800020;
}
.animated-underline:hover::after, .animated-underline:focus::after {
  width: 100%;
}

@keyframes pulsate-effect {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.1;
  }
}
.hover-up-4 {
  transition: transform 0.3s ease;
}
.hover-up-4:hover {
  transform: translateY(-4px);
}

@keyframes bg-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 466px 349px;
  }
}
.link-hover-fill {
  position: relative;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  z-index: 0;
}
.link-hover-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #800020 0%, #800020 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
  z-index: -1;
  border-radius: 2px;
}
.link-hover-fill:hover::before {
  transform: scaleX(1);
}
.link-hover-fill:hover {
  color: #fff;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}
.hp1 {
  border: 2px solid green !important;
}

.price-highlighted {
  color: #edd7cb;
  background-color: #800020;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

.fill-letters-gold {
  background-color: #c0a258; /* Kolor awaryjny */
  background-image: linear-gradient(145deg, #feec81 10%, #e2c16d 30%, #ac9202 50%, #6e5718 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px, rgba(255, 255, 255, 0.25) 0px -1px 1px;
}

.fill-letters-gold-section {
  background-color: #c0a258;
  background-image: linear-gradient(170deg, #feec81 2%, #e2c16d 20%, #ac9202 50%, #6e5718 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* NOWY, WARSTWOWY CIEŃ DLA EFEKTU 3D */
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.3), 0px 0px 0px rgba(142, 121, 4, 0.44);
}

.fill-letters-gold-section-dark {
  background-color: #c0a258;
  background-image: linear-gradient(170deg, #ffee90 10%, #e2c16d 30%, #ac9202 50%, #6e5718 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* NOWY, WARSTWOWY CIEŃ DLA EFEKTU 3D */
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.4), 0px 0px 0px rgba(142, 121, 4, 0.34);
}

.set-border-radius {
  border-radius: 4px;
}

.underline--marble::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e1dfdd;
  margin-top: 0.4rem;
  border-radius: 2px;
}
.underline--ink::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #030208;
  margin-top: 0.4rem;
  border-radius: 2px;
}
.underline--cherry::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #800020;
  margin-top: 0.4rem;
  border-radius: 2px;
}
.underline--light-cherry::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #800020;
  margin-top: 0.4rem;
  border-radius: 2px;
}
.underline--gold::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.8) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.8) 100%);
  margin-top: 0.4rem;
  border-radius: 2px;
}
.underline--grey::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgb(150, 150, 150);
  margin-top: 0.4rem;
  border-radius: 2px;
}
.underline--light-grey::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #cbcdd1;
  margin-top: 0.4rem;
  border-radius: 2px;
}

.hr-underline {
  border: none;
  height: 0.1rem;
  border-radius: 16rem;
}

.border-cherry {
  border: 2px solid #800020;
}

.border-bot-marble {
  border-bottom: 3px solid #e1dfdd;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-sand {
  border-bottom: 3px solid #edd7cb;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-cherry {
  border-bottom: 3px solid #800020;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-pink {
  border-bottom: 3px solid #FCD3C1;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-slate {
  border-bottom: 3px solid #393c45;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-carnelian {
  border-bottom: 3px solid #6b2525;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-pyrite {
  border-bottom: 3px solid #ac9f58;
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.border-bot-aluminium {
  border-bottom: 3px solid rgba(159, 173, 197, 0.8);
  border-start-end-radius: 3rem;
  padding-bottom: 0.5rem;
}

.folder-flag {
  position: absolute;
  z-index: -1;
  display: flex;
  border-radius: 4px 4px 0 0;
  top: -38%;
  left: 0;
  width: auto;
  height: 32px;
  padding-inline: 1.2rem;
}

.base-radius {
  border-radius: 4px;
}

.gradient-up-ink {
  position: relative;
  isolation: isolate;
}
.gradient-up-ink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #030208 0%, rgba(3, 2, 8, 0) 15%);
  z-index: 3;
}
.gradient-up-ink::after {
  mix-blend-mode: multiply;
}

.gradient-down-ink {
  position: relative;
  isolation: isolate;
}
.gradient-down-ink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #030208 0%, rgba(3, 2, 8, 0) 15%);
  z-index: 3;
}
.gradient-down-ink::after {
  mix-blend-mode: multiply;
}

.rounded-lg {
  border-radius: 4px !important;
}

html {
  font-size: 1rem;
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant";
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.8rem;
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  text-wrap: balance;
}

.font-cormorant {
  font-family: "Cormorant";
}

.underline-cherry {
  text-decoration: underline;
  text-decoration-color: #800020;
}

.typography h1 {
  font-size: 2.44140625rem;
  line-height: 1.5;
  font-family: "Cormorant", serif;
}
.typography h2 {
  font-size: 1.953125rem;
}
.typography h3 {
  font-size: 1.5625rem;
}
.typography h4 {
  font-size: 1.25rem;
}
.typography h5 {
  font-size: 1rem;
}
.typography h6 {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .typography h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  .typography h2 {
    font-size: 2.75rem;
    line-height: 1.2;
  }
  .typography h3 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .typography h4 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .typography h5 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .typography h6 {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.typography p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: inherit;
}

html {
  background-image: url("../../images/textures/asfalt-medium.png");
  background-color: #e2e0dd;
}

.bg-sand {
  background: #edd7cb;
}

.bg-ink {
  background: #030208;
}

.bg-marble {
  background: #e1dfdd;
}

.bg-cherry {
  background: #800020;
}

.bg-snow {
  background-image: url("../../images/textures/fresh-snow.png");
}

.bg-graph {
  background-image: url("../../images/textures/graphy.png");
}

.bg-animate-slide {
  animation: bg-slide 80s linear infinite;
}

.bg-clip-texture-white-marble {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.bg-clip-texture-white-marble::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/textures/marble-white-1.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-clip-texture-white-marble::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e1dfdd;
  mix-blend-mode: normal;
  z-index: -1;
  clip-path: polygon(0% 0, 20% 0%, 65% 100%, 100% 100%, 100% 0);
}
@media (max-width: 768px) {
  .bg-clip-texture-white-marble {
    position: relative;
    isolation: isolate;
    z-index: 1;
  }
  .bg-clip-texture-white-marble::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e1dfdd;
    z-index: -2;
  }
}

.bg-clip-texture-dark-marble {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.bg-clip-texture-dark-marble::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/textures/marble-black-3.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-clip-texture-dark-marble::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #030208;
  mix-blend-mode: normal;
  z-index: -1;
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 60% 100%, 36% 100%);
}

.bg-texture-dark-marble {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.bg-texture-dark-marble::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/textures/marble-black-3.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-texture-dark-marble::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 2, 8, 0.7);
  mix-blend-mode: multiply;
  z-index: -1;
}

.bg-texture-limestone {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.bg-texture-limestone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/textures/limestone-2.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-texture-limestone::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(237, 215, 203, 0.7);
  mix-blend-mode: multiply;
  z-index: -1;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 2, 8, 0.65);
  z-index: 2;
}

.bg-overlay-custom {
  position: inherit;
}
.bg-overlay-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 2, 8, 0.6);
  z-index: 2;
}

.video-overlay {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(3, 2, 8, 0.65);
  z-index: 2;
}

.video-overlay-color {
  background-color: rgba(3, 2, 8, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  color: #030208;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

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

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw !important;
  margin: 0 auto;
  overflow-x: hidden;
}

.anim-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

a {
  color: #FCD3C1;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: rgb(179, 0, 44.75);
}

hr {
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #FCD3C1;
  z-index: 2;
  margin-bottom: 2.4rem;
}

.scroll-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 1.6rem; /* miejsce na ikonę */
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 1rem;
  height: 1rem;
  background-image: url("../../images/svg/stone.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.marble-slab {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  padding: 1rem;
  border-radius: 4px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  color: #030208;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
}
.marble-slab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.35) 5%, rgba(225, 223, 221, 0.4) 95%, white 100%);
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.75);
}
.marble-slab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url("../../images/textures/marble-white-2.jpg") center/cover no-repeat;
  background-color: #e1dfdd;
  opacity: 1;
}
@media (max-width: 640px) {
  .marble-slab {
    padding-inline: 4px;
  }
}

.dark-marble-slab {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  padding: 1rem;
  border-radius: 4px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  color: #e1dfdd;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.3), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
}
.dark-marble-slab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-23deg, rgba(225, 223, 221, 0.1) 8%, rgba(3, 2, 8, 0.2) 92.5%, rgba(225, 223, 221, 0.35) 100%);
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.1);
}
.dark-marble-slab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url("../../images/textures/marble-black.jpg") center/cover no-repeat;
  background-color: #030208;
  opacity: 1;
}
@media (max-width: 640px) {
  .dark-marble-slab {
    padding-inline: 4px;
  }
}

.white-marble-slab {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  padding: 1rem;
  border-radius: 4px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  color: #030208;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
}
.white-marble-slab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.65) 5%, rgba(225, 223, 221, 0.95) 75%, white 100%);
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.75);
}
.white-marble-slab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url("../../images/textures/marble-white-2.jpg") center/cover no-repeat;
  background-color: #e1dfdd;
  opacity: 1;
}
@media (max-width: 640px) {
  .white-marble-slab {
    padding-inline: 4px;
  }
}

.dark-textured-marble-slab {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  padding: 1rem;
  border-radius: 4px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  color: #e1dfdd;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.3), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
}
.dark-textured-marble-slab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-23deg, rgba(3, 2, 8, 0.1) 8%, rgba(3, 2, 8, 0.95) 75%, rgba(225, 223, 221, 0.35) 100%);
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.1);
}
.dark-textured-marble-slab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url("../../images/textures/marble-black-1.jpg") center/cover no-repeat;
  background-color: #030208;
  opacity: 1;
}
@media (max-width: 640px) {
  .dark-textured-marble-slab {
    padding-inline: 4px;
  }
}

.white-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.white-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.white-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.97) 0%, rgba(225, 223, 221, 0.6) 80%, rgba(255, 255, 255, 0.1) 100%);
  mix-blend-mode: normal;
  z-index: -1;
}
.white-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/marble-white-2.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.black-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(3, 2, 8, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.black-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.black-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #030208 0%, rgba(3, 2, 8, 0.7) 97%, white 130%);
  mix-blend-mode: multiply;
  z-index: -1;
}
.black-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/marble-black-5.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.dark-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(3, 2, 8, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.dark-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.dark-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(3, 2, 8, 0.97) 0%, rgba(3, 2, 8, 0.6) 80%, rgba(255, 255, 255, 0.1) 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}
.dark-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/marble-black-gold-3-darkened.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.sand-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(237, 215, 203, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.sand-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.sand-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(237, 215, 203, 0.97) 0%, rgba(237, 215, 203, 0.6) 80%, rgba(255, 255, 255, 0.1) 100%);
  mix-blend-mode: normal;
  z-index: -1;
}
.sand-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/limestone-1.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.red-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(172, 159, 88, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.red-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.red-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(87, 32, 21, 0.2), rgba(87, 32, 21, 0.6), rgba(87, 32, 21, 0.3), rgba(87, 32, 21, 0));
  mix-blend-mode: multiply;
  z-index: -1;
}
.red-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/marble-red-2.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.granite-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(225, 223, 221, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.granite-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.granite-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(47, 47, 47, 0.8), rgba(47, 47, 47, 0.9), rgba(47, 47, 47, 0.4), rgba(255, 255, 255, 0.2));
  mix-blend-mode: multiply;
  z-index: -1;
}
.granite-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/granite-1.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.marbleTest-gradient-down {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(47, 47, 47, 0.4);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  transition: all 0.2s ease-in-out;
}
.marbleTest-gradient-down:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.7), inset 2px 2px 6px rgba(150, 150, 150, 0.4), 0 10px 12px rgba(3, 2, 8, 0.4);
}
.marbleTest-gradient-down::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(3, 2, 8, 0.9), rgba(3, 2, 8, 0.9), rgba(3, 2, 8, 0.7), rgba(255, 255, 255, 0.2));
  mix-blend-mode: multiply;
  z-index: -1;
}
.marbleTest-gradient-down::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/texture-4-black.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 1;
}

.section-header {
  position: relative;
  width: 90%;
  height: 4rem;
  border-radius: 0.125rem;
  box-shadow: 0 16px 4px rgba(3, 2, 8, 0.25);
}
.section-header::before {
  content: "";
  position: absolute;
  inset: -4px -4px -8px -4px;
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  border-radius: inherit;
  z-index: 1;
}
.section-header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: inherit;
  position: relative;
  z-index: 2;
}
.section-header__bg--golden {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--golden::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-white-gold-2.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--golden::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 25%, rgba(255, 255, 255, 0.5) 35%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--golden img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--golden img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.section-header__bg--golden-alt {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--golden-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-white-gold-1.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--golden-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 25%, rgba(255, 255, 255, 0.5) 35%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--golden-alt img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--golden-alt img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.section-header__bg--black {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-black-gold-2.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--black::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(3, 2, 8, 0.9) 25%, rgba(3, 2, 8, 0.5) 35%, rgba(3, 2, 8, 0.3) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--black img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--black img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.section-header__bg--black-darkened {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--black-darkened::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-black-5.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--black-darkened::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #030208 25%, rgba(3, 2, 8, 0.5) 35%, rgba(3, 2, 8, 0.4) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--black-darkened img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--black-darkened img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.section-header__bg--red {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(87, 32, 21, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-red-5.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--red::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(87, 32, 21, 0.9) 25%, rgba(87, 32, 21, 0.7) 35%, rgba(87, 32, 21, 0.45) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--red img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--red img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.section-header__bg--red-alt {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(172, 159, 88, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--red-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-red-4.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--red-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(87, 32, 21, 0.7) 25%, rgba(87, 32, 21, 0.3) 35%, rgba(87, 32, 21, 0.7) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--red-alt img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--red-alt img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.section-header__bg--granite {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(172, 159, 88, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
}
.section-header__bg--granite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/granite-rep-x.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.section-header__bg--granite::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(47, 47, 47, 0.7) 25%, rgba(47, 47, 47, 0.2) 35%, rgba(47, 47, 47, 0.5) 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.section-header__bg--granite img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.section-header__bg--granite img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.test-div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 600px;
}

.gallery {
  padding-block: 4rem;
}
.gallery__image--container {
  display: flex;
  gap: 1rem;
  max-width: 56.25rem;
  width: calc(100% - 6.25rem);
  margin-inline: auto;
  padding: 0 1rem;
  overflow: hidden;
}
@media (max-width: 640px) {
  .gallery__image--container {
    flex-direction: column;
    max-width: 1440px;
    width: 100%;
    height: 25rem;
  }
}
.gallery__image {
  position: relative;
  width: 3.75rem;
  height: 25rem;
  border-radius: 4px;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
}
.gallery__image--tag {
  display: inline-block;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background-color: #800020;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  transform: scale(0);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95) 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
}
@media (max-width: 640px) {
  .gallery__image--tag {
    font-size: 0.8rem;
  }
}
.gallery__image.active {
  width: 100%;
}
.gallery__image.active .gallery__image--tag {
  transform: scale(1);
}
@media (max-width: 640px) {
  .gallery__image.active {
    height: 25rem;
  }
}
@media (max-width: 640px) {
  .gallery__image {
    width: 100%;
    height: 3.75rem;
    transition: height 0.5s ease-in-out;
  }
  .gallery__image img {
    width: 100%;
    height: 100%;
  }
}

.golden-img-border {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  padding: 2px;
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  pointer-events: none;
}
.golden-img-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.golden-img-border-pointer {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  padding: 2px;
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
}
.golden-img-border-pointer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.cherry-img-border {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  padding: 2px;
  background: linear-gradient(45deg, rgba(128, 0, 32, 0.5) 0%, rgba(128, 0, 32, 0.7) 50%, rgba(128, 0, 32, 0.5) 100%);
}
.cherry-img-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.pale-img-border {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  padding: 2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.5) 100%);
}
.pale-img-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.dark-img-border {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  padding: 2px;
  background: linear-gradient(45deg, rgba(40, 40, 40, 0.8) 0%, rgba(60, 60, 60, 0.9) 50%, rgba(40, 40, 40, 0.8) 100%);
}
.dark-img-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.dark-img-border {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  padding: 2px;
  background: linear-gradient(45deg, rgba(40, 40, 40, 0.8) 0%, rgba(60, 60, 60, 0.9) 50%, rgba(40, 40, 40, 0.8) 100%);
}
.dark-img-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.hard-shadow {
  filter: drop-shadow(0 12px 6px rgba(0, 0, 0, 0.75));
}

.gallery-module {
  max-width: 94%;
}
.gallery-module__wrapper {
  gap: 1rem;
  will-change: transform;
}
.gallery-module__slide {
  width: 90vw;
}
.gallery-module__slide img {
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (min-width: 768px) {
  .gallery-module__slide {
    width: 400px;
  }
  .gallery-module__slide img {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 768px) {
  .navigation-module__item {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #e1dfdd;
    border: 1px solid transparent;
    border-radius: 50%;
    text-indent: -999px;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  .navigation-module__item.is-active {
    background-color: #6b2525;
  }
}

.gallery-nav-button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  z-index: 10;
}

.product-img {
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.product-img:hover {
  box-shadow: 0 0 12px #fff;
}
.product-img.is-active {
  position: relative;
}
.product-img.is-active::before {
  content: "";
  height: 120%;
  width: 120%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.8) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.8) 100%);
  z-index: -1;
}
.product-img__mini--check {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 6px;
  border-bottom-right-radius: 8px;
  font-weight: 500;
  color: #2f2f2f;
}
.product-img__mini--title {
  position: absolute;
  display: flex;
  justify-content: end;
  align-items: end;
  z-index: 2;
  bottom: -1px;
  right: 0;
  padding: 6px;
  width: 100%;
  height: 30%;
  text-align: end;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, #030208 100%);
}
@media (max-width: 640px) {
  .product-img__mini--title {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 5%, #030208 80%);
    font-size: 1.2rem;
  }
}

.btn-primary {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #393c45;
  color: #e1dfdd;
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(3, 2, 8, 0.15));
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #FCD3C1;
  color: #393c45;
  filter: drop-shadow(0 8px 4px rgba(3, 2, 8, 0.35));
}
@media (max-width: 768px) {
  .btn-primary {
    width: 100%;
    text-align: center;
  }
}
.btn-primary:disabled, .btn-primary.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #2f2f2f;
  color: rgb(150, 150, 150);
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(47, 47, 47, 0.15));
}
.btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary.is-disabled:hover, .btn-primary.is-disabled:focus {
  background-color: #2f2f2f;
  color: rgb(150, 150, 150);
  filter: drop-shadow(0 8px 4px rgba(47, 47, 47, 0.35));
}
@media (max-width: 768px) {
  .btn-primary:disabled, .btn-primary.is-disabled {
    width: 100%;
    text-align: center;
  }
}

.btn-cta {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #800020;
  color: #fff;
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(3, 2, 8, 0.15));
  font-weight: 700;
  text-transform: uppercase;
}
.btn-cta:hover, .btn-cta:focus {
  background-color: #fff;
  color: #800020;
  filter: drop-shadow(0 8px 4px rgba(3, 2, 8, 0.35));
}
@media (max-width: 768px) {
  .btn-cta {
    width: 100%;
    text-align: center;
  }
}

.btn-cta--big {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #800020;
  color: #fff;
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(3, 2, 8, 0.15));
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.btn-cta--big:hover, .btn-cta--big:focus {
  background-color: #fff;
  color: #800020;
  filter: drop-shadow(0 8px 4px rgba(3, 2, 8, 0.35));
}
@media (max-width: 768px) {
  .btn-cta--big {
    width: 100%;
    text-align: center;
  }
}

.btn-secondary {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #edd7cb;
  color: #393c45;
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(3, 2, 8, 0.15));
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #393c45;
  color: #fff;
  filter: drop-shadow(0 8px 4px rgba(3, 2, 8, 0.35));
}
@media (max-width: 768px) {
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
.btn-secondary:disabled, .btn-secondary.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #2f2f2f;
  color: rgb(150, 150, 150);
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(47, 47, 47, 0.15));
}
.btn-secondary:disabled:hover, .btn-secondary:disabled:focus, .btn-secondary.is-disabled:hover, .btn-secondary.is-disabled:focus {
  background-color: #2f2f2f;
  color: rgb(150, 150, 150);
  filter: drop-shadow(0 8px 4px rgba(47, 47, 47, 0.35));
}
@media (max-width: 768px) {
  .btn-secondary:disabled, .btn-secondary.is-disabled {
    width: 100%;
    text-align: center;
  }
}

.switcher {
  display: flex;
  border: 2px solid #800020;
  transition: background-color 0.2s, box-shadow 0.2s;
}
@media (max-width: 640px) {
  .switcher {
    flex-direction: column;
  }
}
.switcher:hover {
  background-color: #edd7cb;
  color: #393c45;
}
.switcher:focus, .switcher.is-active {
  background-color: #fff;
  color: #6b2525;
}
.switcher:focus-visible {
  outline: 2px solid #edd7cb;
  outline-offset: 2px;
}

.btn-card {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #393c45;
  color: #e1dfdd;
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(3, 2, 8, 0.15));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-top: 1rem;
}
.btn-card:hover, .btn-card:focus {
  background-color: #FCD3C1;
  color: #393c45;
  filter: drop-shadow(0 8px 4px rgba(3, 2, 8, 0.35));
}
@media (max-width: 768px) {
  .btn-card {
    width: 100%;
    text-align: center;
  }
}

.btn-card--carnelian {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin-inline: auto;
  margin-block: 0.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: #edd7cb;
  color: #6b2525;
  transition: box-shadow 0.2s ease-in, transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 2px rgba(3, 2, 8, 0.15));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-top: 1rem;
}
.btn-card--carnelian:hover, .btn-card--carnelian:focus {
  background-color: #6b2525;
  color: #fff;
  filter: drop-shadow(0 8px 4px rgba(3, 2, 8, 0.35));
}
@media (max-width: 768px) {
  .btn-card--carnelian {
    width: 100%;
    text-align: center;
  }
}

.btn-tertiary {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  margin: 0.2rem 0.6rem;
  border: 2px solid #cbcdd1;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  color: #2f2f2f;
  transition: all 0.3s ease-in-out;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transform: translateZ(0);
}
.btn-tertiary:hover, .btn-tertiary:focus {
  border: 2px solid #800020;
  background-color: #fff;
  color: #393c45;
}

.shortcut-button {
  border-radius: 4px;
  height: 3.2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(225, 223, 221, 0.2);
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  transition: all 0.3s ease-in-out;
}
.shortcut-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  mix-blend-mode: lighten;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: #800020;
  color: #fff;
  box-shadow: 0 4px 15px rgba(3, 2, 8, 0.3);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
#scrollToTopBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(128, 0, 32, 0.7);
  z-index: -1;
  animation: pulse-white 2s infinite cubic-bezier(0.66, 0, 0, 1);
}
#scrollToTopBtn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scrollToTopBtn:hover {
  background-color: #fff;
  color: #800020;
  border-color: #800020;
  box-shadow: 0 6px 20px rgba(3, 2, 8, 0.4);
  transform: translateY(-3px);
}
#scrollToTopBtn:hover::after {
  content: "Przewiń do góry";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 32px;
  font-weight: 500;
  top: 9px;
  left: 54px;
  right: 60px;
  bottom: -6px;
  border: 2px solid rgba(128, 0, 32, 0.5);
  background-color: #fff;
  border-radius: 8px;
  animation: fadeInUp 0.5s ease-in-out forwards;
}
#scrollToTopBtn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  stroke: none;
}
@media (min-width: 768px) {
  #scrollToTopBtn {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

#callUsBtn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: #800020;
  color: #fff;
  box-shadow: 0 4px 15px rgba(3, 2, 8, 0.3);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
#callUsBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(128, 0, 32, 0.7);
  z-index: -1;
  animation: pulse-white 2s infinite cubic-bezier(0.66, 0, 0, 1);
}
#callUsBtn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#callUsBtn:hover {
  background-color: #393c45;
  color: #800020;
  border-color: #393c45;
  box-shadow: 0 6px 20px rgba(57, 60, 69, 0.4);
  transform: translateY(-3px);
}
#callUsBtn:hover::after {
  content: "Skontaktuj się";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 32px;
  font-weight: 500;
  top: 9px;
  right: 54px;
  left: auto;
  border: 2px solid rgba(128, 0, 32, 0.5);
  background-color: #fff;
  border-radius: 8px;
  animation: fadeInUp 0.5s ease-in-out forwards;
}
#callUsBtn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  stroke: none;
}
@media (min-width: 768px) {
  #callUsBtn {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.vkCard__white {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
  color: #030208;
}
.vkCard__white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-white-2.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.vkCard__white::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.3) 0%, rgba(150, 150, 150, 0) 12.5%, rgba(150, 150, 150, 0) 30%, rgba(225, 223, 221, 0.9) 55%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: -1;
}
.vkCard__white img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
  background: linear-gradient(45deg, rgba(128, 0, 32, 0.5) 0%, rgba(128, 0, 32, 0.7) 50%, rgba(128, 0, 32, 0.5) 100%);
  padding: 2px;
}
.vkCard__white img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.vkCard__black {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
  color: #e1dfdd;
}
.vkCard__black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-black-5.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.vkCard__black::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.4) 0%, rgba(3, 2, 8, 0.2) 12.5%, rgba(3, 2, 8, 0.2) 30%, rgba(3, 2, 8, 0.9) 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.vkCard__black img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.vkCard__black img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.vkCard__red {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(87, 32, 21, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
  color: #e1dfdd;
}
.vkCard__red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-red-2.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.vkCard__red::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.3) 0%, rgba(87, 32, 21, 0.7) 12.5%, rgba(87, 32, 21, 0.7) 30%, #572015 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.vkCard__red img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.vkCard__red img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.vkCard__grey {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
  color: #e1dfdd;
}
.vkCard__grey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/granite-4.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.vkCard__grey::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(47, 47, 47, 0.9) 0%, rgba(178, 1, 1, 0) 12.5%, rgba(178, 1, 1, 0) 30%, rgba(0, 0, 0, 0) 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.vkCard__grey img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
  background: linear-gradient(45deg, rgba(40, 40, 40, 0.8) 0%, rgba(60, 60, 60, 0.9) 50%, rgba(40, 40, 40, 0.8) 100%);
  padding: 2px;
}
.vkCard__grey img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.vkCard__golden {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
  color: #e1dfdd;
}
.vkCard__golden::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-white-gold-2.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.vkCard__golden::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.3) 0%, rgba(150, 150, 150, 0) 12.5%, rgba(150, 150, 150, 0) 30%, rgba(225, 223, 221, 0.9) 55%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: -1;
}
.vkCard__golden img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.vkCard__golden img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}
.vkCard__golden-alt {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.6), inset 0 1px 4px rgba(255, 255, 255, 0.3);
  isolation: isolate;
  color: #e1dfdd;
}
.vkCard__golden-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("../../images/textures/marble-white-gold-1.jpg");
  background-size: contain no-repeat;
  background-position: center;
}
.vkCard__golden-alt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(47, 47, 47, 0.9) 0%, rgba(178, 1, 1, 0) 12.5%, rgba(178, 1, 1, 0) 30%, rgba(0, 0, 0, 0) 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.vkCard__golden-alt img {
  position: relative;
  isolation: isolate;
  z-index: 2;
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.5) 0%, rgba(243, 198, 102, 0.7) 50%, rgba(213, 168, 72, 0.5) 100%);
  padding: 2px;
}
.vkCard__golden-alt img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

.stone-div {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset -3px -3px 6px rgba(255, 255, 255, 0.4), inset 3px 3px 6px rgba(0, 0, 0, 0.4);
  margin: 1rem;
  color: #e1dfdd;
}
.stone-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/textures/granite-4.jpg") center/cover no-repeat;
  z-index: -2;
}
.stone-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 25%, transparent 30%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.card-icon-bg {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.card-icon-bg::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.8), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 10px 8px rgba(3, 2, 8, 0.1);
  background: #fff;
  z-index: -1;
  filter: blur(4px);
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.card-icon-photo {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.card-icon-photo::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.6), inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 10px 8px rgba(3, 2, 8, 0.6);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.pick-a-card {
  width: auto;
  padding: 1rem;
  border: 1px solid #cbcdd1;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 200ms, border-color 200ms, box-shadow 200ms;
}
@media (max-width: 640px) {
  .pick-a-card {
    padding-inline: 4px;
  }
}
.pick-a-card:hover {
  border-color: #800020;
  background-color: #fff;
}
.pick-a-card.is-active {
  border-color: #800020;
  box-shadow: 0 0 0 1px #800020;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 640px) {
  .pick-a-card.is-active {
    border-color: rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
  }
}
.pick-a-card.is-active:hover {
  border-color: #800020;
  box-shadow: 0 0 0 1px #800020;
  background-color: #fff;
}

.pick-a-card-dark {
  width: auto;
  padding: 1rem;
  border: 1px solid #cbcdd1;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 200ms, border-color 200ms, box-shadow 200ms;
}
@media (max-width: 640px) {
  .pick-a-card-dark {
    padding-inline: 4px;
  }
}
.pick-a-card-dark:hover {
  border-color: #800020;
  background-color: #030208;
}
.pick-a-card-dark.is-active {
  border-color: #800020;
  box-shadow: 0 0 0 1px #800020;
  background-color: rgba(128, 0, 32, 0.9);
}
.pick-a-card-dark.is-active:hover {
  border-color: #800020;
  box-shadow: 0 0 0 1px #800020;
  background-color: #800020;
}

.basic-card-style {
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid #800020;
  box-shadow: 0 4px 12px rgba(3, 2, 8, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 400ms ease-in-out;
}

.article-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #cbcdd1;
  border-radius: 4px;
  overflow: hidden;
  max-width: 24rem;
  transition: all 400ms ease-in-out;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
}
.article-card:hover {
  border: 2px solid #800020;
  box-shadow: 0 4px 12px rgba(3, 2, 8, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 400ms ease-in-out;
}
.article-card:hover img {
  border-color: #800020;
  transition: all 400ms ease-in-out;
}
.article-card:hover .article-card__description {
  color: #2f2f2f;
}
.article-card:focus {
  border-color: #FCD3C1;
  box-shadow: 0 4px 12px rgba(3, 2, 8, 0.2);
}
.article-card:focus img {
  border-color: #FCD3C1;
}
.article-card__image {
  aspect-ratio: 16/9;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid #cbcdd1;
  transition: all 400ms ease-in-out;
}
.article-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.25rem;
  gap: 0.75rem;
}
.article-card__title {
  font-size: 1.25rem;
  font-weight: 600;
}
.article-card__description {
  flex-grow: 1;
  color: rgba(47, 47, 47, 0.65);
  line-height: 1.5;
  transition: all 400ms ease-in-out;
}
.article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgb(150, 150, 150);
  padding-top: 0.75rem;
  border-top: 1px solid #cbcdd1;
}
.article-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card__details-overlay {
  pointer-events: none;
}

.product-card.is-details-open .product-card__details-overlay {
  pointer-events: auto;
}

main > textarea {
  padding: 0.8rem 1rem;
  border-radius: 4px;
  border: 2px solid #cbcdd1;
  background-color: rgba(225, 223, 221, 0.3);
  color: #030208;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
main > textarea:focus {
  outline: none;
  border-color: #FCD3C1;
  box-shadow: 0 0 0 3px #FCD3C1;
}

.form-container-standalone-style {
  background: #fff;
  border: 2px solid #800020;
  box-shadow: 0.2rem 0.4rem 8px rgba(0, 0, 0, 0.3);
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #030208;
  border-radius: 4px;
  max-width: 60rem;
  margin: 1.6rem auto;
}
.form-container label {
  font-weight: 600;
  color: inherit;
}
.form-container .form-input,
.form-container .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  border: 2px solid #cbcdd1;
  background-color: rgba(225, 223, 221, 0.3);
  color: #030208;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-container .form-input:focus,
.form-container .form-textarea:focus {
  outline: none;
  border-color: #FCD3C1;
  box-shadow: 0 0 0 3px #FCD3C1;
}
.form-container .form-textarea {
  min-height: 12rem;
  resize: vertical;
}
.form-container .submit-btn {
  background-color: #6b2525;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
}
.form-container .submit-btn:hover {
  opacity: 0.9;
}

.select-wrapper {
  position: relative;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 4px !important;
  border: 2px solid #030208;
  background-color: rgb(253.1769230769, 228.2615384615, 217.3230769231);
  color: #030208;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  padding-right: 2.5rem;
}
select:focus {
  outline: none;
  border-color: #FCD3C1 !important;
  box-shadow: 0 0 0 3px #FCD3C1 !important;
}

option {
  background: #fff;
  color: #030208;
}

.custom-checkbox,
.custom-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.custom-checkbox input,
.custom-radio input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.custom-checkbox .checkmark,
.custom-radio .checkmark {
  display: inline-block;
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  background-color: rgb(253.1769230769, 228.2615384615, 217.3230769231);
  border: 2px solid #030208;
  transition: all 0.3s ease;
}
.custom-checkbox .checkmark::after,
.custom-radio .checkmark::after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
.custom-checkbox .custom-checkbox .checkmark::after,
.custom-checkbox .custom-radio .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.4rem;
  height: 0.8rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-radio .custom-checkbox .checkmark::after,
.custom-radio .custom-radio .checkmark::after {
  background-color: #fff;
  border-radius: 50%;
  width: 0.6rem;
  height: 0.6rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
.custom-checkbox input:focus + .checkmark,
.custom-radio input:focus + .checkmark {
  box-shadow: 0 0 0 3px linear-gradient(45deg, rgba(213, 168, 72, 0.8) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.8) 100%);
  border-color: linear-gradient(45deg, rgba(213, 168, 72, 0.8) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.8) 100%);
}
.custom-checkbox input:checked + .checkmark,
.custom-radio input:checked + .checkmark {
  background-color: #800020;
  border-color: #800020;
}
.custom-checkbox input:checked + .checkmark::after,
.custom-radio input:checked + .checkmark::after {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox .checkmark {
  border-radius: 2px;
}

.custom-radio .checkmark {
  border-radius: 50%;
}

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

.error-message {
  color: #800020;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: -0.5rem;
}

.form-group.has-error input[type=text],
.form-group.has-error input[type=email],
.form-group.has-error input[type=password],
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #800020;
  color: #030208;
}
.form-group.has-error input[type=text]:focus,
.form-group.has-error input[type=email]:focus,
.form-group.has-error input[type=password]:focus,
.form-group.has-error textarea:focus,
.form-group.has-error select:focus {
  border-color: #800020;
  box-shadow: 0 0 0 3px #800020;
}
.form-group.has-error label {
  color: #800020;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}

.faq-item.is-active .faq-answer-content {
  max-height: 500px;
}

/* ...a ikona strzałki obraca się o 90 stopni */
.faq-item.is-active .faq-icon {
  transform: rotate(90deg);
}

/* ...i tło całego elementu może się zmienić, aby go wyróżnić */
.faq-item.is-active {
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0.2rem 0.4rem 8px rgba(0, 0, 0, 0.3);
  padding: 1.5rem 1rem;
  z-index: 9999;
  border-top: #800020 solid 2px;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cookie-banner__container {
    flex-direction: column;
    text-align: center;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  color: #030208;
}
.cookie-banner__button {
  background-color: #800020;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.cookie-banner__button:hover {
  color: #800020;
  background-color: #e1dfdd;
}

.table-of-contents {
  padding: 0.5rem 1rem;
  width: 40%;
  min-width: 24rem;
  border-radius: 4px;
  border: 2px solid #cbcdd1;
  background-color: rgba(255, 255, 255, 0.3);
}
.table-of-contents > h3 {
  color: #800020;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  border-bottom: solid 0.2rem #800020;
}
.table-of-contents__list > *:not(:last-child) {
  padding-bottom: 0.2rem;
  animation: animated-underline 0.5s ease-in-out;
}
.table-of-contents__list > *:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #cbcdd1;
  margin-top: 0.4rem;
  border-radius: 2px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../images/video/main-hero-poster.jpg");
  animation: switch-poster 15s steps(1) infinite;
}
@media (min-width: 1024px) {
  .hero-video {
    background: none;
    animation: none;
  }
}
.hero-video__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-video__video {
    display: none;
  }
}

@keyframes switch-poster {
  0% {
    background-image: url("../../images/video/main-hero-poster.jpg");
  }
  33.33% {
    background-image: url("../../images/video/main-hero-poster-alt-1.jpg");
  }
  66.66% {
    background-image: url("../../images/video/main-hero-poster-alt-2.jpg");
  }
}
@keyframes blend-fade {
  0%, 33.33%, 66.66%, 100% {
    background-color: #030208;
  }
  6%, 30%, 36%, 63%, 69%, 94% {
    background-color: rgba(3, 2, 8, 0.6);
  }
}
.hero-overlay-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 2, 8, 0.6);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-overlay-animated {
    animation: blend-fade 15s infinite ease-in-out;
  }
}

.hero-title-shadow {
  text-shadow: 1px 1px 16px #030208, 0 0 8px #030208;
}

.hero-sub-shadow {
  text-shadow: 1px 1px 4px #030208, 0 0 8px #030208, 0 0 2px #030208, 0 0 2px #030208;
}

.content-switcher__card.--is-active {
  box-shadow: 0 0 0 2px #800020;
}
.content-switcher__display {
  transition: opacity 100ms ease-in-out;
}
.content-switcher__display.--is-fading {
  opacity: 0;
}
.content-switcher__display.--is-fading .content-switcher__fade-in {
  opacity: 0;
  transition-delay: 0ms !important;
}
.content-switcher__fade-in {
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
.content-switcher__image {
  transition-delay: 50ms;
  max-height: 450px;
}
.content-switcher__title {
  transition-delay: 70ms;
}
.content-switcher__price-wrapper {
  transition-delay: 80ms;
}
.content-switcher__description {
  transition-delay: 80ms;
}

.shuffle-carousel {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}
.shuffle-carousel__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.shuffle-carousel__slide {
  width: 320px;
  height: 480px;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s, box-shadow 0.6s;
  transform: scale(0.85);
  opacity: 0.8;
  box-shadow: 0 8px 12px rgba(3, 2, 8, 0.45);
}
.shuffle-carousel__slide.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 26px 8px rgba(3, 2, 8, 0.45);
}
.shuffle-carousel__btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.shuffle-carousel__btn--prev {
  left: 10px;
}
.shuffle-carousel__btn--next {
  right: 10px;
}
.shuffle-carousel__btn:active {
  background-color: #fff;
}
@media (min-width: 1024px) {
  .shuffle-carousel__btn--prev {
    left: calc(50% - 250px);
  }
  .shuffle-carousel__btn--next {
    right: calc(50% - 250px);
  }
  .shuffle-carousel__btn:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
  }
}
@media (max-width: 768px) {
  .shuffle-carousel {
    mask-image: none;
  }
  .shuffle-carousel__slide {
    width: 280px;
    height: 420px;
  }
}

.product-card {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1e2939 0%, rgba(30, 41, 57, 0.9) 30%, rgba(30, 41, 57, 0.4) 50%, transparent 75%);
  z-index: 1;
}
.product-card.is-active {
  box-shadow: 0 0 0 2px #800020;
}
.product-card__main-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.product-card__title {
  font-size: 1.6rem !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: inherit;
  text-shadow: 0 2px 4px rgb(0, 0, 0);
  color: #76c1fa;
}
.product-card__title--opened {
  font-size: 1.2rem !important;
  font-weight: 800;
  margin-bottom: 0;
  font-family: inherit;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  color: #76c1fa;
}
.product-card__undertitle {
  font-size: 0.9rem !important;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: inherit;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.85);
}
.product-card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background-color: #800020;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}
.product-card__expand-btn {
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: white;
  border-radius: 50px;
  text-align: center;
  align-self: flex-start;
  animation: pulse 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
  cursor: pointer;
  width: 100%;
}
.product-card__details-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.98) 0%, rgba(30, 41, 57, 0.98) 45%, rgba(3, 2, 8, 0.98) 100%);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.product-card.is-details-open .product-card__details-overlay {
  opacity: 1;
  pointer-events: auto;
}
.product-card__desc {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.product-card__desc--carousel {
  flex-grow: 1;
  font-size: 0.8rem !important;
  line-height: 1.4;
  margin-top: 1rem;
}
.product-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  width: 100%;
}

.details-overlay__content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.details-overlay__close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 6;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}
.details-overlay__close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.golden-img-border .product-card {
  pointer-events: auto;
}

.js-material-carousel {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.carousel-main-container {
  perspective: 1000px;
  /* Warto dodać te dwie właściwości dla lepszej obsługi 3D */
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
  padding-block: 12rem;
  padding-inline: 24rem;
}

.carousel-item {
  position: absolute;
  transition: all 0.5s ease-in-out;
  backface-visibility: hidden; /* Poprawia wydajność animacji */
  width: 16rem; /* 256px */
  height: 16rem; /* 256px */
}

.carousel-center {
  transform: translateX(0) scale(1) rotateY(0);
  opacity: 1;
  z-index: 20;
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.7);
}

.carousel-left {
  transform: translateX(-14rem) scale(0.85) rotateY(30deg);
  z-index: 10;
  box-shadow: -20px 16px 8px rgba(0, 0, 0, 0.25);
}

.carousel-right {
  transform: translateX(14rem) scale(0.85) rotateY(-30deg);
  z-index: 10;
  box-shadow: 20px 16px 8px rgba(0, 0, 0, 0.25);
}

/* Stan dla slajdów, które są poza widokiem */
.carousel-hidden {
  transform: scale(0.5);
  opacity: 0;
  z-index: 5;
}

.product-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.product-carousel__dot:hover {
  background-color: rgb(255, 255, 255);
}
.product-carousel__dot.is-active {
  background-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}

.drawer-stone-overlay {
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  overflow: hidden;
}
.drawer-stone-overlay img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.drawer-stone-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  background: linear-gradient(176deg, white -7%, rgba(255, 255, 255, 0.2) 12.5%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 80%, rgba(3, 2, 8, 0.7) 99%);
}

.basic-drawer__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-weight: 600;
  background-color: #800020;
  border: 2px solid #800020;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.basic-drawer__button:hover {
  background-color: #FCD3C1;
  border-color: #FCD3C1;
  color: #393c45;
}
.basic-drawer__container {
  border-bottom: 2px solid #cbcdd1;
  box-shadow: 0 4px 12px rgba(3, 2, 8, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 400ms ease-in-out;
  border-radius: 4px;
}
.basic-drawer__option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(203, 205, 209, 0.5);
}
.basic-drawer__option:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.grid-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 2rem;
  padding-inline: 4px;
  padding-block: 2rem;
  width: 100%;
}
@media (min-width: 1280px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    padding-inline: 2rem;
    align-items: start;
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .grid-container__navbar {
    grid-column: 1/-1;
  }
}
.grid-container__sidebar {
  display: none;
}
@media (min-width: 1280px) {
  .grid-container__sidebar {
    display: block;
    grid-column: span 1;
    min-width: 9rem;
    position: sticky;
    top: 2rem;
    align-self: start;
    height: auto;
    overflow: visible;
    padding-inline: 0 1rem;
    border-right: 1px solid #cbcdd1;
    z-index: 10;
  }
}
.grid-container__main-content {
  min-height: auto;
  padding-inline: 0;
  min-width: 0;
  width: 100%;
  max-width: 100vw;
}
@media (min-width: 768px) {
  .grid-container__main-content {
    grid-column: span 11;
  }
}
@media (min-width: 768px) {
  .grid-container__footer {
    grid-column: 1/-1;
  }
}

.navbar {
  width: 100%;
  position: relative;
}
.navbar__container {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .navbar__container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding-block: 0.8rem;
  }
}
.navbar__logotype--mobile {
  display: block;
  justify-self: start;
  height: 4rem;
}
@media (min-width: 1280px) {
  .navbar__logotype--mobile {
    display: none;
  }
}
.navbar__logotype--mobile-svg {
  fill: #fff !important;
}
.navbar__logotype--desktop {
  display: none;
}
@media (min-width: 1280px) {
  .navbar__logotype--desktop {
    display: block;
    justify-self: start;
    position: relative;
    padding: 0.8rem 1.2rem;
    isolation: isolate;
    font-weight: 700;
    font-size: 1.5rem;
    color: inherit;
    text-decoration: none;
  }
  .navbar__logotype--desktop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-image: url("../../images/textures/marble-white-1.jpg");
    border-radius: 2px;
    z-index: -1;
    pointer-events: none !important;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .navbar__logotype--desktop:hover::before {
    width: 100%;
    border: 1px solid #fff;
    box-shadow: inset 2px 2px 6px #fff, inset 2px 2px 6px rgba(150, 150, 150, 0.3), 0 8px 8px rgba(3, 2, 8, 0.3);
  }
}
.navbar__logotype--svg {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.navbar__logotype--svg .logotype-symbol,
.navbar__logotype--svg .logotype-text {
  fill: #e1dfdd;
  transition: fill 0.3s ease-out;
}
.navbar__logotype--svg .logotype-text {
  transition-delay: 0.1s;
}
.navbar__logotype--svg:hover, .navbar__logotype--desktop:hover .navbar__logotype--svg {
  transform: translateX(-5px);
}
.navbar__logotype--svg:hover .logotype-symbol,
.navbar__logotype--svg:hover .logotype-text, .navbar__logotype--desktop:hover .navbar__logotype--svg .logotype-symbol,
.navbar__logotype--desktop:hover .navbar__logotype--svg .logotype-text {
  fill: #800020;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .navbar__actions {
    justify-self: end;
  }
}
.navbar__menu {
  display: none;
}
@media (min-width: 1280px) {
  .navbar__menu {
    display: flex;
    justify-self: center;
  }
}
.navbar__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1024px) {
  .navbar__links {
    flex-direction: row;
    gap: 2rem;
  }
}
.navbar__links--a {
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .navbar__links--a {
    color: #e1dfdd;
    position: relative;
    color: #e1dfdd;
    transition: color 0.2s ease-in-out;
    padding-bottom: 0.2rem;
    width: 100%;
  }
  .navbar__links--a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.12rem;
    width: 0;
    background: #800020;
    border-radius: 1rem;
    transition: width 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .navbar__links--a:hover, .navbar__links--a:focus {
    color: #FCD3C1;
  }
  .navbar__links--a:hover::after, .navbar__links--a:focus::after {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .navbar__links--a {
    font-size: 1.6rem;
    color: #e1dfdd;
    position: relative;
    color: #e1dfdd;
    transition: color 0.2s ease-in-out;
    padding-bottom: 0.2rem;
    width: 100%;
  }
  .navbar__links--a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.12rem;
    width: 0;
    background: #800020;
    border-radius: 1rem;
    transition: width 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .navbar__links--a:hover, .navbar__links--a:focus {
    color: #FCD3C1;
  }
  .navbar__links--a:hover::after, .navbar__links--a:focus::after {
    width: 100%;
  }
}
.navbar__full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 2, 8, 0.95);
  backdrop-filter: blur(10px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  padding: 6rem 10%;
  overflow-y: auto;
}
.navbar__full.is-active {
  opacity: 1;
  pointer-events: auto;
}
.navbar__full .navbar__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  align-content: start;
}
.navbar__full .navbar__links--a {
  font-size: 1.8rem;
  color: #e1dfdd;
  position: relative;
  color: #e1dfdd;
  transition: color 0.2s ease-in-out;
  padding-bottom: 0.2rem;
  width: 100%;
}
.navbar__full .navbar__links--a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.12rem;
  width: 0;
  background: #800020;
  border-radius: 1rem;
  transition: width 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.navbar__full .navbar__links--a:hover, .navbar__full .navbar__links--a:focus {
  color: #FCD3C1;
}
.navbar__full .navbar__links--a:hover::after, .navbar__full .navbar__links--a:focus::after {
  width: 100%;
}
.navbar__cta {
  display: none;
}
@media (min-width: 1024px) {
  .navbar__cta {
    display: block;
  }
}
.navbar__toggle {
  display: block;
  background: transparent;
  border: none;
  height: 4rem;
  cursor: pointer;
  z-index: 50;
  padding: 0;
  transition: transform 0.4s ease-out;
  will-change: transform;
}
.navbar__toggle:hover {
  transform: rotate(-15deg);
}
.navbar__toggle.is-active {
  transform: rotate(-90deg);
}
.navbar__toggle.is-active .navbar__toggle--icon {
  fill: #800020;
}
.navbar__toggle--icon {
  fill: #e1dfdd;
  transition: fill 0.3s ease-in-out;
}
.navbar__toggle:hover .navbar__toggle--icon {
  fill: #800020;
}

.navbar-gradient-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(3, 2, 8, 0.9) 0%, rgba(3, 2, 8, 0.5) 50%, rgba(3, 2, 8, 0) 100%);
}

/* ================================
   OVERLAY MENU – STABILNA TYPOGRAFIA (FIX)
   ================================ */
.navbar__full .navbar__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  padding-inline: 2rem;
  list-style: none;
  margin: 0;
}
@media (min-width: 1024px) {
  .navbar__full .navbar__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 4rem;
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .navbar__full .navbar__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.navbar__full .navbar__links--a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.navbar__full .menu-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-height: 48px;
}
.navbar__full .menu-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__full .menu-label {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  text-align: left;
}

.sidebar-nav {
  position: sticky !important;
  top: 1rem;
  display: flex;
  flex-direction: column;
}
.sidebar-nav:hover .sidebar-nav__item:not(:first-child, :last-child) .sidebar-nav__link:not(:hover) {
  background-color: rgba(255, 255, 255, 0.4);
}
.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav__item {
  position: relative;
}
.sidebar-nav__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #cbcdd1;
}

.sidebar-nav__link {
  display: block;
  padding: 1.5rem 1rem;
  border-radius: 4px;
  color: #030208;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.sidebar-nav__link:hover {
  background-color: #fff;
  color: #030208;
}
.sidebar-nav__link.is-active {
  background-color: #e1dfdd;
  color: #393c45;
  font-weight: 700;
}
.sidebar-nav__link--cta {
  background-color: #800020;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.sidebar-nav__link--cta:hover {
  background-color: #fff;
  color: #800020;
}

.svg-part {
  fill: #e1dfdd;
  transition: fill 400ms ease-in-out;
}

.svg-part.highlighted {
  fill: #d12852;
}

.svg-part.pulsate {
  animation: pulsate-effect 1.5s ease-in-out infinite alternate;
}

.tombstone__tomb--outline {
  fill: #252120;
}

.tomb-desc {
  animation: fadeInUp 0.6s ease-out forwards;
}

.founder {
  background-color: rgba(255, 255, 255, 0.4);
  border: 4px solid #cbcdd1;
  border-radius: 24px;
  position: relative;
  margin-top: 6rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .founder {
    margin-top: 4rem;
    padding: 3rem 2rem 2rem 4rem;
  }
}
.founder__img-container {
  display: flex;
  justify-content: center;
  margin-top: -6rem;
}
@media (min-width: 768px) {
  .founder__img-container {
    margin-top: 0;
    margin-left: -8rem;
  }
}
.founder__img-wrapper {
  position: relative;
  z-index: 10;
  display: inline-block;
}
.founder__img-wrapper::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(213, 168, 72, 0.6) 0%, rgba(243, 198, 102, 0.9) 50%, rgba(213, 168, 72, 0.6) 100%);
  z-index: -1;
  filter: blur(1px);
}
.founder__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .founder__img {
    width: 280px;
    height: 280px;
  }
}
.founder__quote {
  font-family: "Cormorant", serif;
  font-style: italic;
}
.founder__quote h4 {
  font-weight: bold;
  font-size: 1.15rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .founder__quote h4 {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

.contact {
  background-color: white;
  border: 2px solid #800020;
  box-shadow: 0.2rem 0.4rem 8px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  max-width: 60rem;
  margin: 2rem auto;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
}
@media (max-width: 640px) {
  .contact {
    padding-inline: 4px;
  }
}
.contact__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #800020;
}
.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact__description {
  color: #030208;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__card {
  padding: 1rem;
  border: 1px solid #cbcdd1;
  border-radius: 4px;
  flex-grow: 1;
}
.contact__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #800020;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #cbcdd1;
}
.contact__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #030208;
}
.contact__card-item {
  cursor: pointer;
  padding-block: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: border-bottom 0.2s ease;
}
.contact__card-item:hover {
  border-bottom: 1px solid #cbcdd1;
}
.contact__card-item--svg {
  height: 24px;
  width: auto;
}
@media (max-width: 640px) {
  .contact__card-item--svg {
    display: none;
  }
}
.contact__card-item--svg:hover {
  fill: #800020 !important;
}
.contact__card-text {
  color: #030208;
  line-height: 1.6;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

/*# sourceMappingURL=main.css.map */
