/* custom-light.css - overrides to give a light theme */
:root {
  --brand-green: #1f2937;
  --bg-light: #f9f9f9;
  --panel: #ffffff;
  --muted: #6b7280;
  --text: #1f2937;
  --border-light: #e5e7eb;
}

html, body {
  background: var(--bg-light);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

/* Header */
.site-header.dark-header {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,1));
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand-name {
  font-weight: 700;
  color: var(--text);
  margin-left: 8px;
}

.site-nav a {
  color: var(--muted);
  margin: 0 12px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
}

/* Hero Section */
.hero-section.hero-dark {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  border-bottom: 1px solid var(--border-light);
}

.hero-copy h1 {
  font-size: 2.6rem;
  color: var(--text);
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.btn-cta {
  background: var(--brand-green);
  color: #fff;
  border: none;
}

.btn-cta:hover {
  background: #c9c6c1;
}

.btn-primary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
}

.btn-primary.add-to-cart {
  background: #c9c6c1;
  color: #fff;
  border: none;
}

/* Sections & Grids */
.dark-section {
  padding: 40px 0;
}

.product-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card, .feature-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

/* Product Pricing */
.price {
  color: var(--brand-green);
  font-weight: 700;
  margin-top: 6px;
}

/* Footer */
.site-footer.dark-footer {
  background: #f3f4f6;
  color: var(--muted);
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 40px;
}

/* Mini Cart */
.mini-cart {
  background: var(--panel);
  padding: 16px;
  border-radius: 8px;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mini-cart h3 {
  margin: 0 0 8px 0;
}

.mini-cart-items {
  max-height: 220px;
  overflow: auto;
  color: var(--muted);
  margin-bottom: 8px;
}

.mini-cart-total {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

/* Inputs */
.input, input, textarea {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border-light);
  padding: 12px;
  border-radius: 8px;
}

/* Cart Trigger */
.cart-trigger {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
}

.cart-count {
  background: var(--brand-green);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  color: #fff;
}
