.irl-merch-section {
  padding-top: 50px;
  background-image: url('./images/49f1d2a6-b999-4bee-9c9a-c0a3d4bdb38c.webp');
  background-position: center;
  background-size: cover;
  height: 120vh;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

/* Overlay Layer */
.irl-merch-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* You can adjust the opacity or use a coffee tone */
  z-index: 1;
}

/* Keep content above the overlay */
.irl-merch-section > * {
  position: relative;
  z-index: 2;
}

  

.irl-merged-box {
    background-color: #906e49b6;
    border: 4px solid #000;
    border-radius: 20px;
    box-shadow: 5px 5px 0 #000;
    padding: 2rem;
    max-width: 500px;
    text-align: left;
    backdrop-filter: blur(10px);
  }
  
  .irl-list {
    list-style: none;
    padding: 0;
  }
  
  .irl-list li {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .irl-list li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #000;
  }
  
  .irl-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: 'Luckiest Guy', cursive;
    background-color: #4a9974;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    border: 4px solid #000;
    border-radius: 12px;
    box-shadow: 3px 3px 0 #000;
    transition: all 0.2s ease-in-out;
  }
  
  .irl-cta-btn:hover {
    background-color: #00552e;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
  }
  
  .irl-merch-img {
    width: 300px;
    height: auto;
    display: block;
  }
  

  @media (max-width:768px) {

    .irl-merch-section {
    height: 103% !important;
    }
  }