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

:root {
--primary-color: #1a1a2e;
--secondary-color: #16213e;
--accent-color: #0f3460;
--highlight-color: #e94560;
--text-color: #333;
--light-bg: #f8f9fa;
--white: #ffffff;
--border-color: #ddd;
--shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--text-color);
font-size: 14px;
min-width: 320px;
}

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

header {
background: var(--white);
box-shadow: var(--shadow);
position: relative;
z-index: 100;
transition: transform 0.3s ease;
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
max-width: 1200px;
margin: 0 auto;
}

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

.main-nav {
display: flex;
gap: 20px;
}

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

.main-nav a:hover {
color: var(--highlight-color);
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 22px;
cursor: pointer;
color: var(--primary-color);
}

.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
padding: 20px;
color: var(--white);
}

.hero-badge {
display: inline-block;
padding: 8px 20px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 30px;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 25px;
backdrop-filter: blur(10px);
}

.hero-title {
font-size: 56px;
font-weight: 800;
line-height: 1.1;
margin-bottom: 20px;
letter-spacing: -1px;
}

.hero-subtitle {
font-size: 20px;
line-height: 1.6;
opacity: 0.95;
margin-bottom: 35px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-cta {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.hero-btn {
padding: 14px 32px;
font-size: 14px;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
}

.hero-btn.primary {
background: var(--highlight-color);
color: var(--white);
box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.hero-btn.primary:hover {
background: #d63851;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.hero-btn.secondary {
background: transparent;
color: var(--white);
border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.5);
}

.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
font-size: 24px;
color: var(--white);
opacity: 0.6;
animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
40% { transform: translateX(-50%) translateY(-10px); }
60% { transform: translateX(-50%) translateY(-5px); }
}

.cta-button {
display: inline-block;
background: var(--highlight-color);
color: var(--white);
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

.cta-button:hover {
background: #d63851;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

section {
padding: 40px 15px;
}

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: 16px;
margin-bottom: 8px;
color: var(--primary-color);
}

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

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

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

.feature-icon {
font-size: 32px;
color: var(--highlight-color);
margin-bottom: 15px;
}

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

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

.feature-item p {
font-size: 13px;
color: #666;
}

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

.story-content {
max-width: 1000px;
margin: 0 auto;
}

.story-text {
text-align: center;
margin-bottom: 40px;
}

.story-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-top: 40px;
}

.stat-item {
text-align: center;
padding: 25px;
background: var(--light-bg);
border-radius: 8px;
}

.stat-number {
font-size: 42px;
font-weight: 800;
color: var(--highlight-color);
margin-bottom: 8px;
}

.stat-label {
font-size: 14px;
color: #666;
font-weight: 600;
}

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

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 40px;
color: #666;
}

.showcase-grid {
display: grid;
gap: 40px;
}

.showcase-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
background: var(--white);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

.showcase-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.showcase-info {
padding: 30px;
}

.showcase-info h3 {
font-size: 24px;
margin-bottom: 15px;
}

.showcase-info p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.link-arrow {
color: var(--highlight-color);
font-weight: 600;
text-decoration: none;
font-size: 14px;
transition: gap 0.3s;
}

.link-arrow:hover {
color: #d63851;
}

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

.craft-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
}

.craft-main p {
margin-bottom: 20px;
line-height: 1.7;
color: #555;
}

.craft-features {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.craft-feature {
padding: 20px;
background: var(--light-bg);
border-radius: 6px;
border-left: 3px solid var(--highlight-color);
}

.craft-feature h4 {
margin-bottom: 8px;
color: var(--primary-color);
}

.craft-feature p {
font-size: 13px;
color: #666;
margin: 0;
}

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

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

.value-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: var(--shadow);
transition: transform 0.3s;
}

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

.value-card h3 {
color: var(--highlight-color);
margin-bottom: 15px;
font-size: 20px;
}

.value-card p {
color: #666;
line-height: 1.7;
}

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

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

.philosophy h2 {
color: var(--white);
margin-bottom: 25px;
}

.philosophy p {
font-size: 15px;
line-height: 1.8;
opacity: 0.95;
margin-bottom: 20px;
}

.philosophy-cta {
margin-top: 30px;
}

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

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

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

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

.testimonial cite {
font-size: 13px;
color: var(--primary-color);
font-weight: 600;
font-style: normal;
}

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

.map-container {
margin-top: 20px;
border-radius: 6px;
overflow: hidden;
box-shadow: var(--shadow);
}

.address-info {
text-align: center;
margin-top: 15px;
font-weight: 600;
color: var(--primary-color);
}

footer {
background: var(--primary-color);
color: var(--white);
padding: 35px 15px 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: 16px;
}

.footer-section p {
font-size: 13px;
margin-bottom: 8px;
opacity: 0.9;
}

.footer-section a {
display: block;
color: var(--white);
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
opacity: 0.9;
transition: opacity 0.3s;
}

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

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

.footer-bottom p {
font-size: 12px;
opacity: 0.8;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.95);
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;
}

.privacy-content p {
font-size: 13px;
margin: 0;
}

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

.privacy-buttons a,
.privacy-buttons button {
padding: 8px 18px;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.privacy-buttons a {
background: transparent;
border: 1px solid var(--white);
color: var(--white);
text-decoration: none;
}

.privacy-buttons button {
background: var(--highlight-color);
border: none;
color: var(--white);
}

.privacy-buttons button:hover {
background: #d63851;
}

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

.page-hero h1 {
font-size: 32px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 15px;
opacity: 0.95;
}

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

.material-list {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 30px;
}

.material-item {
background: var(--light-bg);
padding: 25px;
border-radius: 6px;
border-left: 4px solid var(--accent-color);
}

.material-item h3 {
margin-bottom: 12px;
}

.material-item p {
font-size: 13px;
color: #555;
margin-bottom: 12px;
}

.material-item ul {
margin-left: 20px;
margin-top: 10px;
}

.material-item li {
font-size: 13px;
color: #666;
margin-bottom: 6px;
}

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

.care-tips {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 25px;
}

.care-tip {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
}

.care-tip h4 {
margin-bottom: 10px;
}

.care-tip p {
font-size: 13px;
color: #666;
}

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

.contact-cta {
text-align: center;
background: var(--white);
}

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

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

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

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

.product-info {
padding: 20px;
}

.product-info h3 {
margin-bottom: 10px;
font-size: 18px;
}

.product-info p {
font-size: 13px;
color: #666;
margin-bottom: 12px;
}

.product-price {
font-size: 22px;
font-weight: 700;
color: var(--highlight-color);
margin: 15px 0;
}

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

.btn-primary:hover {
background: #d63851;
transform: translateY(-2px);
}

.btn-secondary {
display: block;
text-align: center;
background: var(--accent-color);
color: var(--white);
padding: 10px 20px;
margin: 0 15px 15px;
text-decoration: none;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

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

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

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

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

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

.benefit-card p {
font-size: 13px;
color: #666;
}

.benefits-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 30px;
}

.benefit {
padding: 20px;
background: var(--light-bg);
border-radius: 6px;
border-left: 4px solid var(--highlight-color);
}

.benefit h4 {
margin-bottom: 8px;
}

.benefit p {
font-size: 13px;
color: #666;
}

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

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

.contact-info h2 {
text-align: left;
margin-bottom: 15px;
}

.contact-details {
margin-top: 25px;
}

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

.contact-item h3 {
font-size: 16px;
margin-bottom: 6px;
}

.contact-item p {
font-size: 13px;
color: #666;
margin-bottom: 4px;
}

.contact-form-wrapper h2 {
text-align: left;
margin-bottom: 20px;
}

.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: 6px;
color: var(--primary-color);
}

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

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

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

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

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

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

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

.thankyou-content,
.error-content {
max-width: 600px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 42px;
margin-bottom: 15px;
}

.error-content h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--white);
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 25px;
opacity: 0.95;
}

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

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

.last-updated {
text-align: center;
font-size: 12px;
color: #999;
font-style: italic;
margin-bottom: 30px;
}

.policy-content h2 {
text-align: left;
font-size: 22px;
margin-top: 30px;
margin-bottom: 15px;
}

.policy-content h3 {
text-align: left;
font-size: 18px;
margin-top: 20px;
margin-bottom: 10px;
}

.policy-content h4 {
text-align: left;
font-size: 16px;
margin-top: 15px;
margin-bottom: 8px;
}

.policy-content ul {
margin-left: 25px;
margin-bottom: 15px;
}

.policy-content li {
font-size: 13px;
margin-bottom: 6px;
line-height: 1.6;
}

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

@media (max-width: 768px) {
.hero-title {
font-size: 36px;
}

.hero-subtitle {
font-size: 16px;
}

.hero-cta {
flex-direction: column;
align-items: center;
}

.hero-btn {
width: 100%;
max-width: 280px;
}

.showcase-item {
grid-template-columns: 1fr;
}

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

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

.main-nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

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

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

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

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

@media (max-width: 480px) {
.hero {
min-height: 90vh;
}

.hero-title {
font-size: 28px;
}

.hero-subtitle {
font-size: 14px;
}

.hero-badge {
font-size: 10px;
padding: 6px 16px;
}

.stat-number {
font-size: 32px;
}

section {
padding: 30px 15px;
}

h2 {
font-size: 20px;
}

.feature-grid,
.benefits-list,
.testimonial-grid,
.care-tips,
.benefits-grid {
grid-template-columns: 1fr;
}
}

@media (min-width: 320px) {
body {
min-width: 320px;
}
}
