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

*,
*::before,
*::after {
box-sizing: border-box;
max-width: 100%;
}

:root {
--primary: #2563eb;
--primary-dark: #1e40af;
--secondary: #0ea5e9;
--accent: #f59e0b;
--dark: #0f172a;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
--success: #10b981;
--error: #ef4444;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Sora', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
overflow-x: hidden;
max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
margin-bottom: 0.8rem;
overflow-wrap: break-word;
word-break: break-word;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

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

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

.container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}

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

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 13px;
flex: 1;
min-width: 250px;
}

.privacy-content a {
color: var(--accent);
text-decoration: underline;
}

#acceptPrivacy {
background: var(--accent);
color: var(--dark);
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
font-size: 13px;
white-space: nowrap;
}

#acceptPrivacy:hover {
background: #d97706;
}

header {
background: var(--white);
border-bottom: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 1000;
transition: transform 0.3s ease;
}

header.hide {
transform: translateY(-100%);
}

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

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

.main-nav ul {
display: flex;
list-style: none;
gap: 25px;
}

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

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

.main-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s ease;
}

.main-nav a:hover::after {
width: 100%;
}

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

.hero-mega {
position: relative;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: var(--white);
padding: 80px 20px;
overflow: hidden;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}

.shape {
position: absolute;
border-radius: 50%;
background: rgba(37, 99, 235, 0.1);
filter: blur(60px);
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
}

.shape-2 {
width: 500px;
height: 500px;
top: 50%;
right: -150px;
background: rgba(14, 165, 233, 0.08);
}

.shape-3 {
width: 300px;
height: 300px;
bottom: -100px;
left: 30%;
background: rgba(245, 158, 11, 0.06);
}

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

.hero-badge {
display: inline-block;
background: rgba(245, 158, 11, 0.15);
color: var(--accent);
padding: 6px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-mega-content h1 {
font-size: clamp(1.8rem, 5vw, 3rem);
line-height: 1.1;
margin-bottom: 20px;
font-weight: 700;
max-width: 100%;
}

.hero-mega-content .highlight {
background: linear-gradient(90deg, #2563eb, #0ea5e9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-mega-content > p {
font-size: clamp(0.95rem, 2vw, 1.1rem);
line-height: 1.7;
margin-bottom: 35px;
opacity: 0.9;
max-width: 100%;
overflow-wrap: break-word;
}

.hero-stats {
display: flex;
gap: 30px;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.stat-item strong {
font-size: 2rem;
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-outline {
background: transparent;
border: 2px solid rgba(255, 255, 255, 0.3);
color: var(--white);
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

.hero-mega-image {
display: flex;
justify-content: center;
align-items: center;
}

.hero-mega-image img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.btn-primary, .btn-secondary, .btn-small {
display: inline-block;
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

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

.btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

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

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

.btn-small {
padding: 8px 20px;
font-size: 13px;
background: var(--primary);
color: var(--white);
}

.btn-small:hover {
background: var(--primary-dark);
transform: translateY(-1px);
}

section {
padding: 60px 20px;
}

.trust-bar {
background: var(--white);
padding: 30px 20px;
border-bottom: 1px solid #e2e8f0;
}

.trust-items {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
}

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

.trust-item i {
font-size: 2rem;
color: var(--primary);
}

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

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

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

.section-header h2 {
font-size: clamp(1.5rem, 4vw, 2.2rem);
margin-bottom: 12px;
max-width: 100%;
}

.section-header p {
color: var(--gray);
font-size: clamp(0.9rem, 2vw, 1.05rem);
max-width: 100%;
margin: 0 auto;
overflow-wrap: break-word;
}

.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
gap: 30px;
}

.category-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

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

.category-image {
height: 280px;
overflow: hidden;
}

.category-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

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

.category-content {
padding: 30px;
max-width: 100%;
box-sizing: border-box;
}

.category-content h3 {
font-size: clamp(1.2rem, 3vw, 1.5rem);
margin-bottom: 12px;
max-width: 100%;
}

.category-content p {
color: var(--gray);
line-height: 1.6;
margin-bottom: 20px;
max-width: 100%;
overflow-wrap: break-word;
}

.category-link {
color: var(--primary);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}

.category-link i {
transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
transform: translateX(5px);
}

.featured-products {
background: var(--white);
}

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

.product-box {
position: relative;
background: var(--light);
padding: 35px;
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

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

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

.product-box h3 {
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
margin-bottom: 12px;
max-width: 100%;
}

.product-box p {
color: var(--gray);
line-height: 1.6;
margin-bottom: 20px;
font-size: 14px;
max-width: 100%;
overflow-wrap: break-word;
}

.product-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}

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

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

.benefits-layout {
max-width: 1000px;
margin: 0 auto;
}

.benefits-content h2 {
font-size: clamp(1.5rem, 4vw, 2.2rem);
margin-bottom: 15px;
max-width: 100%;
}

.benefits-content > p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 35px;
font-size: clamp(0.9rem, 2vw, 1.05rem);
max-width: 100%;
overflow-wrap: break-word;
}

.benefits-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.benefit-row {
display: flex;
gap: 20px;
align-items: flex-start;
background: var(--white);
padding: 25px;
border-radius: 10px;
transition: transform 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

.benefit-row:hover {
transform: translateX(5px);
}

.benefit-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background: rgba(37, 99, 235, 0.1);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}

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

.benefit-text h4 {
font-size: clamp(1rem, 2.5vw, 1.2rem);
margin-bottom: 8px;
max-width: 100%;
}

.benefit-text p {
color: var(--gray);
line-height: 1.6;
font-size: 14px;
max-width: 100%;
overflow-wrap: break-word;
}

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

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

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

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

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

.testimonial-card > p {
color: var(--dark);
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
font-size: 14px;
max-width: 100%;
overflow-wrap: break-word;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.testimonial-author strong {
font-size: 15px;
color: var(--dark);
}

.testimonial-author span {
font-size: 13px;
color: var(--gray);
}

.info-banner {
background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
color: var(--white);
}

.banner-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.banner-text h2 {
font-size: clamp(1.4rem, 3.5vw, 2rem);
margin-bottom: 10px;
max-width: 100%;
}

.banner-text p {
font-size: clamp(0.9rem, 2vw, 1.05rem);
opacity: 0.95;
line-height: 1.6;
max-width: 100%;
overflow-wrap: break-word;
}

.banner-action .btn-primary {
background: var(--white);
color: var(--primary);
}

.banner-action .btn-primary:hover {
background: var(--light);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.latest-news {
background: var(--light);
}

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

.news-card {
background: var(--white);
padding: 30px;
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
max-width: 100%;
box-sizing: border-box;
}

.news-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-date {
color: var(--primary);
font-size: 13px;
font-weight: 600;
margin-bottom: 12px;
}

.news-card h3 {
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
margin-bottom: 12px;
line-height: 1.3;
max-width: 100%;
}

.news-card p {
color: var(--gray);
line-height: 1.6;
margin-bottom: 15px;
font-size: 14px;
max-width: 100%;
overflow-wrap: break-word;
}

.news-card a {
color: var(--primary);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}

.news-card a i {
transition: transform 0.3s ease;
}

.news-card:hover a i {
transform: translateX(5px);
}

.newsletter-modern {
background: var(--white);
}

.newsletter-box {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: var(--white);
padding: 50px;
border-radius: 16px;
display: flex;
align-items: center;
gap: 40px;
flex-wrap: wrap;
max-width: 100%;
box-sizing: border-box;
}

.newsletter-icon {
flex-shrink: 0;
width: 80px;
height: 80px;
background: rgba(245, 158, 11, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.newsletter-icon i {
font-size: 2.5rem;
color: var(--accent);
}

.newsletter-text {
flex: 1;
min-width: min(300px, 100%);
max-width: 100%;
}

.newsletter-text h2 {
font-size: clamp(1.4rem, 3.5vw, 2rem);
margin-bottom: 10px;
max-width: 100%;
}

.newsletter-text p {
font-size: clamp(0.9rem, 2vw, 1.05rem);
opacity: 0.9;
line-height: 1.6;
max-width: 100%;
overflow-wrap: break-word;
}

.newsletter-action .btn-primary {
background: var(--accent);
color: var(--dark);
white-space: nowrap;
}

.newsletter-action .btn-primary:hover {
background: #d97706;
}

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

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

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 10px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
font-size: 3rem;
color: var(--primary);
margin-bottom: 15px;
}

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

.feature-card p {
color: var(--gray);
font-size: 14px;
}

.products-preview h2, .why-choose h2, .newsletter h2, .cta-section h2 {
text-align: center;
margin-bottom: 40px;
}

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

.product-item {
background: var(--light);
padding: 35px;
border-radius: 10px;
text-align: center;
}

.product-icon {
margin-bottom: 20px;
}

.product-icon i {
font-size: 4rem;
color: var(--secondary);
}

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

.product-item p {
color: var(--gray);
margin-bottom: 20px;
font-size: 14px;
}

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

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

.why-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.why-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.why-item i {
font-size: 1.8rem;
color: var(--success);
flex-shrink: 0;
}

.why-item h4 {
margin-bottom: 5px;
}

.why-item p {
color: var(--gray);
font-size: 14px;
}

.newsletter {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
text-align: center;
}

.newsletter-content h2 {
margin-bottom: 15px;
}

.newsletter-content p {
margin-bottom: 25px;
font-size: 1.05rem;
}

.cta-section {
background: var(--light);
text-align: center;
}

.cta-section p {
max-width: 700px;
margin: 0 auto 25px;
color: var(--gray);
}

.page-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 50px 20px;
text-align: center;
}

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

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
}

.products-showcase {
background: var(--white);
}

.products-list {
display: flex;
flex-direction: column;
gap: 30px;
}

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

.product-image {
display: flex;
align-items: center;
justify-content: center;
background: var(--white);
border-radius: 8px;
}

.product-image i {
font-size: 5rem;
color: var(--secondary);
}

.product-details h3 {
margin-bottom: 10px;
}

.product-details p {
color: var(--gray);
margin-bottom: 15px;
font-size: 14px;
}

.product-specs {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 15px;
}

.product-specs span {
display: flex;
align-items: center;
gap: 5px;
font-size: 13px;
color: var(--gray);
}

.product-specs i {
color: var(--primary);
}

.product-price {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 15px;
}

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

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

.feature-box {
background: var(--white);
padding: 25px;
border-radius: 8px;
text-align: center;
}

.feature-box i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 12px;
}

.feature-box h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}

.feature-box p {
font-size: 13px;
color: var(--gray);
}

.info-section {
background: var(--white);
text-align: center;
}

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

.info-section p {
max-width: 800px;
margin: 0 auto 15px;
color: var(--gray);
}

.info-section .btn-primary {
margin-top: 15px;
}

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

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

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

.benefit-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 12px;
}

.benefit-item h3 {
margin-bottom: 8px;
}

.benefit-item p {
font-size: 13px;
color: var(--gray);
}

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

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

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

.contact-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.contact-item i {
font-size: 1.5rem;
color: var(--primary);
flex-shrink: 0;
margin-top: 3px;
}

.contact-item h3 {
font-size: 1rem;
margin-bottom: 5px;
}

.contact-item p {
color: var(--gray);
font-size: 14px;
}

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

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

.contact-form-wrapper > p {
color: var(--gray);
margin-bottom: 25px;
font-size: 14px;
}

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

.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #cbd5e1;
border-radius: 6px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

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

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

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

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

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

.contact-form button {
width: 100%;
}

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

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

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

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

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

.thankyou-icon, .error-icon {
margin-bottom: 25px;
}

.thankyou-icon i {
font-size: 5rem;
color: var(--success);
}

.error-icon i {
font-size: 5rem;
color: var(--accent);
}

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

.thankyou-content p, .error-content p {
color: var(--gray);
margin-bottom: 15px;
}

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

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

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

.error-links {
background: var(--light);
padding: 25px;
border-radius: 8px;
margin-top: 30px;
text-align: left;
}

.error-links h3 {
margin-bottom: 15px;
}

.error-links ul {
list-style: none;
}

.error-links li {
margin-bottom: 10px;
}

.error-links a {
color: var(--primary);
font-weight: 500;
}

.error-links a:hover {
text-decoration: underline;
}

.policy-section {
background: var(--white);
padding: 60px 20px;
}

.policy-section h1 {
margin-bottom: 10px;
}

.policy-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 30px;
}

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

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
color: var(--primary);
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
}

.policy-content h4 {
margin-top: 20px;
margin-bottom: 10px;
}

.policy-content p {
margin-bottom: 15px;
color: var(--gray);
line-height: 1.7;
}

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

.policy-content li {
margin-bottom: 8px;
color: var(--gray);
line-height: 1.7;
}

.policy-content strong {
color: var(--dark);
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 14px;
}

.cookie-table th,
.cookie-table td {
padding: 12px;
text-align: left;
border: 1px solid #e2e8f0;
}

.cookie-table th {
background: var(--light);
font-weight: 600;
color: var(--dark);
}

.cookie-table td {
color: var(--gray);
}

.table-wrapper {
overflow-x: auto;
margin: 20px 0;
-webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
.cookie-table {
min-width: 600px;
}
}

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

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

.footer-col h4 {
margin-bottom: 15px;
font-size: 1.1rem;
}

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

.footer-col ul {
list-style: none;
}

.footer-col li {
margin-bottom: 8px;
}

.footer-col a {
font-size: 14px;
opacity: 0.8;
}

.footer-col a:hover {
opacity: 1;
color: var(--accent);
}

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

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

@media (max-width: 768px) {
.main-nav {
position: fixed;
top: 0;
left: -100%;
width: 280px;
height: 100vh;
background: var(--white);
padding: 80px 30px 30px;
transition: left 0.3s ease;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
z-index: 999;
}

.main-nav.active {
left: 0;
}

.main-nav ul {
flex-direction: column;
gap: 20px;
}

.menu-toggle {
display: block;
z-index: 1001;
}

.hero-mega .container {
grid-template-columns: 1fr;
}

.hero-mega-image {
display: none;
}

.hero-mega-content h1 {
font-size: 2.2rem;
}

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

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

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

.banner-text {
max-width: 100%;
}

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

.product-image {
height: 150px;
}

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

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

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

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

.hero-mega {
padding: 50px 20px;
}

.hero-mega-content h1 {
font-size: 1.8rem;
}

.hero-stats {
gap: 20px;
}

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

.newsletter-box {
padding: 30px;
flex-direction: column;
text-align: center;
}

.newsletter-text {
min-width: auto;
}

section {
padding: 40px 20px;
}

.feature-grid,
.product-grid,
.features-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

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

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

h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }
}

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

section {
padding: 30px 10px;
}

.hero-mega {
padding: 40px 10px;
}

.hero-mega-content > p,
.section-header p,
.banner-text p,
.benefits-content > p {
max-width: 100%;
}

.hero-stats {
gap: 15px;
}

.hero-actions {
gap: 10px;
}

.trust-bar {
padding: 20px 10px;
}

.trust-items {
gap: 15px;
}

.product-box,
.testimonial-card,
.news-card,
.benefit-row {
padding: 15px 10px;
}

.category-content {
padding: 20px 10px;
}

.newsletter-box {
padding: 25px 10px;
gap: 20px;
}

.newsletter-icon {
width: 60px;
height: 60px;
}

.banner-content {
gap: 20px;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-small {
max-width: 100%;
padding: 10px 15px;
}

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