/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poiret One", sans-serif;
  line-height: 1.6;
  color: #050505;
  background-color: #ffffff;
}

/* Reset iOS styles for inputs, textareas, and selects */
/* This prevents iOS from overriding custom styles */
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Remove iOS inner shadow and appearance */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Ensure borders are visible on iOS and remove tap highlight */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
textarea:focus,
select:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Fix for iOS date/time inputs - remove native controls */
input[type="date"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  display: none;
}

.container {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.containerMarginTop {
  margin-top: 101px;
}

@media (max-width: 1250px) {
  .containerMarginTop {
    margin-top: 73px;
  }
}

.nav-link.active {
  color: #8b5e3c;
}

/* Typography */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  text-align: center;
  color: #050505;
  margin-bottom: 40px;
}

/* Buttons */
.cta-button,
.add-to-cart-btn {
  background-color: #b0864a;
  color: #f0e9df;
  border: none;
  border-radius: 4px;
  padding: 8px 40px;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.36px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
}

.cta-button:hover {
  background-color: #9a7340;
}

.cta-button:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.cta-button:active {
  background-color: #8b5e3c;
  transform: scale(0.98);
}

.add-to-cart-btn:hover {
  background-color: #9a7340;
}

.add-to-cart-btn:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.add-to-cart-btn:active {
  background-color: #8b5e3c;
}

.add-to-cart-btn {
  width: 100%;
  color: #050505;
}

/* Links */
.view-all-link,
.read-more-link,
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.17;
  color: #b0864a;
  text-decoration: none;
  border-bottom: 0.5px solid #b0864a;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  max-width: fit-content;
}

.view-all-link:hover,
.read-more-link:hover,
.about-link:hover {
  color: #9a7340;
  border-bottom-color: #9a7340;
  transform: translateX(4px);
}

.view-all-link:focus,
.read-more-link:focus,
.about-link:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.view-all-link:active,
.read-more-link:active,
.about-link:active {
  color: #8b5e3c;
  border-bottom-color: #8b5e3c;
}

.about-link {
  color: #f0e9df;
  border-bottom-color: #f0e9df;
}

.about-link:hover {
  color: #e6dcc7;
  border-bottom-color: #e6dcc7;
}

.about-link:focus {
  outline: 2px solid #f0e9df;
  outline-offset: 2px;
  border-radius: 2px;
}

.about-link:active {
  color: #ddd4c1;
  border-bottom-color: #ddd4c1;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: #b0864a;
  color: #f0e9df;
}

.carousel-btn:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.carousel-btn:active {
  background-color: #9a7340;
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .carousel-controls {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .cta-button,
  .add-to-cart-btn {
    padding: 8px 24px;
    font-size: 16px;
  }
}

.my-slider {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  width: 285px !important;
}

.product-card {
  width: 282px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card h3 {
  padding-top: 24px;
  padding-bottom: 10px;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.product-card img {
  max-width: 100%;
  height: 282px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card a {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: #050505;
  padding-top: 24px;
  padding-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-card a:hover {
  color: rgba(176, 134, 74, 1);
}

.product-card a:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.product-card a:active {
  color: #9a7340;
}

.card-content-product {
  margin-top: auto;
}

.price {
  font-size: 40px;
  font-family: "Playfair Display", sans-serif;
  color: #050505;
  line-height: 100%;
}

.prices {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  gap: 4px;
}

.discount-price {
  color: rgba(176, 134, 74, 1);
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.discount-price p {
  position: relative;
  display: inline-block;
  font-size: 32px;
  margin-top: -5px;
  line-height: 100%;
}

.discount-price p::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 60%;
  height: 2px;
  background-color: rgba(176, 134, 74, 1);
}

.discount-price span {
  font-size: 16px !important;
  color: rgba(176, 134, 74, 1) !important;
  text-decoration: none;
  padding-top: 10px;
}

.price span {
  font-size: 20px !important;
  font-family: "Playfair Display", sans-serif;
}

.productPrices {
  display: flex;
  padding-top: 10px;
}

.btn {
  background: #b0864a;
  color: #050505;
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  display: flex;
  justify-content: center;
  border: none;
  width: 100%;
  padding: 8px 0px;
  border-radius: 4px;
  border: 1px solid rgba(176, 134, 74, 1);
  cursor: pointer;
}

.btn:hover {
  box-sizing: border-box;
  background: transparent;
  border: 1px solid rgba(176, 134, 74, 1);
  color: rgba(176, 134, 74, 1);
}

.btn:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.btn:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .discount-price span {
    padding-top: 5px;
  }

  .swiper-slide {
    width: 204px !important;
  }

  .product-card {
    width: 204px;
  }

  .product-card img {
    height: 204px;
  }

  .product-card h3 {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 0px;
  }

  .price {
    font-size: 28px;
  }

  .price span {
    font-size: 14px !important;
  }

  .discount-price {
    font-size: 18px;
    padding-top: 0px;
  }

  .discount-price span {
    font-size: 10px !important;
  }
}

.swiper-slide {
  height: auto !important;
  padding-bottom: 45px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: #b0864a80;
  border-radius: 4px;
  top: 45% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #050505;
  font-size: 16px !important;
}

.swiper-pagination-bullet {
  border: 0.5px solid #b0864a;
  width: 10px !important;
  height: 10px !important;
  box-sizing: border-box;
  background: none !important;
}

.swiper-pagination-bullet-active {
  background: #b0864a !important;
}

.wrapperServiceCard {
  display: flex;
  gap: 24px;
  width: 100%;
}

.wrapperServiceCard .service-card {
  width: 50%;
}

.aboutContainer {
  height: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  width: 100%;
}

.about-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.about-title.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .wrapperServiceCard {
    flex-direction: column;
    gap: 16px;
  }

  .wrapperServiceCard .service-card {
    width: 100%;
  }
}

.popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-family: sans-serif;
  z-index: 999;
}
.popup.active {
  visibility: visible;
  opacity: 1;
}
.popup-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 0.5px solid rgba(218, 218, 218, 1);
}

.popup-content h2 {
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  padding-bottom: 24px;
}

.popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding: 4px;
}

.popup-close:hover {
  background-color: rgba(176, 134, 74, 0.1);
  color: rgba(176, 134, 74, 1);
}

.popup-close:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.popup-close:active {
  background-color: rgba(176, 134, 74, 0.2);
  transform: scale(0.95);
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#bookingForm input {
  width: 100%;
  padding: 8px 16px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-family: "Poiret One", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

#bookingForm input:focus {
  border: 1px solid #b0864a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 2px solid rgba(176, 134, 74, 0.2);
  outline-offset: 0;
  -webkit-tap-highlight-color: transparent;
}

#bookingForm input::placeholder {
  color: rgba(110, 110, 110, 1);
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}

#bookingForm button {
  width: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(176, 134, 74, 1);
  border: none;
  color: rgba(5, 5, 5, 1);
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  cursor: pointer;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 8px;
}
.privacy-message {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

.privacy-link {
  color: rgba(176, 134, 74, 1);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #9a7340;
}

.privacy-link:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.success-message {
  display: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
}

/* .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    } */

.service-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
  padding-top: 40px;
}

.service-header h2 {
  font-family: "Playfair Display", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-info img {
  width: 282px;
  height: 282px;
  object-fit: cover;
  border-radius: 12px;
}

.service-img {
  width: 100%;
  height: 588px;
  max-width: 588px;
}

.wrapperheaderOneMassage {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.wrapperheaderOneMassage p {
  width: 282px;
  text-transform: uppercase;
  font-size: 24px;
}

.service-img img,
.service-img video {
  max-width: 100%;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.durations {
  color: #8a6f3c;
  font-size: 14px;
}

.priceMassage {
  font-family: "Playfair Display", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: rgba(5, 5, 5, 1);
  line-height: normal;
  margin-top: -16px;
  text-wrap: nowrap;
  justify-content: space-between;
  align-items: end;
  max-width: 282px;
  line-height: 100%;
}

.product-price-value-certificate {
  font-family: "Playfair Display", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: rgba(5, 5, 5, 1);
  display: flex;
  align-items: end;
  line-height: 100%;
  gap: 2px;
}

.priceMassage span {
  font-family: "Playfair Display", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: rgba(5, 5, 5, 1);
}

.btnMassage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: rgba(176, 134, 74, 1);
  color: rgba(5, 5, 5, 1);
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  max-width: 282px;
  width: 100%;
  transition: background 0.3s;
  box-sizing: border-box;
  border: 1px solid rgba(176, 134, 74, 1);
}

.btnMassage:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.btnMassage:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.btnMassage:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

.btn-outline {
  display: inline-block;
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(176, 134, 74, 1);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 134, 74, 1);
  padding-bottom: 3px;
  max-width: 282px;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  margin-top: -8px;
}

.btn-outline:hover {
  color: #9a7340;
  border-color: #9a7340;
}

.btn-outline:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.btn-outline:active {
  color: #8b5e3c;
  border-color: #8b5e3c;
}

.descriptionMassage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
  padding-top: 24px;
}

.descriptionMassage h3 {
  font-size: 24px;
  font-family: "Playfair Display", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
}

.descriptionMassage p {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
}

.descriptionMassage p.highlight {
  color: rgba(176, 134, 74, 1);
}

.descriptionMassage ul {
  padding-left: 20px;
  list-style-type: "- ";
}

.descriptionMassage ul li {
  margin-bottom: 4px;
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
}

.timeSlot {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.timeSlot span {
  font-family: "Poiret One", sans-serif !important;
  font-size: 18px !important;
  color: rgba(5, 5, 5, 1);
  line-height: 100%;
}

.oneMassageTimeSlot span {
  font-size: 24px !important;
}

.timeActive {
  color: rgba(176, 134, 74, 1) !important;
}

.my-sliderMessage {
  display: none !important;
}

@media (max-width: 1230px) {
  .timeSlot {
    gap: 5px;
    height: 55px;
  }

  .discountPricePadding {
    padding-top: 0px !important;
  }

  .productPrices {
    gap: 5px !important;
    font-size: 25px !important;
  }
  .productPrices .discount-price {
    font-size: 25px !important;
  }
  
}

@media (max-width: 1150px) {
  .wrapperheaderOneMassage {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .service-img {
    display: none;
  }

  .service-header {
    grid-template-columns: 1fr;
  }

  .btnMassage {
    max-width: 100%;
  }

  .btn-outline {
    width: 256px;
    font-size: 16px;
    margin-top: -4px;
  }
}

@media (max-width: 768px) {
  .my-sliderMessage {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 343px;
  }

  .service-info img {
    width: 343px;
    height: 343px;
  }

  .my-sliderMessage .swiper-slide {
    width: 100% !important;
    padding-bottom: 26px;
  }

  .my-sliderMessage .swiper-pagination {
    bottom: -6px !important;
  }

  .wrapperheaderOneMassage > img {
    display: none;
  }
  .service-header {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .service-header h2 {
    font-size: 28px;
  }

  .service-info {
    gap: 16px;
  }

  .wrapperheaderOneMassage p {
    font-size: 18px;
  }

  .priceMassage {
    font-size: 28px;
    gap: 5px;
  }

  .priceMassage span {
    font-size: 14px;
  }

  .btnMassage {
    font-size: 16px;
  }

  .oneMassageTimeSlot span {
    font-size: 18px !important;
  }

  .timeSlot {
    gap: 4px;
    height: 55px;
  }

  .oneMassageTimeSlot {
    height: auto !important;
  }

  .timeSlot span {
    font-size: 16px !important;
  }

  .descriptionMassage {
    gap: 8px;
    padding-top: 16px;
    margin-bottom: 40px;
  }

  .descriptionMassage ul li,
  .descriptionMassage p,
  .descriptionMassage h3 {
    font-size: 16px;
  }
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 180px;
}

.select-trigger {
  padding: 8px 16px;
  cursor: pointer;
  background: rgba(240, 233, 223, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.select-trigger:hover {
  background-color: rgba(230, 220, 199, 1);
}

.select-trigger:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.select-trigger:active {
  background-color: rgba(220, 210, 189, 1);
}

.select-trigger img {
  width: 16px;
  height: 16px;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(240, 233, 223, 1);
  display: none;
  z-index: 100;
  width: 205px;
  padding: 8px 16px;
  gap: 10px;
  margin-top: 4px;
}

.options label {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 4px;
  border-radius: 4px;
}

.options label:hover {
  background-color: rgba(176, 134, 74, 0.05);
}

.options label:focus-within {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.options input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  accent-color: rgba(240, 233, 223, 1);
  background-color: rgba(240, 233, 223, 1);
  border: 0.5px solid rgba(5, 5, 5, 1);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.options input[type="checkbox"]:hover {
  border-color: #b0864a;
}

.options input[type="checkbox"]:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.options input[type="checkbox"]:checked {
  background-color: #b0864a;
  border-color: #b0864a;
}

.options input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

.options input {
  width: 16px;
  height: 16px;
  background: none;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 40px;
}

.chip {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
  font-size: 18px;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
}

.chip img {
  width: 21px;
  height: 21px;
}

/* ---- Карточки ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, 384px);
  gap: 24px;
  justify-content: space-between;
}

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  border-radius: 12px;
}

.contentCard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .titleCardMassage {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  text-decoration: none;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card span {
  font-size: 40px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  line-height: 100%;
  color: rgba(5, 5, 5, 1);
}

.linkDetailsCard {
  display: flex !important;
  align-items: center;
  gap: 8px;
  border-bottom: 0.3px solid rgba(176, 134, 74, 1);
  color: rgba(176, 134, 74, 1) !important;
  font-size: 18px;
  text-decoration: none;
  font-family: "Poiret One", sans-serif;
  max-width: fit-content;
  padding-bottom: 0 !important;
  transition: all 0.3s ease;
}

.linkDetailsCard:hover {
  color: #9a7340 !important;
  border-bottom-color: #9a7340;
  transform: translateX(4px);
}

.linkDetailsCard:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.linkDetailsCard:active {
  color: #8b5e3c !important;
  border-bottom-color: #8b5e3c;
}

.linkDetailsCard img {
  width: 16px !important;
  height: 16px !important;
}

/* ---- Пагінація ---- */
.pagination {
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.pagination button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(176, 134, 74, 1);
  background: #fff;
  cursor: pointer;
  color: rgba(176, 134, 74, 1);
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  transition: all 0.3s ease;
}

.pagination button:hover {
  background-color: rgba(176, 134, 74, 0.1);
  border-color: #9a7340;
  color: #9a7340;
}

.pagination button:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.pagination button:active {
  background-color: rgba(176, 134, 74, 0.2);
  transform: scale(0.95);
}

.pagination button.active {
  background: rgba(176, 134, 74, 1);
  color: rgba(240, 233, 223, 1);
}

.bannerTop {
  position: relative;
  height: 229px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bannerTop-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bannerTop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerTop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.bannerTop-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.bannerTop-values h1 {
  font-size: 36px;
  color: rgba(240, 233, 223, 1);
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.wrapperCustomSelect {
  display: flex;
  padding-top: 40px;
  padding-bottom: 24px;
}

.wrapperSelectFilters {
  display: flex;
  gap: 20px;
}

.cardsCosmetics {
  display: grid;
  grid-template-columns: repeat(auto-fill, 282px);
  gap: 24px;
  justify-content: space-between;
}

.cardCosmetic img {
  width: 282px;
  height: 282px;
  border-radius: 8px;
}

.titleCosmetic {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: color 0.3s ease;
}

.titleCosmetic:hover {
  color: rgba(176, 134, 74, 1);
}

.titleCosmetic:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.titleCosmetic:active {
  color: #9a7340;
}

.cardCosmetic {
  display: flex;
  flex-direction: column;
}

.contentCosmetic {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 30px;
}

.Cosmetic-price {
  font-size: 40px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  line-height: normal;
}

.Cosmetic-price span {
  font-size: 20px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.main-price {
  line-height: 100%;
}

.Cosmetic-btn {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  color: rgba(5, 5, 5, 1);
  font-size: 18px;
  font-family: "Poiret One";
  font-weight: 400;
  box-sizing: border-box;
  border: 1px solid rgba(176, 134, 74, 1);
  background: rgba(176, 134, 74, 1);
  border-radius: 4px;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

.Cosmetic-btn:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.Cosmetic-btn:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.Cosmetic-btn:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

.valueTime {
  cursor: pointer;
  white-space: nowrap;
}

.swiper-wrapper {
  margin: 0 auto;
}

.input-error {
  border: 1px solid red !important;
}

@media (max-width: 1231px) {
  .priceMassage {
    font-size: 28px;
  }
  .price {
    font-size: 28px !important;
  }

  .card p {
    font-size: 28px !important;
  }

  .discount-price p {
    font-size: 28px !important;
    margin-top: 0px !important;
    white-space: nowrap;
  }
  .cosmeticFilterWrapper {
    justify-content: center;
    flex-direction: column;
  }

  .cardCosmetic img {
    width: 100%;
    height: 164px;
    object-fit: cover;
  }

  .cardsCosmetics {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 0 auto;
  }

  .cards {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
  }

  .card img {
    width: 100%;
    height: 164px;
    object-fit: cover;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .cosmeticFilterWrapper {
    justify-content: center;
    align-items: start;
    flex-direction: column;
  }

  .cardsCosmetics {
    grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
  }

  .cosmeticFilterWrapper .chips {
    width: 344px;
  }

  .contentCosmetic {
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 16px;
  }

  .bannerTop-content {
    gap: 16px;
  }

  .bannerTop-values h1 {
    font-size: 28px;
  }

  .wrapperCustomSelect {
    padding-top: 20px;
    padding-bottom: 16px;
    gap: 8px;
  }

  .titleCosmetic {
    font-size: 16px;
  }

  .Cosmetic-price {
    font-size: 28px;
  }

  .Cosmetic-price span {
    font-size: 14px;
  }

  .Cosmetic-btn {
    font-size: 16px;
  }

  .custom-select {
    width: 164px;
  }

  .card {
    gap: 8px;
  }

  .contentCard {
    gap: 8px;
  }

  .card span {
    font-size: 28px;
  }

  .options label,
  .select-trigger,
  .chip,
  .timeSlot span,
  .linkDetailsCard,
  .titleCardMassage {
    font-size: 16px !important;
  }

  .linkDetailsCard {
    padding-top: 8px;
  }

  .linkDetailsCard img {
    width: 16px;
    height: 16px;
  }

  .card p {
    font-size: 14px;
  }

  .pagination {
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .pagination button {
    width: 28px;
    height: 28px;
    border-radius: 3.5px;
    font-size: 15.75px;
  }
}

.product-page {
  display: flex;
  gap: 24px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-gallery .main-img img {
  width: 100%;
  border-radius: 6px;
}

.product-thumbs {
  display: flex;
  gap: 24px;
}

.product-thumbs img,
.product-thumbs video {
  width: 146px;
  height: 146px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbs img:hover,
.product-thumbs video:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.product-thumbs img:focus,
.product-thumbs video:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.product-thumbs img:active,
.product-thumbs video:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.discountPricePadding {
  padding-top: 5px;
}

.product-info h2 {
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  margin-bottom: 36px;
  color: rgba(5, 5, 5, 1);
}

.product-info h1 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 108px;
  padding-bottom: 44px;
}

.product-meta p {
  font-size: 20px;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}

.product-meta p span {
  font-size: 20px;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  font-weight: 600;
}

.product-price {
  font-size: 40px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  margin-bottom: 36px;
  line-height: 100%;
}

.product-price span {
  font-size: 20px;
}

.add-to-cart {
  background: rgba(176, 134, 74, 1);
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  border: 1px solid rgba(176, 134, 74, 1);
  box-sizing: border-box;
  padding: 8px 0px;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 60px;
  transition: 0.3s;
  border-radius: 4px;
  width: 282px;
}

.add-to-cart:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.add-to-cart:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.add-to-cart:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

.tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.tab {
  padding: 4px 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: 20px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  position: relative;
  transition: all 0.3s ease;
}

.tab:hover {
  color: rgba(176, 134, 74, 1);
}

.tab:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.tab:active {
  color: #9a7340;
}

.tab.active {
  color: rgba(176, 134, 74, 1);
  border-bottom: 1px solid rgba(176, 134, 74, 1);
}

.tab-content {
  display: none;
  font-size: 18px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  flex-direction: column;
  gap: 16px;
  max-height: 258px;
  overflow: auto;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: rgba(5, 5, 5, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(176, 134, 74, 1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(176, 134, 74, 1);
}

.tab-content .textOtherColor {
  color: rgba(176, 134, 74, 1);
}

.tab-content ul {
  list-style: none;
  padding: 0;
}

.tab-content li::before {
  content: "- ";
}

.tab-content ul li {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  color: rgba(5, 5, 5, 1);
}

.tab-content.active {
  display: flex;
}

.productContent {
  padding-bottom: 80px;
}

.productContent h1 {
  font-family: "Playfair Display", sans-serif;
  font-size: 36px !important;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  padding-top: 40px;
  padding-bottom: 24px;
  text-transform: uppercase;
}

.product-gallery .main-img {
  width: 486px;
  height: 486px;
}

.product-gallery .main-img img,
.product-gallery .main-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.my-sliderMessage img,
.my-sliderMessage video {
  width: 343px;
  height: 343px;
  object-fit: cover;
  border-radius: 12px;
}

#cardsNews-container {
  margin-top: 40px;
}

@media (max-width: 970px) {
  .productContent h1 {
    font-size: 28px;
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .product-info h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .product-meta {
    padding-bottom: 16px;
    gap: 78px;
  }

  .product-meta p {
    font-size: 16px;
  }

  .product-meta p span {
    font-size: 16px;
  }

  .add-to-cart {
    width: 100%;
    font-size: 16px;
    margin-bottom: 32px;
  }

  .tabs {
    margin-bottom: 16px;
    gap: 24px;
  }

  .tab {
    font-size: 16px;
  }

  .tab-content {
    font-size: 16px;
    gap: 8px;
    max-height: 275px;
  }

  .productContent {
    padding-bottom: 40px;
  }

  .product-gallery {
    margin: 0 auto;
  }

  .product-page {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .discount-price p {
    font-size: 28px;
  }
  .wrapperheaderOneMassage p {
    width: 100%;
  }
  .product-price {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .product-price span {
    font-size: 18px;
  }

  .product-gallery {
    display: none;
  }

  #cardsNews-container {
    margin-top: 20px;
  }
}

.cardsMasters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-top: 40px;
}

.employee-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  gap: 24px;
  border: 0.5px solid rgba(218, 218, 218, 1);
}

.employee-card__left {
  flex: 2;
  padding: 89px 24px 24px 24px;
}

.employee-card__left p {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Poiret One", sans-serif;
  color: rgba(38, 38, 38, 1);
  max-height: 300px;
  overflow: auto;
}

.employee-card__right {
  flex: 1;
  text-align: center;
  position: relative;
  width: 282px;
  max-width: 282px;
  display: flex;
  justify-content: center;
}

.employee-card__left span {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(176, 134, 74, 1);
}

.employee-card__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.employee-card__info {
  position: absolute;
  background: rgba(240, 233, 223, 0.8);
  border-radius: 8px;
  bottom: 16px;
  padding: 9px;
  width: 100%;
  max-width: 250px;
}

.employee-card__info .name {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: rgba(38, 38, 38, 1);
}

.employee-card__info .role {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: rgba(38, 38, 38, 1);
}

@media (max-width: 930px) {
  .employee-card {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 16px;
  }

  .employee-card__right {
    width: 263px;
    max-width: 263px;
    height: 308px;
    min-height: 308px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .employee-card__info {
    max-width: 227px;
    padding: 8;
  }

  .employee-card__right img {
    min-height: 100%;
    height: auto;
  }

  .employee-card__left {
    padding: 0;
  }

  .employee-card__left span,
  .employee-card__left p,
  .employee-card__info .role,
  .employee-card__info .name {
    font-size: 16px;
  }

  .cardsMasters {
    gap: 16px;
    padding-top: 20px;
  }
}

.wrapperHeaderProductContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 24px;
}

.wrapperHeaderProductContent h1 {
  padding: 0;
  font-family: "Playfair Display", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.newsInfo {
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 12px;
  padding: 24px;
}

.newsInfo h2 {
  margin-bottom: 24px;
}

.dateNewsAdd {
  font-size: 16px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  padding-bottom: 16px;
}

.newsTextInfo {
  max-height: 493px;
  height: 493px;
}

.newsMobileButton {
  display: none;
}

.newsButtonPopup {
  background-color: rgba(176, 134, 74, 1);
  border: 1px solid rgba(176, 134, 74, 1);
  color: rgba(5, 5, 5, 1);
  border-radius: 4px;
  padding: 8px 40px;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.36px;
  cursor: pointer;
  height: 37px;
  box-sizing: border-box;
}

.newsButtonPopup:hover {
  color: rgba(176, 134, 74, 1);
  border: 1px solid rgba(176, 134, 74, 1);
  background: transparent;
}

.newsButtonPopup:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.newsButtonPopup:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

@media (max-width: 970px) {
  .wrapperHeaderProductContent {
    padding-top: 20px;
    padding-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .wrapperHeaderProductContent h1 {
    font-size: 28px;
  }
  .wrapperHeaderProductContent button {
    display: none;
  }

  .newsMobileButton {
    display: block !important;
    width: 100%;
  }

  .newsInfo {
    border-radius: 8px;
    padding: 16px;
  }

  .dateNewsAdd {
    font-size: 12px;
    padding-bottom: 8px;
  }

  .newsInfo h2 {
    margin-bottom: 16px;
  }
}

.textAboutUs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0 24px 0;
}

.textAboutUs p {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.addresses {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
}

.addressItem {
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.workTime {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}

.workTimeitem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.secondLineWorkTime {
  display: flex;
  align-items: center;
  gap: 24px;
}

.addressInfo {
  max-width: 564px;
  width: 100%;
}

.addressInfo p {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  max-height: 173px;
  height: 173px;
  margin-bottom: 24px;
  overflow: auto;
}

.buttonsContactUs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.my-sliderContactUs {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  width: 564px !important;
  min-width: 564px;
}

.my-sliderContactUs .swiper-slide {
  max-width: 564px !important;
  width: 100% !important;
}

.my-sliderContactUs img,
.my-sliderContactUs video {
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  max-height: 376px;
  height: 100%;
  object-fit: cover;
}

.wrapperinfoText {
  display: flex;
  flex-direction: column;
}

.workTimeitem span {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

@media (max-width: 1070px) {
  .addressItem {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .textAboutUs {
    display: none;
  }

  .workTimeitem span {
    font-size: 16px;
  }

  .secondLineWorkTime {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  .wrapperinfoText {
    flex-direction: column-reverse;
  }

  .addresses {
    margin-top: 20px;
  }

  .newsButtonPopup {
    display: none;
  }

  .addressInfo .workTime {
    padding-bottom: 16px;
  }

  .buttonsContactUs {
    padding-bottom: 16px;
  }

  .addressInfo p {
    height: 100%;
    max-height: 100%;
    margin-bottom: 16px;
  }

  .addresses {
    gap: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 650px) {
  .my-sliderContactUs {
    min-width: 100%;
    width: auto !important;
  }
}

.wrapperNoPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 80px;
}

.wrapperNoPage img {
  max-width: 666px;
  width: 100%;
}

.wrapperNoPage p {
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.wrapperNoPage a {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  margin-top: 20px;
  padding: 8px;
  width: 375px;
  border-radius: 4px;
  border: 1px solid rgba(176, 134, 74, 1);
  background: rgba(176, 134, 74, 1);
  text-decoration: none;
  text-align: center;
}

.wrapperNoPage a:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.wrapperNoPage a:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.wrapperNoPage a:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .wrapperNoPage {
    gap: 32px;
    padding-top: 87px;
    padding-bottom: 87px;
  }

  .wrapperNoPage p {
    font-size: 20px;
  }

  .wrapperNoPage img {
    max-width: 280px;
    width: 100%;
  }
}

.contactsInRewiews {
  flex: 1;
  padding-top: 82px;
}
.contactsInRewiews p {
  color: rgba(5, 5, 5, 1);
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}

.contactItem {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  gap: 16px;
}

.addressBottomRow {
  display: flex;
  gap: 24px;
}

.address-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wrapperContactForm {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.titleReviews {
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  padding-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
}

.form-box {
  flex: 1;
  border: 0.5px solid rgba(218, 218, 218, 1);
  padding: 24px;
  box-sizing: border-box;
  width: 588px;
  max-width: 588px;
  border-radius: 12px;
}
.form-box h3 {
  text-align: center;
  margin-bottom: 24px;
  color: rgba(5, 5, 5, 1);
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}
.form-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rowInputForm {
  display: flex;
  gap: 24px;
}

#feedbackForm input,
#feedbackForm textarea {
  width: 100%;
  padding: 8px 16px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#feedbackForm input:focus,
#feedbackForm textarea:focus {
  border: 1px solid #b0864a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 2px solid rgba(176, 134, 74, 0.2);
  outline-offset: 0;
  -webkit-tap-highlight-color: transparent;
}

#feedbackForm textarea::placeholder {
  color: rgba(110, 110, 110, 1);
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}

#feedbackForm input::placeholder {
  color: rgba(110, 110, 110, 1);
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}

#feedbackForm textarea {
  resize: none;
  height: 179px;
}

.feedbackButton {
  margin-top: 8px;
  padding: 8px;
  background: #b8894d;
  color: rgba(5, 5, 5, 1);
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  border: 1px solid rgba(176, 134, 74, 1);
  box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
}

.feedbackButton:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.feedbackButton:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.feedbackButton:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

.success-message {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  font-size: 16px;
  font-family: "Poiret One", sans-serif;
}

.reviews-grid-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .reviews-grid-page {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .wrapperContactForm {
    flex-direction: column;
    gap: 24px;
  }

  .wrapperContactForm {
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .contactsInRewiews {
    padding-top: 0;
  }

  .contactsInRewiews p {
    font-size: 16px;
  }

  .contactItem {
    padding-top: 16px;
  }

  .form-box {
    width: 100%;
    max-width: 100%;
    padding: 16px 8px;
  }

  .form-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  #feedbackForm input,
  #feedbackForm textarea {
    font-size: 16px;
    padding: 9px 8px;
    border-radius: 4px;
  }

  #feedbackForm textarea {
    height: 170px;
  }

  #feedbackForm {
    gap: 8px;
  }

  .feedbackButton {
    font-size: 16px;
  }

  .success-message {
    font-size: 14px;
    margin-top: 12px;
  }

  .titleReviews {
    padding-bottom: 16px;
  }

  .reviews-grid-page {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviewsPage {
    max-height: 171px !important;
  }

  .review-rating img {
    width: 14px;
    height: 20px;
  }

  .product-meta {
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }
}

.contact-section {
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 12px;
  padding: 24px;
}

.contactsPageContent {
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-wrapper {
  display: flex;
  gap: 24px;
}

.addressItemContact {
  padding: 0;
}

.contact-map-page {
  flex: 1 1 50%;
  min-width: 300px;
  height: 310px;
}

.contact-map-page iframe {
  height: 100%;
  border-radius: 12px;
}

.contact-info-page {
  flex: 1 1 50%;
  min-width: 300px;
}

.contact-info-page p {
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 70px;
  height: 105px;
  overflow: auto;
  line-height: 100%;
}

.contact-text {
  margin: 15px 0;
  line-height: 1.6;
}
.wrapperContactButtons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wrapperContactButtons .btn {
  display: inline-block;
  background: rgba(176, 134, 74, 1);
  border: 1px solid rgba(176, 134, 74, 1);
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  padding: 8px;
  text-align: center;
  line-height: 100%;
  width: 255px;
  border-radius: 4px;
  text-decoration: none;
  box-sizing: border-box;
}

.wrapperContactButtons .btn:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.wrapperContactButtons .btn:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.wrapperContactButtons .btn:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

.social-links img {
  width: 24px;
  height: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.gallery img,
.gallery video {
  width: 100%;
  border-radius: 12px;
  height: 310px;
  object-fit: cover;
}

.address-contact-item span {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
}

.footer-social.mobile {
  display: none !important;
}

.my-slider-contacts {
  display: none !important;
}

@media (max-width: 880px) {
  .contactsPageContent {
    margin-top: 20px;
    margin-bottom: 40px;
    gap: 16px;
  }

  .contact-section {
    padding: 16px;
    border-radius: 8px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .contact-map-page {
    height: 228px;
    min-height: 228px;
  }

  .contact-map-page iframe {
    height: revert-layer;
    min-height: 100%;
    border-radius: 4px;
  }

  .address-contact-item span {
    font-size: 16px;
  }

  .addressBottomRow {
    flex-direction: column;
    gap: 16px;
  }

  .footer-social.mobile {
    display: flex !important;
    justify-content: start;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer-social.desktop {
    display: none !important;
  }

  .my-slider-contacts {
    display: block !important;
  }
  .my-slider-contacts img,
  .my-slider-contacts video {
    height: 204px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .my-slider-contacts .swiper-pagination {
    bottom: -7px !important;
  }

  .my-slider-contacts .swiper-slide {
    padding-bottom: 8px;
    margin-right: 16px !important;
  }

  .contact-info-page p {
    margin-top: 16px;
    margin-bottom: 16px;
    height: auto;
    overflow: unset;
    font-size: 16px;
  }

  .wrapperContactButtons .btn {
    width: 100%;
    font-size: 16px;
  }

  .gallery {
    display: none;
  }
}

.wrapperButtonVipAndSpa {
  display: flex;
  gap: 24px;
}

.btnSignup {
  max-width: 180px;
  width: 100%;
  box-sizing: border-box;
  border: 0.5px solid rgba(176, 134, 74, 1);
  color: rgba(176, 134, 74, 1);
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 8px 0;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.btnSignup:hover {
  background: rgba(176, 134, 74, 1);
  color: rgba(5, 5, 5, 1);
}

.btnSignup:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.btnSignup:active {
  background-color: #9a7340;
  transform: scale(0.98);
}

.mobileButttonAdd {
  white-space: nowrap;
}

@media (max-width: 1150px) {
  .wrapperButtonVipAndSpa {
    gap: 16px;
  }

  .btnSignup {
    max-width: 164px;
    width: 100%;
  }

  .mobileButttonAdd {
    max-width: 164px;
    width: 100%;
  }
}

.product-container {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-image img {
  max-width: 320px;
  border-radius: 8px;
}

.product-details {
  flex: 1;
}

.product-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-price {
  font-size: 26px;
  margin: 10px 0;
  display: flex;
  gap: 24px;
}

.product-price span {
  color: #b56a2a;
  font-weight: bold;
}

.product-price p span {
  color: rgba(5, 5, 5, 1);
  font-weight: normal;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.checkbox-like {
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 140px;
}

.checkbox-like input {
  display: none;
}

.checkbox-like.active {
  border-color: #c9a06c;
  background: #faf4ed;
  font-weight: bold;
}

.add-to-cart {
  margin-top: 20px;
}

.add-to-cart button {
  background: #c9a06c;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.add-to-cart button:hover {
  background: #9a7340;
}

.add-to-cart button:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.add-to-cart button:active {
  background-color: #8b5e3c;
  transform: scale(0.98);
}

.discount-info {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.description {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.description h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.description p {
  line-height: 1.5;
  color: #444;
}

.wrapperCerteficateInfo .product {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.wrapperCerteficateInfo .product-image img,
.wrapperCerteficateInfo .product-image video {
  max-width: 588px;
  height: 358px;
  width: 588px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.wrapperCerteficateInfo .product-content {
  flex: 1;
}

.wrapperCerteficateInfo .product-title {
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wrapperCerteficateInfo .product-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.wrapperCerteficateInfo .product-price {
  font-size: 40px;
  color: rgba(5, 5, 5, 1) !important;
  font-family: "Playfair Display", sans-serif;
  font-weight: bold;
  margin-bottom: 24px;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
}

.wrapperCerteficateInfo .discount {
  color: rgba(176, 134, 74, 1);
  font-family: "Playfair Display", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-left: 40px;
  line-height: 100%;
}

.wrapperCerteficateInfo .selectors {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.note {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 600;
  color: rgba(5, 5, 5, 1);
  margin-top: 24px;
  line-height: 100%;
}

.desc {
  margin: 40px 0 80px 0;
  padding: 24px 20px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 12px;
}

.wrapperCerteficateInfo .custom-select {
  position: relative;
}

.wrapperCerteficateInfo .select-header {
  border: 0.5px solid rgba(176, 134, 74, 1);
  border-radius: 4px;
  padding: 8px 12px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrapperCerteficateInfo .select-header span {
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

.wrapperCerteficateInfo .arrow svg {
  width: 20px;
  height: 17px;
  color: rgba(176, 134, 74, 1);
  display: flex;
  width: 100%;
}

.wrapperCerteficateInfo .select-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  border: 0.5px solid rgba(176, 134, 74, 1);
  border-radius: 4px;
  padding: 8px 16px;
  background: #fff;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wrapperCerteficateInfo .option {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.wrapperCerteficateInfo .option .custom-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 0.5px solid rgba(176, 134, 74, 1);
  border-radius: 2px;
  background: #fff;
  transition: 0.2s;
  position: relative;
}
.wrapperCerteficateInfo .option input {
  display: none;
}
.wrapperCerteficateInfo .option input:checked + .custom-checkbox {
  background: rgba(176, 134, 74, 1);
  border-color: rgba(176, 134, 74, 1);
}
.wrapperCerteficateInfo .option input:checked + .custom-checkbox::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: -3.5px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

/* активне */
.wrapperCerteficateInfo .option.active {
  font-weight: bold;
  color: rgba(176, 134, 74, 1);
}

/* чекбокси під селектами */
.wrapperCerteficateInfo .extra-checkboxes {
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
}

.wrapperCerteficateInfo .extra-checkboxes label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(5, 5, 5, 1);
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.wrapperCerteficateInfo .extra-checkboxes label input {
  display: none;
}

.wrapperCerteficateInfo .extra-checkboxes .custom-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 0.5px solid rgba(176, 134, 74, 1);
  border-radius: 2px;
  background: #fff;
  transition: 0.2s;
  position: relative;
}

.wrapperCerteficateInfo
  .extra-checkboxes
  label
  input:checked
  + .custom-checkbox {
  background: rgba(176, 134, 74, 1);
  border-color: rgba(176, 134, 74, 1);
}

.wrapperCerteficateInfo
  .extra-checkboxes
  label
  input:checked
  + .custom-checkbox::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: -3.5px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.oneCertificateDescription {
  margin: 0;
  padding: 0;
  max-height: 467px;
  overflow: auto;
  padding-right: 12px;
}

.desc h3 {
  font-size: 24px;
  font-family: "Playfair Display", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  padding-bottom: 24px;
}

.wrapperCerteficateInfo {
  padding-top: 40px;
}

.wrapperCerteficateInfo h1 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: "Playfair Display", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
}

.carrency {
  font-size: 20px;
  font-family: "Playfair Display", sans-serif;
  color: rgba(5, 5, 5, 1) !important;
  font-weight: 400;
  line-height: 100%;
}

.quantitySelect {
  width: 180px;
}

.serviceSelect {
  width: 282px;
}

.addCertificateButton {
  width: 212px;
}

.stepper {
  width: 50px;
  height: 37px;
  border: 0.5px solid rgba(176, 134, 74, 1);
  border-radius: 4px;
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.valuevalueCertificats {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  user-select: none;
  transform: translateY(-2px);
  padding-top: 5px;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.btnQuantity {
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.chev {
  width: 10px;
  height: 6px;
  display: block;
  stroke: rgba(176, 134, 74, 1);
  stroke-width: 1;
  fill: none;
}

.btnQuantity:hover {
  opacity: 0.8;
}

.btnQuantity:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
  border-radius: 2px;
}

.btnQuantity:active svg {
  transform: translateY(1px);
}

.btnQuantity:active {
  background-color: rgba(176, 134, 74, 0.1);
}

.btnQuantity[tabindex] {
  touch-action: manipulation;
}

.wrapperButtonCertificate {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1060px) {
  .wrapperCerteficateInfo .product-image img,
  .wrapperCerteficateInfo .product-image video {
    width: 100%;
  }
}

@media (max-width: 830px) {
  .wrapperCerteficateInfo {
    padding-top: 20px;
  }

  .wrapperCerteficateInfo .product {
    flex-direction: column;
    gap: 24px;
  }

  .wrapperCerteficateInfo h1 {
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 16px;
  }

  .wrapperCerteficateInfo .product-image img,
  .wrapperCerteficateInfo .product-image video {
    width: 343px;
    height: 343px;
    margin: 0 auto;
  }

  .wrapperCerteficateInfo .product-title {
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 12px;
  }

  .wrapperCerteficateInfo .product-price {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .wrapperCerteficateInfo .product-price span {
    font-size: 14px;
  }

  .wrapperCerteficateInfo .discount {
    font-size: 18px !important;
    margin-left: 24px;
  }

  .wrapperCerteficateInfo .selectors {
    gap: 8px;
    flex-direction: column;
  }

  .serviceSelect {
    width: 343px;
  }

  .wrapperCerteficateInfo .select-header span {
    font-size: 16px;
  }

  .quantitySelect {
    width: 164px;
  }

  .custom-select.quantitySelect {
    flex: 1;
  }

  .extra-checkboxes {
    flex: 1;
  }

  .wrapperCerteficateInfo .extra-checkboxes {
    gap: 10px;
    margin-bottom: 0px;
  }

  .wrapperCerteficateInfo .extra-checkboxes label {
    gap: 4px;
    font-size: 16px;
  }

  .wrapperSelectsCheckbox {
    display: flex;
    gap: 16px;
  }

  .wrapperCerteficateInfo .selectors {
    margin-bottom: 32px;
  }

  .addCertificateButton {
    width: 273px;
  }

  .note {
    margin-top: 16px;
    font-size: 16px;
    line-height: 100%;
  }

  .desc {
    margin: 16px 0px 40px 0px;
    padding: 16px;
    border-radius: 8px;
  }

  .desc h3 {
    font-size: 18px;
    padding-bottom: 16px;
  }

  .oneCertificateDescription {
    padding-right: 8px;
  }
}

.tabsCurses {
  display: flex;
  gap: 20px;
  margin: 40px 0 24px 0;
}

.tab-btn {
  padding: 8px 16px;
  background: none;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  border-radius: 4px;
  border: 0.5px solid rgba(240, 233, 223, 1);
  font-weight: 400;
}

.tab-btn:hover {
  border-color: rgba(176, 134, 74, 1);
  color: rgba(176, 134, 74, 1);
}

.tab-btn:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.tab-btn:active {
  background-color: rgba(176, 134, 74, 0.1);
}

.tab-btn.active {
  background: rgba(240, 233, 223, 1);
}

.tab-contentCurses {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border: 0.5px solid rgba(218, 218, 218, 1);
  border-radius: 12px;
  margin-bottom: 80px;
}

.tab-contentCurses h1 {
  font-size: 24px;
  font-family: "Playfair Display", sans-serif;
  color: rgba(176, 134, 74, 1);
  font-weight: 400;
  padding-bottom: 24px;
  text-align: center;
}

.tab-contentCurses p {
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  text-align: center;
}

.tab-contentCurses.active {
  display: block;
}

.gridCurses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  flex-wrap: wrap;
}

.gridCurses .cardCurses {
  background: rgba(240, 233, 223, 1);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
  gap: 16px;
  width: 274px;
}

.gridCurses .cardCurses h3 {
  font-family: "Poiret One";
  font-size: 100px;
  font-weight: 400;
  color: rgba(176, 134, 74, 1);
  line-height: 100%;
}

.timeSlotCurses {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
}

.timeSlotCurses .separatorTime {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: rgba(176, 134, 74, 1);
}

.wrapperImagesBlock {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.wrapperImagesBlock img,
.wrapperImagesBlock video {
  width: 274px;
  height: 276px;
  object-fit: cover;
  border-radius: 8px;
}

.containerCurses h2 {
  text-align: center;
  padding-bottom: 24px;
  padding-top: 60px;
  font-size: 24px;
  line-height: 100%;
  font-family: "Playfair Display", sans-serif;
  color: rgba(5, 5, 5, 1);
  font-weight: 400;
  text-transform: uppercase;
}

.gridCursesItems {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.gridCursesItems .cardCurses {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diamond {
  width: 16px;
  height: 16px;
  background: #8b5e3c;
  transform: rotate(45deg);
  background: rgba(176, 134, 74, 1);
}

.gridCursesQuestion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.gridCursesQuestion .cardCurses {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 324px;
  width: 324px;
}

.gridCursesQuestion .cardCurses img {
  background: rgba(176, 134, 74, 1);
  border-radius: 4px;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.faq-item {
  margin-bottom: 16px;
  background: rgba(240, 233, 223, 1);
  padding: 24px;
  border-radius: 12px;
}

.faq-question {
  width: 100%;
  border: none;
  text-align: left;
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  font-weight: 600;
  color: rgba(5, 5, 5, 1);
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  background: none;
}

.faq-question:hover {
  background-color: rgba(176, 134, 74, 0.05);
}

.faq-question:active {
  background-color: rgba(176, 134, 74, 0.1);
}

.toggle-icon {
  font-size: 40px;
  line-height: 20px;
  color: rgba(176, 134, 74, 1);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 15px;
  font-size: 18px;
  font-family: "Poiret One", sans-serif;
  color: rgba(5, 5, 5, 1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  display: block;
  max-height: 500px;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.mastersInCurse .swiper {
  display: none;
}

.mastersInCurse-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.curseRegister {
  box-sizing: border-box;
  color: rgba(240, 233, 223, 1);
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 8px;
  border-radius: 4px;
  background: rgba(176, 134, 74, 1);
  border: 0.5px solid rgba(176, 134, 74, 1);
  width: 300px;
  margin: 0 auto;
  display: block;
}

.curseRegister:hover {
  background: transparent;
  color: rgba(176, 134, 74, 1);
}

.curseRegister:focus {
  outline: 2px solid #b0864a;
  outline-offset: 2px;
}

.curseRegister:active {
  background-color: rgba(176, 134, 74, 0.1);
  transform: scale(0.98);
}

.timeSlotCurses .valueTime {
  cursor: unset;
  font-size: 24px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  color: rgba(5, 5, 5, 1);
}

@media (max-width: 1100px) {
  .gridCursesQuestion {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .mastersInCurse-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .mastersInCurse .swiper {
    display: block;
  }

  .mastersInCurse-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    display: none;
  }

  .mastersInCurse-grid {
    display: none;
  }

  .tabsCurses {
    margin: 20px 0 16px 0;
  }

  .tab-btn {
    font-size: 16px;
  }

  .tab-contentCurses {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 40px;
  }

  .tab-contentCurses h1 {
    font-size: 20px;
    padding-bottom: 16px;
  }

  .timeSlotCurses {
    padding-bottom: 16px;
  }

  .timeSlotCurses .valueTime,
  .timeSlotCurses .separatorTime {
    font-size: 20px;
  }

  .tab-contentCurses p {
    font-size: 16px;
  }

  .wrapperImagesBlock {
    margin-top: 16px;
    gap: 7px;
  }

  .wrapperImagesBlock img,
  .wrapperImagesBlock video {
    width: 151px;
    height: 152px;
  }

  .containerCurses h2 {
    padding-top: 32px;
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 100%;
  }

  .diamond {
    width: 14px;
    height: 14px;
  }

  .gridCursesItems {
    gap: 16px;
  }

  .gridCursesItems .cardCurses {
    font-size: 16px;
    font-family: "Poiret One", sans-serif;
    color: rgba(5, 5, 5, 1);
  }

  .gridCurses .cardCurses {
    width: 263px;
    font-size: 16px;
  }

  .gridCurses .cardCurses h3 {
    font-size: 70px;
  }

  .gridCurses {
    gap: 8px;
  }

  .gridCursesQuestion .cardCurses {
    font-size: 16px;
  }

  .gridCursesQuestion {
    gap: 16px;
  }

  .gridCursesQuestion .cardCurses img {
    width: 24px;
    height: 24px;
    padding: 3px;
  }

  .faq-item {
    padding: 16px;
    margin-bottom: 8px;
  }

  .faq-question,
  .faq-answer {
    font-size: 16px;
  }

  .toggle-icon {
    font-size: 35px;
  }

  .faq-answer {
    padding-top: 12px;
  }

  .curseRegister {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .serviceSelect {
    width: 100%;
  }

  .addCertificateButton {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .wrapperCerteficateInfo .product-image img,
  .wrapperCerteficateInfo .product-image video {
    width: 100%;
    height: 100%;
  }

  .wrapperSelectsCheckbox {
    flex-direction: column;
  }
}

.containerCurses .swiper-wrapper {
  justify-content: center;
}


.wrapperPolicy {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
  margin-top: 101px;
  padding-top: 40px;
  padding-bottom: 80px;
}

@media (max-width: 1250px) {
  .wrapperPolicy {
    margin-top: 73px;
  }
}

@media (max-width: 768px) {
  .wrapperPolicy {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
