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

:root {
--primary: #8B4789;
--secondary: #E8B4D9;
--accent: #4A7C59;
--gold: #D4AF37;
--dark: #2C2C2C;
--light: #F9F5F0;
--white: #FFFFFF;
--text: #3D3D3D;
--border: #E0D5D0;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--text);
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
color: var(--dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

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 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

.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: 13px;
flex: 1;
min-width: 250px;
}

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

.privacy-buttons button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: background 0.3s ease;
}

.privacy-buttons button:hover {
background: var(--accent);
}

.privacy-buttons a {
color: var(--secondary);
font-size: 13px;
text-decoration: underline;
}

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

.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 {
display: flex;
gap: 25px;
}

.nav a {
font-size: 14px;
font-weight: 500;
color: var(--text);
position: relative;
padding: 5px 0;
}

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

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

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

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

.hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #F9F5F0 0%, #E8B4D9 100%);
overflow: hidden;
padding: 80px 0 60px;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.15;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--primary);
top: -100px;
right: 10%;
animation: float 20s infinite ease-in-out;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--accent);
bottom: -80px;
left: 5%;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--gold);
top: 40%;
left: 15%;
animation: float 18s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(5deg); }
}

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

.hero-text {
max-width: 550px;
}

.hero-label {
display: inline-block;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--primary);
margin-bottom: 15px;
}

.hero-text h1 {
font-size: 3.2rem;
color: var(--dark);
margin-bottom: 20px;
line-height: 1.2;
}

.hero-text p {
font-size: 1.1rem;
color: var(--text);
margin-bottom: 30px;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 12px 35px;
border: 2px solid var(--primary);
border-radius: 30px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.btn-outline:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-2px);
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.btn-primary {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 12px 35px;
border-radius: 30px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 10px 30px;
border: 2px solid var(--primary);
border-radius: 30px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

.section-label {
display: inline-block;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--primary);
margin-bottom: 12px;
}

section {
padding: 70px 0;
}

.story {
background: var(--white);
}

.story-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

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

.story-content p {
margin-bottom: 20px;
line-height: 1.9;
font-size: 15px;
}

.featured {
background: var(--light);
}

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

.featured-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.featured-content h2 {
margin-bottom: 30px;
color: var(--dark);
}

.featured-list {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 30px;
}

.featured-item h3 {
margin-bottom: 8px;
color: var(--primary);
font-size: 1.2rem;
}

.featured-item p {
font-size: 14px;
line-height: 1.7;
color: var(--text);
}

.services {
background: var(--white);
}

.services h2 {
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

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

.service-card {
text-align: center;
padding: 35px 25px;
background: var(--light);
border-radius: 12px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
border-color: var(--secondary);
}

.service-icon {
font-size: 3rem;
margin-bottom: 18px;
}

.service-card h3 {
margin-bottom: 15px;
color: var(--dark);
font-size: 1.3rem;
}

.service-card p {
margin-bottom: 18px;
font-size: 14px;
line-height: 1.7;
}

.service-card a {
color: var(--primary);
font-weight: 600;
font-size: 14px;
transition: color 0.3s ease;
}

.service-card a:hover {
color: var(--accent);
}

.products {
background: var(--light);
}

.products h2 {
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

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

.product-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
width: 100%;
height: 320px;
overflow: hidden;
background: var(--border);
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
transform: scale(1.08);
}

.product-card h3 {
padding: 18px 25px 10px;
font-size: 1.3rem;
color: var(--dark);
}

.product-card p {
padding: 0 25px;
font-size: 13px;
line-height: 1.7;
margin-bottom: 15px;
}

.product-price {
padding: 0 25px;
font-size: 1.6rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 18px;
}

.btn-product {
display: block;
margin: 0 25px 25px;
padding: 12px;
background: var(--primary);
color: var(--white);
text-align: center;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.btn-product:hover {
background: var(--accent);
transform: translateY(-2px);
}

.process {
background: var(--white);
}

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

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

.process-step {
text-align: center;
padding: 25px 20px;
}

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

.process-step h3 {
margin-bottom: 12px;
font-size: 1.2rem;
color: var(--dark);
}

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

.testimonials {
background: var(--light);
}

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

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

.testimonial-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 20px;
font-style: italic;
color: var(--text);
}

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

.testimonial-author span {
font-size: 12px;
color: var(--primary);
}

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

.delivery-content {
max-width: 800px;
margin: 0 auto;
}

.delivery-content .section-label {
color: var(--secondary);
}

.delivery-content h2 {
color: var(--white);
margin-bottom: 20px;
}

.delivery-content > p {
margin-bottom: 30px;
font-size: 15px;
line-height: 1.8;
opacity: 0.95;
}

.delivery-features {
display: flex;
justify-content: center;
gap: 40px;
margin-bottom: 35px;
flex-wrap: wrap;
}

.delivery-item {
text-align: center;
}

.delivery-item span {
font-size: 2rem;
display: block;
margin-bottom: 8px;
}

.delivery-item p {
font-size: 13px;
opacity: 0.9;
}

.page-hero {
position: relative;
padding: 100px 0 70px;
background: linear-gradient(135deg, #E8B4D9 0%, #8B4789 100%);
text-align: center;
color: var(--white);
overflow: hidden;
}

.page-hero .hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}

.page-hero .container {
position: relative;
z-index: 2;
}

.page-hero h1 {
color: var(--white);
margin-bottom: 15px;
font-size: 2.8rem;
}

.page-hero p {
font-size: 1.15rem;
opacity: 0.95;
}

.content-section {
background: var(--white);
}

.content-intro {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.content-intro h2 {
margin-bottom: 20px;
color: var(--primary);
}

.content-intro p {
margin-bottom: 15px;
line-height: 1.8;
}

.services-detail {
background: var(--light);
}

.services-detail h2 {
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

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

.detail-item {
background: var(--white);
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.detail-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.detail-item .service-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

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

.detail-item p {
font-size: 13px;
line-height: 1.7;
}

.process {
background: var(--white);
}

.process h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary);
}

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

.step {
text-align: center;
padding: 20px;
}

.step-number {
width: 50px;
height: 50px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 600;
margin: 0 auto 15px;
}

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

.step p {
font-size: 13px;
line-height: 1.6;
}

.guidance {
background: var(--light);
}

.guidance h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary);
}

.guidance-content {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.guidance-item {
background: var(--white);
padding: 25px;
border-radius: 8px;
}

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

.guidance-item p {
font-size: 13px;
line-height: 1.7;
}

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

.contact-hero .hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}

.contact-hero .container {
position: relative;
z-index: 2;
}

.contact-hero h1 {
color: var(--white);
margin-bottom: 15px;
}

.contact-hero p {
font-size: 1.08rem;
opacity: 0.95;
max-width: 750px;
margin: 0 auto;
}

.contact-main {
background: var(--light);
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
margin-bottom: 15px;
color: var(--primary);
}

.contact-form-wrapper p {
margin-bottom: 25px;
font-size: 13px;
}

.contact-form {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 500;
font-size: 13px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--border);
border-radius: 5px;
font-family: 'Montserrat', 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);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

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

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

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

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

.btn-submit {
width: 100%;
padding: 12px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: background 0.3s ease;
}

.btn-submit:hover {
background: var(--accent);
}

.contact-info-wrapper {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.contact-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.contact-icon {
font-size: 1.8rem;
margin-top: 3px;
}

.contact-item h3 {
margin-bottom: 5px;
font-size: 1rem;
}

.contact-item p {
font-size: 13px;
line-height: 1.6;
}

.map-section {
background: var(--white);
padding: 60px 0;
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
color: var(--primary);
}

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

.thankyou-section,
.error-section {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
padding: 40px;
background: var(--white);
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thankyou-content i {
font-size: 4rem;
color: var(--accent);
margin-bottom: 20px;
}

.error-icon {
font-size: 4rem;
color: var(--primary);
margin-bottom: 20px;
}

.error-icon i {
font-size: 4rem;
}

.error-content h1 {
font-size: 4rem;
color: var(--primary);
margin-bottom: 10px;
}

.error-content h2,
.thankyou-content h1 {
margin-bottom: 15px;
color: var(--dark);
}

.error-content p,
.thankyou-content p {
margin-bottom: 25px;
line-height: 1.7;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-page {
background: var(--white);
padding: 60px 0;
}

.policy-page h1 {
text-align: center;
margin-bottom: 10px;
color: var(--primary);
}

.policy-date {
text-align: center;
font-size: 13px;
color: var(--text);
margin-bottom: 40px;
}

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

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
color: var(--primary);
font-size: 1.5rem;
}

.policy-content h3 {
margin-top: 20px;
margin-bottom: 10px;
color: var(--dark);
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
line-height: 1.8;
font-size: 14px;
}

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

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

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

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

.footer-links a {
font-size: 12px;
color: var(--white);
opacity: 0.8;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
}

@media (max-width: 992px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.15rem; }

.hero {
min-height: 70vh;
padding: 60px 0 40px;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text h1 {
font-size: 2.5rem;
}

.hero-image {
order: -1;
}

.featured-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.services-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.products-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.process-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}

.detail-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.guidance-content {
grid-template-columns: 1fr;
gap: 25px;
}

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

.delivery-features {
gap: 30px;
}
}

@media (max-width: 768px) {
body {
font-size: 13px;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

.container {
padding: 0 15px;
}

.menu-toggle {
display: flex;
}

.nav {
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;
border-bottom: 1px solid var(--border);
}

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

.nav a {
padding: 15px 20px;
border-bottom: 1px solid var(--border);
}

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

.hero {
min-height: 65vh;
padding: 50px 0 30px;
}

.hero-text h1 {
font-size: 2rem;
}

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

.hero-buttons {
flex-direction: column;
}

.hero-buttons a {
width: 100%;
text-align: center;
}

section {
padding: 50px 0;
}

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

.process-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.detail-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.delivery-features {
flex-direction: column;
gap: 20px;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
justify-content: center;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.6rem; }
h2 { font-size: 1.35rem; }

.hero-text h1 {
font-size: 1.75rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 11px 28px;
font-size: 13px;
}

.privacy-content {
flex-direction: column;
text-align: center;
}

.privacy-buttons {
justify-content: center;
}

.product-image {
height: 280px;
}

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

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}

.shape-1 {
width: 250px;
height: 250px;
}

.shape-2 {
width: 200px;
height: 200px;
}

.shape-3 {
width: 150px;
height: 150px;
}
}

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

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }

.hero-text h1 {
font-size: 1.5rem;
}

.logo {
font-size: 1.25rem;
}

.product-image {
height: 240px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 10px 22px;
font-size: 12px;
}

.service-icon,
.contact-icon {
font-size: 1.5rem;
}

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

.shape-1 {
width: 200px;
height: 200px;
}

.shape-2 {
width: 150px;
height: 150px;
}

.shape-3 {
display: none;
}
}
