:root {
  --primary: #32CD32; /* Lime Green */
  --primary-dark: #228B22;
  --secondary: #FFFFFF;
  --bg-dark: #0A120A;
  --bg-light: #F4FAF4;
  --text-main: #1A1F1A;
  --text-muted: #5C635C;
  --border-color: rgba(50, 205, 50, 0.15);
  --card-bg: #ffffff;
  --radius-lg: 24px;
  --radius-md: 12px;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 100px 0;
}

/* Logo Component */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3));
}

.logo-text {
  text-transform: uppercase;
  color: var(--text-main);
}

.logo-text span {
  color: var(--primary);
}

/* Header/Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(244, 250, 244, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.7;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(50, 205, 50, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(50, 205, 50, 0.1);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 5.5rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80vh;
  background: #E8F5E9;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-placeholder {
  width: 80%;
  height: 80%;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 20px 40px 80px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: 'ECO-FRIENDLY ESSENTIALS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(50, 205, 50, 0.05);
  white-space: nowrap;
  font-weight: 900;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--card-bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-muted);
}

/* Products Section */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.product-image {
  height: 380px;
  background: #f8fcf8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-info {
  padding: 24px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.product-price {
  font-weight: 700;
  color: var(--text-main);
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Floating Elements */
.leaf-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeInUp 1s ease forwards;
}

@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero p {
    margin: 0 auto 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
