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

:root {
--primary: #2D5F8D;
--secondary: #E8A87C;
--accent: #C85A54;
--dark: #1A1A2E;
--light: #FAFAFA;
--text: #333;
--border: #E5E5E5;
}

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

h1, h2, h3, h4 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

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

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

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

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

.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: 10px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 4px;
font-size: 13px;
cursor: pointer;
border: none;
}

.btn-accept {
background: var(--secondary);
color: var(--dark);
font-weight: 600;
}

.btn-accept:hover {
background: #d99968;
}

.btn-learn {
background: transparent;
color: white;
border: 1px solid white;
}

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

.header {
background: white;
padding: 18px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
position: relative;
z-index: 100;
}

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

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--primary);
}

.nav {
display: flex;
gap: 30px;
}

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

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

.nav-link.active {
color: var(--primary);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: var(--secondary);
}

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

.hero-modern {
position: relative;
height: 85vh;
min-height: 600px;
display: flex;
align-items: center;
overflow: hidden;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(29,95,141,0.9) 0%, rgba(26,26,46,0.85) 100%);
}

.hero-modern-content {
position: relative;
z-index: 2;
color: white;
max-width: 700px;
}

.hero-badge {
display: inline-block;
background: var(--secondary);
color: var(--dark);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
}

.hero-modern-content h1 {
font-size: 3.5rem;
margin-bottom: 20px;
line-height: 1.1;
}

.hero-modern-content p {
font-size: 1.2rem;
margin-bottom: 35px;
opacity: 0.95;
}

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

.btn-hero-primary, .btn-hero-secondary {
padding: 15px 35px;
border-radius: 6px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
border: none;
display: inline-block;
}

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

.btn-hero-primary:hover {
background: #d99968;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(232,168,124,0.4);
}

.btn-hero-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

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

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-item strong {
font-size: 2rem;
font-weight: 700;
color: var(--secondary);
}

.stat-item span {
font-size: 13px;
opacity: 0.9;
}

.features-modern {
padding: 80px 0;
background: white;
}

.features-intro {
text-align: center;
max-width: 600px;
margin: 0 auto 50px;
}

.features-intro h2 {
margin-bottom: 15px;
}

.features-intro p {
color: #666;
}

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

.feature-modern {
padding: 30px;
border: 1px solid var(--border);
border-radius: 8px;
transition: all 0.3s;
}

.feature-modern:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(45,95,141,0.1);
}

.feature-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary);
opacity: 0.3;
margin-bottom: 15px;
}

.feature-modern h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.feature-modern p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.bestsellers {
padding: 80px 0;
background: var(--light);
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

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

.section-header h2 {
margin-bottom: 10px;
}

.section-header p {
color: #666;
}

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

.bestseller-card {
background: white;
border-radius: 10px;
overflow: hidden;
transition: all 0.3s;
position: relative;
}

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

.bestseller-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--accent);
color: white;
padding: 6px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
z-index: 2;
}

.bestseller-card img {
width: 100%;
height: 300px;
object-fit: cover;
}

.bestseller-info {
padding: 25px;
}

.bestseller-info h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.bestseller-info p {
font-size: 14px;
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}

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

.price {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
}

.btn-shop {
padding: 10px 25px;
background: var(--primary);
color: white;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
}

.btn-shop:hover {
background: #1e4a6b;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
border: none;
}

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

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

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

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

.story-section {
padding: 80px 0;
background: white;
}

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

.story-text h2 {
margin-bottom: 25px;
}

.story-text p {
margin-bottom: 20px;
color: #666;
line-height: 1.8;
}

.story-image img {
border-radius: 10px;
width: 100%;
}

.workshop-preview {
padding: 80px 0;
background: linear-gradient(135deg, var(--accent) 0%, #a84a45 100%);
color: white;
}

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

.workshop-text {
text-align: center;
}

.workshop-text h2 {
color: white;
margin-bottom: 20px;
}

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

.workshop-list {
display: grid;
gap: 20px;
margin: 40px 0;
text-align: left;
}

.workshop-item {
background: rgba(255,255,255,0.1);
padding: 20px;
border-radius: 8px;
border-left: 4px solid var(--secondary);
}

.workshop-item h4 {
margin-bottom: 8px;
color: white;
}

.workshop-item p {
font-size: 14px;
opacity: 0.9;
}

.testimonials {
padding: 80px 0;
background: var(--light);
}

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

.testimonial-card {
background: white;
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--secondary);
}

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

.testimonial-author strong {
display: block;
color: var(--dark);
font-weight: 600;
margin-bottom: 5px;
}

.testimonial-author span {
font-size: 13px;
color: #888;
}

.brands-section {
padding: 60px 0;
background: white;
}

.brands-list {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
margin-top: 30px;
}

.brand-item {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.1rem;
font-weight: 600;
color: #999;
}

.visit-section {
padding: 80px 0;
background: var(--light);
}

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

.visit-card {
background: white;
padding: 30px;
border-radius: 8px;
}

.visit-card h3 {
margin-bottom: 15px;
color: var(--primary);
}

.visit-card p {
font-size: 14px;
color: #666;
margin-bottom: 8px;
}

.link-arrow {
color: var(--primary);
font-weight: 600;
}

.link-arrow:hover {
color: var(--accent);
}

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

.footer-content {
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 15px;
}

.footer-links a {
font-size: 13px;
color: rgba(255,255,255,0.7);
}

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

.copyright {
font-size: 12px;
color: rgba(255,255,255,0.5);
}

.page-hero-modern {
background: linear-gradient(135deg, var(--primary) 0%, #1e4a6b 100%);
color: white;
padding: 60px 0 50px;
}

.breadcrumb {
font-size: 13px;
margin-bottom: 20px;
opacity: 0.9;
}

.breadcrumb a {
color: white;
}

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

.breadcrumb span {
margin: 0 8px;
}

.page-hero-modern h1 {
font-size: 2.8rem;
margin-bottom: 12px;
}

.page-hero-modern p {
font-size: 1.1rem;
opacity: 0.9;
}

.products-section {
padding: 80px 0;
background: white;
}

.products-showcase {
display: flex;
flex-direction: column;
gap: 40px;
}

.product-item-detailed {
display: grid;
grid-template-columns: 350px 1fr;
gap: 40px;
background: var(--light);
padding: 30px;
border-radius: 10px;
}

.product-visual {
position: relative;
}

.product-badge {
position: absolute;
top: 10px;
left: 10px;
background: var(--accent);
color: white;
padding: 6px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
z-index: 2;
}

.product-visual img {
border-radius: 8px;
width: 100%;
}

.product-details-full h3 {
margin-bottom: 15px;
font-size: 1.5rem;
}

.product-details-full > p {
color: #666;
margin-bottom: 20px;
line-height: 1.7;
}

.product-features {
list-style: none;
margin-bottom: 25px;
}

.product-features li {
padding: 8px 0;
padding-left: 25px;
position: relative;
font-size: 14px;
color: #666;
}

.product-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary);
font-weight: 700;
}

.product-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: auto;
}

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

.categories-modern {
padding: 80px 0;
background: var(--light);
}

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

.category-modern {
background: white;
padding: 30px;
border-radius: 8px;
transition: all 0.3s;
}

.category-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.category-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary);
opacity: 0.3;
margin-bottom: 15px;
}

.category-modern h3 {
margin-bottom: 12px;
}

.category-modern p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.quality-modern {
padding: 80px 0;
background: white;
}

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

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

.quality-modern-item h3 {
margin-bottom: 15px;
color: var(--primary);
}

.quality-modern-item p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.classes-detailed {
padding: 80px 0;
background: white;
}

.classes-grid-detailed {
display: flex;
flex-direction: column;
gap: 40px;
}

.class-detailed {
background: var(--light);
padding: 35px;
border-radius: 10px;
border-left: 5px solid var(--secondary);
}

.class-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.class-badge {
background: var(--primary);
color: white;
padding: 6px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.class-header h3 {
font-size: 1.6rem;
}

.class-instructor {
margin-bottom: 20px;
padding: 20px;
background: white;
border-radius: 6px;
}

.class-instructor strong {
color: var(--primary);
font-size: 15px;
}

.class-instructor p {
font-size: 14px;
color: #666;
margin-top: 8px;
line-height: 1.6;
}

.class-description {
margin-bottom: 25px;
}

.class-description p {
font-size: 15px;
color: #666;
line-height: 1.7;
}

.class-details-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
margin-bottom: 25px;
}

.detail-item {
font-size: 14px;
}

.detail-item strong {
display: block;
color: var(--dark);
margin-bottom: 5px;
}

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

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

.benefit-modern {
background: white;
padding: 30px;
border-radius: 8px;
}

.benefit-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary);
opacity: 0.3;
margin-bottom: 15px;
}

.benefit-modern h3 {
margin-bottom: 12px;
}

.benefit-modern p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.student-work {
padding: 80px 0;
background: white;
}

.contact-modern {
padding: 80px 0;
background: white;
}

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

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

.contact-info-modern > p {
color: #666;
margin-bottom: 35px;
line-height: 1.7;
}

.contact-details-modern {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 35px;
}

.contact-detail-item h4 {
color: var(--primary);
margin-bottom: 8px;
}

.contact-detail-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

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

.contact-team h4 {
color: var(--primary);
margin-bottom: 15px;
}

.contact-team p {
font-size: 14px;
color: #666;
margin-bottom: 8px;
}

.contact-form-modern {
background: var(--light);
padding: 40px;
border-radius: 10px;
}

.contact-form h3 {
margin-bottom: 10px;
}

.form-intro {
font-size: 14px;
color: #666;
margin-bottom: 25px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 14px;
color: var(--dark);
}

.form-group input, .form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 6px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-bottom: 25px;
}

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

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

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

.map-section {
padding: 80px 0;
background: var(--light);
}

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

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

.thankyou-section, .error-section {
padding: 100px 0;
background: white;
text-align: center;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
max-width: 650px;
margin: 0 auto;
}

.success-icon {
width: 80px;
height: 80px;
background: var(--secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin: 0 auto 30px;
}

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

.thankyou-content p, .error-content p {
color: #666;
margin-bottom: 15px;
line-height: 1.7;
}

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

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
line-height: 1;
margin-bottom: 20px;
}

.policy-section {
padding: 80px 0;
background: white;
}

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

.policy-content h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

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

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

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

.policy-content p {
margin-bottom: 15px;
color: #666;
line-height: 1.8;
}

.policy-content ul {
margin-bottom: 20px;
padding-left: 30px;
}

.policy-content li {
margin-bottom: 10px;
color: #666;
line-height: 1.7;
}

@media (max-width: 968px) {
.hero-modern {
height: auto;
min-height: 500px;
padding: 60px 0;
}

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

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

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

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: white;
flex-direction: column;
padding: 30px;
gap: 20px;
transition: left 0.3s;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.nav.active {
left: 0;
}

.menu-toggle {
display: block;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

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

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

.hero-stats {
gap: 25px;
}

.stat-item strong {
font-size: 1.5rem;
}

.features-modern, .bestsellers, .story-section, .workshop-preview, .testimonials, .brands-section, .visit-section, .products-section, .categories-modern, .quality-modern, .classes-detailed, .benefits-modern, .student-work, .contact-modern, .map-section {
padding: 50px 0;
}

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

.class-header {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
}

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

.hero-modern {
min-height: 450px;
padding: 40px 0;
}

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

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

.btn-hero-primary, .btn-hero-secondary {
width: 100%;
text-align: center;
}

.features-grid-modern, .categories-grid-modern, .quality-grid-modern, .benefits-grid-modern, .testimonials-grid, .visit-grid {
grid-template-columns: 1fr;
}

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

.bestseller-card img {
height: 250px;
}

.workshop-list {
gap: 15px;
}

.brands-list {
gap: 20px;
}

.brand-item {
font-size: 0.95rem;
}

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

.privacy-buttons {
justify-content: center;
width: 100%;
}

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

.class-details-grid {
grid-template-columns: 1fr;
}

.contact-form-modern {
padding: 25px;
}
}

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

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

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

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

.btn-primary, .btn-secondary, .btn-hero-primary, .btn-hero-secondary {
padding: 10px 20px;
font-size: 13px;
}

.stat-item strong {
font-size: 1.3rem;
}

.feature-number, .category-number, .benefit-number {
font-size: 2rem;
}
}
