html {
  --transition-all: all 0.14s ease-in-out;
  --transition-color: color 0.14s ease;
  --transition-bgc: background-color 0.14s ease;
  --transition-brdc: border-color 0.14s ease;
  --transition-quick: all 0.07s ease-in-out;
  --accent-color: #ffb831;
  --color-white-primary: #ffffff;
  --color-white-secondary: #fafafa;
  --color-black-primary: #111111;
  --color-black-secondary: #595959;
  --opacity: 0.35;
}

footer a {
  font-size: 0.875rem;
  line-height: 1;
}

footer .back-top {
  width: fit-content;
}

footer .back-top:hover {
  color: var(--color-black-primary);
}

footer .back-top .material-symbols-outlined {
  font-size: 1rem;
}

footer .nav {
  gap: 0.875rem;
}

footer .nav .nav-item .nav-link {
  padding: 0.5rem 0;
}

.modal-content-scroll {
  max-height: 70vh;
  overflow: auto;
  padding-right: 4px; /* трохи місця під скролбар */
}

.form-popup {
  background: #ffffff;          /* Білий фон модалки */
  color: #111;                  /* Темний текст для контрасту */
  padding: 24px 28px;           /* Внутрішні відступи */
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-width: min(720px, 92vw);  /* Адаптивна ширина */
  margin: 0 auto;               /* Центрування блоку */
  position: relative;
}

/* Щоб довгі тексти гарно прокручувалися всередині (якщо використовуєте .modal-content-scroll) */
.form-popup .modal-content-scroll {
  max-height: 70vh;
  overflow: auto;
  padding-right: 4px;
}

/* Трохи косметики для заголовків у модалках */
.form-popup h3,
.form-popup h5 {
  margin-top: 0;
}

/* Опційно: зробити затемнення фону більш читабельним (бекдроп) */
.mfp-bg {
  background: rgba(0,0,0,0.6) !important;
}

/* Гарантуємо нормальну ширину контейнера Magnific для inline */
.mfp-inline-holder .mfp-content {
  width: 100%;
  max-width: none;
}

.background-circle {
  background-color: var(--accent-color);
  border-radius: 50%;
  filter: blur(200px);
  position: fixed;
  left: -12.5%;
  bottom: -25%;
  width: 1000px;
  height: 1000px;
  z-index: -3;
  animation: animation-circle 18s linear infinite;
}

@keyframes animation-circle {
  from {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* ::selection {
  color: var(--color-black-primary);
  background: var(--accent-color);
}

*:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 184, 48, 0.25) !important;
}

* a {
  text-decoration: none;
}

* a:hover {
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.618;
  letter-spacing: -0.03125rem;
  color: var(--color-black-primary);
  background-color: var(--color-white-secondary);
  overflow-x: hidden;
  height: 100%;
  min-width: 375px;
  width: 100%;
}

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

video {
  height: auto;
  width: 100%;
}

section {
  position: relative;
}

section.white {
  background-color: var(--color-white-primary);
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.visible {
  visibility: visible !important;
}

.hidden {
  visibility: hidden !important;
}

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

.no-scroll {
  overflow: hidden;
}

.bg-accent {
  background-color: var(--accent-color);
}

a, .nav-link {
  color: var(--color-black-primary);
}

a:hover, .nav-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.border-top, .border-bottom {
  border-color: var(--color-white-primary) !important;
}

section .material-symbols-outlined {
  font-size: 1rem;
  color: var(--accent-color);
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  /**/
}
@media (max-width: 991.98px) {
  /**/
}
@media (max-width: 767.98px) {
  /**/
}
@media (max-width: 575.98px) {
  /**/
}
.btn {
  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-black-primary);
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
  width: fit-content;
}

.btn-primary {
  color: var(--color-black-primary);
  background-color: var(--accent-color);
}

.btn-extra {
  color: var(--color-black-primary);
  background-color: var(--accent-color);
  height: 100%;
  width: 100%;
}

.btn-menu {
  color: var(--color-black-primary);
  background-color: var(--accent-color);
  height: 100%;
}

.btn-menu:hover {
  color: var(--color-white-primary);
  background-color: var(--color-black-primary);
}

.btn-ghost {
  height: 100%;
}

.btn-price {
  padding: 1.25rem 0.5rem;
}

.btn-price.active {
  color: var(--accent-color);
}

.btn-filter {
  padding: 0.25rem;
  text-transform: capitalize;
}

.form-popup {
  margin: 0 auto;
  position: relative;
  max-width: 30rem;
}

.form-popup form {
  background-color: var(--color-white-primary);
  padding: 2rem;
}

button.mfp-close {
  background: var(--color-black-primary);
  opacity: 1;
  right: -0.75rem;
}

.mfp-close-btn-in .mfp-close {
  color: var(--color-white-primary);
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  /**/
}
@media (max-width: 991.98px) {
  /**/
}
@media (max-width: 767.98px) {
  /**/
}
@media (max-width: 575.98px) {
  .form-popup {
    max-width: 20rem;
  }
}
.form-floating .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-black-primary);
  border-radius: 0;
  padding: 1rem 0;
}

.form-floating label {
  padding: 1rem 0;
}

.form-check-input {
  background-color: var(--color-black-primary);
  border: none;
  border-radius: 0 !important;
  margin-top: 0.3rem;
}

.form-check-input:checked {
  background-color: var(--accent-color);
}

#map {
  height: 720px;
  width: 100%;
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  #map {
    height: 500px;
  }
}
@media (max-width: 991.98px) {
  #map {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  /**/
}
@media (max-width: 575.98px) {
  /**/
}
header {
  padding-left: 2.5rem;
  top: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  z-index: 5;
}

.header-different {
  background-color: var(--color-white-secondary);
}

.navbar-brand img {
  height: 2rem;
  width: auto;
}

header .location {
  margin-left: 10vw;
  margin-bottom: 0;
  text-transform: uppercase;
}

header #clock {
  margin-left: 0.5rem;
}

header .material-symbols-outlined {
  font-size: 1rem;
  color: var(--accent-color);
  margin-right: 1.125rem;
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  /**/
}
@media (max-width: 991.98px) {
  /**/
}
@media (max-width: 767.98px) {
  header {
    height: 4rem;
    padding-left: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  /**/
}
.hero .list-inline .list-inline-item:not(:last-child) a::after {
  content: "";
  display: flex;
  background-color: var(--accent-color);
  margin-left: 1rem;
  height: 1rem;
  width: 1px;
}

.swiper.swiper-hero {
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -1;
}

.discount.hide {
  display: none;
  visibility: hidden;
}

.discount {
  position: fixed;
  left: 0;
  bottom: 2rem;
  width: 100%;
  z-index: 1;
}

.discount .discount__link {
  display: flex;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.discount .discount-content {
  position: relative;
}

.discount .discount-content .discount__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border: none;
  border-radius: 50px;
  position: absolute;
  top: -4rem;
  right: 0.5rem;
  height: 3rem;
  width: 3rem;
  z-index: 2;
}

.container-fluid {
  padding: 0 2.5rem;
}

.hv-100 {
  height: 100vh !important;
}

.w-img {
  width: 50%;
}

.w-fit {
  width: fit-content !important;
}

.pt-lg-15 {
  padding-top: 15rem;
}

.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  .w-img {
    width: 75%;
  }
}
@media (max-width: 991.98px) {
  .w-img {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .container-fluid {
    padding: 0 1.25rem;
  }
}
@media (max-width: 575.98px) {
  /**/
}
html.lenis body, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  flex: auto;
  flex-direction: row;
  text-transform: uppercase;
  width: fit-content;
}

.marquee-text {
  display: flex;
  align-items: center;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
}

.marquee-text::before {
  content: "";
  background-color: var(--accent-color);
  display: flex;
  margin: 0 2rem;
  height: 0.5rem;
  width: 0.5rem;
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  /**/
}
@media (max-width: 991.98px) {
  .marquee-text {
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .marquee-text {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  /**/
}
nav {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 3;
}

nav .navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

nav .navbar-nav li:not(:last-child) {
  margin-bottom: 1rem;
}

nav .navbar-nav li a {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-black-primary);
}

nav .navbar-nav li a:hover {
  color: var(--color-black-primary);
}

nav .navbar-nav li a.nav-small {
  font-size: 1.125rem;
  padding: 0.125rem 0;
}

.navbar-nav {
  position: absolute;
  top: 50%;
  left: 10vw;
  transform: translateY(-50%);
}

.dropdown {
  position: relative;
}

.dropdown-toggle span {
  font-size: 2rem;
  margin-left: 3rem;
}

.open .dropdown-toggle span {
  color: var(--accent-color);
}

.dropdown-toggle::after {
  display: none;
  visibility: hidden;
}

.dropdown-menu {
  color: var(--color-black-primary);
  background-color: transparent;
  border: none;
  border-radius: 0;
  list-style: none;
  padding: 0;
  position: absolute;
  inset: 22px -278px 0 0 !important;
  transform: none !important;
}

.dropdown-menu .dropdown-item {
  font-size: 0.875rem;
}

.social {
  position: absolute;
  left: 10vw;
  bottom: 5rem;
}

.social p {
  color: var(--color-black-secondary);
}

.social ul li:not(:last-child) {
  margin-right: 1rem;
}

.about p {
  font-size: 1.125rem;
  max-width: 620px;
}

section.contact span {
  font-size: 200px;
  color: var(--color-white-secondary);
}

.swiper-reviews {
  color: var(--color-white-primary);
  background-color: var(--color-black-primary);
  padding: 5rem;
}

.review {
  display: flex;
  flex-direction: row;
}

.review-author {
  position: absolute;
  top: 50%;
  left: 12.5%;
  transform: translateY(-50%);
}

.review-author span {
  font-size: 2.5rem;
  color: var(--color-black-primary);
  background-color: var(--color-white-primary);
  margin-bottom: 1.125rem;
}

.review-author h6 {
  margin-bottom: 0.25rem;
}

.review-author p {
  color: var(--accent-color);
}

.review-text {
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0 auto;
  width: 500px;
}

@media (max-width: 1399.98px) {
  /**/
}
@media (max-width: 1199.98px) {
  .review-author {
    left: 0;
  }
}
@media (max-width: 991.98px) {
  .review-text {
    max-width: 400px;
  }
}
@media (max-width: 767.98px) {
  .swiper-reviews {
    padding: 2.5rem;
  }
  .review {
    flex-direction: column;
  }
  .review-author {
    margin-bottom: 1.5rem;
    position: relative;
    transform: none;
  }
  .review-text {
    margin: 0;
  }
  .review-text {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  /**/
}
.filter .btn-filter:not(:last-child) {
  margin-right: 1rem;
}

.filter .btn-filter.mixitup-control-active {
  background-color: var(--accent-color);
}

.price {
  background-color: var(--accent-color);
  height: 3.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.price p {
  font-size: 1.5rem;
}

.price-uah, .price-usd {
  display: none;
}

.price-uah.price-active, .price-usd.price-active {
  display: flex;
}

.owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  background-color: rgba(255, 255, 255, 0.33) !important;
  height: 3.5rem;
  width: 3.5rem;
}

.owl-carousel .owl-nav .owl-prev span, .owl-carousel .owl-nav .owl-next span {
  color: var(--color-white-primary);
}

.owl-carousel .owl-nav .owl-prev.disabled, .owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.33;
  cursor: default;
  pointer-events: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
}

h6 {
  font-size: 0.875rem;
}

.text-accent {
  color: var(--accent-color);
}

.text-secondary {
  color: var(--color-black-secondary);
}

.text-small {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

h1.text-small::after {
  content: "";
  display: flex;
  background-color: var(--accent-color);
  margin-left: 1.125rem;
  height: 4px;
  width: 4px;
}
/*# sourceMappingURL=style.css.map */
