/* --- Digital Store Links Styling --- */
.digital-store-links {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #eaeaea;
}

.digital-store-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #333;
  text-align: center;
}

.digital-store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff !important; /* Force white text */
  transition: transform 0.2s, opacity 0.2s;
  min-width: 160px;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  text-decoration: none;
}

.store-btn--spotify {
  background-color: #1DB954;
}

.store-btn--apple {
  background-color: #000;
  border: 1px solid #333;
}

.store-btn--youtube {
  background-color: #FF0000;
}

.store-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-text small {
  font-size: 10px;
  opacity: 0.8;
  font-weight: 400;
  text-transform: uppercase;
}

.store-text strong {
  font-size: 14px;
  font-weight: 700;
}

/* Dark mode support if applicable */
.dark .digital-store-links {
  background: #1a1a1a;
  border-color: #333;
}
.dark .digital-store-title {
  color: #fff;
}
.dark .store-btn--apple {
  background-color: #fff;
  color: #000 !important;
}



.digital-store-embed {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  
 
  .digital-embed-youtube {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;

    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}

.store-btn--audiomack {
  background-color: #FFA200;
  color: #000 !important;
}