@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,700&display=swap");

@layer imported{:root {
  --color-primary: #d98772;
  --color-primary-dark: #c96e5d;
  --color-primary2: #289C95;
  --color-primary-dark2: #356367;
  --color-text-dark: #1a1a1a;
  --color-text-light: #fdfdfd;
  --color-text-secondary: rgba(26, 26, 26, 0.9);
  --color-background: #fdfdfd;
  --color-background-alt: #f0ebdf;
  --color-accent-light: #edc9b6;
  --color-accent-medium: #dab3a9;

  --font-main: "Fraunces", serif;
}

.fraunces {
  font-family: "Fraunces", serif !important;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.cookie-banner-overlay {
        z-index: 99999 !important;
        gap: 1.5rem !important;
      }
      .cookie-banner-overlay [data-cookie-btns] {
        gap: 1rem !important;
      }

      @media (max-width: 1200px) {
        .cookie-banner-overlay {
          width: 90% !important;
          max-width: 400px !important;
          left: 50% !important;
          right: auto !important;
          top: 50% !important;
          bottom: auto !important;
          transform: translate(-50%, -50%) !important;
          height: auto !important;
          max-height: 80vh;
          padding: 1.5rem !important;
          margin: 0 !important;
          gap: 1.5rem !important;
        }
        .cookie-banner-overlay [data-cookie-btns] {
          gap: 1rem !important;
        }
      }

.page-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  width: 100%;
  padding-left: 120px;
  padding-right: 120px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 32px 32px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1),
    0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    49deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 113.22%
  );
  color: var(--color-text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid var(--color-text-dark);
  position: relative;
  overflow: hidden;
}

.header-container .btn.btn-primary {
  font-size: 16px;
}
.cta-item .btn.btn-primary {
  font-size: 16px;
}
.cta-item .btn.btn-secondary {
  font-size: 16px;
}
.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0px 10px 20px -5px rgba(0, 0, 0, 0.25),
    0px 16px 30px -5px rgba(0, 0, 0, 0.2);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}
.btn-secondary {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* animated shadow sweep */
.btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  transform: skewX(20deg);
  pointer-events: none;
}

.btn-secondary:hover::after {
  animation: shadowSweepRightToLeft 0.6s ease-out forwards;
}

@keyframes shadowSweepRightToLeft {
  from {
    transform: translateX(0) skewX(20deg);
  }
  to {
    transform: translateX(-280%) skewX(20deg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

@media (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-section {
  background-color: var(--color-background);
  box-shadow: 0px 12px 26px 0px rgba(222, 222, 222, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.logo img:first-child {
  width: 65.17px;
  height: 50.03px;
}
.logo img:last-child {
  width: 125.57px;
  height: 50.03px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .header-nav .btn {
    display: none;
  }
  .logo {
    gap: 2px;
  }
  .logo img:first-child {
    width: 33.9px;
    height: 26.03px;
  }
  .logo img:last-child {
    width: 65.32px;
    height: 26.03px;
  }
}

/* Mobile Menu Modal */
.mobile-menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-background);
  z-index: 2000;
  overflow-y: auto;
}

.mobile-menu-modal.active {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  width: 100%;
  padding: 20px 40px 40px 40px;
}

.mobile-menu-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  flex: 1;
  justify-content: flex-start;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--color-text-dark);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close img {
  width: 26px;
  height: 26px;
}

.mobile-menu-nav {
  width: 173px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-menu-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #edc9b6;
}

.mobile-menu-link {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 15px 10px;
  border-bottom: 1px solid #edc9b6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.mobile-menu-item > .mobile-menu-link {
  justify-content: flex-start;
  gap: 24px;
  border-bottom: none;
  padding-bottom: 15px;
}

.mobile-menu-item.expanded > .mobile-menu-link {
  padding-bottom: 12px;
}

.expand-icon {
  width: 19.5px;
  height: 19.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.expand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mobile-menu-submenu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 15px;
}

.mobile-menu-item.expanded .mobile-menu-submenu {
  display: flex !important;
}

.mobile-menu-item.expanded .expand-icon-plus {
  display: none;
}

.mobile-menu-item.expanded .expand-icon-minus {
  display: block !important;
}

.mobile-menu-item:not(.expanded) .expand-icon-plus {
  display: block;
}

.mobile-menu-item:not(.expanded) .expand-icon-minus {
  display: none !important;
}

.mobile-menu-sublink {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 0 10px;
}

.mobile-menu-bottom {
  display: flex;
  justify-content: center;
}

.mobile-menu-bottom .btn {
  width: auto;
  font-size: 16px;
}

/* Desktop Menu Modal - Right Side Panel */
@media (min-width: 769px) {
  .mobile-menu-modal {
    display: flex !important;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: background-color 0.3s ease-in-out,
      backdrop-filter 0.3s ease-in-out;
    pointer-events: none;
    overflow: hidden;
  }

  .mobile-menu-modal.active {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    pointer-events: auto;
  }

  .mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    max-height: 100vh;
    background-color: var(--color-background);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: auto;
    will-change: transform;
    pointer-events: auto;
  }

  .mobile-menu-modal.active .mobile-menu-content {
    transform: translateX(0);
  }

  .mobile-menu-top {
    gap: 80px;
  }

  .mobile-menu-nav {
    width: 173px;
  }
}

/* CSS for section section:Hero */
.hero-section {
  padding-top: 80px;
  padding-bottom: 150px;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 796px;
}
.hero-content-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 9px;
}
.stars {
  display: flex;
  gap: 5px;
}
.stars img {
  width: 17px;
  height: 16px;
}
.hero-rating p {
  font-size: 16px;
  letter-spacing: -0.5px;
}
.hero-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
}
.hero-headline .highlight {
  background: linear-gradient(45deg, #d98772, #c96e5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-description {
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  max-width: 796px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 351px;
  text-align: center;
}
.cta-item .btn {
  width: 100%;
  min-width: 250px;
}
.cta-caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 351px;
}
.hero-image-wrapper {
  flex-shrink: 0;
}
.hero-image {
  height: 576px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1200px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .cta-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .hero-headline {
    font-size: 29px;
    text-align: left;
  }
  .hero-description {
    font-size: 18px;
    text-align: left;
  }
  .hero-image {
    width: 100%;
    height: auto;
  }
}

/* CSS for section section:Benefits */
.benefits-section {
  padding-top: 75px;
  padding-bottom: 150px;
}
.benefits-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.benefits-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.benefit-card {
  background: linear-gradient(
    269.01deg,
    var(--color-accent-light) 0.66%,
    var(--color-accent-medium) 102.39%
  );

  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 calc((100% - 72px) / 4);
}
.benefit-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.benefit-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}
.benefit-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
.benefit-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  letter-spacing: -0.5px;
}

.btn-primary .benefits {
  font-size: 18px;
}
@media (max-width: 1370px) {
  .benefit-card {
    flex: 1 1 calc((100% - 24px) / 2);
    max-width: 380px;
  }
}
@media (max-width: 768px) {
  .benefits-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .benefits-title {
    font-size: 34px;
  }
  .benefit-card {
    flex: 1 1 100%;
    max-width: 400px;
  }
  .benefits-container {
    gap: 34px;
  }
}

/* CSS for section section:Support */
.support-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.support-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.support-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.support-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 762px;
}
.video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.video-wrapper {
  max-height: 741px;
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(-22%);
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 162.5px;
  height: 104px;
  background: rgba(217, 135, 114, 0.75);
  cursor: pointer;
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.play-button img {
  width: 100%;
  height: 100%;
}
.video-caption {
  font-size: 24px;
  line-height: 1.4;
  color: #7e7e7e;
}
.video-caption .highlight {
  color: var(--color-primary);
}
@media (max-width: 1200px) {
  .video-thumbnail {
    transform: none;
  }
}
@media (max-width: 768px) {
  .support-container {
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 34px;
  }
  .support-title-wrapper {
    gap: 34px;
  }
  .support-title {
    font-size: 28px;
  }
  .support-subtitle {
    font-size: 20px;
    text-align: center !important;
  }
  .video-wrapper {
    height: 700px;
    max-height: 700px;
  }
  .video-thumbnail {
    height: 100%;
    object-fit: cover;
  }
  .video-caption {
    font-size: 24px;
  }
  .benefit-card-text {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* CSS for section section:Partners */
.partners-section {
  padding-top: 75px;
  padding-bottom: 150px;
}
.partners-container {
  position: relative;
  padding: 40px 120px;
  isolation: isolate;
  background: #fdfdfd;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
.partners-viewport {
  overflow: hidden;
}
.partners-track {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 100px;
  animation: partners-marquee 60s linear infinite;
}
.partners-container img {
  flex-shrink: 0;
  max-height: 66px;
  object-fit: contain;
}
.partners-container::before,
.partners-container::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 139px;
  height: 150px;
  pointer-events: none;
}
.partners-container::before {
  left: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  transform: rotate(90deg);
  z-index: 4;
}
.partners-container::after {
  right: 120px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(90deg);
  z-index: 5;
}

@media (max-width: 1000px) {
  .partners-section {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .partners-container {
    padding: 40px 30px;
  }
  .partners-container img {
    max-height: 35px;
  }
  .partners-container::before {
    left: 30px;
  }
  .partners-container::after {
    right: 30px;
  }
  .partners-container::before,
  .partners-container::after {
    width: 60px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .partners-container {
    padding: 13px 10px;
  }
  .partners-track {
    gap: 50px;
    animation: partners-marquee 40s linear infinite;
  }
  .partners-container img {
    max-height: 44px;
  }
  .partners-container::before {
    left: 10px;
  }
  .partners-container::after {
    right: 10px;
  }
  .partners-container::before,
  .partners-container::after {
    width: 70px;
    height: 80px;
  }
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CSS for section section:Design */
.design-section {
  padding-bottom: 150px;
}
.design-container {
  display: flex;
  align-items: center;
  gap: 76px;
  justify-content: center;
}
.design-image-wrapper {
  flex: 0 0 462px;
}
.design-image {
  width: 100%;
  height: 690px;
  max-height: 690px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}
.design-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 850px;
}
.design-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.design-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.feature-text p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
@media (max-width: 1200px) {
  .design-section {
    padding-bottom: 100px;
    padding-top: 40px;
  }
  .design-container {
    flex-direction: column;
  }
  .design-content {
    order: 1;
    gap: 34px;
  }
  .design-image-wrapper {
    order: 2;
  }
  .design-image {
    height: auto;
  }
  .design-title {
    font-size: 34px;
  }
  .design-features {
    gap: 0;
  }
  .feature-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 12px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-primary);
  }
  .feature-item:last-child {
    border-bottom: none;
  }
  .feature-icon {
    width: 68px;
    height: 68px;
    grid-row: 1;
    grid-column: 1;
  }
  .feature-text {
    display: contents;
  }
  .feature-text h3 {
    grid-row: 1;
    grid-column: 2;
    margin: 0;
    align-self: center;
  }
  .feature-text p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 0;
  }
}

/* CSS for section section:Results */
.results-card {
  max-width: 1467px;
  margin: 0 auto;
  background: linear-gradient(214deg, #f0ebdf 0%, #fef5e6 115.53%);
  border-radius: 32px;
  padding: 50px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}
.results-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 664px;
}
.results-pre-title {
  font-size: 18px;
  line-height: 1.4;
}
.results-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.results-graphic-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.results-graphic {
  position: relative;
  width: 470px;
  overflow-x: clip;
  overflow-y: visible;
}
.results-graphic-wrapper {
  overflow: visible;
}
.results-graphic::before,
.results-graphic::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 10;
  pointer-events: none;
}
.results-graphic::before {
  left: 0;
  background: linear-gradient(to right, #f5eee1, rgba(254, 245, 230, 0));
}
.results-graphic::after {
  right: 0;
  background: linear-gradient(to left, #f2ece0, rgba(254, 245, 230, 0));
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.carousel-track-fade {
  display: grid;
  width: 100%;
  min-height: 453px;
}
.carousel-slide {
  min-width: 100%;
}
.carousel-track-fade .carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  z-index: 0;
}
/* Initial state for slides to the right */
.carousel-track-fade .carousel-slide:not(.active) {
  transform: translateX(100%);
}
/* Active slide is visible and centered */
.carousel-track-fade .carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
/* Exiting slide moves to the left */
.carousel-track-fade .carousel-slide.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}
/* Entering slide starts from the right (default) */
/* Exiting slide moving right (for prev button) */
.carousel-track-fade .carousel-slide.exit-right {
  transform: translateX(100%);
  opacity: 0;
}
/* Entering slide starts from the left (for prev button) */
.carousel-track-fade .carousel-slide.enter-left {
  transform: translateX(-100%);
}
.results-image {
  width: 434px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}
.results-disclaimer {
  position: absolute;
  top: 425px;
  left: 65px;
  width: 210px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-secondary);
  pointer-events: none;
  letter-spacing: -0.5px;
  z-index: 2; /* Ensure it sits above the image */
}
/* Make carousel slide relative so absolute children move with it */
.carousel-slide {
  position: relative;
  min-width: 100%;
}
.results-controls {
  display: flex;
  gap: 12px;
}
.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}
.control-btn:disabled,
.control-btn.disabled {
  cursor: default;
  opacity: 0.3;
  filter: grayscale(100%);
}
.results-stat {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 90%;
}
.percentage {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-text-dark);
  flex-shrink: 0;
}
.stat-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-dark);
}
.results-controls {
  display: flex;
  gap: 17px;
}
.control-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.control-btn img {
  width: 48px;
  height: 48px;
}

@media (max-width: 1200px) {
  .results-card {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 50px 20px;
    background: linear-gradient(194.65deg, #f0ebdf 54.51%, #fef5e6 77.86%);
  }
  .results-graphic::before,
  .results-graphic::after {
    display: none;
  }
  .results-graphic-wrapper {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .results-text {
    padding: 0 10px;
    text-align: left;
  }
  .results-title {
    font-size: 34px;
  }
  .control-btn img {
    width: 41px;
    height: 41px;
  }
  .results-graphic-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .results-graphic {
    width: 300px;
    max-width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
  }
  .carousel-track-fade {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .carousel-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }
  .results-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    display: block;
    margin: 0;
    position: relative;
  }
  .results-disclaimer {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    font-size: 10px;
    text-align: center;
    padding: 0 10px;
  }
  .results-stat {
    position: relative;
    flex-direction: column;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin-top: -50px;
  }
  .carousel-track-fade {
    min-height: 0;
  }
  .carousel-track-fade .carousel-slide:not(.active) {
    transform: translateX(120%);
  }
  .carousel-track-fade .carousel-slide.exit-left {
    transform: translateX(-120%);
  }
  .carousel-track-fade .carousel-slide.exit-right {
    transform: translateX(120%);
  }
  .carousel-track-fade .carousel-slide.enter-left {
    transform: translateX(-120%);
  }
}

/* CSS for section section:HowItWorks */
.how-it-works-section {
  padding: 150px 0;
}
.how-it-works-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
.how-it-works-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: center;
}
.step-card {
  position: relative;
  background-color: var(--color-background);
  border: 2px solid var(--color-primary);
  border-radius: 24px;
  padding: 40px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 430px;
  flex: 1 1 calc((100% - 48px) / 3);
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}
.step-badge {
  position: absolute;
  top: -28px;
  background: linear-gradient(
    49deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 113.22%
  );
  color: var(--color-text-light);
  font-size: 30px;
  line-height: 1.4;
  padding: 7px 20px;
  border-radius: 67px;
}
.step-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.step-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .step-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-secondary);
  }
}

@media (max-width: 992px) {
  .step-card {
    flex: 1 1 100%;
    max-width: 450px;
    padding: 60px 40px 40px;
  }
  .how-it-works-section {
    padding: 100px 0;
  }
  .how-it-works-title {
    font-size: 34px;
  }
  .steps-grid {
    gap: 60px;
  }
}

/* CSS for section section:Comparison */
.comparison-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comparison-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.comparison-table {
  width: 100%;
  max-width: 1022px;
  background-color: var(--color-background);
  border: 0.7px solid var(--color-accent-light);
  border-radius: 24px;
  box-shadow: 0px 12px 32px 0px rgba(74, 60, 54, 0.08);
  overflow: hidden;
}
.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  align-items: center;
}
.table-header {
  background: linear-gradient(
    269.01deg,
    var(--color-accent-light) 0.66%,
    var(--color-accent-medium) 102.39%
  );
  padding: 24px 0;
}

.header-cell,
.table-cell {
  padding: 0 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}
.table-cell.less-padding {
  padding: 0 22px;
}
.header-cell:first-child,
.table-cell:first-child {
  text-align: left;
}
.header-cell {
  font-weight: 400;
  letter-spacing: -0.5px;
}
.table-row {
  border-top: 1px solid var(--color-accent-light);
}
.table-row.highlight-row {
  background-color: #fff5f2;
  border-top: 1px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.table-cell {
  color: var(--color-text-secondary);
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-row .table-cell:first-child {
  justify-content: flex-start;
}
.highlight-row .table-cell {
  color: var(--color-text-dark);
}
.logo-cell {
  padding: 0 24px 0 55px;
}
.logo-cell img {
  height: 77px;
  width: auto;
}
.price-cell {
  font-size: 24px;
  color: var(--color-primary) !important;
}
.table-row:not(.highlight-row) .table-cell:nth-child(2) {
  font-size: 20px;
}
.comparison-container .btn.btn-primary {
  font-size: 18px;
}

@media (max-width: 996px) {
  .table-row:nth-child(3) .table-cell:first-child {
    padding-right: 2px;
  }
}
@media (max-width: 768px) {
  .comparison-table {
    display: block;
    border-radius: 24px;
  }
  .comparison-container {
    gap: 32px;
  }
  .table-row.highlight-row {
    padding-bottom: 50px;
  }
  .comparison-title {
    font-size: 34px;
  }
  .comparison-header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
    width: 100%;
    min-height: 31px;
    height: 31px;
    background: linear-gradient(269.01deg, #edc9b6 0.66%, #dab3a9 102.39%);
    border-radius: 0px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }
  .table-header {
    display: none;
  }
  .table-row {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    border-top: 1px solid var(--color-accent-light);
  }
  .table-row:first-of-type {
    border-top: none;
    padding-top: 30px;
  }
  .table-row:last-of-type {
    padding-bottom: 30px;
  }
  .table-cell {
    padding: 0;
    min-height: auto;
    text-align: left;
    justify-content: flex-start;
    display: block;
  }
  .table-cell::before {
    display: none;
  }
  .logo-cell {
    text-align: center;
  }
  .logo-cell img {
    height: 77px;
  }
  .price-cell {
    font-weight: 700;
    font-size: 24px;
    color: var(--color-primary) !important;
    white-space: nowrap;
  }
  .price-cell span {
    display: inline;
  }
  .table-row:not(.highlight-row) .price-cell {
    font-size: 24px;
    color: var(--color-text-dark) !important;
  }
  .table-cell:first-child {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
  }
  .table-cell.less-padding {
    padding: 0;
    font-size: 14px;
    line-height: 21px;
  }
  .highlight-row .table-cell {
    font-size: 14px;
  }
  .highlight-row .table-cell:first-child {
    font-size: 14px;
  }
  .highlight-row .price-cell {
    font-size: 24px !important;
    font-weight: 700 !important;
  }
  .highlight-row .table-cell.less-padding {
    font-size: 14px;
  }
  .table-row:not(.highlight-row) .table-cell {
    font-size: 16px;
    line-height: 1.4;
  }
  .table-row:not(.highlight-row) .table-cell:first-child {
    font-weight: 400;
    font-size: 18px;
  }
  .table-row:not(.highlight-row) .table-cell:nth-child(2) {
    font-weight: 700;
    font-size: 24px;
  }
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .feature-item-mobile {
    font-size: 14px;
    line-height: 21px;
    color: var(--color-text-dark);
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .feature-check {
    width: 14px;
    height: auto;
    align-self: center;
    flex-shrink: 0;
  }
  .highlight-row {
    background-color: var(--color-background) !important;
    border-top: none !important;
    border-radius: 0;
  }
  .highlight-row .table-cell {
    color: var(--color-text-dark);
  }
  .highlight-row .table-cell:nth-child(4) {
    font-size: 0;
  }
  .highlight-row .table-cell:nth-child(4) .feature-list {
    font-size: 14px;
  }
}

/* CSS for section section:Treatments */
.treatments-section {
  padding: 150px 0;
  position: relative;
}
.treatments-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 250px;
  background: linear-gradient(
    to left,
    var(--color-background),
    rgba(253, 253, 253, 0)
  );
  pointer-events: none;
}
.treatments-container {
  display: flex;
  gap: 80px;
  padding: 40px 120px;
  align-items: flex-start;
}
.treatments-info {
  flex: 0 0 321px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.treatments-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.treatments-carousel-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: hidden;
}
.treatments-carousel {
  display: flex;
  gap: 22px;
  transition: transform 0.6s ease-in-out;
}
.product-card {
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 300px;
  border: 1px solid var(--color-accent-light);
  border-radius: 12px;
  padding: 13px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 18.9px;
}
.product-image-wrapper {
  background-color: #f8f8f8;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  height: 266px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}
.product-info h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
.product-info p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--color-text-secondary);
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1900px) {
  .product-card {
    max-width: 300px;
  }
}
@media (max-width: 1350px) {
  .treatments-container {
    flex-direction: column;
    gap: 50px;
    padding-left: 60px;
    padding-right: 60px;
    align-items: flex-start;
  }
  .treatments-info {
    flex: 0 0 auto;
    gap: 20px;
    text-align: center;
    width: 100%;
    align-items: center;
  }
  .treatments-carousel-wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  .treatments-section::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .treatments-section {
    padding: 100px 0;
  }
  .product-card {
    max-width: 300px;
    padding: 13px;
  }
  .treatments-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
  }
  .treatments-info {
    display: contents;
  }
  .treatments-title {
    order: 1;
    font-size: 34px;
    margin-bottom: 8px;
  }
  .treatments-carousel-wrapper {
    order: 2;
    width: 100%;
    overflow-x: hidden;
    gap: 24px;
  }
  .treatments-info .btn {
    order: 3;
    align-self: center;
  }
}

/* CSS for section section:Gallery */
.gallery-section {
  background: linear-gradient(
    47deg,
    var(--color-accent-light) 60.81%,
    #f5dacc 129.51%
  );
  padding: 70px 0;
}
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.gallery-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 932px;
}
.gallery-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-self: flex-end;
}
.gallery-container {
  overflow: hidden;
  max-width: 1625px;
}
.gallery-grid-wrapper {
  overflow: hidden;
  width: 100%;
}
.gallery-grid {
  display: flex;
  gap: 19px;
  transition: transform 0.6s ease-in-out;
}
.gallery-grid img {
  flex: 0 0 auto;
  min-width: 320px;
  height: 518px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .gallery-container {
    gap: 32px;
  }
  .gallery-header {
    display: contents;
  }
  .gallery-title {
    font-size: 34px;
    order: 1;
    text-align: center;
  }
  .gallery-grid-wrapper {
    order: 2;
  }
  .gallery-controls {
    order: 3;
    justify-content: center;
    align-self: center;
  }
}

/* CSS for section section:Experts */
.experts-section {
  padding: 150px 0;
}
.experts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.expert-content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.experts-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.experts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: center;
}
.expert-content .btn {
  font-size: 16px;
}
.expert-card {
  background-color: var(--color-background);
  border: 0.7px solid var(--color-accent-medium);
  border-radius: 24px;
  overflow: hidden;
  max-width: 680px;
  flex: 1 1 calc((100% - 24px) / 2);
  box-shadow: 0px 8px 20px 0px rgba(74, 60, 54, 0.06);
  display: flex;
  flex-direction: column;
}
.expert-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.expert-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.expert-content-text {
  flex-grow: 1;
}
.expert-content .btn {
  margin-top: auto;
  align-self: flex-start;
}
.expert-content h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
.expert-content p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  flex-grow: 1;
}
.expert-content .btn {
  align-self: flex-start;
}
@media (max-width: 992px) {
  .expert-card {
    flex: 1 1 100%;
    max-width: 680px;
  }
  .experts-section {
    padding: 100px 0;
  }
  .experts-container {
    gap: 32px;
  }
  .experts-title {
    font-size: 34px;
  }
  .experts-grid {
    gap: 24px;
  }
  .expert-content .btn {
    width: 100%;
  }
}

/* CSS for section section:FAQ */
.faq-section {
  padding-bottom: 150px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1625px;
}
.faq-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-item {
  border-top: 1px solid var(--color-accent-light);
  padding: 20px 8px;
}
.faq-item:first-of-type {
  border-top: none;
}
.faq-item:last-of-type {
  border-bottom: 1px solid var(--color-accent-light);
}
.faq-item summary {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq-item[open] summary img {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  padding-right: 40px;
}
.faq-container .btn {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 34px;
  }
  .faq-item summary {
    font-size: 24px;
    gap: 20px;
  }
  .faq-section {
    padding-bottom: 100px;
  }
}

/* CSS for section section:CallToAction */
.cta-section {
  background: linear-gradient(
    47deg,
    var(--color-accent-light) 60.81%,
    #f5dacc 129.51%
  );
  padding: 50px 0;
  border-bottom: 1px solid;
  border-image: linear-gradient(
      90deg,
      var(--color-primary),
      var(--color-primary-dark)
    )
    1;
}
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: 956px;
}
.cta-content-wrapper {
  display: flex;
  align-items: center;
  gap: 55px;
}
.cta-image-wrapper {
  flex-shrink: 0;
}
.cta-image {
  width: 604px;
  height: 384px;
  object-fit: cover;
  border-radius: 32.75px;
}
.cta-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.cta-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-logo img {
  width: 47px;
  height: 55px;
}
.cta-logo span {
  font-size: 36px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.cta-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-actions .btn {
  width: 100%;
  padding: 16px 89px;
}
.cta-caption-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cta-caption-small {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.14;
  font-style: italic;
}
.cta-caption-bold {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
@media (max-width: 1200px) {
  .cta-content-wrapper {
    flex-direction: column;
  }
  .cta-image {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .cta-container {
    gap: 24px;
  }
  .cta-title {
    font-size: 34px;
    margin-bottom: 16px;
    order: 1;
  }
  .cta-content-wrapper {
    display: contents;
  }
  .cta-logo {
    order: 2;
    justify-content: center;
  }
  .cta-logo img {
    width: 66px;
    height: 52px;
  }
  .cta-logo span {
    font-size: 36px;
    line-height: 54px;
  }
  .cta-image-wrapper {
    order: 3;
  }
  .cta-info {
    display: contents;
  }

  .cta-caption-group {
    gap: 12px;
  }
  .cta-actions .btn {
    padding: 16px 32px;
  }
}

/* CSS for section section:Footer */
.footer-section {
  background-color: var(--color-background);
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer-links {
  display: flex;
  justify-content: space-between;
}
.link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: top;
}
.link-column h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.link-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.link-column ul li a {
  line-height: 21px !important;
}
.link-column ul li {
  line-height: 21px !important;
}
.link-column a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-dark);
  text-decoration: none;
}
.link-column a:hover {
  text-decoration: underline;
}
.footer-copyright {
  border-top: 1px solid var(--color-accent-light);
  padding-top: 10px;
  text-align: center;
}
.footer-copyright p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.footer-logo {
  width: 148px;
  height: 148px;
  padding-left: 16px;
}
.legit-seal {
  align-self: center;
}
.legit-seal img {
  width: 106px;
  height: 115px;
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-container {
    gap: 32px;
  }
  .footer-copyright {
    width: 220px;
    align-self: center;
  }
  .footer-links {
    gap: 24px;
  }
  .footer-logo {
    width: 127px;
    height: 128px;
    padding: 12px;
  }
}

.hide-desktop {
  display: none;
}

.hide-mobile {
  display: block;
}

.hide-desktop-small {
  display: none;
}
@media (max-width: 430px) {
  .hide-desktop-small {
    display: block;
  }
}

@media (max-width: 768px) {
  .hide-desktop {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
 
  .support-title .highlight2 {
  background: linear-gradient(45deg, #d98772, #c96e5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

  
}

    .offer-title {
      font-family: "Fraunces", serif;
      font-optical-sizing: auto;
      font-variation-settings:
        "SOFT" 0,
        "WONK" 0;
}

    .cta-text {
      font-family: "Fraunces", serif;
      font-optical-sizing: auto;
      font-variation-settings:
        "SOFT" 0,
        "WONK" 0;
}
.donotshow {
  display: none;
}}

.swiper {
	width: 100%;
	height: 100%;
	padding-inline: 40px;
}
@media (min-width: 767px) {
	.swiper {
		padding-inline: 8vw; 
	}
}
.swiper-slide {
	height: -webkit-fill-available;
}
.swiper {
	margin-left: auto;
	margin-right: auto;
}
.swiper-pagination {
	position: static;
	padding-top: 2rem;
	--swiper-pagination-bullet-height: 12px;
	--swiper-pagination-bullet-width: 12px;
}
.swiper-pagination-bullet {
	background: transparent;
	border: 2px solid;
	border-color: var(--color);
}
.swiper-pagination-bullet-active {
	background: var(--color);
}
.swiper-pagination,
.swiper-button-next,
.swiper-button-prev {
	transition: opacity 0.3s ease;
}
.swiper-pagination.is-hidden,
.swiper-button-next.is-hidden,
.swiper-button-prev.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.swiper-button-next,
.swiper-button-prev {
	all: unset;
}
.swiper-button-next, .swiper-button-prev {
	::slotted(svg), svg {
		display: none;
	}
}
#dynamic-text {
  display: inline-block;
  min-width: 4ch;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
