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

:root {
  --emerald-primary: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #6ee7b7;
  --gray-dark: #1f2937;
  --gray-medium: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  color: var(--gray-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--emerald-primary);
}

.navbar-brand:hover {
  color: var(--emerald-dark);
}

.nav-link {
  color: var(--gray-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-primary);
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--emerald-primary);
  border-color: var(--emerald-primary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  color: var(--emerald-primary);
  border-color: var(--emerald-primary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--emerald-primary);
  border-color: var(--emerald-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--emerald-primary);
}

.content-section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--gray-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.rounded-lg {
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald-primary);
  font-weight: bold;
}

.format-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--emerald-primary);
}

.format-card h4 {
  color: var(--emerald-dark);
  margin-bottom: 0.5rem;
}

.disclaimer-box {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid var(--emerald-primary);
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

.products-section {
  padding: 4rem 0;
}

.category-filter {
  margin-bottom: 3rem;
}

.category-filter h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.collection-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.collection-desc {
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-tag {
  display: inline-block;
  background-color: var(--emerald-light);
  color: var(--emerald-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-tag.tag-mineral {
  background-color: #bfdbfe;
  color: #1e40af;
}

.product-tag.tag-blend {
  background-color: #fcd34d;
  color: #92400e;
}

.product-tag.tag-pack {
  background-color: #ddd6fe;
  color: #5b21b6;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.product-desc {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.ingredient-block {
  background: var(--gray-light);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.ingredient-block strong {
  color: var(--emerald-dark);
}

.routine-fit,
.format-info {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0.5rem;
}

.info-notice {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--emerald-primary);
  margin-top: 3rem;
}

.info-notice h4 {
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.value-card h4 {
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

.transparency-statement {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.transparency-statement h4 {
  color: var(--emerald-dark);
  margin-top: 1.5rem;
}

.transparency-statement ul {
  margin-bottom: 0;
}

.contact-info-box {
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-box h5 {
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 0.75rem;
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--gray-medium);
}

.thankyou-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  color: var(--emerald-primary);
}

.thankyou-actions {
  margin-top: 2rem;
}

.policy-section {
  padding: 3rem 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--emerald-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.disclaimer-notice {
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-primary) 100%);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.disclaimer-notice h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gray-dark);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-link {
  color: var(--emerald-light);
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--white);
}

.site-footer {
  background-color: var(--gray-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.site-footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--emerald-light);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--emerald-light);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-policy-link {
  color: var(--white);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: var(--emerald-light);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .hero-section,
  .content-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .footer-policy-link {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
