/* =========================================
   RESET
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body {
  font-family: 'Montserrat', sans-serif !important;
  color: #1e1d1d;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================================
   APP LAYOUT
========================================= */
.app {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

/* =========================================
   SHOP HEADER
========================================= */
.shop-header {
  margin-top: 180px;
  text-align: center;
}

.shop-header__title {
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 78px;
}

.shop-header__title span {
  font-weight: 300;
}

.shop-header__subtitle {
  color: rgba(3, 3, 3, 0.45);
  font-size: 24px;
  max-width: 600px;
  margin: 32px auto 0;
}

.shop-header__button {
  width: 240px;
  height: 78px;
  background: linear-gradient(257.5deg, #f96918 -7.46%, #ffb800 74.36%);
  box-shadow: 0 27px 64px -16px rgba(255, 184, 0, 0.64);
  border-radius: 8px;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin: 64px auto 0;
  display: block;
  transition: 0.2s;
}

.shop-header__button:hover {
  transform: scale(1.03);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: #f5f5f5;
  padding: 30px 0;
  margin-top: 60px;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(30, 29, 29, 0.6);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.footer__link:hover {
  color: #1e1d1d;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .shop-header {
    margin-top: 120px;
  }

  .shop-header__title {
    font-size: 48px;
    line-height: 58px;
  }

  .shop-header__subtitle {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .shop-header__title {
    font-size: 36px;
    line-height: 44px;
  }

  .shop-header__subtitle {
    font-size: 16px;
    margin-top: 16px;
  }

  .shop-header__button {
    width: 100%;
    height: 60px;
    margin-top: 30px;
  }

  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
    gap: 20px;
  }
}

.input {
  margin-bottom: 15px;
}

.input__element {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  padding: 18px;
  font-size: 16px;
  background-color: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #eee;
  font-weight: 400;
  transition: 0.2s;
}

.input__element:focus {
  outline: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
}

/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.check__wrapper {
  width: 480px;
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.check__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    208deg,
    rgba(252,204,1,0.15),
    rgba(255,53,0,0.15)
  );
}

.check__logo img {
  width: 60%;
  height: auto;
  display: block;
}

.submit-button {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(257.5deg, #f96918 -7.46%, #ffb800 74.36%);
  box-shadow: 0 15px 40px rgba(255,184,0,0.3);
  color: #fff;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}

.submit-button:hover {
  transform: scale(1.02);
}

.modal-close-button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: #f8f8f8;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}

.modal-close-button:hover {
  background-color: #ececec;
  transform: scale(1.05);
}