:root {
  --primary-color: #2ea75d;
  --primary-hover: #238b4b;
  --secondary-color: #3498db; /* Blue color replacing the red */
  --bg-color: #f4f7f6;
  --text-main: #2c3e50;
  --text-muted: #6c7a89;
  --card-bg: rgba(255, 255, 255, 0.93); /* slightly transparent white for cards */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --header-bg: rgba(255, 255, 255, 0.95);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  /* Solid colored background for the whole site */
  background-color: #e1f0e8;
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-group {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
}

.logo-badge {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.3s;
}

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

.header-cta-btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.header-cta-btn:hover {
  background: var(--primary-hover);
}

/* Sections */
.section-padding {
  padding: 100px 0 60px;
}

.light-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
  backdrop-filter: blur(5px);
}

/* Hero */
#hero {
  padding-top: 140px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 35px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(46, 167, 93, 0.3);
  transition: transform 0.2s, background 0.3s;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Typography */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Ingredients */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.ing-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e8e3;
}

.ing-header {
  background: var(--primary-color);
  padding: 15px;
}

.ing-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

.ing-body {
  padding: 25px;
  color: var(--text-main);
}

.usage-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.usage-icon {
  font-size: 2.5rem;
  margin-right: 20px;
}

/* Lifestyle */
.lifestyle-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}

.lifestyle-text {
  flex: 1;
}

.lifestyle-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.lifestyle-images {
  flex: 1;
  display: flex;
  gap: 15px;
}

.lifestyle-images img {
  width: 50%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Effects */
.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.effect-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.effect-card:hover {
  transform: translateY(-5px);
}

.effect-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Order */
.single-order-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.98);
}

.price-box {
  background: #fff8e1;
  color: #d35400;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 20px 0;
  display: inline-block;
}

.single-pack-box img {
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 100%;
}

.minimal-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 167, 93, 0.2);
}

.btn-order-submit {
  width: 100%;
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-order-submit:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.order-guarantee-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer & Modals */
footer {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.6);
}

.footer-info-box {
  background: #ffffff;
  border: 1px solid #e1e8e3;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.footer-col {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-btn-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal-btn {
  background: #f4f7f6;
  border: 1px solid #dce4e0;
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-legal-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .lifestyle-layout {
    flex-direction: column;
  }
  .lifestyle-images {
    width: 100%;
  }
}
