@font-face {
  font-family: 'Manrope';
  src: url(/assets/fonts/Manrope/Manrope-Variable.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url(/assets/fonts/Manrope/Manrope-Variable.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url(/assets/fonts/Manrope/Manrope-Variable.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url(/assets/fonts/Manrope/Manrope-Variable.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url(/assets/fonts/Manrope/Manrope-Variable.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url(/assets/fonts/Montserrat/Montserrat-Variable.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url(/assets/fonts/Montserrat/Montserrat-Variable.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url(/assets/fonts/Montserrat/Montserrat-Variable.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Prosto One';
  src: url(/assets/fonts/ProstoOne/ProstoOne-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #f4f5f9;
  color: #000;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

.container-custom {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 50px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: #181818;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-logo img {
  height: 31px;
  width: auto;
}

.header-nav {
  gap: 50px;
}

.nav-link-custom {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
  line-height: 27px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.4s ease;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease, left 0.4s ease;
}

.nav-link-custom:hover {
  color: #fff;
  opacity: 1;
}

.nav-link-custom.active {
  color: #fff;
  opacity: 1;
}

.nav-link-custom.active::after {
  width: 100%;
  left: 0;
}

.header-phone {
  font-family: 'Manrope', sans-serif;
  font-size: 16.73px;
  color: #fff;
  white-space: nowrap;
}

.burger-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.burger-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #181818;
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.mobile-menu-close svg,
.mobile-menu-close svg * {
  pointer-events: none;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
}

.mobile-menu-link {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
  color: #fff;
  opacity: 1;
  padding-left: 4px;
}

.mobile-menu-link.active {
  color: #fff;
  font-weight: 600;
}

.mobile-menu-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  color: #fff;
}

.mobile-menu-address-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-menu-address-value {
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}

.mobile-menu-socials {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.mobile-menu-social:hover {
  opacity: 0.85;
}

.mobile-menu-social svg {
  width: 48px;
  height: 48px;
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.03);
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide.prev {
  opacity: 0;
  transform: scale(0.97);
  z-index: 0;
}

.hero-image,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 5;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2.5px solid #fff;
  border-radius: 15px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.5s ease-in-out infinite;
}

.scroll-text {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-icon-desktop {
  display: block;
}

.scroll-icon-mobile {
  display: none;
}

.swipe-finger {
  animation: swipeUp 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes mouseScroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes swipeUp {
  0%, 100% { transform: translateY(8px); opacity: 0.4; }
  50% { transform: translateY(-8px); opacity: 1; }
}

.section-title {
  font-family: 'Prosto One', cursive;
  font-size: 86px;
  line-height: 1.1;
  color: #000;
  margin-bottom: 30px;
}

.section-title--medium {
  font-size: 53px;
}

.about-section {
  padding: 100px 0;
}

.about-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 29.86px;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 30px;
}

.about-video-wrapper {
  width: 100%;
  height: 498px;
  overflow: hidden;
  position: relative;
}

.about-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-side-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 820px;
  overflow: hidden;
}

.about-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.41);
}

.play-button {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  cursor: pointer;
  z-index: 5;
}
.preloader{
  z-index:9999999;
  width:100vw;
  background-color:#181818;
  backdrop-filter:blur(20px);
  height:100vh;
  position:fixed;
  display:flex;
  top:0;
  justify-content:center;
  align-items:center
}

.preloader.hide{
  animation:2s prehide
}
#preloaderSvg{
  animation:show 1s
}

@media (max-width:992px){
  #preloaderSvg{
    width:85%;
    height:85%;
  }
}
@keyframes prehide{0%{opacity:1}100%{opacity:0}}

@-webkit-keyframes animate-svg-stroke-1{0%{stroke-dashoffset:693.7994995117188px;stroke-dasharray:693.7994995117188px}100%{stroke-dashoffset:0;stroke-dasharray:693.7994995117188px}}@keyframes animate-svg-stroke-1{0%{stroke-dashoffset:693.7994995117188px;stroke-dasharray:693.7994995117188px}100%{stroke-dashoffset:0;stroke-dasharray:693.7994995117188px}}@-webkit-keyframes animate-svg-fill-1{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-1{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-1{-webkit-animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both,animate-svg-fill-1 0.65s cubic-bezier(0.47,0,0.745,0.715) 0.6s both;animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both,animate-svg-fill-1 0.65s cubic-bezier(0.47,0,0.745,0.715) 0.6s both}@-webkit-keyframes animate-svg-stroke-2{0%{stroke-dashoffset:617.732177734375px;stroke-dasharray:617.732177734375px}100%{stroke-dashoffset:0;stroke-dasharray:617.732177734375px}}@keyframes animate-svg-stroke-2{0%{stroke-dashoffset:617.732177734375px;stroke-dasharray:617.732177734375px}100%{stroke-dashoffset:0;stroke-dasharray:617.732177734375px}}@-webkit-keyframes animate-svg-fill-2{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-2{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-2{-webkit-animation:animate-svg-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s both,animate-svg-fill-2 0.65s cubic-bezier(0.47,0,0.745,0.715) 0.8s both;animation:animate-svg-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s both,animate-svg-fill-2 0.65s cubic-bezier(0.47,0,0.745,0.715) 0.8s both}@-webkit-keyframes animate-svg-stroke-3{0%{stroke-dashoffset:598.5800170898438px;stroke-dasharray:598.5800170898438px}100%{stroke-dashoffset:0;stroke-dasharray:598.5800170898438px}}@keyframes animate-svg-stroke-3{0%{stroke-dashoffset:598.5800170898438px;stroke-dasharray:598.5800170898438px}100%{stroke-dashoffset:0;stroke-dasharray:598.5800170898438px}}@-webkit-keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-3{-webkit-animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both,animate-svg-fill-3 0.65s cubic-bezier(0.47,0,0.745,0.715) 1s both;animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both,animate-svg-fill-3 0.65s cubic-bezier(0.47,0,0.745,0.715) 1s both}@-webkit-keyframes animate-svg-stroke-4{0%{stroke-dashoffset:604.5606689453125px;stroke-dasharray:604.5606689453125px}100%{stroke-dashoffset:0;stroke-dasharray:604.5606689453125px}}@keyframes animate-svg-stroke-4{0%{stroke-dashoffset:604.5606689453125px;stroke-dasharray:604.5606689453125px}100%{stroke-dashoffset:0;stroke-dasharray:604.5606689453125px}}@-webkit-keyframes animate-svg-fill-4{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-4{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-4{-webkit-animation:animate-svg-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s both,animate-svg-fill-4 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s both;animation:animate-svg-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s both,animate-svg-fill-4 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s both}@-webkit-keyframes animate-svg-stroke-5{0%{stroke-dashoffset:1481.880859375px;stroke-dasharray:1481.880859375px}100%{stroke-dashoffset:0;stroke-dasharray:1481.880859375px}}@keyframes animate-svg-stroke-5{0%{stroke-dashoffset:1481.880859375px;stroke-dasharray:1481.880859375px}100%{stroke-dashoffset:0;stroke-dasharray:1481.880859375px}}@-webkit-keyframes animate-svg-fill-5{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-5{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-5{-webkit-animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both,animate-svg-fill-5 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.4s both;animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both,animate-svg-fill-5 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.4s both}@-webkit-keyframes animate-svg-stroke-6{0%{stroke-dashoffset:1481.880859375px;stroke-dasharray:1481.880859375px}100%{stroke-dashoffset:0;stroke-dasharray:1481.880859375px}}@keyframes animate-svg-stroke-6{0%{stroke-dashoffset:1481.880859375px;stroke-dasharray:1481.880859375px}100%{stroke-dashoffset:0;stroke-dasharray:1481.880859375px}}@-webkit-keyframes animate-svg-fill-6{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-6{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-6{-webkit-animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s both,animate-svg-fill-6 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.6s both;animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s both,animate-svg-fill-6 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.6s both}@-webkit-keyframes animate-svg-stroke-7{0%{stroke-dashoffset:531.4646606445312px;stroke-dasharray:531.4646606445312px}100%{stroke-dashoffset:0;stroke-dasharray:531.4646606445312px}}@keyframes animate-svg-stroke-7{0%{stroke-dashoffset:531.4646606445312px;stroke-dasharray:531.4646606445312px}100%{stroke-dashoffset:0;stroke-dasharray:531.4646606445312px}}@-webkit-keyframes animate-svg-fill-7{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-7{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-7{-webkit-animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both,animate-svg-fill-7 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.8000000000000003s both;animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both,animate-svg-fill-7 0.65s cubic-bezier(0.47,0,0.745,0.715) 1.8000000000000003s both}@-webkit-keyframes animate-svg-stroke-8{0%{stroke-dashoffset:426.0122375488281px;stroke-dasharray:426.0122375488281px}100%{stroke-dashoffset:0;stroke-dasharray:426.0122375488281px}}@keyframes animate-svg-stroke-8{0%{stroke-dashoffset:426.0122375488281px;stroke-dasharray:426.0122375488281px}100%{stroke-dashoffset:0;stroke-dasharray:426.0122375488281px}}@-webkit-keyframes animate-svg-fill-8{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-8{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-8{-webkit-animation:animate-svg-stroke-8 1s cubic-bezier(0.47,0,0.745,0.715) 0.84s both,animate-svg-fill-8 0.65s cubic-bezier(0.47,0,0.745,0.715) 2s both;animation:animate-svg-stroke-8 1s cubic-bezier(0.47,0,0.745,0.715) 0.84s both,animate-svg-fill-8 0.65s cubic-bezier(0.47,0,0.745,0.715) 2s both}@-webkit-keyframes animate-svg-stroke-9{0%{stroke-dashoffset:426.0060729980469px;stroke-dasharray:426.0060729980469px}100%{stroke-dashoffset:0;stroke-dasharray:426.0060729980469px}}@keyframes animate-svg-stroke-9{0%{stroke-dashoffset:426.0060729980469px;stroke-dasharray:426.0060729980469px}100%{stroke-dashoffset:0;stroke-dasharray:426.0060729980469px}}@-webkit-keyframes animate-svg-fill-9{0%{fill:transparent}100%{fill:rgb(255,255,255)}}@keyframes animate-svg-fill-9{0%{fill:transparent}100%{fill:rgb(255,255,255)}}.svg-elem-9{-webkit-animation:animate-svg-stroke-9 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s both,animate-svg-fill-9 0.65s cubic-bezier(0.47,0,0.745,0.715) 2.2s both;animation:animate-svg-stroke-9 1s cubic-bezier(0.47,0,0.745,0.715) 0.96s both,animate-svg-fill-9 0.65s cubic-bezier(0.47,0,0.745,0.715) 2.2s both}
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.play-icon svg {
  margin-left: 5px;
}

.play-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.34);
  animation: playPulse 2s ease-out infinite;
}

.play-pulse-ring.ring-2 {
  animation-delay: 0.4s;
}

.play-pulse-ring.ring-3 {
  animation-delay: 0.8s;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.offers-section {
  padding: 0 0 80px;
}

.offers-header {
  margin-bottom: 50px;
}

.offers-divider {
  width: 2px;
  height: 100px;
  background: rgba(0, 0, 0, 0.15);
  margin-right: 40px;
  flex-shrink: 0;
}

.offers-divider--light {
  background: rgba(255, 255, 255, 0.3);
}

.offers-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  margin: 0;
}

.offers-slider {
  width: 100%;
}


.offer-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.splide__slide {
  height: 552px;
}

.offer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.offer-card:hover .offer-card-img {
  transform: scale(1.05);
}

.offer-card-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.offer-card-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(2.3px);
  border: 0.92px solid rgba(255, 255, 255, 0.4);
}

.offer-card-label span {
  font-family: 'Manrope', sans-serif;
  font-size: 19.88px;
  color: #fff;
  line-height: 26.5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55.5px;
  height: 55.5px;
  border-radius: 50%;
  background-color: #181818;
  border: 11px solid #f4f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 5;
}

.carousel-btn:hover {
  background-color: #333;
}

.carousel-btn-left {
  left: -27px;
}

.carousel-btn-right {
  right: -27px;
}

.social-section {
  position: relative;
  padding: 80px 0;
  min-height: 475px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.social-bg {
  position: absolute;
  inset: 0;
}

.social-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-bg-sat {
  position: absolute;
  inset: 0;
  background: white;
  mix-blend-mode: saturation;
}

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.social-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 4.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.social-title {
  font-family: 'Prosto One', cursive;
  font-size: 45px;
  color: #fff;
  letter-spacing: -0.96px;
  margin-bottom: 30px;
}

.social-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 50px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.social-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}

.social-link-item:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.social-icon-img {
  width: 64px;
  height: 64px;
}

.social-link-item span {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-section {
  padding: 80px 0;
}

.gallery-carousel-wrapper {
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

#gallerySlider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55.5px;
  height: 55.5px;
  border-radius: 50%;
  background-color: #181818;
  border: 11px solid #f4f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 5;
  opacity: 1;
  padding: 0;
}

#gallerySlider .splide__arrow:hover {
  background-color: #333;
}

#gallerySlider .splide__arrow--prev {
  left: -27px;
  right: auto;
}

#gallerySlider .splide__arrow--next {
  right: -27px;
  left: auto;
}

#gallerySlider .splide__arrow svg {
  fill: none;
  transform: none;
}

#offersSlider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55.5px;
  height: 55.5px;
  border-radius: 50%;
  background-color: #181818;
  border: 11px solid #f4f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 5;
  opacity: 1;
  padding: 0;
}

#offersSlider .splide__arrow:hover {
  background-color: #333;
}

#offersSlider .splide__arrow--prev {
  left: -27px;
  right: auto;
}

#offersSlider .splide__arrow--next {
  right: -27px;
  left: auto;
}

#offersSlider .splide__arrow svg {
  fill: none;
  transform: none;
}

#reviewsSlider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55.5px;
  height: 55.5px;
  border-radius: 50%;
  background-color: #181818;
  border: 11px solid #f4f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 5;
  opacity: 1;
}

#reviewsSlider .splide__arrow:hover {
  background-color: #333;
}

#reviewsSlider .splide__arrow--prev {
  left: -27px;
  right: auto;
}

#reviewsSlider .splide__arrow--next {
  right: -27px;
  left: auto;
}

#reviewsSlider .splide__arrow svg {
  fill: none;
  transform: none;
}

#reviewsSlider .splide__slide {
  height: auto;
}

#reviewsSlider .splide__slide .review-card {
  height: 100%;
}

.reviews-slider {
  margin-bottom: 30px;
}

#gallerySlider .splide__slide {
  height: auto;
}

.gallery-item {
  height: 552px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.locations-section {
  padding: 100px 0;
  background: #f4f5f9;
}

.locations-header {
  margin-bottom: 50px;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: stretch;
  min-height: 430px;
}

.location-card:nth-child(even) .location-map {
  order: 2;
}

.location-card:nth-child(even) .location-photo {
  order: 1;
}

.location-map,
.location-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #181818;
}

.location-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease;
}

.location-card:hover .location-map-frame {
  filter: grayscale(0.35) contrast(1.03);
}

.location-video-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #181818;
  overflow: hidden;
}

.location-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-video-preview--vertical {
  object-position: center center;
}

.location-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  transition: background 0.35s ease;
}

.location-video-trigger:hover {
  opacity: 1;
}

.location-video-trigger:hover .location-video-preview {
  transform: scale(1.04);
}

.location-video-trigger:hover .location-video-overlay {
  background: rgba(0, 0, 0, 0.16);
}

.location-video-play {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(24, 24, 24, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
  transition: transform 0.3s ease, background 0.3s ease;
}

.location-video-trigger:hover .location-video-play {
  transform: scale(1.08);
  background: rgba(24, 24, 24, 0.74);
}

.location-video-play svg {
  width: 28px;
  height: 32px;
  margin-left: 5px;
}

.contact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contact-bg-sat {
  position: absolute;
  inset: 0;
  background: white;
  mix-blend-mode: saturation;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-header {
  margin-bottom: 50px;
  position: relative;
}

.contact-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3.5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 40px;
}

.contact-form-title {
  font-family: 'Prosto One', cursive;
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-form-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #c6c6c6;
  margin-bottom: 30px;
  max-width: 666px;
}

.form-input {
  width: 100%;
  height: 65px;
  background: #fff;
  border: none;
  padding: 0 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: box-shadow 0.3s;
}

.form-input::placeholder {
  color: #757575;
}

.form-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.form-input--dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-input--dark::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input--dark:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-textarea {
  height: auto;
  padding: 20px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  height: 68px;
  background: #181818;
  color: #fff;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background: #333;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit--full {
  width: 100%;
}

.btn-submit--outline {
  background: transparent;
  border: 1px solid #fff;
  margin-top: 20px;
  width: auto;
  padding: 0 40px;
}

.btn-submit--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.form-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.form-check-custom {
  width: 13px;
  height: 13px;
  accent-color: #181818;
  cursor: pointer;
  flex-shrink: 0;
}

.form-check-label-custom {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.form-check-label-custom a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.form-check-label-custom a:hover {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.reviews-section {
  padding: 80px 0 100px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.review-card {
  background: #fff;
  padding: 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.review-quote {
  width: 51px;
  height: 49px;
}

.review-name {
  font-family: 'Prosto One', cursive;
  font-size: 28px;
  color: #000;
}

.review-text {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 18.9px;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-full-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  float: right;
  background: transparent;
  border: 0;
  padding: 0;
  transition: color 0.3s;
  cursor: pointer;
}

.review-full-link:hover {
  color: #000;
  opacity: 1;
}

.reviews-stars-row {
  text-align: center;
  margin-bottom: 20px;
}

.reviews-stars {
  height: 2px;
  width: 180px;
}

.reviews-btn-row {
  text-align: center;
}

.btn-leave-review {
  display: inline-block;
  width: 221px;
  height: 60px;
  background: #000;
  border: 1px solid #181818;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-leave-review:hover {
  background: #333;
}

.btn-leave-review:active {
  transform: scale(0.98);
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-map-bg {
  position: absolute;
  inset: 0;
}

.footer-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: black;
  mix-blend-mode: overlay;
}

.footer-main {
  position: relative;
  background: #181818;
  padding: 100px 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-icon-circle {
  width: 45px;
  height: 45px;
  background: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-icon-circle svg path {
  stroke: #181818;
  fill: #181818;
}

.footer-icon-circle svg path[stroke]:not([fill]),
.footer-icon-circle svg path[stroke="#181818"] {
  fill: none;
}

.footer-icon-circle img {
  width: 17px;
  height: 17px;
}

.footer-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.footer-value {
  font-size: 16px;
  color: #fff;
  display: block;
}

.footer-social-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  margin-bottom: 15px;
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.footer-social-circle {
  width: 45px;
  height: 45px;
  background: #fff !important;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.footer-social-circle svg path {
  fill: #181818;
}

.footer-social-circle:hover {
  transform: scale(1.1);
  opacity: 1;
}

.footer-social-circle img {
  width: 17px;
  height: 14px;
}

.footer-logo img {
  height: 62px;
  width: auto;
  margin-bottom: 30px;
}

.footer-about-text {
  font-size: 16px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
}

.footer-privacy-link {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
.footer-privacy-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.bottom-bar {
  background: #000 !important;
  background-color: #000 !important;
  background-image: none !important;
  padding: 20px 0;
  width: 100%;
  color: #fff;
  visibility: visible !important;
  opacity: 1 !important;
}

.bottom-bar-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bottom-bar-link:hover,
.bottom-bar-link:focus {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

.bottom-bar-text {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.33px;
  display: block;
  margin-bottom: 5px;
}

.bottom-bar-logo svg {
  display: block;
  width: 115px;
  height: 24px;
  margin: 0 auto;
}

.modal-custom {
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: #fff;
  padding: 40px;
}

.modal-custom .modal-body {
  padding: 0;
}

.modal-custom--thanks {
  padding: 40px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  filter: invert(1);
}

.modal-quote {
  width: 51px;
  height: 49px;
  margin-bottom: 20px;
}

.modal-review-name {
  font-family: 'Prosto One', cursive;
  font-size: 32px;
  margin-bottom: 20px;
}

.modal-review-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  white-space: pre-line;
}

.modal-title-custom {
  font-family: 'Prosto One', cursive;
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.modal-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.form-check-row--modal {
  margin-bottom: 20px;
}

.thanks-icon {
  margin-bottom: 25px;
}

.thanks-icon svg {
  animation: thanksScale 0.5s ease-out;
}

@keyframes thanksScale {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1199px) {
  .container-custom {
    padding: 0 30px;
  }

  .section-title {
    font-size: 62px;
  }

  .section-title--medium {
    font-size: 42px;
  }

  #offersSlider .splide__slide {
    height: 450px;
  }

  .gallery-item {
    height: 450px;
  }

  .location-card {
    min-height: 390px;
  }

  .location-map,
  .location-photo {
    min-height: 390px;
  }

  .about-side-wrapper {
    min-height: 600px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .social-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .site-header {
    height: 80px;
  }

  .section-title {
    font-size: 48px;
  }

  .section-title--medium {
    font-size: 36px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-side-wrapper {
    min-height: 500px;
    margin-top: 30px;
  }

  .about-video-wrapper {
    height: 350px;
  }

  #offersSlider .splide__slide {
    height: 400px;
  }

  .gallery-item {
    height: 400px;
  }

  .locations-section {
    padding: 70px 0;
  }

  .locations-header {
    margin-bottom: 35px;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    width: 100%;
  }

  .location-card:nth-child(even) .location-map,
  .location-card:nth-child(even) .location-photo {
    order: 0;
  }

  .location-map,
  .location-photo {
    min-height: 360px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-card {
    padding: 30px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .footer-main {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .container-custom {
    padding: 0 20px;
  }

  .site-header {
    height: 70px;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .section-title--medium {
    font-size: 28px;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-video-wrapper {
    height: 250px;
  }

  .about-side-wrapper {
    min-height: 400px;
  }

  .offers-section {
    padding-bottom: 50px;
  }

  #offersSlider .splide__slide {
    height: 450px;
  }

  .offer-card-label span {
    font-size: 16px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    border-width: 8px;
  }

  .carousel-btn-left { left: -15px; }
  .carousel-btn-right { right: -15px; }

  .social-section {
    padding: 50px 0;
  }

  .social-title {
    font-size: 28px;
  }

  .social-links {
    gap: 30px;
  }

  .social-icon-img {
    width: 50px;
    height: 50px;
  }

  .gallery-item {
    height: 350px;
  }

  .gallery-section {
    padding: 50px 0;
  }

  .locations-section {
    padding: 50px 0;
  }

  .locations-list {
    gap: 24px;
  }

  .location-map,
  .location-photo {
    min-height: 300px;
  }

  .location-video-play {
    width: 62px;
    height: 62px;
  }

  .location-video-play svg {
    width: 23px;
    height: 27px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-form-desc {
    font-size: 14px;
  }

  .form-input {
    height: 55px;
  }

  .btn-submit {
    height: 55px;
    font-size: 16px;
  }

  .form-check-label-custom {
    font-size: 13px;
  }

  .reviews-section {
    padding: 50px 0 60px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .review-name {
    font-size: 22px;
  }

  .footer-main {
    padding: 50px 0;
  }

  .footer-logo img {
    height: 45px;
    margin-bottom: 20px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-icon svg {
    width: 24px;
    height: 28px;
  }

  .scroll-indicator {
    bottom: 55px;
  }

  .scroll-icon-desktop {
    display: none;
  }

  .scroll-icon-mobile {
    display: block;
  }

  .scroll-text {
    font-size: 9px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .section-title--medium {
    font-size: 22px;
  }

  .contact-form-title {
    font-size: 18px;
  }

  .social-title {
    font-size: 22px;
  }

  .social-links {
    gap: 20px;
  }

  .modal-title-custom {
    font-size: 22px;
  }

  .modal-review-name {
    font-size: 24px;
  }
}

/* ============ Cookie Consent ============ */
.cookie-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 100%;
  max-width: 420px;
  z-index: 1080;
  display: none;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 16px 18px;
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.cookie-consent.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  flex: 1 1 auto;
}

.cookie-consent__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-consent__text a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-consent__accept {
  align-self: flex-start;
  flex-shrink: 0;
  min-width: 120px;
  height: 40px;
  padding: 0 22px;
  background: #fff;
  color: #181818;
  border: 1px solid #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.cookie-consent__accept:hover {
  background: transparent;
  color: #fff;
}

.cookie-consent__accept:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
    padding: 12px 14px;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cookie-consent__text {
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
  }

  .cookie-consent__accept {
    width: 100%;
    min-width: 0;
    height: 40px;
    font-size: 13px;
  }
}

@keyframes pulse{
  0%, 100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }
  
  50% {
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      transform: scale(1.3);
  }

}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.share {
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  transition: bottom .25s ease, right .25s ease;
}

.pulse {
  animation: none;
}
.share-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 2px solid #fff;
  background: red;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, .35);
  animation: share-bounce 1.6s ease-in-out infinite;
  transition: box-shadow .25s ease;
}
.share-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 9999px;
  background: red;
  animation: share-ripple 1.6s ease-out infinite;
}
.share-link,
.share-link:hover,
.share-link:focus,
.share-link:active,
.share-link:visited {
  color: #fff;
  text-decoration: none;
}
.share-link:hover {
  opacity: 1;
  animation-play-state: paused;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, .4);
}
.share-link:hover::before {
  animation-play-state: paused;
}

@keyframes share-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes share-ripple {
  0% {
    transform: scale(1);
    opacity: .5;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
