/* Payment test styles for card company review */
/* This file can be easily removed after review completion */

.payment-methods {
  display: none;
  margin-top: 16px;
  gap: 8px;
}

.payment-methods.show {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.payment-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  touch-action: manipulation;
  transition: all 0.2s ease;
}

.payment-btn:active {
  background: #222;
  border-color: #555;
  transform: scale(0.98);
}

.payment-btn:hover {
  background: #222;
  border-color: #555;
}

/* Test controls (can be hidden in production) */
.test-controls {
  position: fixed;
  top: 100px;
  right: 20px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  color: #ff6b6b;
  z-index: 1001;
  max-width: 200px;
}

.test-controls button {
  background: #ff4757;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  margin: 2px;
  cursor: pointer;
  font-size: 11px;
}

.test-controls button:hover {
  background: #ff3742;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  .payment-methods.show {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .test-controls {
    top: 80px;
    right: 10px;
    font-size: 11px;
    padding: 8px;
  }
}

/* Payment notification specific to test */
.payment-test-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: linear-gradient(145deg, #ff9f43, #ff6348);
  border: 1px solid #ff7675;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  z-index: 1000;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}