/* Global Styles */

@font-face {
  font-family: "Montserrat";
  src: url("/assetsFASGW/fontsSAD/Montserrat-BoldASFQ.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assetsFASGW/fontsSAD/Inter-SemiBoldDASD.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assetsFASGW/fontsSAD/Inter-ExtraBolddasdS.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assetsFASGW/fontsSAD/OpenSans-SemiboldASFW.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff;
  --button: #e36043;
  --text-gray: #4d4d4d;
  --black-text: #2f2f2f;
  --white: #fff;
  --card: #f8faff;
  --stroke: #c8cbde;
  --text-gray: #d9d9d9;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

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

p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
button:hover {
  cursor: pointer;
}
ul {
  padding: 0;
  margin: 0;
}

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

@media (max-width: 1240px) {
  .container {
    padding: 0 15px;
  }
}

/* Header */
.header {
  background: #100606;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo_image {
  width: 40px;
  height: 52.94px;
  flex-shrink: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-desktop ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-desktop a {
  color: var(--white, #fff);
  font-family: "Open Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.auth-desktop {
  display: flex;
  gap: 16px;
}

.auth-desktop button {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--white, #fff);

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;

  text-align: center;

  border-radius: 10px;
}

.auth-desktop button:hover {
  opacity: 0.8;
}

.auth-desktop button:nth-child(2) {
  background: var(--button, #e36043);
  border: 0;
}

.auth-desktop button:nth-child(3) {
  border-radius: 10px;
  border: 1px solid var(--button, #e36043);
  background: rgba(227, 96, 67, 0.24);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -1000%;
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: #100606;
  padding: 80px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: 0.3s;
  z-index: 1001;
}

.mobile-menu.open {
  left: 0;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  background: none;
  border: none;
  color: #ffffff;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.mobile-nav a {
  color: var(--white, #fff);
  font-family: "Open Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.auth-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* margin-top: auto; */
}

.auth-mobile button {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--white, #fff);

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;

  text-align: center;

  border-radius: 10px;
}

.auth-mobile button:nth-child(1) {
  background: var(--button, #e36043);
  border: 0;
}

.auth-mobile button:nth-child(2) {
  border-radius: 10px;
  border: 1px solid var(--button, #e36043);
  background: rgba(227, 96, 67, 0.24);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.show {
  display: block;
}

/* Hero */
.hero {
  padding: 140px 0;
  background-image: url("/assetsFASGW/imagesFAaf/backgroundFAW/heroBG.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .hero-section {
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }
}

.hero-content {
  text-align: start;
  max-width: 612px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .hero-content {
    align-items: center;
    justify-content: center;
  }
}

.hero-content h1 {
  color: var(--white, #fff);

  /* H1 */
  font-family: Montserrat;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 28px;
  }
}

.hero-content p {
  color: var(--white, #fff);

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.hero-buttons {
  display: flex;
  height: auto;
}

.hero-buttons .button {
  width: 100%;

  display: flex;
  padding: 16px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 10px;
  background: var(--button, #e36043);

  color: var(--white, #fff);

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
}

.button__glare {
  opacity: 0.8;
  position: absolute;
  top: -100px;
  left: -100px;
  display: block;
  background: #fff;
  width: 40px;
  height: 300px;
  transition: all 0.1s;
  transform: rotate(45deg);
  animation-delay: 0.05s;
  animation-timing-function: ease-in-out;
  animation-name: slide;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.hero-buttons a:hover {
  opacity: 0.8;
}

.hero-image-desktop {
  background-image: url("/assetsFASGW/imagesFAaf/hero-item.webp");
  background-size: cover;
  background-position: center;
  width: 626px;
  height: 626px;
}

@media (max-width: 1080px) {
  .hero-image-desktop {
    /* display: none; */
    width: 480px;
    height: 480px;
  }
}
@media (max-width: 980px) {
  .hero-image-desktop {
    display: none;
  }
}

.hero-image-mobile {
  background-image: url("/assetsFASGW/imagesFAaf/hero-item.webp");
  background-size: cover;
  background-position: center;
  min-width: 200px;
  min-height: 200px;
  max-width: 201px;
  max-height: 201px;
  aspect-ratio: 1/1;
  display: none;
}

@media (max-width: 980px) {
  .hero-image-mobile {
    display: flex;
  }
}

.time-bar {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

@media (max-width: 991px) {
  .time-bar {
    gap: 15px;
  }
}

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

.type-time b {
  color: var(--Color_GOLD, #d7a850);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.container-time {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);
}

.container-time span {
  color: var(--Color_GR, #00361f);
  text-align: center;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 991px) {
  .container-time span {
    font-size: 32px;
  }
}

/* Why Us */
.why-us {
  color: #000;
  padding: 40px 0;
}

.why-us-content h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.why-us ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  align-self: stretch;
}

@media (max-width: 1240px) {
  .why-us ul {
    flex-wrap: wrap;
  }
}

.why-us li {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid var(--stroke, #c8cbde);
  background: var(--card, #f8faff);
  max-width: 292px;
}

.why-us li h3 {
  margin-top: 24px;
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  text-transform: uppercase;
}

.why-us li p {
  color: #4d4d4d;
  text-align: center;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
  margin-top: 16px;
}

/* Top Canadian */
.top-canadian {
  padding: 40px 0;
}

.top-canadian h2 {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H2 */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  text-transform: uppercase;
}

.top-canadian ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.top-canadian li {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  justify-content: space-between;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid var(--stroke, #c8cbde);
  background: var(--card, #f8faff);
}

@media (max-width: 991px) {
  .top-canadian li {
    padding: 16px;
    max-width: 360px;
  }
}

@media (max-width: 420px) {
  .top-canadian li {
    padding: 10px;
    max-width: 280px;
  }
}

.top-canadian li img {
  margin-bottom: 20px;
  max-width: 197px;
  max-height: 197px;
}

.top-canadian li span {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.top-canadian li p {
  color: #4d4d4d;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.top-canadian li a {
  width: 93%;
  display: flex;
  padding: 16px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--button, #e36043);

  color: var(--white, #fff);

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
}

/* Footer */
.footer {
  background: #100606;
  padding: 20px 0 16px 0;
}

.footer .first-row-footer {
  display: flex;
  padding: 12px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.blue-sec {
  border-radius: 25px;
  background: #01224c;
  margin-bottom: 32px;
}

.footer .first-row-footer span {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
}

.footer .first-row-footer p {
  color: #fff;
  text-align: center;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.footer .first-row-footer b {
  color: #fff;
  color: var(--white, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 200% */
}

.list-b {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.list-bs {
  margin-top: 32px;
}

.footer nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.second-row-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px !important;
  margin-top: 32px;
}

.second-row-footer ul li a {
  color: var(--button, #e36043);

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.socials {
  margin: 24px 0;
  width: 100%;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.socials img {
  height: auto;
}

.copytight {
  color: var(--white, #fcfcfc) !important;
  text-align: center !important;
  font-family: Montserrat !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: normal !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-desktop,
  .auth-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .why-us ul {
    grid-template-columns: 1fr;
  }

  .top-canadian ul {
    grid-template-columns: 1fr;
  }

  .how-to-content {
    grid-template-columns: 1fr;
  }

  .trust-features {
    flex-direction: column;
    align-items: center;
  }

  .footer nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .socials {
    justify-content: center;
  }
}

.contact-page {
  display: flex;
  flex-direction: row;
  gap: 80px;
  padding-bottom: 30px;
}

@media (max-width: 1240px) {
  .contact-page {
    gap: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
  }
}

.contact-info {
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 1240px) {
  .contact-info {
    align-self: center;
  }
}

.contact-info span {
  color: var(--Color_GR, #00361f);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact-info .info p {
  color: var(--Color_GR, #00361f);
  text-align: start;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.contact-page .first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.formSec {
  width: 100%;
  display: flex;
}

.formContact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

@media (max-width: 1240px) {
  .formContact {
    align-self: center;
    align-items: start;
    justify-content: center;
  }
}

.formContact input,
textarea {
  width: 100%;
  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);
}

@media (max-width: 1240px) {
  .formContact input,
  textarea {
    width: 360px;
  }
}

@media (max-width: 380px) {
  .formContact input,
  textarea {
    width: auto;
  }
}

.formContact .input-box {
  display: flex;
  flex-direction: column !important;
  align-items: flex-start;
  gap: 4px;
}
.formContact .withcheckbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
}

.formContact .withcheckbox input {
  width: 15px;
  height: 15px;
}

.formContact label,
.formContact p {
  color: var(--white, #fff);

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.formContact label,
.formContact p {
  color: var(--white, #fff);

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.formContact button {
  display: flex;
  width: 196px;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--Color_GR, #00361f);

  color: var(--white, #fcfcfc);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 25px;
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.gap-4 {
  gap: 16px;
}
.gap-3 {
  gap: 12px;
}
.gap-2 {
  gap: 8px;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.w-full {
  width: 100%;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.mt-5 {
  margin-top: 20px;
}
.pt-5 {
  padding-top: 20px;
}
.border-t-\[1px\] {
  border-top: 1px solid;
}
.border-\[#435470\] {
  border-color: #435470;
}
.justify-between {
  justify-content: space-between;
}

@media (max-width: 1240px) {
  .xl\:justify-between {
    justify-content: flex-start;
  }
  .xl\:gap-0 {
    gap: 16px;
  }
}
.typeGame {
  color: var(--Color_GR, #00361f);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@keyframes slide {
  0% {
    transform: translateX(0) rotate(45deg);
  }
  30%,
  100% {
    transform: translateX(350px) rotate(45deg);
  }
  100% {
    transform: translateX(350px) rotate(0deg);
  }
}

.privacy {
  padding: 60px 0;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.privacy-content h1 {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H2 */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  text-transform: uppercase;
}

.privacy-content p {
  color: #4d4d4d;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.privacy-content span {
  margin-top: 24px;
  color: #2f2f2f;

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
}

.privacy-content ul {
  padding-left: 25px;
  list-style: disc;
}
/* AUTH POPUP */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.auth-popup {
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: flex;
  width: 100%;
  max-width: 600px;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  border-radius: 35px;
  background: var(--BG, #fff);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

@media (max-width: 980px) {
  .auth-popup {
    padding: 14px;
  }
}

.auth-popup.active,
.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  color: #000000;
}

.auth-content {
  display: none;
}

.auth-content.active {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 12px;
}

/* =========================
   SUCCESS NOTIFICATION
========================= */
.success-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  z-index: 1000;
  animation: slideIn 0.4s ease-out;
  visibility: hidden;
  opacity: 0;
}

.success-notification.show {
  visibility: visible;
  opacity: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(500px);
    opacity: 0;
  }
}

.success-notification.hide {
  animation: slideOut 0.4s ease-out forwards;
}

.notification-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: checkmark 0.6s ease-out 0.2s backwards;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.notification-text {
  flex: 1;
}

.notification-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
}

.notification-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.notification-close:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .success-notification {
    top: 15px;
    right: 15px;
    left: 15px;
    max-width: none;
  }
}

.auth-content span {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  text-transform: uppercase;
}

.auth-content p {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.auth-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--white, #fcfcfc);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 16px;
}

.auth-switch span.active {
  font-weight: 600;
}

.auth-switch button {
  background: none;
  border: none;
  color: #fcfcfc;
  cursor: pointer;
}

.auth-content label {
  display: block;
  margin-top: 12px;
  color: var(--white, #fcfcfc);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.auth-content input {
  width: 95%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.auth-submit {
  width: 100%;
  display: flex;
  padding: 16px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 10px;
  background: var(--button, #e36043);
  align-self: stretch;
  border: none;
  cursor: pointer;

  color: var(--white, #fff);

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
}

.checkbox {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  border: none;
  align-items: center;
}
.checkbox input {
  width: 14px;
  height: 14px;
}

/* =========================
   AGE POPUP STYLES
========================= */

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.age-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-popup {
  width: 100%;
  max-width: 543px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15.3px;

  border-radius: 12px;
  background: #031c37;

  animation: fadeInUp 0.4s ease forwards;
}

.age-title {
  color: #e5e7eb;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.age-text {
  color: #9ca3af;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.age-actions {
  display: flex;
  gap: 12px;
}

.age-button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: none;
  background: #e36043;

  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 13.1px;
  font-weight: 700;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.age-button:hover {
  transform: scale(1.05);
}

.age-exit {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: 2px solid #e36043;

  color: #e36043;
  font-family: Montserrat, sans-serif;
  font-size: 13.1px;
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   ANIMATION
========================= */

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

/* =========================
   COOKIES POPUP
========================= */

.cookies-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2100;

  display: flex;
  justify-content: flex-end;

  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookies-wrapper.active {
  transform: translateY(0);
}

.cookies-content {
  max-width: 540px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 40px 20px;

  border-radius: 10px;
  border: 1px solid #e36043;
  background: #090808;
}

@media (max-width: 768px) {
  .cookies-content {
    padding: 20px;
  }
}

.cookies-text span {
  color: #ffffff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.cookies-text p {
  margin-top: 20px;
  color: #ffffff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.cookies-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

/* Button */
.cookies-actions button {
  max-width: 201px;
  width: 100%;
  padding: 12px 24px;

  border-radius: 30px;
  border: none;

  background: #e36043;
  color: #ffffff;

  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookies-actions button:hover {
  transform: scale(1.05);
}

/* Link */
.cookies-actions a {
  max-width: 289px;
  width: 100%;
  padding: 12px 24px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 30px;
  background: #ffffff;

  color: #090808;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookies-actions a:hover {
  transform: scale(1.05);
}

.mission {
  padding: 40px 0;
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission-content h2 {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H2 */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  text-transform: uppercase;
}

.mission-content .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.mission-content .content .mission-image {
  order: 1;
  border-radius: 24px;
  background-image: url("/assetsFASGW/imagesFAaf/mission-itemDASF.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 608px;
  min-height: 444px;
}

@media (max-width: 1240px) {
  .mission-content .content .mission-image {
    min-width: 1px;
    min-height: 1px;

    width: clamp(290px, 10vw, 608px);
    height: clamp(290px, 10vw, 444px);
  }
}

.mission-content .content .mission-texts {
  order: 2;
  display: flex;
  padding: 14px;
  flex-direction: column;
  align-items: start;
  flex: 1 0 0;
  align-self: stretch;
  gap: 10px;

  border-radius: 24px;
  border: 1px solid var(--stroke, #c8cbde);
  background: var(--card, #f8faff);
}

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

  .mission-content .content .mission-image {
    order: 2;
  }

  .mission-content .content .mission-texts {
    order: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.mission-content .content .mission-texts h3 {
  color: var(--black_text, #2f2f2f);

  /* H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  text-transform: uppercase;
}

.mission-content .content .mission-texts p,
.mission-content .content .mission-texts li {
  color: #4d4d4d;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.mission-content .content .mission-texts ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
  list-style: disc;
  padding-left: 20px;
}
@media (max-width: 1240px) {
  .mission-content .content .mission-texts ul {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.about-section {
  padding: 40px 0;
}

.about-section .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  align-self: stretch;
}

.about-section .about-content h1,
.about-section .about-content h2 {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H2 */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  text-transform: uppercase;
}

.about-section .about-content p {
  color: var(--text-gray, #4d4d4d);
  text-align: center;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.about-section .about-content .cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  align-self: stretch;
}

.about-section .about-content .cards div {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid var(--stroke, #c8cbde);
  background: var(--card, #f8faff);
}

.about-section .about-content .cards span {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* H3 */
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  text-transform: uppercase;
}

.about-section .about-content .cards p {
  color: #4d4d4d;
  text-align: center;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

/* // shop  */

.shop {
  padding: 40px 0;
}

.shop-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.shop-content h1 {
  color: #1e1e1e;

  /* H2 */
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  .shop-content h1 {
    text-align: center;
  }
}

.shop-content .list-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 12px;
  align-self: stretch;
  flex-wrap: wrap;
  align-items: stretch;
}

.shop-content .list-cards .card {
  box-sizing: border-box;
  display: flex;
  max-width: 300px !important;
  max-height: 424px !important;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  border: 1px solid var(--stroke, #c8cbde);
  background: var(--card, #f8faff);
}

.title-star {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.shop-content .list-cards .card img {
  max-width: 268px;
  max-height: 200px;
}

.shop-content .list-cards .card h2 {
  color: var(--black_text, #2f2f2f);

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

/* =========================
   CUSTOM NOTIFICATION
========================= */
.custom-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  min-width: 300px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1000;
  animation: slideInRight 0.4s ease-out;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.custom-notification.hide {
  animation: slideOutRight 0.4s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(500px);
    opacity: 0;
  }
}

.custom-notification.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.custom-notification.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.custom-notification.info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.custom-notification .notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.custom-notification svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 2;
}

.custom-notification .notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.custom-notification .notification-close:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .custom-notification {
    top: 15px;
    right: 15px;
    left: 15px;
    min-width: auto;
    max-width: none;
  }
}
.shop-content .list-cards .card .class-stars {
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.shop-content .list-cards .card .class-stars .star {
  background-image: url("/assetsFASGW/iconsSDf/star.svg");
  min-width: 12px;
  min-height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.shop-content .list-cards .card .class-stars .no-star {
  background-image: url("/assetsFASGW/iconsSDf/no-star.svg");
  min-width: 12px;
  min-height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.card-descr {
  color: #808080;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.price {
  color: #1e1e1e;

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
}

.buy-btn {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--button, #e36043);

  color: var(--white, #fff);

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
  cursor: pointer;

  border: none;
}

.price-btn {
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}

.auth-login-link {
  color: var(--black_text, #2f2f2f);
  text-align: center;

  /* p_regular */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 141.176% */
}

.link-btn {
  color: var(--button, #e36043);
  text-align: center;

  /* 17px_bold */
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px; /* 111.765% */
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  margin-left: 15px;
}

.header-page {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
