:root {
  --primary: #1E3A8A;       
  --secondary: #2563EB;     
  --accent: #ef4444;       
  --bg-slate: #f8fafc;      
  --text-main: #0f172a;     
  --text-muted: #64748b;    
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
  --wa-green: #25d366;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-main);
  background: var(--bg-slate);
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header */
.shop-header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Buttons */
.btn-outline {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-primary {
  padding: 0.8rem 2rem;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary);
  box-shadow: 0 10px 25px -3px rgba(30, 58, 138, 0.6);
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, rgba(30,58,138,0.02) 0%, transparent 100%);
  animation: fadeIn 1.2s ease-out forwards;
}

.badge {
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.subtext {
  max-width: 600px;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
}

/* Floating WhatsApp (Global Config matching) */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--wa-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.tooltip {
  position: absolute;
  right: 75px;
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transform: translateX(10px);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Floating Background Icons */
.bg-icons i {
  position: absolute;
  color: rgba(37, 99, 235, 0.04);
  z-index: -1;
}

.float-1 { font-size: 20rem; top: 10%; right: -5%; animation: floatY 8s ease-in-out infinite; }
.float-2 { font-size: 15rem; bottom: 10%; left: -2%; animation: floatY 10s ease-in-out infinite reverse; }
.float-3 { font-size: 10rem; top: 40%; left: 15%; animation: floatY 12s ease-in-out infinite 2s; }

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .subtext { font-size: 1.1rem; }
  .float-1 { font-size: 12rem; right: -10%; }
  .float-2 { font-size: 10rem; left: -10%; }
  .shop-header { padding: 1.5rem; }
  .btn-outline { padding: 0.6rem 1rem; font-size: 0.9rem; }
}
