.store_features {
    display: grid;gap: 60px;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    position: relative;
}

.intertwined {
  top: -20px;
  margin-bottom: 0;
}

.store_features .feature.right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.store_features .feature.left {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
}

.store_features .feature.top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.store_features .feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.store_features .feature .details h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--title_color);
}

.store_features .feature .details p {
  font-size: 13px;
  font-weight: 400;
  margin-top: 8px;
  color: var(--desc_color);
}
.video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.video-poster.hidden {
  opacity: 0;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .store_features {
    gap: 30px;
    width: 90%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .store_features {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    width: 90%;
    padding: 30px;
  }
  .intertwined {
    top: -10px;
  }
}