:root {
--primary-color: #6366f1;
--primary-dark: #4f46e5;
--secondary-color: #ec4899;
--accent-color: #f59e0b;
--background: #0f172a;
--surface: #1e293b;
--surface-light: #334155;
--text-primary: #f1f5f9;
--text-secondary: #cbd5e1;
--success: #10b981;
--error: #ef4444;
--border: #475569;
--shadow: rgba(0, 0, 0, 0.3);
}

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--background);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}

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

.navbar {
background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 6px var(--shadow);
backdrop-filter: blur(10px);
}

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

.logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: var(--text-primary);
font-size: 1.5rem;
font-weight: bold;
transition: transform 0.3s ease;
}

.logo:hover {
transform: scale(1.05);
}

.logo img {
border-radius: 50%;
border: 2px solid var(--primary-color);
box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-link {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.cart-link {
position: relative;
display: flex;
align-items: center;
}

.cart-count {
position: absolute;
top: -8px;
right: -8px;
background: var(--secondary-color);
color: white;
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: bold;
}

.hero {
padding: 6rem 0;
background: linear-gradient(135deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
top: -250px;
right: -250px;
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
position: relative;
z-index: 1;
}

.greeting-multilang {
font-size: 1.2rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

.greeting {
display: none;
animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
0%, 100% { opacity: 0; }
50% { opacity: 1; }
}

.hero h2 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero p {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 2rem;
}

.cta-button {
display: inline-block;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
}

.features,
.about-products,
.products,
.cta-section,
.about-story,
.about-values,
.team-section,
.contact-section,
.cart-section,
.checkout-section,
.success-section {
padding: 4rem 0;
}

.features h2,
.about-products h2,
.products h2,
.cta-section h2,
.about-story h2,
.about-values h2,
.team-section h2,
.contact-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--text-primary);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.feature-card {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid var(--border);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px var(--shadow);
border-color: var(--primary-color);
}

.feature-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.feature-card p {
color: var(--text-secondary);
}

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

.stat-item {
text-align: center;
padding: 2rem;
background: linear-gradient(135deg, var(--surface), var(--surface-light));
border-radius: 15px;
border: 1px solid var(--border);
}

.stat-item h3 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.stat-item p {
color: var(--text-secondary);
font-size: 1.1rem;
}

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

.about-content p {
margin-bottom: 1.5rem;
color: var(--text-secondary);
font-size: 1.1rem;
line-height: 1.8;
}

.quality-badges {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 3rem 0;
}

.badge {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
border: 1px solid var(--primary-color);
}

.badge h4 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.3rem;
}

.badge p {
color: var(--text-secondary);
margin: 0;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}

.product-card {
background: var(--surface);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid var(--border);
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px var(--shadow);
border-color: var(--primary-color);
}

.product-image {
position: relative;
overflow: hidden;
height: 300px;
}

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

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

.product-badge {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary-color);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.product-info {
padding: 1.5rem;
}

.product-info h3 {
font-size: 1.3rem;
margin-bottom: 0.75rem;
color: var(--text-primary);
}

.product-description {
color: var(--text-secondary);
margin-bottom: 1rem;
font-size: 0.95rem;
}

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

.product-buttons {
display: flex;
gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
flex: 1;
padding: 0.75rem 1.5rem;
border-radius: 8px;
text-decoration: none;
text-align: center;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

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

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

.add-to-cart {
font-size: 0.9rem;
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
text-align: center;
border-radius: 20px;
margin: 4rem 0;
}

.cta-section h2,
.cta-section p {
color: white;
}

footer {
background: var(--surface);
padding: 3rem 0 1rem;
border-top: 1px solid var(--border);
}

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

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

.footer-column p,
.footer-column ul {
color: var(--text-secondary);
}

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

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

.footer-column ul li a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column ul li a:hover {
color: var(--primary-color);
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-links a {
color: var(--text-secondary);
transition: all 0.3s ease;
}

.social-links a:hover {
color: var(--primary-color);
transform: translateY(-3px);
}

.contact-info li {
display: flex;
align-items: start;
gap: 0.5rem;
margin-bottom: 1rem;
}

.contact-info svg {
flex-shrink: 0;
margin-top: 2px;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--border);
color: var(--text-secondary);
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--surface);
padding: 1.5rem;
box-shadow: 0 -4px 20px var(--shadow);
z-index: 10000;
display: none;
border-top: 2px solid var(--primary-color);
}

.cookie-consent.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
margin-bottom: 0.5rem;
color: var(--primary-color);
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-top: 1rem;
flex-wrap: wrap;
align-items: center;
}

.btn-accept,
.btn-decline {
padding: 0.75rem 2rem;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

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

.btn-decline {
background: transparent;
color: var(--text-secondary);
border: 1px solid var(--border);
}

.btn-decline:hover {
background: var(--surface-light);
}

.cookie-link {
color: var(--primary-color);
text-decoration: none;
}

.notification {
position: fixed;
top: 100px;
right: 20px;
padding: 1rem 2rem;
background: var(--success);
color: white;
border-radius: 8px;
box-shadow: 0 4px 15px var(--shadow);
z-index: 10000;
opacity: 0;
transform: translateX(400px);
transition: all 0.3s ease;
}

.notification.show {
opacity: 1;
transform: translateX(0);
}

.product-detail {
padding: 4rem 0;
}

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

.product-detail-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 10px 40px var(--shadow);
}

.product-detail-info h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.product-price-large {
font-size: 2.5rem;
color: var(--primary-color);
font-weight: bold;
margin: 1rem 0;
}

.product-rating {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1.5rem;
}

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

.rating-text {
color: var(--text-secondary);
}

.product-description-full {
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 2rem;
font-size: 1.05rem;
}

.product-features,
.product-specs {
margin: 2rem 0;
}

.product-features h3,
.product-specs h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.product-features ul,
.product-specs ul {
list-style-position: inside;
color: var(--text-secondary);
}

.product-features li,
.product-specs li {
margin-bottom: 0.5rem;
padding-left: 1rem;
}

.product-actions {
margin: 2rem 0;
}

.quantity-selector {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.quantity-selector label {
font-weight: 600;
color: var(--text-primary);
}

.qty-btn {
background: var(--surface);
border: 1px solid var(--border);
color: var(--text-primary);
width: 40px;
height: 40px;
border-radius: 8px;
cursor: pointer;
font-size: 1.2rem;
transition: all 0.3s ease;
}

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

#quantity {
width: 80px;
padding: 0.5rem;
text-align: center;
background: var(--surface);
border: 1px solid var(--border);
color: var(--text-primary);
border-radius: 8px;
font-size: 1.1rem;
}

.btn-large {
padding: 1rem 2rem;
font-size: 1.1rem;
margin-right: 1rem;
margin-bottom: 1rem;
}

.product-guarantee {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
}

.guarantee-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--text-secondary);
}

.guarantee-item svg {
color: var(--success);
}

.cart-content {
min-height: 400px;
}

.empty-cart {
text-align: center;
padding: 4rem 2rem;
}

.empty-cart svg {
color: var(--text-secondary);
margin-bottom: 2rem;
}

.empty-cart h2 {
color: var(--text-primary);
margin-bottom: 1rem;
}

.cart-items {
margin-bottom: 2rem;
}

.cart-item {
display: grid;
grid-template-columns: 100px 1fr auto;
gap: 1.5rem;
padding: 1.5rem;
background: var(--surface);
border-radius: 15px;
margin-bottom: 1rem;
align-items: center;
}

.cart-item img {
width: 100%;
border-radius: 8px;
}

.cart-item-info h3 {
margin-bottom: 0.5rem;
color: var(--text-primary);
}

.cart-item-info p {
color: var(--text-secondary);
}

.cart-item-actions {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: flex-end;
}

.cart-item-price {
font-size: 1.5rem;
color: var(--primary-color);
font-weight: bold;
}

.cart-summary {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
position: sticky;
top: 100px;
}

.summary-row {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border);
}

.summary-row.total {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-color);
border-bottom: none;
}

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

.checkout-form {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 0.75rem;
background: var(--background);
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text-primary);
font-size: 1rem;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.order-summary {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
position: sticky;
top: 100px;
}

.success-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
padding: 4rem 2rem;
}

.success-icon {
color: var(--success);
margin-bottom: 2rem;
}

.success-content h1 {
color: var(--text-primary);
margin-bottom: 1rem;
font-size: 2.5rem;
}

.success-message {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 1rem;
}

.success-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin: 2rem 0;
}

.success-info {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
margin-top: 2rem;
text-align: left;
}

.success-info ul {
list-style-position: inside;
color: var(--text-secondary);
}

.success-info li {
margin-bottom: 0.5rem;
}

.contact-hero,
.about-hero {
background: linear-gradient(135deg, var(--surface), var(--background));
padding: 4rem 0 2rem;
text-align: center;
}

.contact-hero h1,
.about-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.contact-info-cards {
display: grid;
gap: 1.5rem;
}

.contact-info-card {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.contact-info-card:hover {
border-color: var(--primary-color);
transform: translateY(-5px);
}

.contact-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

.contact-info-card h3 {
color: var(--text-primary);
margin-bottom: 0.5rem;
}

.contact-info-card p {
color: var(--text-secondary);
}

.contact-info-card a {
color: var(--primary-color);
text-decoration: none;
}

.contact-form-section {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
}

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

.value-card {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
text-align: center;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.value-card:hover {
border-color: var(--primary-color);
transform: translateY(-5px);
}

.value-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

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

.team-card {
background: var(--surface);
border-radius: 15px;
overflow: hidden;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.team-card:hover {
transform: translateY(-10px);
border-color: var(--primary-color);
}

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

.team-card h3 {
padding: 1.5rem 1.5rem 0.5rem;
color: var(--text-primary);
}

.team-role {
padding: 0 1.5rem;
color: var(--primary-color);
font-weight: 600;
margin-bottom: 0.5rem;
}

.team-bio {
padding: 0 1.5rem 1.5rem;
color: var(--text-secondary);
font-size: 0.95rem;
}

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

.team-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 3rem;
color: var(--text-secondary);
font-size: 1.1rem;
}

.blog-post {
padding: 4rem 0;
}

.blog-header {
max-width: 900px;
margin: 0 auto 3rem;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}

.blog-category {
background: var(--primary-color);
color: white;
padding: 0.25rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
}

.blog-date,
.blog-read-time {
color: var(--text-secondary);
}

.blog-header h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
line-height: 1.3;
}

.blog-excerpt {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 2rem;
}

.blog-featured-image {
width: 100%;
border-radius: 15px;
margin: 2rem 0;
}

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

.blog-content h2 {
font-size: 2rem;
margin: 2.5rem 0 1rem;
color: var(--text-primary);
}

.blog-content p {
margin-bottom: 1.5rem;
color: var(--text-secondary);
line-height: 1.8;
font-size: 1.05rem;
}

.blog-footer {
max-width: 800px;
margin: 3rem auto 0;
padding-top: 2rem;
border-top: 1px solid var(--border);
}

.blog-tags {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
margin-bottom: 2rem;
}

.tag {
background: var(--surface);
color: var(--text-secondary);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
border: 1px solid var(--border);
}

.share-buttons {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.share-btn {
padding: 0.5rem 1.5rem;
border-radius: 8px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }

.share-btn:hover {
transform: translateY(-3px);
opacity: 0.9;
}

.related-posts {
max-width: 1200px;
margin: 4rem auto 0;
}

.related-posts h3 {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
}

.related-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.related-post-card {
background: var(--surface);
padding: 2rem;
border-radius: 15px;
text-decoration: none;
color: var(--text-secondary);
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.related-post-card:hover {
border-color: var(--primary-color);
transform: translateY(-5px);
}

.related-post-card h4 {
color: var(--text-primary);
margin-bottom: 0.75rem;
font-size: 1.2rem;
}

@media (max-width: 768px) {
.nav-menu {
display: none;
}

.hero h2 {
font-size: 2rem;
}

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

.product-detail-grid,
.checkout-grid,
.contact-grid {
grid-template-columns: 1fr;
}

.cart-item {
grid-template-columns: 80px 1fr;
}

.cart-item-actions {
grid-column: 1 / -1;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.feature-card,
.value-card {
padding: 1.5rem;
}

.blog-header h1 {
font-size: 2rem;
}

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