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

:root {
--forest: #1a4d2e;
--sage: #4f7942;
--cream: #faf8f3;
--terracotta: #c86b3c;
}

body {
font-family: 'Space Grotesk', sans-serif;
color: #2a2a2a;
line-height: 1.6;
font-size: 15px;
}

h1, h2, h3, h4 {
font-family: 'Sora', sans-serif;
font-weight: 600;
line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--forest);
color: white;
padding: 18px 0;
z-index: 9999;
display: none;
}

.privacy-popup.show { display: block; }

.privacy-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.privacy-actions {
display: flex;
gap: 12px;
}

.btn-accept {
background: var(--terracotta);
color: white;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-family: 'Space Grotesk', sans-serif;
transition: background 0.3s;
}

.btn-accept:hover { background: var(--sage); }

.btn-learn {
color: white;
text-decoration: underline;
font-size: 14px;
}

.header-unique {
background: white;
padding: 15px 0;
border-bottom: 1px solid #e5e5e5;
position: relative;
z-index: 100;
}

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

.logo {
font-family: 'Sora', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--forest);
text-decoration: none;
}

.menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: #2a2a2a;
margin: 4px 0;
transition: 0.3s;
}

.nav-menu {
display: flex;
gap: 30px;
}

.nav-menu a {
color: #2a2a2a;
text-decoration: none;
font-size: 15px;
transition: color 0.3s;
}

.nav-menu a:hover { color: var(--sage); }

.hero-mega {
position: relative;
padding: 80px 0;
background: var(--cream);
overflow: hidden;
}

.hero-bg-shape {
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
border-radius: 50%;
opacity: 0.05;
}

.hero-mega-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-label {
display: inline-block;
background: var(--forest);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
margin-bottom: 20px;
}

.hero-mega-text h1 {
color: var(--forest);
margin-bottom: 20px;
}

.hero-mega-text p {
font-size: 17px;
color: #555;
margin-bottom: 35px;
line-height: 1.7;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-bottom: 35px;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 2rem;
color: var(--terracotta);
font-family: 'Sora', sans-serif;
}

.stat-item span {
font-size: 13px;
color: #666;
}

.hero-mega-visual {
position: relative;
}

.hero-card {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-card img {
width: 100%;
height: auto;
display: block;
}

.hero-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: var(--terracotta);
color: white;
padding: 10px 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
}

.btn-primary {
display: inline-block;
background: var(--terracotta);
color: white;
padding: 14px 35px;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 15px;
font-family: 'Space Grotesk', sans-serif;
}

.btn-primary:hover {
background: var(--forest);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.why-choose {
padding: 80px 0;
background: white;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

.section-header h2 {
color: var(--forest);
margin-bottom: 12px;
}

.section-header p {
color: #666;
font-size: 16px;
}

.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 35px;
}

.why-item {
padding: 30px;
background: var(--cream);
border-radius: 12px;
border-left: 4px solid var(--terracotta);
}

.why-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--sage);
opacity: 0.3;
font-family: 'Sora', sans-serif;
margin-bottom: 10px;
}

.why-item h3 {
color: var(--forest);
margin-bottom: 12px;
}

.why-item p {
color: #555;
font-size: 14px;
line-height: 1.7;
}

.featured-collection {
padding: 80px 0;
background: var(--cream);
}

.featured-collection h2 {
text-align: center;
color: var(--forest);
margin-bottom: 50px;
}

.featured-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}

.featured-card {
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.featured-card:hover {
transform: translateY(-8px);
}

.featured-img {
height: 300px;
overflow: hidden;
}

.featured-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.featured-info {
padding: 30px;
}

.featured-info h3 {
color: var(--forest);
margin-bottom: 12px;
}

.featured-info p {
color: #555;
font-size: 14px;
margin-bottom: 20px;
line-height: 1.7;
}

.link-arrow {
color: var(--terracotta);
text-decoration: none;
font-weight: 500;
font-size: 14px;
}

.link-arrow:hover {
text-decoration: underline;
}

.story-section {
padding: 80px 0;
background: white;
}

.story-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
align-items: center;
}

.story-label {
display: inline-block;
color: var(--terracotta);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.story-text h2 {
color: var(--forest);
margin-bottom: 25px;
}

.story-text p {
color: #555;
margin-bottom: 20px;
line-height: 1.8;
}

.story-numbers {
display: grid;
grid-template-columns: 1fr;
gap: 25px;
}

.number-box {
background: var(--cream);
padding: 30px;
border-radius: 12px;
text-align: center;
}

.big-number {
font-size: 3rem;
font-weight: 700;
color: var(--terracotta);
font-family: 'Sora', sans-serif;
display: block;
margin-bottom: 8px;
}

.number-box p {
color: #555;
font-size: 14px;
margin: 0;
}

.testimonials-modern {
padding: 80px 0;
background: var(--cream);
}

.testimonials-modern h2 {
text-align: center;
color: var(--forest);
margin-bottom: 50px;
}

.testimonials-slider {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-modern {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.testimonial-modern p {
color: #555;
font-size: 14px;
line-height: 1.8;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
color: var(--forest);
font-size: 15px;
display: block;
margin-bottom: 4px;
}

.testimonial-author span {
color: #888;
font-size: 13px;
}

.process-section {
padding: 80px 0;
background: white;
}

.process-section h2 {
text-align: center;
color: var(--forest);
margin-bottom: 50px;
}

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.process-step {
text-align: center;
}

.step-icon {
width: 60px;
height: 60px;
background: var(--terracotta);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
margin: 0 auto 20px;
font-family: 'Sora', sans-serif;
}

.process-step h3 {
color: var(--forest);
margin-bottom: 12px;
}

.process-step p {
color: #555;
font-size: 13px;
line-height: 1.7;
}

.newsletter-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
}

.newsletter-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 40px;
align-items: center;
}

.newsletter-text h2 {
color: white;
margin-bottom: 15px;
}

.newsletter-text p {
color: rgba(255,255,255,0.9);
font-size: 16px;
}

.newsletter-form {
text-align: right;
}

.newsletter-section .btn-primary {
background: var(--terracotta);
}

.footer {
background: var(--forest);
color: white;
padding: 25px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
margin: 0;
font-size: 13px;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

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

@media (max-width: 992px) {
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
.hero-mega-content,
.story-content,
.newsletter-content {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
.why-grid,
.featured-grid {
grid-template-columns: 1fr;
}
.testimonials-slider {
grid-template-columns: repeat(2, 1fr);
}
.process-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.menu-toggle { 
display: flex;
z-index: 1001;
}
.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: none;
gap: 15px;
z-index: 1000;
}
.nav-menu.active { display: flex; }
.hero-mega { padding: 50px 0; }
.testimonials-slider,
.process-grid {
grid-template-columns: 1fr;
}
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-links { justify-content: center; }
h1 { font-size: 1.9rem; }
h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
.container { padding: 0 15px; }
h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
body { font-size: 14px; }
.hero-mega,
.why-choose,
.featured-collection,
.story-section,
.testimonials-modern,
.process-section,
.newsletter-section {
padding: 50px 0;
}
.hero-stats {
grid-template-columns: 1fr;
gap: 15px;
}
.stat-item strong { font-size: 1.5rem; }
.btn-primary { padding: 12px 25px; }
.privacy-content {
flex-direction: column;
align-items: flex-start;
}
.newsletter-form { text-align: center; }
}

@media (max-width: 360px) {
.logo { font-size: 1.2rem; }
h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
}


.products-showcase {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
}

.product-card-modern {
display: grid;
grid-template-columns: 400px 1fr;
gap: 40px;
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-img {
width: 100%;
height: 400px;
overflow: hidden;
}

.product-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-details {
padding: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.product-details h3 {
color: var(--forest);
margin-bottom: 15px;
font-size: 1.8rem;
}

.product-details p {
color: #555;
line-height: 1.8;
margin-bottom: 20px;
}

.product-meta {
display: flex;
gap: 20px;
margin-bottom: 25px;
}

.product-meta span {
font-size: 13px;
color: #888;
padding: 6px 14px;
background: var(--cream);
border-radius: 20px;
}

.product-footer-modern {
display: flex;
justify-content: space-between;
align-items: center;
}

.price-modern {
font-size: 2rem;
font-weight: 700;
color: var(--terracotta);
font-family: 'Sora', sans-serif;
}

@media (max-width: 992px) {
.product-card-modern {
grid-template-columns: 1fr;
}
.product-img {
height: 350px;
}
.product-details {
padding: 30px;
}
}

@media (max-width: 480px) {
.product-img {
height: 280px;
}
.product-details h3 {
font-size: 1.4rem;
}
.price-modern {
font-size: 1.6rem;
}
.product-footer-modern {
flex-direction: column;
gap: 15px;
align-items: stretch;
}
.product-footer-modern .btn-primary {
width: 100%;
text-align: center;
}
}


.contact-modern {
padding: 80px 0;
background: white;
}

.contact-layout {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 60px;
}

.contact-form-modern h2 {
color: var(--forest);
margin-bottom: 12px;
}

.contact-form-modern p {
color: #666;
margin-bottom: 30px;
}

.form-modern {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-row input,
.form-row textarea {
width: 100%;
padding: 14px;
border: 1px solid #ddd;
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
outline: none;
border-color: var(--sage);
}

.checkbox-modern {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 14px;
color: #555;
}

.checkbox-modern input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
width: auto;
}

.checkbox-modern a {
color: var(--terracotta);
}

.contact-info-modern {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-card-modern,
.hours-card-modern {
background: var(--cream);
padding: 30px;
border-radius: 12px;
}

.info-card-modern h3,
.hours-card-modern h3 {
color: var(--forest);
margin-bottom: 20px;
}

.info-detail {
margin-bottom: 20px;
}

.info-detail:last-child {
margin-bottom: 0;
}

.info-detail strong {
display: block;
color: var(--forest);
margin-bottom: 5px;
font-size: 14px;
}

.info-detail p {
color: #555;
font-size: 15px;
margin: 0;
}

.hours-modern {
display: flex;
flex-direction: column;
gap: 12px;
}

.hour-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #ddd;
font-size: 14px;
}

.hour-row:last-child {
border-bottom: none;
}

.hour-row span:first-child {
color: var(--forest);
font-weight: 500;
}

.hour-row span:last-child {
color: #666;
}

.map-modern {
padding: 80px 0;
background: var(--cream);
}

.map-modern h2 {
text-align: center;
color: var(--forest);
margin-bottom: 40px;
}

.map-wrapper {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-modern,
.error-modern {
padding: 100px 0;
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
background: var(--cream);
}

.thankyou-box,
.error-box {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-box h1,
.error-box h1 {
color: var(--forest);
margin-bottom: 20px;
}

.error-box h1 {
font-size: 5rem;
color: var(--terracotta);
}

.error-box h2 {
color: var(--forest);
margin-bottom: 15px;
}

.thankyou-box p,
.error-box p {
color: #555;
margin-bottom: 35px;
font-size: 16px;
line-height: 1.7;
}

.action-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

@media (max-width: 992px) {
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}
}

@media (max-width: 480px) {
.contact-modern,
.map-modern {
padding: 50px 0;
}
.thankyou-modern,
.error-modern {
padding: 60px 0;
}
.action-buttons {
flex-direction: column;
}
.action-buttons .btn-primary {
width: 100%;
}
.error-box h1 {
font-size: 3.5rem;
}
}
