/* ===== SIMPLE COFFEE BUTTON ===== */

.coffee-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1a56db 0%, #c41e3a 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  border: none;
  outline: none;
}

.coffee-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.4);
  background: linear-gradient(135deg, #1e429f 0%, #dc2626 100%);
  text-decoration: none;
  color: white;
}

.coffee-button:active {
  transform: translateY(0);
}

.coffee-button:focus {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}

.coffee-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.coffee-text {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .coffee-button {
    bottom: 16px;
    right: 16px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .coffee-icon {
    width: 18px;
    height: 18px;
  }

  .coffee-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .coffee-button {
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
  }

  .coffee-icon {
    width: 16px;
    height: 16px;
  }

  .coffee-text {
    font-size: 12px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .coffee-button {
    transition: none;
  }

  .coffee-button:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .coffee-button {
    display: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .coffee-button {
    background: #000;
    border: 2px solid #fff;
  }

  .coffee-button:hover {
    background: #333;
  }
}
