.discount-grid {
  position: relative;
  margin-top: 50px;
  width: 100%;
  height: 88vh;
  overflow: hidden;
}

.discount-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-discount {
  position: absolute;
  top: 51%;
  right: 20px;
  transform: translateY(-50%);
  width: 440px;
  max-width: calc(100% - 40px);
  min-height: 60vh;
  background-color: #ffffff;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-discount h6 {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 105px;
  text-align: center;
  font-weight: 400;
  font-family: "Monserrat";
}

.card-discount h1 {
  font-size: 58px;
  line-height: 0.95;
  color: #1c1c1c;
  margin-bottom: 75px;
  text-align: center;
  font-weight: 500;
}

.card-discount p {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  text-align: center;
  margin-bottom: 50px;
}

.discount-btn {
  align-self: center;
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  padding: 12px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: white;
  transition: all 0.25s ease;
}

.discount-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.discount-btn span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background-color: #1f2a1f;
  color: white;
  font-size: 18px;
}

/* TABLET */
@media (max-width: 992px) {
  .discount-grid {
    height: 75vh;
  }

  .card-discount {
    width: 360px;
    min-height: auto;
    padding: 30px 25px;
    right: 15px;
  }

  .card-discount h6 {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 45px;
  }

  .card-discount h1 {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .card-discount p {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .discount-grid {
    height: auto;
    min-height: 100vh;
  }

  .discount-grid video {
    height: 100vh;
  }

  .card-discount {
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 340px;
    padding: 105px 20px;
    min-height: auto;
  }

  .card-discount h6 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }

  .card-discount h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1;
  }

  .card-discount p {
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .discount-btn {
    padding: 10px 14px;
    font-size: 13px;
    gap: 10px;
  }

  .discount-btn span {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}