* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #06110b, #0d1f15, #153727);
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.24;
  z-index: -1;
}

.shape1 {
  width: 260px;
  height: 260px;
  background: #39ff88;
  top: 50px;
  left: -60px;
}

.shape2 {
  width: 320px;
  height: 320px;
  background: #00d4ff;
  bottom: 50px;
  right: -80px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(18px);
}

.logo {
  font-size: 28px;
  font-weight: 800;
}

.logo span {
  color: #39ff88;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #39ff88;
}

.nav-login {
  background: linear-gradient(135deg, #39ff88, #17d46b);
  color: #082612 !important;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
}

.hero {
  min-height: 92vh;
  position: relative;
  background: url('https://images.unsplash.com/photo-1502741338009-cac2772e18bc?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1s ease;
}

.tag,
.section-title p,
.about-box p:first-child {
  color: #8dffb4;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero h1 span {
  color: #39ff88;
}

.hero-content p {
  color: #e3f7ea;
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 80px 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2,
.about-box h2 {
  color: #39ff88;
  font-size: 38px;
}

.card-container,
.products {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.card,
.product,
.about-box,
.cart-box,
.contact-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.card,
.product {
  width: 260px;
  padding: 18px;
  transition: 0.35s ease;
  transform-style: preserve-3d;
}

.card:hover,
.product:hover {
  transform: translateY(-10px) scale(1.02) rotateX(4deg) rotateY(-4deg);
}

.card img,
.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.card h3,
.product h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.card p,
.about-box p,
.contact-box p,
#cart-total,
#cart-items li,
.product span {
  color: #ddf7e6;
}

.card-actions,
.product-actions,
.cart-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

button,
.btn,
.contact-btn {
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.btn:hover,
.contact-btn:hover {
 button:hover {
  box-shadow: 0 0 15px rgba(93, 255, 57, 0.6);
}
}

button,
.btn,
.checkout-btn,
.contact-btn {
  background: linear-gradient(135deg, #39ff88, #17d46b);
  color: #082612;
}

.buy,
.btn-outline,
.clear-btn {
  background: linear-gradient(135deg, #ffd86b, #f39c12);
  color: #2e1d00;
}

.about-section {
  background: url('images/mango1 (2).png') no-repeat center/cover;
}

.about-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  background: rgba(0,0,0,0.56);
  text-align: center;
}

.cart-box {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 28px;
}

#cart-items {
  margin: 18px 0;
  padding-left: 20px;
}

.contact-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 60px 20px;
  }

  .card,
  .product {
    width: 100%;
    max-width: 360px;
  }
}
:root {
  --primary-green: #2ecc71;
  --dark-bg: #0f1a1a;
  --glass-bg: rgba(255, 255, 255, 0.05);
}

body {
  background-color: var(--dark-bg);
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

/* Glassmorphism Card Effect */
.login-card, .product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.highlight {
  color: var(--primary-green);
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.login-btn {
  background: var(--primary-green);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
.hero {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: opacity 2s ease-in-out;
}
  .footer { text-align: center; padding: 20px; font-size: 0.8rem; color: #b2bec3; }
