/* Buttons row on product page */
.gg2gm-buttons-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.gg2gm-btn {
  flex: 1; /* Make both buttons equal width */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.gg2gm-btn .gg2gm-btn-icon { display: inline-block; }

.gg2gm-add-to-collection {
  background: #404040;
  color: #fff;
}

.already-saved {
  background: #2f855a;
  color: #fff;
}

.gg2gm-purchase-now {
  background: #eb7d3d;
  color: #fff !important;
	text-decoration:none!important;
}

.gg2gm-btn.is-loading { opacity: .85; }

/* Tiny spinner */
.gg2gm-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: gg2gm-spin .8s linear infinite;
}

@keyframes gg2gm-spin { to { transform: rotate(360deg) } }

/* Audio info row */
.gg2gm-audio-info {
  margin-top: 10px;
  background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: #000;
    font-size: 14px;
}
.gg2gm-audio-info .sep {
  margin: 0 8px;
  opacity: .6;
}

.gg2gm-btn .gg2gm-btn-icon
 {
    margin-top: 5px;
}
.gg2gm-audio-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.gg2gm-audio-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}
.gg2gm-icon {
  margin-right: 8px;
  font-size: 18px;
}
.gg2gm-audio-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.gg2gm-play-btn {
  background: #7e57c2 !important;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.3s;
}
.gg2gm-play-btn:hover {
  background: #5e35b1;
}
.gg2gm-waveform {
  flex-grow: 1;
  border-radius: 8px;
  height: 64px;
  overflow: hidden;
}

/* Saved list */
.gg2gm-saved-list {
  list-style: none; padding-left: 0; margin: 0;
}
.gg2gm-saved-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.gg2gm-saved-list .gg2gm-remove-item {
  background: transparent; color: #c00;
  border: 0; font-size: 20px; line-height: 1; cursor: pointer;
}

/* Thank-you redirect box */
.gg2gm-thankyou-redirect {
  margin: 20px 0; font-size: 16px; text-align: center;
  background: #f7f7f7; padding: 14px; border-radius: 6px;
}
