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

:root {
--primary: #1B4B43;
--accent: #D97642;
--light: #F5F5F0;
--dark: #1A1A1A;
--white: #FFFFFF;
}

body {
font-family: 'Outfit', sans-serif;
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
background: var(--white);
}

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

.header-overlay {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 18px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
letter-spacing: -0.5px;
}

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

.nav a {
color: var(--dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
position: relative;
}

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

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--dark);
transition: 0.3s;
border-radius: 2px;
}

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

.hero-bg-shape {
position: absolute;
width: 600px;
height: 600px;
background: rgba(217, 118, 66, 0.1);
border-radius: 50%;
top: -200px;
right: -100px;
}

.hero-bg-shape-two {
position: absolute;
width: 400px;
height: 400px;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
bottom: -150px;
left: -100px;
}

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

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

.hero-badge {
display: inline-block;
background: rgba(217, 118, 66, 0.2);
color: var(--accent);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(217, 118, 66, 0.3);
}

.hero-mega-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 52px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 20px;
letter-spacing: -1px;
}

.hero-mega-content > p {
font-size: 16px;
opacity: 0.9;
margin-bottom: 30px;
line-height: 1.7;
}

.hero-stats {
display: flex;
gap: 40px;
margin-bottom: 35px;
padding: 25px 0;
border-top: 1px solid rgba(255,255,255,0.2);
border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

.stat-item strong {
font-size: 28px;
font-weight: 700;
color: var(--accent);
line-height: 1;
margin-bottom: 5px;
}

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

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

.btn-primary {
display: inline-block;
background: var(--accent);
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #C2652F;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(217, 118, 66, 0.3);
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.3s;
}

.btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: var(--white);
}

.hero-mega-visual {
position: relative;
}

.hero-image-wrapper {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.hero-float-card {
position: absolute;
bottom: 30px;
left: 30px;
background: var(--white);
padding: 20px 25px;
border-radius: 12px;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-float-card i {
font-size: 28px;
color: var(--accent);
}

.hero-float-card strong {
display: block;
font-size: 15px;
color: var(--dark);
margin-bottom: 2px;
}

.hero-float-card span {
font-size: 12px;
color: #666;
}

.trust-bar {
background: var(--light);
padding: 25px 0;
}

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

.trust-item {
display: flex;
align-items: center;
gap: 10px;
}

.trust-item i {
font-size: 20px;
color: var(--accent);
}

.trust-item span {
font-size: 13px;
font-weight: 500;
color: var(--dark);
}

.featured-categories {
padding: 80px 0;
}

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

.section-header.centered {
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}

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

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
font-weight: 700;
color: var(--primary);
margin-bottom: 12px;
letter-spacing: -0.5px;
}

.section-header p {
font-size: 16px;
color: #666;
}

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

.category-modern {
background: var(--white);
padding: 35px;
border-radius: 12px;
border: 2px solid var(--light);
text-decoration: none;
transition: all 0.3s;
position: relative;
}

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

.category-icon {
width: 60px;
height: 60px;
background: var(--light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.category-icon i {
font-size: 26px;
color: var(--accent);
}

.category-modern h3 {
font-size: 18px;
font-weight: 600;
color: var(--dark);
margin-bottom: 10px;
}

.category-modern p {
font-size: 13px;
color: #666;
line-height: 1.6;
margin-bottom: 15px;
}

.category-arrow {
color: var(--accent);
font-size: 20px;
font-weight: 600;
}

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

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

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

.story-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
margin-top: 10px;
letter-spacing: -0.5px;
}

.story-content p {
font-size: 15px;
color: #666;
margin-bottom: 18px;
line-height: 1.7;
}

.story-signature {
margin-top: 30px;
padding-top: 25px;
border-top: 2px solid #ddd;
}

.story-signature strong {
display: block;
font-size: 16px;
color: var(--dark);
margin-bottom: 3px;
}

.story-signature span {
font-size: 13px;
color: #666;
}

.products-highlight {
padding: 80px 0;
}

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

.product-highlight {
background: var(--white);
border: 2px solid var(--light);
border-radius: 12px;
padding: 35px;
position: relative;
transition: all 0.3s;
}

.product-highlight:hover {
border-color: var(--accent);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(--accent);
color: var(--white);
padding: 5px 12px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
}

.product-visual {
width: 80px;
height: 80px;
background: var(--light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.product-visual i {
font-size: 32px;
color: var(--primary);
}

.product-highlight h3 {
font-size: 18px;
font-weight: 600;
color: var(--dark);
margin-bottom: 12px;
}

.product-highlight p {
font-size: 13px;
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

.product-meta {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid var(--light);
}

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

.product-link {
color: var(--accent);
text-decoration: none;
font-size: 13px;
font-weight: 600;
}

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

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

.workshops-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
margin-top: 10px;
letter-spacing: -0.5px;
}

.workshops-info > p {
font-size: 15px;
color: #666;
margin-bottom: 30px;
line-height: 1.7;
}

.workshop-features {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.workshop-feature {
display: flex;
gap: 15px;
align-items: flex-start;
}

.workshop-feature i {
font-size: 22px;
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}

.workshop-feature strong {
display: block;
font-size: 15px;
color: var(--dark);
margin-bottom: 3px;
}

.workshop-feature span {
font-size: 13px;
color: #666;
}

.workshops-visual {
position: relative;
}

.workshops-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.workshop-badge {
position: absolute;
bottom: 25px;
left: 25px;
background: var(--white);
padding: 18px 22px;
border-radius: 10px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.workshop-badge strong {
display: block;
font-size: 14px;
color: var(--dark);
margin-bottom: 3px;
}

.workshop-badge span {
font-size: 12px;
color: #666;
}

.testimonials {
padding: 80px 0;
}

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

.testimonial-card {
background: var(--white);
border: 2px solid var(--light);
padding: 30px;
border-radius: 12px;
}

.testimonial-stars {
color: var(--accent);
font-size: 18px;
margin-bottom: 15px;
}

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

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

.testimonial-author span {
font-size: 12px;
color: #999;
}

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

.visit-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.visit-info {
padding: 50px;
}

.visit-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
color: var(--primary);
margin-bottom: 15px;
letter-spacing: -0.5px;
}

.visit-info > p {
font-size: 15px;
color: #666;
margin-bottom: 30px;
line-height: 1.7;
}

.visit-details {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.visit-detail {
display: flex;
gap: 15px;
}

.visit-detail i {
font-size: 20px;
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}

.visit-detail strong {
display: block;
font-size: 14px;
color: var(--dark);
margin-bottom: 3px;
}

.visit-detail span {
font-size: 13px;
color: #666;
}

.visit-map {
min-height: 400px;
}

.visit-map iframe {
width: 100%;
height: 100%;
}

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

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

.footer-col h4 {
font-size: 15px;
margin-bottom: 15px;
font-weight: 600;
}

.footer-col p {
font-size: 13px;
opacity: 0.8;
line-height: 1.6;
}

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

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 9999;
display: none;
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.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-content a {
color: var(--accent);
}

#acceptPrivacy {
background: var(--accent);
color: var(--white);
border: none;
padding: 10px 25px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
transition: background 0.3s;
}

#acceptPrivacy:hover {
background: #C2652F;
}

@media (max-width: 968px) {
.hero-mega-grid,
.story-grid,
.workshops-split,
.visit-content {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-mega {
min-height: auto;
padding: 60px 0 40px;
}

.hero-mega-content h1 {
font-size: 38px;
}

.hero-stats {
gap: 25px;
}

.story-image {
order: -1;
}

.visit-map {
min-height: 350px;
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 56px;
left: -100%;
width: 100%;
background: var(--white);
flex-direction: column;
padding: 25px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: left 0.3s;
gap: 20px;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.section-header h2 {
font-size: 30px;
}

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

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

.stat-item strong {
font-size: 24px;
}

.hero-float-card {
left: 20px;
bottom: 20px;
padding: 15px 18px;
}

.hero-float-card i {
font-size: 22px;
}

.hero-float-card strong {
font-size: 13px;
}

.hero-float-card span {
font-size: 11px;
}

.trust-items {
justify-content: center;
}

.categories-modern {
grid-template-columns: 1fr;
}

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

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

.visit-info {
padding: 35px;
}

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

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

.hero-mega-content h1 {
font-size: 28px;
}

.section-header h2 {
font-size: 26px;
}

.story-content h2,
.workshops-info h2,
.visit-info h2 {
font-size: 26px;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

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

.hero-stats {
gap: 15px;
padding: 20px 0;
}

.stat-item strong {
font-size: 20px;
}

.stat-item span {
font-size: 11px;
}

.category-modern,
.product-highlight {
padding: 25px;
}

.visit-info {
padding: 25px;
}
}

@media (max-width: 320px) {
.logo {
font-size: 16px;
}

.hero-mega-content h1 {
font-size: 24px;
}

.section-header h2 {
font-size: 22px;
}

.btn-primary,
.btn-outline {
padding: 12px 24px;
font-size: 13px;
}

.hero-float-card {
padding: 12px 15px;
}
}


.page-hero-alt {
background: linear-gradient(135deg, var(--primary) 0%, #0F3A33 100%);
padding: 80px 0 60px;
text-align: center;
color: var(--white);
}

.page-hero-content {
max-width: 700px;
margin: 0 auto;
}

.page-hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
margin-top: 10px;
letter-spacing: -0.5px;
}

.page-hero-content p {
font-size: 16px;
opacity: 0.9;
}

.products-featured {
padding: 80px 0;
}

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

.product-featured {
background: var(--white);
border: 2px solid var(--light);
border-radius: 12px;
padding: 35px;
position: relative;
transition: all 0.3s;
}

.product-featured:hover {
border-color: var(--accent);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-featured-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(--accent);
color: var(--white);
padding: 6px 14px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
}

.product-featured-visual {
width: 90px;
height: 90px;
background: var(--light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
}

.product-featured-visual i {
font-size: 38px;
color: var(--primary);
}

.product-featured h3 {
font-size: 20px;
font-weight: 600;
color: var(--dark);
margin-bottom: 15px;
}

.product-featured p {
font-size: 14px;
color: #666;
line-height: 1.7;
margin-bottom: 20px;
}

.product-featured-specs {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 25px;
padding: 20px 0;
border-top: 1px solid var(--light);
border-bottom: 1px solid var(--light);
}

.product-featured-specs span {
font-size: 13px;
color: #666;
display: flex;
align-items: center;
gap: 8px;
}

.product-featured-specs i {
color: var(--accent);
font-size: 12px;
}

.product-featured-footer {
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
}

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

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

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

.quality-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quality-text-alt h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
margin-top: 10px;
letter-spacing: -0.5px;
}

.quality-text-alt p {
font-size: 15px;
color: #666;
margin-bottom: 18px;
line-height: 1.7;
}

.quality-features {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 30px;
}

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

.quality-feature-item i {
font-size: 24px;
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}

.quality-feature-item strong {
display: block;
font-size: 15px;
color: var(--dark);
margin-bottom: 3px;
}

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

.categories-overview {
padding: 80px 0;
}

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

.category-item-alt {
background: var(--white);
border: 2px solid var(--light);
padding: 30px;
border-radius: 12px;
display: flex;
gap: 20px;
transition: all 0.3s;
}

.category-item-alt:hover {
border-color: var(--accent);
box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.category-item-icon {
width: 60px;
height: 60px;
background: var(--light);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.category-item-icon i {
font-size: 26px;
color: var(--accent);
}

.category-item-content h3 {
font-size: 17px;
font-weight: 600;
color: var(--dark);
margin-bottom: 8px;
}

.category-item-content p {
font-size: 13px;
color: #666;
line-height: 1.6;
}

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

.brands-text {
max-width: 900px;
margin: 0 auto;
}

.brands-text p {
font-size: 15px;
color: #666;
line-height: 1.7;
margin-bottom: 18px;
}

.expert-help {
padding: 80px 0;
}

.expert-card {
background: linear-gradient(135deg, var(--primary) 0%, #0F3A33 100%);
border-radius: 16px;
padding: 60px;
color: var(--white);
text-align: center;
}

.expert-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 15px;
letter-spacing: -0.5px;
}

.expert-content > p {
font-size: 16px;
opacity: 0.9;
margin-bottom: 35px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

.expert-member {
text-align: center;
}

.expert-member strong {
display: block;
font-size: 16px;
margin-bottom: 3px;
}

.expert-member span {
font-size: 13px;
opacity: 0.8;
}

.workshop-intro-section {
padding: 80px 0;
}

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

.workshop-intro-visual {
position: relative;
}

.workshop-intro-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.workshop-intro-badge {
position: absolute;
bottom: 25px;
left: 25px;
background: var(--white);
padding: 18px 22px;
border-radius: 10px;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
display: flex;
align-items: center;
gap: 12px;
}

.workshop-intro-badge i {
font-size: 24px;
color: var(--accent);
}

.workshop-intro-badge strong {
display: block;
font-size: 14px;
color: var(--dark);
margin-bottom: 2px;
}

.workshop-intro-badge span {
font-size: 12px;
color: #666;
}

.workshop-intro-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
margin-top: 10px;
letter-spacing: -0.5px;
}

.workshop-intro-text p {
font-size: 15px;
color: #666;
margin-bottom: 18px;
line-height: 1.7;
}

.workshop-intro-stats {
display: flex;
gap: 35px;
margin-top: 30px;
padding-top: 25px;
border-top: 2px solid var(--light);
}

.workshop-stat strong {
display: block;
font-size: 32px;
font-weight: 700;
color: var(--accent);
line-height: 1;
margin-bottom: 5px;
}

.workshop-stat span {
font-size: 13px;
color: #666;
}

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

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

.workshop-catalog-item {
background: var(--white);
border: 2px solid #E5E5E5;
border-radius: 12px;
padding: 35px;
transition: all 0.3s;
}

.workshop-catalog-item:hover {
border-color: var(--accent);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.workshop-catalog-icon {
width: 60px;
height: 60px;
background: var(--light);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}

.workshop-catalog-icon i {
font-size: 26px;
color: var(--accent);
}

.workshop-catalog-level {
background: var(--primary);
color: var(--white);
padding: 5px 12px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
}

.workshop-catalog-item h3 {
font-size: 19px;
font-weight: 600;
color: var(--dark);
margin-bottom: 12px;
}

.workshop-catalog-item p {
font-size: 14px;
color: #666;
line-height: 1.7;
margin-bottom: 20px;
}

.workshop-catalog-details {
display: flex;
gap: 15px;
flex-wrap: wrap;
padding: 18px 0;
border-top: 1px solid var(--light);
border-bottom: 1px solid var(--light);
margin-bottom: 15px;
}

.workshop-catalog-details span {
font-size: 12px;
color: #666;
display: flex;
align-items: center;
gap: 6px;
}

.workshop-catalog-details i {
color: var(--accent);
}

.workshop-catalog-teacher {
font-size: 13px;
color: #666;
}

.workshop-catalog-teacher strong {
color: var(--dark);
}

.workshop-benefits-section {
padding: 80px 0;
}

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

.workshop-benefit-card {
background: var(--white);
border: 2px solid var(--light);
padding: 35px;
border-radius: 12px;
text-align: center;
}

.workshop-benefit-icon {
width: 70px;
height: 70px;
background: var(--light);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.workshop-benefit-icon i {
font-size: 30px;
color: var(--accent);
}

.workshop-benefit-card h3 {
font-size: 17px;
font-weight: 600;
color: var(--dark);
margin-bottom: 10px;
}

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

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

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

.workshop-testimonial {
background: var(--white);
border: 2px solid #E5E5E5;
padding: 30px;
border-radius: 12px;
}

.workshop-testimonial-stars {
color: var(--accent);
font-size: 18px;
margin-bottom: 15px;
}

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

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

.workshop-testimonial-author span {
font-size: 12px;
color: #999;
}

.workshop-booking {
padding: 80px 0;
}

.workshop-booking-card {
background: linear-gradient(135deg, var(--primary) 0%, #0F3A33 100%);
border-radius: 16px;
padding: 60px;
color: var(--white);
}

.workshop-booking-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 15px;
letter-spacing: -0.5px;
}

.workshop-booking-content > p {
font-size: 16px;
opacity: 0.9;
margin-bottom: 35px;
max-width: 800px;
}

.workshop-booking-info {
display: flex;
gap: 40px;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.workshop-booking-item i {
font-size: 24px;
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}

.workshop-booking-item strong {
display: block;
font-size: 15px;
margin-bottom: 3px;
}

.workshop-booking-item span {
font-size: 13px;
opacity: 0.8;
}

.contact-main {
padding: 80px 0;
}

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

.contact-main-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
color: var(--primary);
margin-bottom: 15px;
letter-spacing: -0.5px;
}

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

.contact-main-methods {
display: flex;
flex-direction: column;
gap: 30px;
}

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

.contact-main-method-icon {
width: 60px;
height: 60px;
background: var(--light);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-main-method-icon i {
font-size: 24px;
color: var(--accent);
}

.contact-main-method-info {
display: flex;
flex-direction: column;
gap: 3px;
}

.contact-main-method-info strong {
font-size: 15px;
color: var(--dark);
margin-bottom: 5px;
}

.contact-main-method-info span {
font-size: 13px;
color: #666;
}

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

.contact-form-wrapper h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 600;
color: var(--primary);
margin-bottom: 10px;
}

.contact-form-wrapper > p {
font-size: 14px;
color: #666;
margin-bottom: 25px;
}

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

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

.form-field input,
.form-field textarea {
width: 100%;
padding: 12px 15px;
border: 2px solid #E5E5E5;
border-radius: 8px;
font-size: 14px;
font-family: 'Outfit', sans-serif;
transition: border-color 0.3s;
background: var(--white);
}

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

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

.form-field-checkbox {
margin-bottom: 25px;
}

.checkbox-wrapper {
display: flex;
gap: 10px;
font-size: 12px;
color: #666;
cursor: pointer;
align-items: flex-start;
}

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

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

.btn-full {
width: 100%;
}

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

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

.map-directions {
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
}

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

.map-direction-item i {
font-size: 24px;
color: var(--accent);
flex-shrink: 0;
margin-top: 2px;
}

.map-direction-item strong {
display: block;
font-size: 14px;
color: var(--dark);
margin-bottom: 3px;
}

.map-direction-item span {
font-size: 13px;
color: #666;
}

.contact-team {
padding: 80px 0;
}

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

.team-member {
background: var(--white);
border: 2px solid var(--light);
padding: 30px;
border-radius: 12px;
text-align: center;
}

.team-member-role {
display: inline-block;
background: var(--light);
color: var(--accent);
padding: 5px 12px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
margin-bottom: 15px;
}

.team-member h3 {
font-size: 18px;
font-weight: 600;
color: var(--dark);
margin-bottom: 10px;
}

.team-member p {
font-size: 13px;
color: #666;
line-height: 1.6;
}

@media (max-width: 968px) {
.quality-grid-alt,
.workshop-intro-grid,
.contact-main-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.workshop-intro-visual {
order: -1;
}

.page-hero-content h1 {
font-size: 34px;
}

.expert-card,
.workshop-booking-card {
padding: 40px;
}

.expert-content h2,
.workshop-booking-content h2 {
font-size: 28px;
}
}

@media (max-width: 768px) {
.products-showcase,
.categories-list,
.workshops-catalog-grid,
.workshop-benefits-grid,
.workshop-testimonials-grid,
.contact-team-grid {
grid-template-columns: 1fr;
}

.workshop-intro-stats,
.expert-team,
.workshop-booking-info {
flex-direction: column;
gap: 20px;
}

.contact-form-wrapper {
padding: 30px;
}
}

@media (max-width: 480px) {
.page-hero-content h1 {
font-size: 28px;
}

.product-featured,
.workshop-catalog-item,
.workshop-benefit-card,
.team-member {
padding: 25px;
}

.expert-card,
.workshop-booking-card {
padding: 30px;
}

.product-featured-footer {
flex-direction: column;
align-items: flex-start;
}

.product-featured-footer .btn-primary {
width: 100%;
text-align: center;
}
}


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

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

.thankyou-icon {
width: 90px;
height: 90px;
background: var(--light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.thankyou-icon i {
font-size: 45px;
color: var(--accent);
}

.thankyou-content h1,
.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 34px;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
letter-spacing: -0.5px;
}

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

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

.thankyou-info,
.error-links {
background: var(--light);
padding: 25px;
border-radius: 12px;
margin-top: 30px;
}

.thankyou-info p {
margin-bottom: 8px;
}

.error-number {
font-size: 100px;
font-weight: 700;
color: var(--accent);
line-height: 1;
margin-bottom: 25px;
}

.error-links h3 {
font-size: 18px;
margin-bottom: 18px;
color: var(--dark);
}

.error-links a {
display: flex;
align-items: center;
gap: 12px;
color: var(--primary);
text-decoration: none;
font-size: 14px;
margin-bottom: 12px;
transition: color 0.3s;
}

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

.error-links i {
font-size: 18px;
}

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

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

@media (max-width: 768px) {
.thankyou-content h1,
.error-content h1 {
font-size: 28px;
}

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

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

@media (max-width: 480px) {
.thankyou-icon {
width: 70px;
height: 70px;
}

.thankyou-icon i {
font-size: 35px;
}

.error-number {
font-size: 70px;
}

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