@font-face {
font-family: "Inter";
src: url("../fonts/Inter.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Playfair Display";
src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

img {
max-width: 100%;
}

:root {
--primary-color: #8B6F47;
--secondary-color: #D4A574;
--accent-color: #C19A6B;
--dark-color: #2C2416;
--light-color: #F5F1E8;
--text-color: #3A3025;
--text-light: #6B5D4F;
--white: #FFFFFF;
--border-color: #E5DCC8;
--shadow: 0 4px 20px rgba(139, 111, 71, 0.1);
--shadow-hover: 0 8px 30px rgba(139, 111, 71, 0.2);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--border-radius: 12px;
}

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

html {
scroll-behavior: smooth;
overflow-x: clip;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
color: var(--text-color);
line-height: 1.6;
background: var(--light-color);
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-x: clip;
}

main {
flex: 1 0 auto;
}

h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
font-weight: 600;
line-height: 1.2;
color: var(--dark-color);
}

h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
margin-bottom: 1rem;
}

h2 {
font-size: clamp(1.8rem, 4vw, 2.8rem);
margin-bottom: 2rem;
text-align: center;
}

h3 {
font-size: clamp(1.2rem, 3vw, 1.6rem);
margin-bottom: 1rem;
}

p {
margin-bottom: 1rem;
}

.lead {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
}

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

.btn {
display: inline-block;
padding: 14px 32px;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
border: none;
cursor: pointer;
font-size: 1rem;
text-align: center;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--white);
box-shadow: var(--shadow);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-hover);
}

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

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

.btn-full {
width: 100%;
}

.header {
background: var(--white);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 1000;
}

.header-notice {
background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
color: var(--white);
text-align: center;
padding: 8px 20px;
font-size: 0.85rem;
}

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

.logo a {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: #bd8f3d;
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
font-weight: 700;
}

.logo img {
border-radius: 8px;
}

.hero {
padding: 4rem 20px;
background: linear-gradient(135deg, var(--light-color) 0%, #EDE4D3 100%);
}

.hero-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.hero-container > * {
min-width: 0;
max-width: 100%;
}

.hero-badge {
display: inline-block;
background: var(--primary-color);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 1rem;
}

.hero-subtitle {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.hero-price {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.price-old {
font-size: 1.5rem;
color: var(--text-light);
text-decoration: line-through;
}

.price-new {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
font-family: 'Playfair Display', serif;
}

.price-discount {
background: #E74C3C;
color: var(--white);
padding: 4px 12px;
border-radius: 6px;
font-size: 0.9rem;
font-weight: 600;
}

.hero-features {
list-style: none;
margin-bottom: 2rem;
}

.hero-features li {
padding: 8px 0;
display: flex;
align-items: center;
gap: 12px;
}

.hero-features i {
color: var(--primary-color);
font-size: 1.1rem;
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow-hover);
object-fit: cover;
}

section {
padding: 4rem 20px;
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}

.about-grid > * {
min-width: 0;
max-width: 100%;
}

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

.specs-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.spec-item {
display: flex;
flex-direction: column;
gap: 4px;
}

.spec-label {
font-size: 0.85rem;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 0.5px;
}

.spec-value {
font-size: 1.1rem;
font-weight: 600;
color: var(--dark-color);
}

.features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-top: 3rem;
}

.feature-card {
background: var(--white);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.feature-icon {
width: 60px;
height: 60px;
margin: 0 auto 1.5rem;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-size: 1.5rem;
}


.similar-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
}

.product-card {
background: var(--white);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
padding: 2rem;
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

.product-image {
width: 100%;
aspect-ratio: 1;
border-radius: var(--border-radius);
overflow: hidden;
margin-bottom: 1.5rem;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

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

.product-price {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
}

.faq-list {
max-width: 800px;
margin: 3rem auto 0;
}

.faq-item {
background: var(--white);
border-radius: var(--border-radius);
margin-bottom: 1rem;
box-shadow: var(--shadow);
overflow: hidden;
}

.faq-question {
width: 100%;
padding: 1.5rem;
background: none;
border: none;
text-align: left;
font-size: 1.1rem;
font-weight: 500;
color: var(--dark-color);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

.faq-question:hover {
background: var(--light-color);
}

.faq-question i {
transition: var(--transition);
color: var(--primary-color);
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-answer p {
padding: 0 1.5rem 1.5rem;
color: var(--text-light);
}

.order {
background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
color: var(--white);
}

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

.order-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.order-container > * {
min-width: 0;
max-width: 100%;
}

.order-info p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.1rem;
margin-bottom: 2rem;
}

.order-benefits {
display: flex;
flex-direction: column;
gap: 1rem;
}

.benefit-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 1rem;
}

.benefit-item i {
font-size: 1.5rem;
color: var(--secondary-color);
}

.order-form {
background: var(--white);
padding: 2.5rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-hover);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--dark-color);
}

.form-group input,
.form-group select {
width: 100%;
max-width: 100%;
padding: 12px 16px;
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
font-size: 1rem;
transition: var(--transition);
font-family: inherit;
}

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

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

.checkbox-group input {
width: auto;
margin-top: 4px;
}

.checkbox-group label {
margin-bottom: 0;
font-size: 0.9rem;
color: var(--text-light);
}

.footer {
background: var(--dark-color);
color: rgba(255, 255, 255, 0.8);
padding: 3rem 20px 1.5rem;
margin-top: auto;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
margin-bottom: 2rem;
}

.footer-col h4 {
color: var(--white);
margin-bottom: 1rem;
font-size: 1.2rem;
}

.footer-description {
margin-top: 1rem;
font-size: 0.95rem;
line-height: 1.6;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.5rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition);
}

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

.footer-disclaimer {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 1.5rem;
margin-bottom: 1.5rem;
font-size: 0.9rem;
line-height: 1.6;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 1.5rem;
text-align: center;
font-size: 0.9rem;
}

.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--primary-color);
color: var(--white);
border: none;
border-radius: 50%;
cursor: pointer;
display: none;
align-items: center;
justify-content: center;
font-size: 1.2rem;
box-shadow: var(--shadow-hover);
transition: var(--transition);
z-index: 999;
}

.back-to-top.visible {
display: flex;
}

.back-to-top:hover {
transform: translateY(-4px);
background: var(--accent-color);
}

@media (max-width: 968px) {
.hero-container,
.about-grid,
.order-container {
grid-template-columns: 1fr;
gap: 2rem;
}

.features-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

section {
padding: 3rem 20px;
}

h2 {
margin-bottom: 1.5rem;
}

}

@media (max-width: 640px) {
.features-grid {
grid-template-columns: 1fr;
}

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

.hero-price {
flex-direction: column;
align-items: flex-start;
}

.price-new {
font-size: 2rem;
}

.footer {
font-size: 0.9rem;
}

.footer-col p {
font-size: 0.85rem;
}

.header-notice {
word-break: break-all;
}

.logo a {
flex-direction: column;
}

.logo a span {
word-break: break-all;
min-width: 0;
flex: 1;
}

.footer-col {
word-break: break-all;
}

.header-container {
flex-wrap: wrap;
gap: 12px;
}
}

@media (max-width: 480px) {
.container,
.hero-container,
.header-container {
padding-left: 12px;
padding-right: 12px;
}

section,
.hero,
.legal-page,
.thanks-page {
padding-left: 12px;
padding-right: 12px;
}

.order-form,
.legal-content,
.thanks-content {
padding: 1.25rem;
}

h1 {
font-size: clamp(1.6rem, 8vw, 2.2rem);
}

h2 {
font-size: clamp(1.4rem, 6vw, 2rem);
}

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

[data-aos="fade-right"]:not(.aos-animate) {
transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
transform: translate3d(32px, 0, 0) !important;
}

[data-aos="flip-left"]:not(.aos-animate) {
transform: translate3d(0, 24px, 0) !important;
opacity: 0;
}

[data-aos="flip-left"].aos-animate {
transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 900px) {
[data-aos] {
transform: none !important;
opacity: 1 !important;
transition: none !important;
}

.hero-container > *,
.about-grid > *,
.order-container > *,
.similar-grid > *,
.features-grid > * {
min-width: 0;
max-width: 100%;
}
}
.legal-page {
padding: 4rem 20px;
background: var(--light-color);
min-height: calc(100vh - 200px);
}

.legal-content {
max-width: 800px;
margin: 0 auto;
background: var(--white);
padding: 3rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
word-break: break-word;
}

.legal-content h1 {
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: left;
}

.legal-content h2 {
font-size: 1.8rem;
margin-top: 2.5rem;
margin-bottom: 1.5rem;
text-align: left;
}

.legal-content h3 {
font-size: 1.4rem;
margin-top: 2rem;
margin-bottom: 1rem;
text-align: left;
}

.legal-content p {
font-size: 1rem;
line-height: 1.8;
color: var(--text-color);
margin-bottom: 1rem;
}

.legal-content ul {
margin-left: 1.5rem;
margin-bottom: 1rem;
}

.legal-content ul li {
margin-bottom: 0.5rem;
line-height: 1.6;
}

.thanks-page {
padding: 4rem 20px;
background: linear-gradient(135deg, var(--light-color) 0%, #EDE4D3 100%);
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
}

.thanks-container {
max-width: 600px;
margin: 0 auto;
}

.thanks-content {
background: var(--white);
padding: 3rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-hover);
text-align: center;
}

.thanks-logo {
width: 80px;
height: 80px;
margin-bottom: 2rem;
border-radius: 50%;
}

.thanks-content h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.thanks-text {
font-size: 1.2rem;
line-height: 1.8;
color: var(--text-color);
margin-bottom: 1rem;
}

.thanks-text strong {
color: var(--primary-color);
font-weight: 600;
}

@media (max-width: 768px) {
.legal-content {
padding: 2rem 1.5rem;
}

.legal-content h1 {
font-size: 2rem;
}

.legal-content h2 {
font-size: 1.5rem;
}

.legal-content h3 {
font-size: 1.2rem;
}

.thanks-content {
padding: 2rem 1.5rem;
}

.thanks-content h1 {
font-size: 2rem;
}

.thanks-text {
font-size: 1rem;
}
}
.hero-slider {
position: relative;
width: 100%;
aspect-ratio: 1;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-hover);
background: var(--white);
}

.slider-track {
position: relative;
width: 100%;
height: 100%;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.6s ease;
}

.slide.active {
opacity: 1;
z-index: 1;
}

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

.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.92);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
font-size: 1rem;
transition: var(--transition);
z-index: 3;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
background: var(--white);
transform: translateY(-50%) scale(1.08);
color: var(--dark-color);
}

.slider-btn.prev {
left: 16px;
}

.slider-btn.next {
right: 16px;
}

.slider-dots {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 3;
padding: 8px 14px;
background: rgba(44, 36, 22, 0.35);
backdrop-filter: blur(8px);
border-radius: 20px;
}

.dot {
width: 9px;
height: 9px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.55);
cursor: pointer;
transition: var(--transition);
border: none;
}

.dot.active {
background: var(--white);
width: 26px;
border-radius: 5px;
}

.dot:hover {
background: rgba(255, 255, 255, 0.85);
}