@font-face {
  font-family: "BenzinSemibold";
  src: url(../fonts/Benzin-Semibold.woff);
}

@font-face {
  font-family: "BenzinExtrabold";
  src: url(../fonts/Benzin-ExtraBold.woff);
}

@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter.woff);
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

.bg {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: -1;
}

.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.kekma.kz {
  font-family: "BenzinSemibold";
  color: #1123bf;
  border-bottom: 5px solid #1123bf;
}

.error {
  font-family: "BenzinSemibold";
  color: #c01111;
  border-bottom: 5px solid #c01111;
}

.marquee-container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
  height: 100px;
}

.marquee {
  font-family: "BenzinExtrabold";
  font-size: 50px;
  color: white;
  text-shadow: 3px 3px #000000;
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  will-change: transform;
}

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.items__tee {
  display: inline;
  text-align: center;
  flex-basis: 50%;
}

.items__text {
  display: inline;
  text-align: left;
  flex-basis: 50%;
  font-family: "BenzinSemibold";
}

.nameprice {
  display: flex;
  align-items: center;
  margin-bottom: 3vh;
  margin-top: 12vh;
  width: 80%;
  background-color: #000000;
}

.name {
  font-family: "BenzinSemibold";
  font-size: 2vw;
  color: #ffffff;
  flex-basis: 80%;
}

.price {
  font-family: "BenzinSemibold";
  font-size: 1.1vw;
  color: #ffffff;
  flex-basis: 20%;
  text-align: right;
}

.info {
  display: inline-block;
  width: 80%;
  color: #ffffff;
  font-family: "BenzinSemibold";
  background-color: #000000;
  margin-bottom: 3vh;
}

.size,
.details {
  font-size: 3vw;
}

.size-info,
.details-info {
  font-size: 1.2vw;
}

.orderpred {
  display: inline-block;
  width: 80%;
  text-align: center;
  vertical-align: middle;
}

.button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  background-color: #000000;
  height: 7vh;
  margin-bottom: 1vh;
}

.order {
  display: inline;
  width: 100%;
  color: #ffae00;
  font-family: "BenzinSemibold";
  font-size: 2.5vw;
}

.pred {
  display: inline-block;
  width: 80%;
  color: #ffffff;
  font-size: 0.7vw;
  text-shadow:
    2px 2px 5px #000,
    -2px -2px 5px #000,
    2px -2px 5px #000,
    -2px 2px 5px #000;
}

.menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  width: 100vw;
  height: 100px;
  font-family: "BenzinExtrabold";
  font-size: 4vw;
  color: white;
  text-align: center;
  background-color: #000;
}

.items__img {
  width: 40%;
  display: none;
}

.active {
  display: inline;
}

.content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media (max-width: 900px) {
  .items {
    margin-top: 42vh;
    margin-bottom: 7vh;
  }

  .marquee-container {
    height: 50px;
  }

  .marquee {
    font-size: 25px;
  }

  .items {
    flex-direction: column;
  }

  .items__text {
    text-align: center;
  }

  .items__img {
    width: 90%;
  }

  .nameprice {
    margin-bottom: 1vh;
    margin-top: 0vh;
    margin-left: auto;
    margin-right: auto;
  }

  .name {
    font-size: 4vw;
    text-align: left;
  }

  .price {
    font-size: 2.2vw;
  }

  .info {
    margin-bottom: 1vh;
    text-align: left;
  }

  .size,
  .details {
    font-size: 6vw;
  }

  .size-info,
  .details-info {
    font-size: 3vw;
  }

  .button {
    height: 5vh;
    margin-bottom: 0.1vh;
  }

  .order {
    font-size: 5vw;
  }

  .pred {
    display: inline-block;
    width: 80%;
    color: #ffffff;
    font-size: 2vw;
    text-shadow:
      2px 2px 5px #000,
      -2px -2px 5px #000,
      2px -2px 5px #000,
      -2px 2px 5px #000;
  }

  .menu {
    height: 40px;
    font-size: 4vw;
  }
}

.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.disclaimer-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  height: 30%;
  transform: translate(-50%, -50%);
  background: black;
  color: white;
  padding: 20px;
  border: 2px solid white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 90%;
  max-width: 750px;
  text-align: center;
  font-family: "BenzinSemibold";
  font-size: 14px;
  overflow: hidden;
}

.modal-content {
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.proceed-button {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  font-family: "BenzinSemibold";
  font-size: 14px;
  cursor: not-allowed;
  opacity: 0.5;
  margin-top: 20px;
}

.proceed-button:enabled {
  cursor: pointer;
  opacity: 1;
}

.modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  font-family: "Courier New", Courier, monospace;
  cursor: pointer;
  line-height: 1;
  height: 32px;
  display: flex;
  align-items: center;
  z-index: 1002;
}

.language-dropdown {
  background-color: #000;
  color: white;
  border: 0.3px solid #fff;
  padding: 4px 10px;
  font-size: 13px;
  font-family: "BenzinSemibold";
  cursor: pointer;
  line-height: 1;
  height: 32px;
  box-sizing: border-box;
}

.language-dropdown option {
  background-color: #333;
  color: white;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.modal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
