.hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 340px;
    padding: 24px 16px 40px;
    background-image: url("../img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    clip-path: ellipse(100% 100% at 50% 0);
    color: #fff;
  }
  
  .hero__title {
    text-align: center;
    font-size: 74px;
    margin: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
    transform: rotate(-5deg) skewX(-5deg);
  }
  
  .hero__price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-top: -12px;
    transform: rotate(-5deg) skewX(-5deg);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  }
  
  .hero__old-price {
    color: #ccc;
    text-decoration: line-through;
  }
  
  .hero__new-price {
    color: #5cb615;
    font-size: 42px;
    font-weight: 700;
  }
  
  .hero__badge {
    font-size: 18px;
    font-weight: 700;
  }
  
  .hero__delivery {
    width: 220px;
    margin: -8px auto 0;
    position: relative;
    transform: rotate(-5deg) skewX(-5deg);
  }
  
  .hero__delivery-box {
    background: #5cb615;
    border-radius: 16px;
    padding: 12px 20px;
    text-align: center;
  }
  
  .hero__delivery-box strong,
  .hero__delivery-box span {
    display: block;
  }
  
  .hero__emoji {
    position: absolute;
    font-size: 38px;
  }
  
  .hero__emoji--left {
    left: -20px;
    top: -16px;
  }
  
  .hero__emoji--right {
    right: -16px;
    bottom: -8px;
  }
  
  .intro {
    text-align: center;
    max-width: 900px;
    margin: 28px auto 20px;
    padding: 0 20px;
  }
  
  .intro h2 {
    margin: 0 0 14px;
  }
  
  .intro p {
    margin: 0;
    color: #555;
    font-size: 16px;
  }
  
  .legal {
    text-align: center;
    padding: 16px 20px 30px;
    font-size: 12px;
    color: #777;
  }
  
  .legal a {
    color: #019df4;
  }
  
  @media (min-width: 800px) {
    .hero {
      grid-template-columns: 25% auto auto 25%;
      grid-template-rows: 25% auto auto 25%;
      min-height: 320px;
      padding: 0;
    }
  
    .hero__title {
      grid-column: 2;
      grid-row: 2;
      font-size: 90px;
      align-self: end;
    }
  
    .hero__price {
      grid-column: 2;
      grid-row: 3;
      align-self: start;
      margin-top: 0;
    }
  
    .hero__delivery {
      grid-column: 3;
      grid-row: 2 / 4;
      align-self: center;
    }
  }