
    .full-page {
      height: 100vh;
      width: 100vw;
      overflow: hidden;
    }

    .hero {
      background: url('https://imgs.search.brave.com/9mIwC0X2WROgtefirtpXrrO3THDGqOtEcf4nMCq0fdE/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9zdGF0/aWMudmVjdGVlenku/Y29tL3N5c3RlbS9y/ZXNvdXJjZXMvdGh1/bWJuYWlscy8wNTEv/NDkwLzgxMy9zbWFs/bC9sZXR0ZXItcy1m/b250LW9yYW5nZS1m/cmFtZS11cHBlcmNh/c2UtZm9yLWNoaWxk/cmVuLXRveS1sZWFy/bmluZy1vbi1zb2xp/ZC1iYWNrZ3JvdW5k/LXBob3RvLkpQRw') no-repeat center center/cover;
      height: 100%;
      color: white;
      border-radius: 10px;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: end;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 500px;
      margin-top: 1rem;
    }

    .shop-btn {
      margin-top: 1.5rem;
      background-color: #26b05c;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 30px;
      font-weight: bold;
      width: 150px;
    }

    .product-card {
      height: 100px;
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      color: white;
      display: flex;
      align-items: flex-end;
      padding: 0.75rem;
    }

    .product-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

    .product-content {
      position: relative;
      z-index: 2;
    }

    .product-content .brand {
      font-size: 0.9rem;
    }

    .product-content .title {
      font-size: 1.1rem;
      color: yellow;
    }

    @media (min-width: 992px) {
      .product-card {
        height: calc((100vh - 3rem) / 2 - 0.75rem);
      }
    }
    
    
