:root {
    --bg-main: #fbf9f5;
    --surface-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --brand-dark: #12281a;
    --brand-green: #1e4d2b;
    --brand-green-hover: #13331c;
    --brand-warm: #8a4b20;
    --border-color: #d1d5db;
    --focus-ring: #005fb8;
    --white: #ffffff;
    --error-red: #b91c1c;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-green); font-weight: 600; transition: color 0.2s ease; }
a:hover { color: var(--brand-green-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

header {
    background-color: var(--surface-card);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { font-size: 1.8rem; font-weight: 800; color: var(--brand-dark); text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav a { font-weight: 700; color: var(--text-primary); text-decoration: none; }
nav a:hover { color: var(--brand-green); }

.hero {
    position: relative; text-align: center; background-color: var(--brand-dark);
    color: var(--white); padding: 4.5rem 1.5rem; display: flex; flex-direction: column;
    align-items: center; overflow: hidden;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(18, 40, 26, 0.4); z-index: 1; }
.hero-video { width: 100%; max-width: 800px; border-radius: 8px; position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; color: var(--white); }

.products { padding: 2rem 5% 4rem 5%; text-align: center; }

.order-instructions {
    background-color: var(--surface-card);
    border-left: 5px solid var(--brand-warm);
    padding: 1.5rem;
    margin: 0 auto 2.5rem auto;
    max-width: 800px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.shopify-collection-container {
    background: var(--surface-card); padding: 2.5rem; border-radius: 10px;
    border-top: 5px solid var(--brand-green); max-width: 1200px; margin: 0 auto 3rem auto;
}
.local-catalog { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.catalog-item { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 8px; padding: 1.5rem; text-align: left; display: flex; flex-direction: column; }
.catalog-item h4 { color: var(--brand-dark); font-size: 1.25rem; }
.scent-list { background-color: var(--surface-card); border-left: 3px solid var(--brand-green); padding: 1rem; font-size: 0.9rem; margin-bottom: 1.5rem; }

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Bulk Discount Small Print */
.bulk-discount {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-form { max-width: 600px; margin: 0 auto 2.5rem auto; background-color: var(--surface-card); padding: 2.2rem; border-radius: 8px; border: 1px solid var(--border-color); text-align: left; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem; border: 2px solid var(--border-color); border-radius: 6px; font-size: 1.05rem; }
.honey-field { display: none !important; }

.submit-btn {
    background-color: var(--brand-green); color: var(--white); border: none;
    padding: 1rem 2rem; font-size: 1.1rem; font-weight: 700; border-radius: 6px;
    cursor: pointer; width: 100%; transition: background-color 0.2s ease;
}
.submit-btn:hover { background-color: var(--brand-green-hover); }

@media (max-width: 768px) { nav ul { display: none; } }

/* Center the Footer and Contact Section */
#contact {
    padding: 4rem 5%;
    text-align: center;
}

.footer-info {
    max-width: 800px;
    margin: 0 auto;
}