:root {
  --primary-color: #198754;
  --secondary-color: #2b3035;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --accent-gradient: linear-gradient(90deg, #198754 0%, #20c997 100%);
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: #fcfcfc;
  overflow-x: hidden;
  cursor: pointer; /* Makes entire body feel like a button */
  user-select: none; /* Prevents text selection which interferes with clicking */
}

/* Page-wide interactivity */
section,
header,
footer {
  transition: background-color 0.3s ease;
}

section:hover {
  background-color: rgba(0, 0, 0, 0.02) !important;
}

/* Typography Enhancements */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(43, 48, 53, 0.95) !important;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #198754 !important;
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  padding: 100px 0;
  background: var(--bg-gradient);
}

.hero-img-container img {
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease;
}

.floating-animation {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Features */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eafff5;
  border-radius: 20px;
}

/* Product Cards */
.product-card {
  transition: all 0.3s ease;
  border: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.product-img-box {
  overflow: hidden;
  height: 350px;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.1);
}

/* Buttons */
.btn-success {
  background: var(--accent-gradient);
  border: none;
  font-weight: 600;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(25, 135, 84, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    text-align: center;
  }

  .display-3 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .product-img-box {
    height: 280px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .display-3 {
    font-size: 1.8rem;
  }

  .feature-card {
    margin-bottom: 10px;
  }
}

/* Utility */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}