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

:root {
--primary: #2c5f4f;
--secondary: #8b7355;
--accent: #d4a574;
--dark: #1a1a1a;
--light: #f8f6f3;
--white: #ffffff;
--gray: #666666;
--border: #e0e0e0;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
display: none;
}

.privacy-popup.show {
transform: translateY(0);
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
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: 200px;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--accent);
font-size: 14px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.privacy-actions button:hover {
background: var(--secondary);
}

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--border);
position: relative;
}

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

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
}

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

.nav-toggle span {
width: 24px;
height: 2px;
background: var(--dark);
transition: all 0.3s ease;
}

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

.nav-menu a {
color: var(--dark);
font-size: 15px;
font-weight: 400;
position: relative;
}

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

.nav-menu a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

.nav-menu a:hover::after {
width: 100%;
}

.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
}

.hero-content h1 {
font-size: 3rem;
margin-bottom: 20px;
}

.hero-content p {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto 30px;
opacity: 0.95;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
border-radius: 4px;
font-weight: 500;
font-size: 15px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.btn-primary {
background: var(--accent);
color: var(--dark);
}

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

.btn-secondary {
background: transparent;
color: var(--dark);
border: 2px solid var(--dark);
}

.btn-secondary:hover {
background: var(--dark);
color: var(--white);
}

.features {
padding: 60px 0;
background: var(--light);
}

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

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card h3 {
margin-bottom: 10px;
}

.feature-card p {
font-size: 14px;
color: var(--gray);
}

.showcase {
padding: 60px 0;
}

.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.showcase-text h2 {
margin-bottom: 20px;
}

.showcase-text p {
margin-bottom: 15px;
color: var(--gray);
}

.showcase-text .btn-secondary {
margin-top: 15px;
}

.showcase-image img {
border-radius: 8px;
width: 100%;
}

.process {
padding: 60px 0;
background: var(--light);
}

.process h2 {
text-align: center;
margin-bottom: 50px;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}

.step {
text-align: center;
}

.step-number {
font-family: 'Cormorant Garamond', serif;
font-size: 3rem;
font-weight: 600;
color: var(--accent);
margin-bottom: 15px;
opacity: 0.7;
}

.step h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.step p {
font-size: 14px;
color: var(--gray);
}

.testimonials {
padding: 60px 0;
}

.testimonials h2 {
text-align: center;
margin-bottom: 50px;
}

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

.testimonial {
background: var(--light);
padding: 30px;
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.stars {
color: var(--accent);
margin-bottom: 15px;
font-size: 14px;
}

.testimonial p {
font-style: italic;
margin-bottom: 15px;
color: var(--gray);
font-size: 14px;
}

.testimonial-author {
font-weight: 500;
color: var(--dark);
font-size: 14px;
}

.cta {
padding: 60px 0;
background: var(--primary);
color: var(--white);
text-align: center;
}

.cta-content h2 {
margin-bottom: 15px;
}

.cta-content p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.95;
}

.page-hero {
background: var(--light);
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
margin-bottom: 15px;
}

.page-hero p {
max-width: 700px;
margin: 0 auto;
color: var(--gray);
}

.products {
padding: 60px 0;
}

.products h2 {
text-align: center;
margin-bottom: 50px;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.product-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
padding: 25px;
}

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

.product-card h3 {
margin-bottom: 10px;
}

.product-card p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
}

.product-price {
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 20px;
font-family: 'Cormorant Garamond', serif;
}

.benefits {
padding: 60px 0;
background: var(--light);
}

.benefits h2 {
text-align: center;
margin-bottom: 50px;
}

.benefits-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.benefits-image img {
border-radius: 8px;
width: 100%;
}

.benefits-text .benefit-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}

.benefits-text .benefit-item i {
font-size: 1.5rem;
color: var(--primary);
margin-top: 3px;
}

.benefits-text .benefit-item h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}

.benefits-text .benefit-item p {
font-size: 14px;
color: var(--gray);
}

.customization {
padding: 60px 0;
}

.customization h2 {
text-align: center;
margin-bottom: 50px;
}

.customization-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.custom-option {
background: var(--light);
padding: 25px;
border-radius: 8px;
}

.custom-option h3 {
margin-bottom: 10px;
}

.custom-option p {
font-size: 14px;
color: var(--gray);
}

.collections {
padding: 60px 0;
}

.collections h2 {
text-align: center;
margin-bottom: 50px;
}

.collections-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.collection-card {
background: var(--light);
padding: 30px;
border-radius: 8px;
}

.collection-card h3 {
margin-bottom: 15px;
}

.collection-card p {
font-size: 14px;
color: var(--gray);
margin-bottom: 20px;
}

.collection-features {
list-style: none;
margin-bottom: 20px;
}

.collection-features li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
font-size: 14px;
}

.collection-features i {
color: var(--primary);
font-size: 12px;
}

.curtain-styles {
padding: 60px 0;
background: var(--light);
}

.styles-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.styles-text h2 {
margin-bottom: 20px;
}

.styles-text p {
margin-bottom: 15px;
color: var(--gray);
}

.style-options {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 30px;
}

.style-option h4 {
margin-bottom: 8px;
}

.style-option p {
font-size: 14px;
color: var(--gray);
}

.styles-image img {
border-radius: 8px;
width: 100%;
}

.contact-hero {
background: var(--light);
padding: 50px 0;
text-align: center;
}

.contact-hero h1 {
margin-bottom: 15px;
}

.contact-hero p {
max-width: 700px;
margin: 0 auto;
color: var(--gray);
}

.contact-section {
padding: 60px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info h2 {
margin-bottom: 20px;
}

.contact-info > p {
margin-bottom: 30px;
color: var(--gray);
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
align-items: flex-start;
}

.info-item i {
font-size: 1.3rem;
color: var(--primary);
margin-top: 3px;
}

.info-item h4 {
margin-bottom: 8px;
}

.info-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
}

.contact-form-wrapper h2 {
margin-bottom: 30px;
}

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

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 4px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
align-items: flex-start;
cursor: pointer;
font-size: 13px;
}

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

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.map-section {
padding: 0 0 60px 0;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-wrapper {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fullheight-main {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
}

.thank-you-section,
.error-section {
text-align: center;
}

.thank-you-content,
.error-content {
max-width: 600px;
margin: 0 auto;
}

.thank-you-icon {
font-size: 4rem;
color: var(--primary);
margin-bottom: 30px;
}

.thank-you-content h1,
.error-content h1 {
margin-bottom: 20px;
}

.thank-you-content p,
.error-content p {
color: var(--gray);
margin-bottom: 15px;
}

.thank-you-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.error-number {
font-size: 8rem;
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
color: var(--accent);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
padding: 60px 0;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
}

.policy-content h1 {
margin-bottom: 10px;
}

.policy-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 40px;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 15px;
font-size: 1.8rem;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
font-size: 1.3rem;
}

.policy-content p {
margin-bottom: 15px;
color: var(--gray);
line-height: 1.8;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 30px 0 20px;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 20px;
flex-wrap: wrap;
gap: 30px;
}

.footer-brand {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 10px;
}

.footer-info p {
font-size: 14px;
opacity: 0.8;
margin-bottom: 5px;
}

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

.footer-links a {
font-size: 14px;
opacity: 0.8;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent);
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
font-size: 13px;
opacity: 0.7;
}

@media (max-width: 768px) {
h1 {
font-size: 2rem;
}

h2 {
font-size: 1.6rem;
}

h3 {
font-size: 1.2rem;
}

.nav-toggle {
display: flex;
z-index: 1001;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-menu.active {
max-height: 300px;
}

.nav-menu li {
border-bottom: 1px solid var(--border);
}

.nav-menu a {
display: block;
padding: 15px 20px;
}

.nav-menu a::after {
display: none;
}

.hero-content h1 {
font-size: 2.2rem;
}

.hero-content p {
font-size: 1rem;
}

.showcase-content,
.benefits-content,
.styles-content {
grid-template-columns: 1fr;
gap: 30px;
}

.contact-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.process-steps {
grid-template-columns: 1fr;
}

.thank-you-actions,
.error-actions {
flex-direction: column;
}

.error-number {
font-size: 5rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.4rem;
}

.hero {
padding: 50px 0;
}

.hero-content h1 {
font-size: 1.8rem;
}

.features,
.showcase,
.process,
.testimonials,
.cta,
.products,
.benefits,
.contact-section,
.collections,
.curtain-styles,
.customization {
padding: 40px 0;
}

.features-grid,
.products-grid,
.testimonials-grid,
.collections-grid,
.customization-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.feature-card,
.testimonial {
padding: 20px;
}

.product-card,
.collection-card,
.custom-option {
padding: 20px;
}

.btn-primary,
.btn-secondary {
padding: 10px 25px;
font-size: 14px;
width: 100%;
text-align: center;
}

.privacy-content {
flex-direction: column;
gap: 15px;
}

.privacy-actions {
width: 100%;
justify-content: space-between;
}

.footer-content {
flex-direction: column;
gap: 20px;
}

.footer-links {
flex-direction: column;
gap: 10px;
}
}

@media (max-width: 320px) {
body {
font-size: 14px;
}

h1 {
font-size: 1.5rem;
}

h2 {
font-size: 1.3rem;
}

h3 {
font-size: 1.1rem;
}

.logo {
font-size: 1.2rem;
}

.hero-content h1 {
font-size: 1.6rem;
}

.step-number {
font-size: 2.5rem;
}

.product-price {
font-size: 1.3rem;
}
}