/* Multi-store affiliate buttons */
.affiliate-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-affiliate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-affiliate .btn-icon {
  font-size: 1.1em;
}

/* Amazon - Orange/Yellow (Priority 1 - prominent) */
.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #FF8C00);
  color: #111;
  box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}
.btn-amazon:hover {
  background: linear-gradient(135deg, #FFa500, #FF9900);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
}

/* AliExpress - Red (Priority 2) */
.btn-aliexpress {
  background: linear-gradient(135deg, #E62E04, #D41B00);
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
}
.btn-aliexpress:hover {
  background: linear-gradient(135deg, #FF3B10, #E62E04);
  transform: translateY(-1px);
}

/* Admitad / More stores - Teal/Green (Priority 3) */
.btn-admitad {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
}
.btn-admitad:hover {
  background: linear-gradient(135deg, #10B981, #059669);
  transform: translateY(-1px);
}

/* Product card adjustments */
.product-card .affiliate-buttons {
  margin-top: auto;
}

/* Responsive: on larger screens, show AliExpress and Admitad side by side */
@media (min-width: 480px) {
  .affiliate-buttons {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .btn-amazon {
    flex: 1 1 100%;
  }
  .btn-aliexpress,
  .btn-admitad {
    flex: 1 1 calc(50% - 0.25rem);
  }
}

/* Affiliate disclosure */
.affiliate-disclosure {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}
