/* Store — Integrations */

/* ============================================
   STORE INTEGRATIONS & PAYMENT BADGES
   ============================================ */
.store-integrations {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.integrations-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0 0 var(--space-4) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integrations-title i {
  opacity: 0.8;
}

.integration-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}

.integration-badge i {
  font-size: var(--text-lg);
}

.integration-badge span {
  white-space: nowrap;
}

/* WhatsApp Badge */
.integration-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-color) 0%, var(--whatsapp-dark) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* PayPal Badge */
.integration-paypal {
  background: linear-gradient(135deg, #003087 0%, #009cde 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.3);
}

/* Mercado Pago Badge */
.integration-mercadopago {
  background: linear-gradient(135deg, #00b1ea 0%, #009ee3 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 177, 234, 0.3);
}

/* Cash Badge */
.integration-cash {
  background: linear-gradient(135deg, var(--success-color) 0%, var(--success-dark) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.integration-badge:hover {
  transform: translateY(-2px) scale(1.02);
}


/* Responsive adjustments for integrations */
@media (max-width: 480px) {
  .store-integrations {
    padding: var(--space-4);
    margin-top: var(--space-5);
  }

  .integration-badges {
    gap: var(--space-2);
  }

  .integration-badge {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }

  .integration-badge i {
    font-size: var(--text-base);
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  .contact-link.whatsapp-prominent {
    padding: 14px var(--space-6);
    font-size: var(--text-sm);
  }
}

