/* Google Fonts - Outfit for premium feel */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
  /* Dynamic, vibrant color palette */
  --primary: #ff2a5f; /* Energetic pinkish red */
  --primary-hover: #e01f4c;
  --secondary: #ff9900; /* Amazon-like orange */
  --accent: #2c003e; /* Deep rich purple for contrast */
  --bg-color: #f7f9fc;
  --surface: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.05);
  --shadow-lg: 0 15px 30px rgba(255, 42, 95, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  border-radius: var(--radius-md);
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }
.mt-4 { margin-top: 40px; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: white;
}
