:root {
  /* Color Palette - Natural & Organic */
  --coir-deep: #4A3728;
  --coir-mid: #8B5E3C;
  --coir-light: #BC8F62;
  --eco-green: #5D7A5C;
  --eco-pale: #F4F1EA;
  --accent-gold: #D4AF37;
  --text-dark: #2C241E;
  --text-muted: #6D5D50;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--eco-pale);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header/Nav */
.nav {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(74, 55, 40, 0.1);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coir-deep);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Packaging Layout */
.packaging-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  align-items: center;
}

/* The "Cover" / Card Design */
.packaging-card {
  position: relative;
  background: #fff;
  aspect-ratio: 4/5;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(74, 55, 40, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #E5E1D8;
}

.card-texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://www.transparenttextures.com/patterns/cardboard-flat.png");
  opacity: 0.4;
  pointer-events: none;
}

.packaging-header {
  padding: var(--space-lg);
  text-align: center;
  z-index: 1;
}

.brand-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coir-mid);
  margin-bottom: var(--space-xs);
  display: block;
}

.product-title {
  font-size: 2.5rem;
  color: var(--coir-deep);
  margin-bottom: var(--space-xs);
}

.product-subtitle {
  font-style: italic;
  color: var(--eco-green);
  font-size: 1.1rem;
}

.packaging-visual {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
  position: relative;
}

.scrubber-preview {
  width: 70%;
  aspect-ratio: 1/1;
  background: var(--coir-light);
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.2), 10px 20px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.coir-fibers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(74, 55, 40, 0.2) 5px, rgba(74, 55, 40, 0.2) 10px),
    repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(74, 55, 40, 0.2) 5px, rgba(74, 55, 40, 0.2) 10px);
}

.packaging-footer {
  padding: var(--space-lg);
  background: var(--coir-deep);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}

.eco-badges {
  display: flex;
  gap: var(--space-sm);
}

.badge-item {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  text-align: center;
  padding: 5px;
}

.product-specs {
  text-align: right;
  font-size: 0.8rem;
}

/* Product Info Section */
.info-section {
  padding-right: var(--space-xl);
}

.tagline {
  color: var(--eco-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  display: block;
}

.main-heading {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--coir-deep);
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.features-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.icon-check {
  color: var(--eco-green);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--coir-deep);
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s;
}

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

/* Placeholder for Images */
.placeholder-image {
  background: #ddd;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Decorative Elements */
.leaf-deco {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

footer {
  background: #EBE7DF;
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(74, 55, 40, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand h4 {
  margin-bottom: var(--space-sm);
  color: var(--coir-deep);
}

/* Feature Section */
.feature-showcase-title {
  font-size: 2.5rem; 
  color: var(--coir-deep); 
  margin-bottom: var(--space-md);
  text-align: center;
  margin-top: var(--space-2xl);
}

.feature-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: var(--space-lg); 
  margin-top: var(--space-xl);
}

.feature-card {
  background: white; 
  padding: var(--space-lg); 
  border-radius: 8px; 
  border: 1px solid #E5E1D8;
  text-align: center;
}

.feature-card-icon {
  width: 48px; 
  height: 48px; 
  background: var(--eco-pale); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto var(--space-sm) auto;
}

.feature-card p {
  color: var(--text-muted); 
  font-size: 0.95rem; 
  margin-top: var(--space-sm);
}

/* Newsletter */
.newsletter-form {
  display: flex; 
  gap: 0;
}

.newsletter-input {
  padding: 0.8rem; 
  border: 1px solid #ccc; 
  border-radius: 4px 0 0 4px; 
  border-right: none; 
  width: 100%;
}

.newsletter-btn {
  padding: 0.8rem 1.2rem; 
  background: var(--eco-green); 
  color: white; 
  border: none; 
  border-radius: 0 4px 4px 0; 
  cursor: pointer;
}

.footer-copy {
  margin-top: var(--space-xl); 
  padding-top: var(--space-md); 
  border-top: 1px solid rgba(74, 55, 40, 0.05); 
  text-align: center; 
  font-size: 0.8rem; 
  color: var(--text-muted);
}

.footer-links-list {
  list-style: none; 
  font-size: 0.9rem; 
  color: var(--text-muted);
}

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

.footer-links-list a {
  text-decoration: none; 
  color: inherit;
}

.footer-brand-desc {
  color: var(--text-muted); 
  font-size: 0.9rem; 
  max-width: 300px;
}

@media (max-width: 768px) {
  .packaging-showcase {
    grid-template-columns: 1fr;
  }
  
  .main-heading {
    font-size: 2.5rem;
  }
  
  .info-section {
    padding-right: 0;
    order: 2;
  }
  
  .packaging-card {
    order: 1;
  }
}
