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

:root {
--primary-color: #8B4789;
--secondary-color: #D4A5D4;
--accent-color: #E8B4E8;
--dark-purple: #6d3570;
--text-color: #333;
--light-bg: #F9F5F9;
--white: #fff;
--border-color: #E0D0E0;
--shadow: 0 2px 8px rgba(139, 71, 137, 0.1);
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.5;
color: var(--text-color);
font-size: 14px;
}

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

header {
background: var(--white);
box-shadow: var(--shadow);
position: relative;
z-index: 100;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary-color);
}

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

.menu-toggle span {
width: 22px;
height: 2px;
background: var(--primary-color);
margin: 3px 0;
transition: 0.3s;
}

nav {
display: flex;
gap: 20px;
}

nav a {
text-decoration: none;
color: var(--text-color);
font-size: 13px;
font-weight: 500;
transition: color 0.3s;
}

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

.hero {
position: relative;
padding: 80px 0;
overflow: hidden;
background: linear-gradient(135deg, #8B4789 0%, #D4A5D4 50%, #E8B4E8 100%);
}

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

.hero-shape {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
animation: float 20s infinite ease-in-out;
}

.shape-2 {
width: 300px;
height: 300px;
bottom: -80px;
right: 10%;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 200px;
height: 200px;
top: 50%;
right: -50px;
animation: float 18s infinite ease-in-out;
}

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

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

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

.hero-text {
color: var(--white);
}

.hero-label {
display: inline-block;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
padding: 6px 14px;
background: rgba(255, 255, 255, 0.2);
border-radius: 20px;
}

.hero-text h1 {
font-size: 42px;
line-height: 1.2;
margin-bottom: 18px;
}

.hero-text p {
font-size: 16px;
margin-bottom: 25px;
opacity: 0.95;
}

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

.hero-image {
position: relative;
}

.hero-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
transform: rotate(3deg);
transition: transform 0.3s;
}

.hero-card:hover {
transform: rotate(0deg) scale(1.02);
}

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

.btn {
display: inline-block;
padding: 10px 24px;
background: var(--primary-color);
color: var(--white);
text-decoration: none;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: var(--dark-purple);
}

.btn-outline {
display: inline-block;
padding: 10px 24px;
background: transparent;
color: var(--white);
text-decoration: none;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
transition: all 0.3s;
border: 2px solid var(--white);
}

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

.btn-secondary {
display: inline-block;
padding: 8px 18px;
background: var(--white);
color: var(--primary-color);
text-decoration: none;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
transition: all 0.3s;
border: 1px solid var(--primary-color);
}

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

section {
padding: 40px 0;
}

h2 {
font-size: 26px;
margin-bottom: 20px;
color: var(--primary-color);
text-align: center;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--primary-color);
}

h4 {
font-size: 15px;
margin-bottom: 8px;
color: var(--primary-color);
}

p {
margin-bottom: 12px;
font-size: 14px;
line-height: 1.6;
}

.features {
background: var(--light-bg);
}

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

.feature-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
text-align: center;
}

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

.about p {
max-width: 900px;
margin-left: auto;
margin-right: auto;
text-align: center;
}

.categories {
background: var(--light-bg);
}

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

.category-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s;
}

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

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

.category-card h3,
.category-card p,
.category-card .btn-secondary {
margin: 15px;
}

.why-choose {
background: var(--white);
}

.reasons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}

.reason-item {
padding: 18px;
background: var(--light-bg);
border-radius: 6px;
border-left: 3px solid var(--primary-color);
}

.crafting-journey {
background: var(--light-bg);
}

.journey-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 25px;
}

.journey-step {
background: var(--white);
padding: 25px;
border-radius: 8px;
box-shadow: var(--shadow);
position: relative;
}

.step-number {
font-size: 36px;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 12px;
line-height: 1;
}

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

.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}

.testimonial-card {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
font-style: italic;
}

.testimonial-card span {
display: block;
margin-top: 12px;
font-style: normal;
font-weight: 600;
color: var(--primary-color);
font-size: 13px;
}

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

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

.expertise-text h2 {
text-align: left;
}

.expertise-stats {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.stat-item {
background: var(--light-bg);
padding: 20px;
border-radius: 8px;
text-align: center;
border-left: 4px solid var(--primary-color);
}

.stat-number {
font-size: 32px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: var(--text-color);
font-weight: 600;
}

.commitment {
background: var(--light-bg);
}

.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 30px;
font-size: 15px;
}

.commitment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

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

.visit-store {
background: var(--primary-color);
color: var(--white);
text-align: center;
}

.visit-store h2 {
color: var(--white);
}

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

.location-details {
text-align: center;
margin: 20px 0;
}

.map-container {
width: 100%;
height: 350px;
margin-top: 20px;
border-radius: 8px;
overflow: hidden;
background: #e5e3df;
}

footer {
background: var(--text-color);
color: var(--white);
padding: 35px 0 15px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-bottom: 25px;
}

.footer-section h4 {
color: var(--white);
margin-bottom: 12px;
font-size: 15px;
}

.footer-section p,
.footer-section a {
font-size: 13px;
color: #ccc;
line-height: 1.8;
}

.footer-section a {
display: block;
text-decoration: none;
transition: color 0.3s;
margin-bottom: 6px;
}

.footer-section a:hover {
color: var(--accent-color);
}

.footer-bottom {
border-top: 1px solid #555;
padding-top: 15px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}

.footer-bottom p {
font-size: 12px;
color: #ccc;
margin: 0;
}

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

.footer-links a {
font-size: 12px;
color: #ccc;
text-decoration: none;
}

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

.page-header {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
padding: 40px 0;
text-align: center;
color: var(--white);
}

.page-header h1 {
font-size: 30px;
margin-bottom: 10px;
}

.page-header p {
font-size: 14px;
}

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

.product-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s;
}

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

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

.product-card h3,
.product-card p,
.product-card .product-price,
.product-card .btn-secondary {
margin: 15px;
}

.product-price {
font-size: 20px;
font-weight: 700;
color: var(--primary-color);
}

.product-info,
.shopping-guide,
.decor-intro,
.materials-section,
.tips-section,
.material-care {
background: var(--white);
}

.guide-grid,
.ideas-grid,
.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}

.guide-item,
.idea-card,
.tip-item {
padding: 18px;
background: var(--light-bg);
border-radius: 6px;
}

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

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

.contact-info h2,
.contact-form-wrapper h2 {
text-align: left;
font-size: 22px;
}

.contact-details {
margin: 20px 0;
}

.contact-item {
margin-bottom: 18px;
}

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

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

.form-group label {
font-size: 13px;
font-weight: 600;
margin-bottom: 5px;
color: var(--text-color);
}

.form-group input,
.form-group textarea {
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 13px;
font-family: inherit;
}

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

.checkbox-group {
flex-direction: row;
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;
cursor: pointer;
}

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

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

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

.privacy-popup.show {
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: 13px;
flex: 1;
}

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

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

.privacy-buttons button {
padding: 8px 18px;
background: var(--primary-color);
color: var(--white);
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

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

.policy-page {
background: var(--white);
}

.policy-page .container {
max-width: 900px;
}

.policy-page h1 {
font-size: 30px;
color: var(--primary-color);
margin-bottom: 10px;
}

.policy-date {
font-size: 13px;
color: #666;
margin-bottom: 25px;
}

.policy-content h2 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 12px;
text-align: left;
}

.policy-content h3 {
font-size: 16px;
margin-top: 18px;
margin-bottom: 10px;
}

.policy-content h4 {
font-size: 14px;
margin-top: 15px;
margin-bottom: 8px;
}

.thankyou-page,
.error-page {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
padding: 20px;
}

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

.thankyou-content h1,
.error-content h1 {
color: var(--primary-color);
font-size: 32px;
margin-bottom: 15px;
}

.error-content h1 {
font-size: 60px;
}

.error-content h2 {
font-size: 24px;
margin-bottom: 15px;
}

.thankyou-buttons,
.error-buttons {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 25px;
flex-wrap: wrap;
}

.current-year,
.current-date {
font-weight: inherit;
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 15px;
box-shadow: var(--shadow);
display: none;
}

nav.active {
display: flex;
}

.hero {
padding: 50px 0;
}

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

.hero-text h1 {
font-size: 32px;
}

.hero-text p {
font-size: 15px;
}

.shape-1,
.shape-2,
.shape-3 {
display: none;
}

h2 {
font-size: 22px;
}

.category-grid,
.products-grid {
grid-template-columns: 1fr;
}

.expertise-content {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: 1fr;
}

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

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

.thankyou-content,
.error-content {
padding: 30px 20px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 24px;
}

.error-content h1 {
font-size: 48px;
}
}

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

.logo {
font-size: 16px;
}

.hero {
padding: 35px 0;
}

.hero-text h1 {
font-size: 26px;
}

.hero-text p {
font-size: 14px;
}

section {
padding: 30px 0;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.btn {
padding: 9px 20px;
font-size: 12px;
}

.btn-secondary,
.btn-outline {
padding: 7px 16px;
font-size: 11px;
}

.feature-grid,
.reasons-grid,
.testimonial-grid,
.guide-grid,
.ideas-grid,
.tips-grid,
.journey-grid {
grid-template-columns: 1fr;
}

.map-container {
height: 250px;
}
}

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

.hero-text h1 {
font-size: 22px;
}

h2 {
font-size: 18px;
}

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

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