@charset "UTF-8";
/* Reset default styles */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  box-sizing: border-box;
}

/* HTML5 display-role reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D5D5D5;
  transition: 0.3s ease;
  cursor: pointer;
  border-radius: 50px;
}

/* Remove border-spacing on tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove outline on active elements */
a,
a:active {
  outline: none;
}

/* Remove text-decoration for links */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a, button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

:root {
  --gold: #b88d08;
  --dark: #0b0b0b;
  --middle: #333;
  --light: #f5f5f5;
}

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

h1, h2 {
  font-family: "Lora", serif;
}

h1 {
  font-size: calc(32px + 16 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  h1 {
    font-size: 48px;
  }
}
h1 {
  font-weight: 300;
  text-transform: uppercase;
}
h1 span {
  -webkit-text-stroke: 1px #d4af37;
  text-stroke: 1px var(--gold);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.25), 0 0 14px rgba(212, 175, 55, 0.15), 0 0 22px rgba(212, 175, 55, 0.1);
}

h2 {
  font-size: calc(24px + 8 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  h2 {
    font-size: 32px;
  }
}
h2 {
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: uppercase;
}
h2.sm {
  font-size: calc(18px + 6 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  h2.sm {
    font-size: 24px;
  }
}
h2.sm {
  margin-bottom: 20px;
}

h3 {
  font-size: calc(18px + 6 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  h3 {
    font-size: 24px;
  }
}
h3 {
  font-weight: 400;
}

h4 {
  font-size: calc(16px + 4 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  h4 {
    font-size: 20px;
  }
}
h4 {
  font-weight: 400;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  background: var(--light);
}
body.popup-open {
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.forminator-button {
  background: var(--gold);
  color: var(--light);
  border: none;
  cursor: pointer;
  border-radius: 6px !important;
}

.btn, .forminator-button {
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.btn img, .forminator-button img {
  width: 22px;
  height: 22px;
}
.btn svg, .forminator-button svg {
  width: 22px;
  height: 22px;
}
.btn--gold, .forminator-button--gold {
  background: var(--gold);
  color: var(--light);
}
.btn--outline, .forminator-button--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn:hover, .forminator-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.3);
}

.close-button svg {
  width: 18px;
  height: auto;
}
.close-button svg path {
  fill: #fff;
}

@media only screen and (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
}

label.forminator-label {
  font-weight: 300 !important;
  font-size: 14px !important;
}

.forminator-ui.forminator-custom-form[data-design=default] .forminator-input, .forminator-ui.forminator-custom-form[data-design=default] .forminator-textarea {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: var(--dark) !important;
  padding: 10px 15px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease;
}
.forminator-ui.forminator-custom-form[data-design=default] .forminator-input:focus, .forminator-ui.forminator-custom-form[data-design=default] .forminator-textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.25), 0 0 14px rgba(212, 175, 55, 0.15), 0 0 22px rgba(212, 175, 55, 0.1);
  outline: none !important;
}

.forminator-row:not(:last-child) {
  margin-bottom: 16px !important;
}

.whatsapp-abs a {
  background: var(--gold);
  z-index: 60;
  color: white;
  position: fixed;
  bottom: 25px;
  right: 25px;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  width: 56px;
  height: 56px;
}
.whatsapp-abs a svg {
  width: 26px;
  height: 26px;
}
.whatsapp-abs a svg path {
  fill: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 141, 8, 0.6);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(184, 141, 8, 0.1);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header.is-scrolled {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(10px);
}
.header__logo img {
  width: 250px;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .header__logo img {
    width: 200px;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.header__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 992px) {
  .header__nav ul {
    flex-direction: column;
  }
}
.header__nav a {
  color: var(--light);
  margin: 0 10px;
  text-decoration: none;
}
.header__nav a:hover {
  color: var(--gold);
}
.header__nav a.active {
  color: var(--gold);
  position: relative;
}
.header__nav a.active::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--gold);
}

/* === Mobile menu base === */
.header__nav {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* mobile hidden state */
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .header__nav-list a {
    font-size: 20px;
    color: #fff;
  }
}
/* === Burger animation === */
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* active burger -> X */
.header__burger.is-active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--gold);
}

.header__burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--gold);
}

/* lock scroll */
body.menu-open {
  overflow: hidden;
}
body.menu-open header {
  background: var(--dark) !important;
}

.right-part {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: static;
}
.header__buttons a img {
  width: 30px;
  height: 30px;
  transition: 0.3s ease;
}
.header__buttons a:hover img {
  transform: scale(1.05);
}
@media only screen and (max-width: 992px) {
  .header__buttons {
    position: fixed;
    bottom: 25px;
    right: 10px;
    flex-direction: column;
    z-index: 60;
    gap: 15px;
  }
  .header__buttons a {
    background: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
  }
  .header__buttons a img {
    width: 24px;
    height: 24px;
    transition: 0.3s ease;
  }
}

.hero {
  height: 80vh;
  background-position: 300px center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--light);
  position: relative;
}
.hero p {
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .hero {
    background-position: center;
  }
}
.hero__buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.hero__buttons .btn {
  min-width: 200px;
}
@media only screen and (max-width: 768px) {
  .hero__buttons .btn {
    min-width: 150px;
    width: 100%;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 25%, transparent);
}
@media only screen and (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 50%, transparent);
  }
}
.hero__content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.hero__content p {
  margin-top: 20px;
  max-width: 500px;
}

.section__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .section__title {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
}
.section__title .show-all {
  display: inline-block;
  color: var(--gold);
}
@media only screen and (max-width: 768px) {
  .section__title .show-all {
    margin-top: -20px;
  }
}
.section__title .show-all span {
  display: inline-block;
  transition: 0.3s;
}
.section__title .show-all:hover span {
  transform: translateX(6px);
}

.features {
  background: var(--light);
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .features {
    padding: 40px 0;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features .feature {
  display: flex;
  gap: 14px;
}
@media only screen and (max-width: 768px) {
  .features .feature {
    gap: 20px;
  }
}
.features .feature-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features .feature-content h4 {
  font-size: calc(18px + 2 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  .features .feature-content h4 {
    font-size: 20px;
  }
}
.features .feature-content h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.features .feature-content p {
  opacity: 0.6;
}
.features .feature .icon img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}
@media only screen and (max-width: 768px) {
  .features .feature .icon img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}

.section {
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
}

.section.dark {
  background: var(--dark);
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cards.transfer__cards {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 992px) {
  .cards.transfer__cards {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  background: var(--middle);
}
.card-link {
  display: block;
  position: relative;
  z-index: 2;
}
.card:hover img {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.6s;
}
.card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media only screen and (min-width: 1024px) {
  .card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }
}
.card__content {
  position: relative;
  z-index: 2;
  padding: 15px;
  color: #fff;
}
.card__action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.card-price {
  font-size: 18px;
  font-weight: 500;
}
.card__settings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 14px;
}
.card__settings svg {
  width: 16px;
  height: 16px;
}
.card__settings svg path {
  fill: var(--gold);
}
.card__settings .settings-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card--hidden {
  display: none;
}

.cards.show-all .card--hidden {
  display: block;
}

.transfer__wrapper {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .transfer__wrapper {
    flex-direction: column;
  }
}
.transfer__list {
  width: calc(25% - 10px);
  padding-right: 40px;
}
@media only screen and (max-width: 992px) {
  .transfer__list {
    width: 100%;
  }
}
.transfer__list .feature-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.transfer__list .feature-item img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.transfer__list .feature-item p {
  opacity: 0.8;
}
.transfer__cards {
  width: calc(75% - 10px);
}
@media only screen and (max-width: 992px) {
  .transfer__cards {
    width: 100%;
  }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: 0.3s;
  border-radius: 12px;
}
.gallery__grid a {
  max-width: 100%;
}
.gallery__grid a:hover img {
  transform: scale(1.05);
}

.reviews {
  position: relative;
  padding: 10px 0 60px;
}
@media only screen and (max-width: 768px) {
  .reviews {
    padding: 10px 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .reviews h2 {
    text-align: center;
  }
}

.reviews-wrapper {
  position: relative;
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  .reviews-wrapper {
    padding: 0 20px;
  }
}
.reviews-wrapper .swiper-slide {
  height: auto;
  padding: 10px;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .reviews-nav {
    left: -20px;
    right: -20px;
  }
}

.reviews-prev,
.reviews-next {
  pointer-events: all;
  cursor: pointer;
  font-size: 50px;
  width: 40px;
  height: 40px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review {
  background: #fff;
  padding: 20px;
}
.review-card {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  height: 100%;
  box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.1);
}
.review-header {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.review-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.review-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-rating {
  color: var(--gold);
  margin: 5px 0;
}
.review .review-card p {
  font-size: 14px;
  opacity: 0.8;
}

.cta {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  position: relative;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 30%, rgb(0, 0, 0) 100%);
  z-index: 0;
}
.cta__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .cta__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.cta__wrapper .btn {
  min-width: 150px;
}
@media only screen and (max-width: 768px) {
  .cta__wrapper .btn {
    min-width: 30px;
    padding: 14px;
    border-radius: 50%;
  }
  .cta__wrapper .btn span {
    display: none;
  }
}
.cta__content {
  text-align: left;
  max-width: 500px;
}
@media only screen and (max-width: 768px) {
  .cta__content {
    text-align: center;
    max-width: 100%;
  }
}
.cta__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.site-footer {
  background-color: var(--dark);
  color: #fff;
  padding: 20px 0 0;
}
.site-footer__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .site-footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .site-footer__wrapper {
    grid-template-columns: 1fr;
  }
}
.site-footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .site-footer__content {
    align-items: center;
    text-align: center;
  }
}
.site-footer__license {
  display: flex;
  justify-content: center;
}
.site-footer__license img {
  width: 200px;
  height: auto;
}
.site-footer__directions, .site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 992px) {
  .site-footer__directions, .site-footer__contact {
    width: fit-content;
    min-width: 224px;
    margin: auto;
  }
}
.site-footer__directions h4, .site-footer__contact h4 {
  -webkit-text-stroke: 0.5px #d4af37;
}
.site-footer__directions ul, .site-footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: rgba(255, 255, 255, 0.6);
  align-items: flex-start;
}
.site-footer__directions ul .link-item, .site-footer__contact ul .link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.site-footer__directions ul a, .site-footer__contact ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer__directions ul a:hover, .site-footer__contact ul a:hover {
  color: var(--gold);
}
.site-footer__directions ul a img, .site-footer__contact ul a img {
  width: 18px;
  height: 18px;
}
.site-footer__info {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 992px) {
  .site-footer__info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.site-footer__info .info-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .site-footer__info .info-links {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
  }
}

/* основной слайдер */
.tour-main-slider {
  width: 100%;
  height: 500px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .tour-main-slider {
    height: 200px;
  }
}

.tour-main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* grid миниатюр */
.tour-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .tour-thumbs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* thumbnail */
.thumb-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0.6;
  transition: 0.3s;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* hover */
.thumb-item:hover {
  opacity: 1;
}

/* active */
.thumb-item.active {
  opacity: 1;
  border: 2px solid #d4af37;
}

.service-single {
  background: var(--dark);
  color: var(--light);
  min-height: 100vh;
  padding-bottom: 60px;
}
.service-single__close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
.service-single__wrapper {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .service-single__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.service-single__gallery {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .service-single__gallery {
    width: 100%;
  }
}
.service-single__gallery .swiper-button-next, .service-single__gallery .swiper-button-prev {
  background: var(--dark);
  color: var(--light);
  padding: 14px;
  border-radius: 50%;
}
.service-single__title {
  font-size: calc(24px + 8 * (100vw - 360px) / 1240);
}
@media (min-width: 1240px) {
  .service-single__title {
    font-size: 32px;
  }
}
.service-single__title {
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.service-single__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.service-single__info-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
}
.service-single__info-item svg {
  width: 22px;
  height: 22px;
}
.service-single__buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .service-single__buttons {
    flex-direction: column;
    gap: 15px;
  }
}
.service-single__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.service-single__description p, .service-single__description ul, .service-single__description ol, .service-single__description h2, .service-single__description h3, .service-single__description h4 {
  margin-bottom: 20px;
}
.service-single__description strong {
  color: var(--gold);
  font-weight: 400;
}
.service-single__description ul {
  list-style: disc;
  padding-left: 20px;
}
.service-single__description ul li::marker {
  color: var(--gold);
}

.order-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
}

.order-popup__overlay {
  position: absolute;
  inset: 0;
}

.order-popup__content {
  position: relative;
  margin: 100px auto;
  background: var(--light);
  color: var(--dark);
  padding: 80px 50px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
}
@media only screen and (max-width: 768px) {
  .order-popup__content {
    padding: 60px 20px;
  }
}

.popup-title {
  margin-bottom: 20px;
  text-align: center;
}

.popup-text {
  margin-bottom: 30px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  cursor: pointer;
  border: none;
}
.popup-close svg {
  width: 18px;
  height: 18px;
}
.popup-close svg path {
  fill: #000;
}

.popup-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.popup-product__info {
  display: flex;
  gap: 15px;
  align-items: center;
}
.popup-product__price {
  font-size: 18px;
  font-weight: 500;
}

.popup-product__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

.lang-dropdown {
  position: relative;
  cursor: pointer;
}

.lang-current img {
  width: 24px;
  height: 16px;
}

.lang-current span,
.lang-list span {
  color: var(--light);
}

.lang-current span {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
.lang-current span:hover {
  color: var(--gold);
}
.lang-current span:hover:after {
  transform: translateY(1px);
  background-image: url('data:image/svg+xml,<svg fill="%23b88d08" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64px" height="64px" viewBox="0 0 30.727 30.727" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><g><path d="M29.994,10.183L15.363,24.812L0.733,10.184c-0.977-0.978-0.977-2.561,0-3.536c0.977-0.977,2.559-0.976,3.536,0 l11.095,11.093L26.461,6.647c0.977-0.976,2.559-0.976,3.535,0C30.971,7.624,30.971,9.206,29.994,10.183z"></path></g></g></svg>');
}
.lang-current span:after {
  transition: 0.3s ease;
  content: "";
  background-image: url('data:image/svg+xml,<svg fill="%23edefef" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="64px" height="64px" viewBox="0 0 30.727 30.727" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><g><path d="M29.994,10.183L15.363,24.812L0.733,10.184c-0.977-0.978-0.977-2.561,0-3.536c0.977-0.977,2.559-0.976,3.536,0 l11.095,11.093L26.461,6.647c0.977-0.976,2.559-0.976,3.535,0C30.971,7.624,30.971,9.206,29.994,10.183z"></path></g></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
}

.lang-list {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background: #232323;
  padding: 15px;
  border-radius: 6px;
  z-index: 999;
}

.lang-dropdown.open .lang-list {
  display: block;
}

.lang-list li {
  list-style: none;
}
.lang-list li:not(:last-child) {
  margin-bottom: 10px;
}
.lang-list li img {
  width: 24px;
  height: auto;
}

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