body {
  font-family: Montserrat, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
  user-select: none;
}
#my-locker {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
#custom-heading {
  background: #4b24cb;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer; /* Added for clickability */
}
#my-locker-body-offers-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}
#my-locker-body-offers-list a:hover {
  background: #f3f3f3;
}
.mobile-image {
  flex: 0 0 60px;
  text-align: center;
}
.mobile-image img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.mobile-description {
  flex: 1;
  padding: 0 12px;
}
.mobile-description span {
  font-weight: bold;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.mobile-description font {
  font-size: 13px;
  color: #555;
}
.stars {
  margin-top: 5px;
  color: #FFD700;
  font-size: 13px;
}
.mobile-button {
  flex: 0 0 auto;
}
.mobile-button button {
  background: #4b24cb;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
.wp-block-embed {
  padding: 20px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed__wrapper {
  position: relative;
  pointer-events: auto; /* Iframe ke controls ke liye */
}
.wp-block-embed__wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 23%;
  z-index: 1; /* Shadow ke neeche, iframe ke upar */
  pointer-events: all; /* Clicks ko block karega */
}
@media(max-width:1200px) {
  #my-locker {
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
  #custom-heading {
    font-size: 14px;
    padding: 12px;
  }
  .mobile-description span {
    font-size: 14px;
  }
  .mobile-description font {
    font-size: 12px;
  }
  .mobile-button button {
    padding: 6px 12px;
    font-size: 13px;
  }
  .wp-block-embed {
    padding: 10px;
  }
}