@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* -----CSS Default Reset----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

@font-face {
  font-family: "ClashDisplay-Extralight";
  src: url("../assets/fonts/ClashDisplay-Extralight.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Extralight.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Light";
  src: url("../assets/fonts/ClashDisplay-Light.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Light.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Regular";
  src: url("../assets/fonts/ClashDisplay-Regular.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Regular.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Medium";
  src: url("../assets/fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Medium.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Semibold";
  src: url("../assets/fonts/ClashDisplay-Semibold.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Semibold.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "ClashDisplay-Bold";
  src: url("../assets/fonts/ClashDisplay-Bold.woff2") format("woff2"),
    url("../assets/fonts/ClashDisplay-Bold.woff") format("woff"),
    url("../assets/fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --clr-1: #fffce5;
  --clr-3: #696666;
  --btn-clr: #ff4747;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased !important;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Urbanist", sans-serif;
}

img {
  user-select: none;
  pointer-events: none;
}

.hero-section__div_left__siteLogo {
  width: 350px;
  height: auto;
}

ul,
ol {
  list-style: none;
}

.faq-section__div {
  text-align: center;
}

.faq-section__div button {
  display: inline-block;
  margin: 20px auto;
}

a {
  color: unset;
  text-decoration: none;
}

.container {
  max-width: 1250px;
  width: 92%;
  margin: 0 auto;
}

.heading-2 {
  font-family: "ClashDisplay-Semibold";
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
}

/* -----------Hero Section------------ */
.hero-section {
  width: 100%;
  background-color: var(--clr-1);
  background-image: url("../assets/images/Shapes.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section__div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  padding: 40px 0px 120px 0px;
}

.hero-section__div_left h1 {
  font-family: ClashDisplay-Semibold;
  font-size: 64px;
  font-weight: 600;
  line-height: 76.8px;
  letter-spacing: -0.02em;
  margin: 40px 0 10px 0;
}

.hero-section__div_left h1 span {
  display: block;
}

.hero-section__p span {
  font-family: ClashDisplay-Semibold;
  font-weight: bold;
  font-size: 23px;
  color: #000;
}


.hero-section__div_left p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  color: #000000;
  margin-bottom: 30px;
}

.hero-section__div_left>p:first-of-type {
  display: block;
}

.hero-section__div_left>p:last-of-type {
  display: none;
}

.hero-section__div_left__inputDiv {
  position: relative;
  max-width: 570px;
  width: 100%;
  margin-bottom: 10px;
}

.hero-section__div_left__inputDiv input {
  padding: 8px 8px 8px 24px;
  border-radius: 20px 0px 20px 20px;
  opacity: 0px;
  outline: none;
  border: none;
  background-color: white;
  box-shadow: 0px 8px 40px 0px #00000014;
  width: 100%;
  height: 70px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
}

.hero-section__div_left__inputDiv button {
  position: absolute;
  right: 8px;
  padding: 0px 32px 0px 32px;
  border-radius: 20px 0px 20px 20px;
  background-color: #ff4747;
  color: white;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  font-family: "ClashDisplay-Medium";
  height: 55px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.hero-section__div_left__inputDiv button:hover {
  background-color: var(--clr-3);
  color: white;
}

.hero-section__div_left__users {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}

.hero-section__div_left__users>div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.hero-section__div_left__users>div img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  object-position: center;
  object-fit: cover;
}

.hero-section__div_left__users>div img:nth-child(2),
.hero-section__div_left__users>div img:nth-child(3),
.hero-section__div_left__users>div img:last-of-type {
  margin-left: -10px;
}

.hero-section__div_left__users span {
  margin-left: 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-3);
  line-height: 28.8px;
}

.hero-section__div_left__users>div>div {
  position: relative;
}

.hero-section__div_left__users>div>div>.total-users {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  left: -10px;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "ClashDisplay-Medium";
}

/* .hero-section__div_right img {
  width: 100%;
} */
/* .heroImg__web {
  display: block;
}
.heroImg__mob {
  display: none;
} */

.hero-section__div_right {
  position: relative;
  justify-self: right;

  display: flex;
  align-items: center;
  justify-content: right;
}

.hero__img-main {
  display: block;
  width: 80%;
  border-radius: 80px 0 80px 80px;
}

.img-1-container {
  position: absolute;

  left: -4.5%;
  top: 5.5%;
}

.img-2-container {
  position: absolute;

  left: 79.5%;
  top: 80%;
}

.img-3-container {
  position: absolute;

  left: 0%;
  top: 37%;
}

.hero__img-1 {
  display: block;
}

.hero__img-2 {
  display: block;
}

.hero__img-3 {
  display: block;
}

.swal2-confirm {
  background-color: var(--btn-clr) !important;
  color: #000000 !important;
}

/* -----------------Proceed Section------------------- */
.proceed-section {
  padding: 40px 0;
}

.proceed-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.proceed-section__flex {
  display: grid;
  grid-template-columns: 1fr 130px 1fr 130px 1fr;
  grid-column-gap: 15px;
}

.proceed-section__flex .proceed-section__flex__card {
  background-color: var(--clr-1);
  border-radius: 17px;
  padding: 35px 40px 35px 30px;
}

.proceed-section__flex .proceed-section__flex__card>h1 {
  font-family: "ClashDisplay-Semibold";
  font-size: 64px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: var(--clr-3);
  opacity: 0.25;
}

.proceed-section__flex .proceed-section__flex__card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: var(--clr-3);
}

.arrow__img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.arrow__img img {
  width: 100%;
}

/* ---------------Offers Section---------------- */
.offers-section {
  width: 100%;
  background-color: #f8f8f8;
}

.offers-section__div-temp {
  padding: 30px 0;
}

.offers-section__div {
  padding: 20px 0 100px 0;
}

.offers-section__div>h2,
.offers-section__div-temp>h2 {
  text-align: center;
  margin-bottom: 10px;
}

.offers-section__div>p,
.offers-section__div-temp>p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: center;
  color: var(--clr-3);
  margin-bottom: 50px;
}

.offers-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

#offer-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 1500px;
  padding: 1rem;
  border-radius: 6px;
}

#offer-container::-webkit-scrollbar {
  display: none;
}

.offers-section__div__flex__card {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.offers-section__div__flex__card a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.offers-section__div__flex__card a img {
  width: 90%;
  object-position: center;
  object-fit: cover;
  height: 150px;
  border-radius: 16px 0px 16px 16px;
  margin: 0 auto;
  z-index: 10;
}

.offers-section__div__flex__card__offerTag {
  position: absolute;
  top: 14px;
  left: 5%;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  z-index: 11;
  background-color: var(--btn-clr);
  padding: 8px 12px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: white;
}

.offers-section__div__flex__card__offerTime {
  position: absolute;
  right: 5%;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  z-index: 11;
  background-color: #007bff;
  /* bleu */
  padding: 8px 12px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: #fff;
}

.offers-section__div__flex__card__content {
  padding: 36px 14px 28px 14px;
  margin-top: -20px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}

.offers-section__div__flex__card__content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.offers-section__div__flex__card__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: var(--clr-3);
  text-align: left;
  margin: 0;
}

.offers-section__div__flex__card__content__des {
  display: none;
  margin-top: 10px;
}

.offers-section__div__flex__card__content::after {
  content: "+";
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #ff4747;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}

.offers-section__div__flex__card__content.clicked::after {
  content: "-";
  background-color: #ff4d4d;
}

.clicked .offers-section__div__flex__card__content__des {
  display: block;
}

.scroll-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0 1rem;
  user-select: none;
}

.btn_offers_inscription {
  padding: 10px 18px 10px 18px;
  outline: none;
  border: none;
  margin: 5px;
  border-radius: 20px 0px 20px 20px;
  background-color: var(--btn-clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  color: white;
  position: relative;
}

.moreOffers__btn {
  padding: 20px 36px 20px 36px;
  outline: none;
  border: none;
  margin: 5px;
  border-radius: 20px 0px 20px 20px;
  background-color: var(--btn-clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 45px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  color: white;
}

.container_offers_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {

  .offers-wrapper {
    max-width: 100%;
  }

  #offer-container {
    max-width: 100%;
    padding: 0.5rem;
  }

  .scroll-btn {
    display: none;
  }
}


@keyframes slide {
  0% {
    height: 10%;
  }

  50% {
    height: 50%;
  }

  100% {
    height: 100%;
  }
}

@keyframes slideUp {
  0% {
    height: 100%;
  }

  50% {
    height: 50%;
  }

  100% {
    height: 0;
  }
}

/* -------------Discount Section-------------- */
.discount-section {
  background-color: black;
  background-image: url("../assets/images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.discount-section h2 {
  margin-bottom: 40px;
  color: white;
}

.discount-section__flex {
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-column-gap: 40px;
}

.discount-section__flex__left {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
  padding: 30px 0;
}

.discount-section__flex__right {
  margin-left: auto;
  height: 100%;
  width: 100%;
}

.discount-section__flex__right img {
  width: 100%;
  height: 100%;
}

/* ---------------FAQs Section--------------- */
.faq-section {
  width: 100%;
  background-color: white;
  padding: 80px 0;
  position: relative;
}

.faq-section__div>h2 {
  text-align: center;
  margin-bottom: 45px;
}

.faq_floatImg_1 {
  position: absolute;
  width: 200px;
  top: 20px;
  left: 0;
  z-index: 10;
}

.faq-section-container {
  width: 900px;
  max-width: 92%;
  margin: 0 auto;
}

.accordion {
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.accordion-title {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--clr-3);
}

.accordion-title h3 {
  padding-right: 26px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28.8px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.accordion-title h3 i {
  font-size: 9px;
  padding-right: 11px;
}

.accordion-toggle {
  font-size: 27px;
  position: relative;
  display: block;
  color: black;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.accordion-content.active {
  max-height: 500px;
  /* Set to a large enough value */
  opacity: 1;
  padding: 0 0 20px 0;
  /* Ensure padding is added when active */
}

.accordion-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: left;
  color: var(--clr-3);
  margin-left: 15px;
}

.accordion-content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-top: 0;
}

.accordion-content ul li {
  margin-left: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  text-align: left;
  color: var(--clr-3);
}

.accordion-content ul li::marker {
  font-size: 6px;
}

.adisplay {
  display: none;
}

.adisplay_block {
  display: block;
}

/* -----------Reels Section------------- */
.reels-section {
  width: 100%;
  background-color: white;
  padding: 60px 0;
}

.reels-section__heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.reels-section__heading h2 {
  text-align: left;
}

.joinInsta_btn1,
.joinInsta_btn2 {
  outline: none;
  border: none;
  background-color: transparent;
  display: block;
}

.joinInsta_btn1 a,
.joinInsta_btn2 a {
  background-image: url("../assets/images/insta\ icon\ bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  color: white;
  padding: 14px 28px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  border-radius: 20px 0px 20px 20px;
  transform: scaleX(1);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.joinInsta_btn1 a:hover,
.joinInsta_btn2 a:hover {
  transform: scaleX(1.05);
}

.joinInsta_btn1 a i,
.joinInsta_btn2 a i {
  font-size: 20px;
}

.joinInsta_btn2 {
  display: none;
}

.mySwiper {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  margin: 60px 0 30px 0;
}

.swiper-slideReels {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px 0px 40px 40px;
  position: relative;
  height: 360px;
}

.swiper-slideReels::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.9%, #000000 93.75%);
  border-radius: 40px 0px 40px 40px;
}

.swiper-slideReels>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px 0px 40px 40px;
}

.swiper-slide__content {
  position: absolute;
  bottom: 25px;
  left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  z-index: 15;
}

.swiper-slide__content img {
  width: 25px;
  margin-right: 15px;
}

.swiper-slide__content p span:first-of-type {
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: #bdbdbd;
  display: block;
  margin-bottom: 4px;
}

.swiper-slide__content p span:last-of-type {
  font-family: "ClashDisplay-Medium";
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  letter-spacing: -0.02em;
  display: block;
  color: white;
  padding-right: 10px;
}

/* ---------------Footer---------------- */
footer {
  width: 100%;
  background-color: black;
}

.footer__div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 40px 0;
  border-bottom: 1px solid #303030;
}

.footer__div p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: center;
  color: white;
  margin: 20px 0 0 0;
}

.footer__div p>span {
  color: #bdbdbd;
  display: block;
}

.footer__div nav {
  margin: 20px 0 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 5px;
}

.footer__div nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #bdbdbd;
  transition: all 0.4s ease-in-out;
}

.footer__div nav a:hover {
  color: white;
}

.footer__div>div a {
  background-color: #303030;
  color: white;
  width: 35px;
  height: 35px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.footer__div>div a:hover {
  background-color: var(--btn-clr);
  color: black;
}

.footer__div img {
  width: 60px;
  height: auto;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #bdbdbd;
  padding: 20px 10px;
}

.selected_icon {
  background-color: var(--btn-clr) !important;
  color: black !important;
}

/* --------------Legal and other Pages------------------- */
.terms-section {
  margin: 90px auto;
}

.terms-section h2 {
  font-family: "ClashDisplay-Semibold";
  font-size: 48px;
  font-weight: 600;
  line-height: 57px;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.login-nav button,
.login-button {
  margin: 5px;
  padding: 0px 32px 0px 32px;
  border-radius: 20px 0px 20px 20px;
  background-color: var(--btn-clr);
  color: white;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  font-family: "ClashDisplay-Medium";
  height: 55px;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


.login-nav button:hover,
.login-button:hover {
  background-color: var(--clr-3);
  color: white;
}

.client-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal-btn-login {
  display: flex;
  justify-content: center;
  align-items: center;
  top: -70px;
  position: relative;
}

.login-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.terms-section h3 {
  font-family: "ClashDisplay-Semibold";
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.48px;
  margin: 18px 0 14px 0;
}

.terms-section p {
  font-size: 18px;
  line-height: 28px;
  color: #7e7b7b;
  margin-bottom: 15px;
}

.terms-section ul {
  list-style-type: disc;
  margin-bottom: 15px;
  list-style-position: inside;
}

.terms-section ul li {
  margin-bottom: 4px;
  color: #7e7b7b;
  font-size: 18px;
  line-height: 28px;
}

.terms-section ul li b {
  color: black;
}

.terms-section p b {
  color: black;
}

.terms-section a {
  text-decoration: underline;
}

.terms-section div span {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 28px;
  color: #7e7b7b;
}

.terms-section ul li::marker {
  color: black;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-subscriptions-succesful {
  max-width: 750px;
  border: 1px solid black;
  overflow: hidden;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.top-illustration-modal-subscription {
  display: flex;
  justify-content: center;
}

.top-illustration-modal-subscription img {
  flex: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.title-subscription-succes {
  top: -70px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.title-subscription-succes h1 {
  font-weight: bold;
  font-size: 48px;
}

.modal-description-subscription-succesful {
  top: -100px;
  margin-top: 2em;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.global-modal-subscription-information {
  top: -80px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.modal-subscription-information {
  padding: 20px;
  background-color: black;
  border-radius: 10px;
  color: white;
  text-align: center;
  width: 50%;
}

.modal-subscription-information h3 {
  font-weight: bold;
  font-size: 45px;
  color: #ffe600;
  margin: 0px;
}

.global-add-pass-wallet {
  top: -50px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.add-wallet-button {
  background-color: black;
  color: white;
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  border: none;
}

.imgWallet {
  width: 10%;
  height: auto;
}

.imgWalletGoogle {
  cursor: pointer;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 90%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 20px;
  z-index: 1000;
  text-align: center;
}

.valid-btn {
  padding: 0px 32px;
  border-radius: 20px 0px 20px 20px;
  background-color: #ff4747;
  color: white;
  text-decoration: none;
  border: none;
  height: 55px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.container-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f3f3f3;
  border: none;
}

.popup-content p {
  margin-top: 10px;
}

.offers-section__div__flex__card.blur {
  filter: blur(4px);
  pointer-events: none;
  transition: filter 0.3s ease;
}

.blur {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

.wallet-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.wallet-button:focus {
  outline: none;
}

.wallet-button,
.wallet-button img {
  cursor: pointer;
}

input.invalid {
  border: 2px solid red;
  outline: none;
  padding: calc(0.5em - 1px) calc(1em - 1px);
}

input:focus.invalid {
  border-color: red;
}

.error-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #e74c3c;
  border-left: 4px solid #e74c3c;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  max-width: 400px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(100%);
  opacity: 0;
  animation: slideIn 0.3s ease-out forwards;
}

.error-notification .error-icon {
  width: 20px;
  height: 20px;
  background-color: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}

.error-notification .error-message {
  color: #2c3e50;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.error-notification .close-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 18px;
  color: #95a5a6;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  flex-shrink: 0;
}

.error-notification .close-btn:hover {
  background-color: #f8f9fa;
  color: #2c3e50;
}

.error-notification.hiding {
  animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .error-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 12px 16px;
    gap: 10px;
    transform: translateY(-100%);
    animation: slideInMobile 0.3s ease-out forwards;
  }

  .error-notification .error-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .error-notification .error-message {
    font-size: 13px;
    line-height: 1.4;
  }

  .error-notification .close-btn {
    font-size: 16px;
    padding: 2px;
  }

  .error-notification.hiding {
    animation: slideOutMobile 0.3s ease-in forwards;
  }
}

@keyframes slideInMobile {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutMobile {
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .error-notification {
    padding: 10px 12px;
    gap: 8px;
  }

  .error-notification .error-icon {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .error-notification .error-message {
    font-size: 12px;
  }

  .error-notification .close-btn {
    font-size: 14px;
  }
}

.demo-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.code-block {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  overflow-x: auto;
}


@media (max-width: 480px) {
  .demo-container {
    padding: 15px;
    margin: 20px auto;
  }

  .code-block {
    font-size: 11px;
    padding: 12px;
  }

  #generate-google-pass-wallet {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* PLAN */

.title-plan {
  padding-top: 10px;
  background-color: #f8f8f8;
  text-align: center;
}

.title-plan h1 {
  font-family: "ClashDisplay-Semibold";
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.02em;
}

.plans {
  background-color: #f8f8f8;
  display: flex;
  gap: 20px;
  position: relative;
  overflow: visible;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.plan {
  background: white;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 30px;
  width: 300px;
  border: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.plan.annual {
  overflow: visible;
}

.plan.popular {
  background: #ff4747;
  color: white;
  border: none;
}

.plan.popular::before {
  content: "POPULAIRE";
  position: absolute;
  top: 15px;
  right: -35px;
  width: 120px;
  background: white;
  color: black;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 4px 0;
  z-index: 10;
}

/* Nouvelle étiquette de réduction pour l'annuel */
.plan.annual::before {
  content: "2 MOIS OFFERTS";
  position: absolute;
  top: -5px;
  right: -5px;
  background: #04AA6D;
  color: white;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  z-index: 20;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.price {
  font-size: 28px;
  margin: 15px 0;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}

.price span {
  font-size: 14px;
  font-weight: normal;
  color: #888;
}

.plan.popular .price span {
  color: #ccc;
}

/* Styles pour le prix barré */
.price-container {
  margin: 15px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}

.price-old {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
  font-weight: normal;
  margin-bottom: 5px;
}

.price-new {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.plan li::before {
  content: "＋";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

.plan.popular li::before {
  color: white;
}

.btn {
  padding: 12px;
  border: none;
  border: 1px solid #E8E8E8;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  background-color: black;
  color: white;
}

.plan.popular .btn {
  background: #f5f5f5;
  color: black;
  border: none;

}

.btn:hover {
  background-color: #f5f5f5;
}

.plan.popular .btn:hover {
  background-color: #e6e6e6;
}


.pres-container {
  text-align: center;
  margin-bottom: 40px;
}

.pres-container h1 {
  margin-bottom: 10px;
  font-size: 5rem;
}

.pres-container h3 {
  font-size: 1.6rem;
  color: #696666;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .container {
    padding: 40px;
  }

  .plan {
    max-width: 100%;
    width: 100%;
  }

  .plans {
    max-width: 100%;
    overflow: hidden;
  }

  .nav-container {
    padding: 0 10px;
  }

  .main-content {
    padding-top: 0px;
  }
}

@media (max-width: 800px) {
  .plans {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }

  .main-content {
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .pres-container h1 {
    font-size: 3rem;
  }

  .pres-container h3 {
    font-size: 1.4rem;
  }

  .plan h3 {
    font-size: 16px;
  }

  .price {
    font-size: 24px;
  }

  .price-new {
    font-size: 24px;
  }

  .price-old {
    font-size: 16px;
  }

  .logo img {
    max-width: 120px;
  }

  .main-content {
    padding-top: 10px;
  }
}

.plan-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plan-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.plan-popup {
  background: white;
  border-radius: 20px 0px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  width: 90%;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: transform 0.3s ease;
}

.plan-popup-overlay.show .plan-popup {
  transform: scale(1) translateY(0);
}

.plan-popup-header {
  color: black;
  padding: 10px 0px 0px;
  text-align: center;
  border-radius: 20px 0px 0px 0px;
  position: relative;
}

.plan-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.plan-popup-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.plan-popup-header h2 {
  font-family: "ClashDisplay-Semibold";
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.plan-popup-content {
  padding: 10px 30px 30px 30px;
  text-align: center;
}

.plan-popup-text {
  font-size: 16px;
  color: var(--clr-3);
  margin-bottom: 25px;
  line-height: 1.4;
}

.plan-email-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 15px 0px 15px 15px;
  font-size: 16px;
  font-family: "Urbanist", sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.plan-email-input:focus {
  border-color: var(--btn-clr);
}

.plan-email-input.error {
  border-color: #ff4747;
  background-color: #fff5f5;
}

.plan-submit-btn {
  background-color: var(--btn-clr);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 20px 0px 20px 20px;
  font-family: "ClashDisplay-Medium";
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.plan-submit-btn:hover {
  background-color: var(--clr-3);
  transform: translateY(-2px);
}

.plan-submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.plan-loading {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .plan-popup {
    width: 95%;
    margin: 20px;
  }
  
  .plan-popup-header {
    padding: 20px 25px;
  }
  
  .plan-popup-header h2 {
    font-size: 22px;
  }
  
  .plan-popup-content {
    padding: 25px;
  }
  
  .plan-submit-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .plan-popup-header {
    padding: 18px 20px;
  }
  
  .plan-popup-header h2 {
    font-size: 20px;
  }
  
  .plan-popup-content {
    padding: 20px;
  }
  
  .plan-email-input {
    padding: 12px 15px;
    font-size: 15px;
  }
}