@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.t--hfont {
    font-family: "Josefin Sans", sans-serif;
}

.t--bold {
    font-weight: 700;
}
.t--green {
    color: #157e41;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.d-flex {
    display: flex !important;
}

.swiper-container {
  cursor: pointer;
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
}

.swiper-container .swiper-pagination-bullet-active {
  background-color: #fff !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 1;
}

.swiper-container .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid #fff 2px;
  background: transparent;
  opacity: 1;
}

.swiper-container .swiper-pagination-bullet:focus, .swiper-container .swiper-pagination-bullet-active:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.swiper-container .swiper-slide {
  -webkit-transform: translate3d(0, 0, 0) !important;
  max-width: 100%;
  width: 100%;
  background-color: #cacaca;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-container .swiper-slide .overlay {
  text-align: center;
}

.swiper-container .swiper-slide .overlay h1 {
  font-size: 3rem;
  color: white;
  text-transform: capitalize;
}

@media all and (max-width: 750px) {
  .swiper-container .swiper-slide .overlay h1 {
    font-size: 2rem;
  }
}

.swiper-container .swiper-slide .overlay button {
  border: none;
  background: #303030;
  color: white;
  font-weight: 400;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 10px;
}

@media all and (max-width: 750px) {
  .swiper-container .swiper-slide .overlay button {
    font-size: 16px;
  }
}

.swiper-container .swiper-slide .overlay button:hover {
  background: rgba(48, 48, 48, 0.5);
  cursor: pointer;
}

.swiper-container .swiper-slide .overlay button:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media all and (max-width: 800px) {
  .swiper-container .swiper-slide-2 {
    background-position: left;
  }
  .swiper-container .swiper-slide-3 {
    background-position: right;
  }
}

.swiper-container::-webkit-scrollbar {
  display: none;
}

.swiper-container {
  -ms-overflow-style: none;  /* IE és Edge */
  scrollbar-width: none;  /* Firefox */
}
p {
  color: #ffffff;
  pointer-events: none;
}

.form-widget {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 580px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.form-message-box {
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  border-radius: 10px;
  padding: 12px 62px 12px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(244, 197, 66, 0.35);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.form-message-box::after,
.form-toggle-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border-radius: 14px;
  background: radial-gradient(circle, rgba(244, 195, 68, 0.32) 0%, rgba(232, 76, 61, 0.12) 45%, rgba(0, 0, 0, 0) 75%);
  z-index: 0;
  pointer-events: none;
}

.form-message-box.form-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.form-message-box.form-intro {
  animation: formFadeIn 0.35s ease-out, formPulse 2.5s ease-in-out 1.2s infinite;
}

.form-toggle-button {
  display: none;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(34, 34, 34, 0.92));
  color: #fff;
  padding: 8px 48px 8px 16px;
  font-size: 13px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(244, 197, 66, 0.4);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.form-text-label {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.form-gift-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%) rotate(-6deg);
  opacity: 0.96;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23F6C344' d='M12 25h40v11H12z'/%3E%3Cpath fill='%23E84C3D' d='M28 25h8v31h-8zM12 30h40v7H12z'/%3E%3Cpath fill='%23F8D878' d='M16 36h12v16H16zM36 36h12v16H36z'/%3E%3Cpath fill='%23F0B938' d='M28 36h8v16h-8z'/%3E%3Cpath fill='%23D93B30' d='M21.27 12.74C18.63 10.1 14.35 10.1 11.7 12.74c-1.02 1.02-1.02 2.68 0 3.7L25 29.73l4.32-4.32zM42.73 12.74c2.64-2.64 6.92-2.64 9.56 0 1.02 1.02 1.02 2.68 0 3.7L39 29.73l-4.32-4.32z'/%3E%3Cpath fill='%23EF5F4F' d='M31.81 10.83 25 17.64l7 7 7-7-6.81-6.81a.27.27 0 0 0-.38 0z'/%3E%3Cpath fill='%23FFFFFF' opacity='.28' d='M17 27h11v3H17zM17 36h7v13h-7z'/%3E%3C/svg%3E");
}

.form-toggle-button .form-gift-icon {
  right: 12px;
  width: 26px;
  height: 26px;
}

.form-toggle-button.form-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
}

.form-toggle-button::after {
  width: 44px;
  height: 44px;
  right: 5px;
  border-radius: 999px;
}

.form-iframe-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  pointer-events: auto;
}

.form-iframe-overlay.form-open {
  display: block;
}

.form-iframe-overlay iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.form-iframe-close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 2147483647;
  border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.form-overlay-open {
  overflow: hidden;
}

body.form-overlay-open .fixed-top,
body.form-overlay-open .hamburger-menu,
body.form-overlay-open .logo {
  pointer-events: none;
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}