 Base Styles 
root {
    --primary-color #2c3e50;
    --secondary-color #e74c3c;
    --accent-color #3498db;
    --light-color #ecf0f1;
    --dark-color #2c3e50;
    --text-color #333;
    --text-light #fff;
}

body {
    font-family 'Helvetica Neue', Arial, sans-serif;
    line-height 1.6;
    color var(--text-color);
    margin 0;
    padding 0;
    transition all 0.3s ease;
}

 Language Switcher 
.language-switcher {
    position fixed;
    top 20px;
    right 20px;
    z-index 1000;
    display flex;
    gap 5px;
}

.language-switcher button {
    background var(--light-color);
    border 1px solid var(--primary-color);
    color var(--primary-color);
    padding 5px 10px;
    border-radius 4px;
    cursor pointer;
    transition all 0.3s ease;
}

.language-switcher button.active {
    background var(--primary-color);
    color var(--text-light);
}

 Header Styles 
header {
    background var(--light-color);
    padding 20px 0;
    box-shadow 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    text-align center;
    margin-bottom 20px;
}

.logo {
    height 60px;
    width auto;
}

nav ul {
    display flex;
    justify-content center;
    list-style none;
    padding 0;
    margin 0;
}

nav ul li {
    margin 0 15px;
}

nav ul li a {
    text-decoration none;
    color var(--dark-color);
    font-weight 500;
    transition color 0.3s ease;
}

nav ul li ahover {
    color var(--secondary-color);
}

.cart-icon {
    display flex;
    align-items center;
    gap 5px;
}

 Hero Section 
#hero {
    background linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('imageshero-bg.jpg');
    background-size cover;
    background-position center;
    color var(--text-light);
    text-align center;
    padding 100px 20px;
    margin-bottom 40px;
}

#hero h1 {
    font-size 3rem;
    margin-bottom 20px;
}

#hero p {
    font-size 1.5rem;
    margin-bottom 30px;
}

.cta-button {
    display inline-block;
    background var(--secondary-color);
    color var(--text-light);
    padding 12px 30px;
    border-radius 30px;
    text-decoration none;
    font-weight bold;
    transition all 0.3s ease;
}

.cta-buttonhover {
    background #c0392b;
    transform translateY(-3px);
}

 Products Section 
#products {
    padding 60px 20px;
    max-width 1200px;
    margin 0 auto;
}

#products h2 {
    text-align center;
    margin-bottom 40px;
    font-size 2.5rem;
    color var(--primary-color);
}

.product-grid {
    display grid;
    grid-template-columns repeat(auto-fill, minmax(280px, 1fr));
    gap 30px;
}

.product-card {
    background var(--light-color);
    border-radius 8px;
    overflow hidden;
    box-shadow 0 3px 10px rgba(0,0,0,0.1);
    transition transform 0.3s ease;
}

.product-cardhover {
    transform translateY(-10px);
}

.product-card img {
    width 100%;
    height 200px;
    object-fit cover;
}

.product-card h3 {
    margin 15px 20px 10px;
    font-size 1.3rem;
}

.product-card .price {
    margin 0 20px;
    font-weight bold;
    color var(--secondary-color);
    font-size 1.2rem;
}

.product-card .description {
    margin 10px 20px 20px;
    color #666;
}

.add-to-cart {
    display block;
    width calc(100% - 40px);
    margin 0 20px 20px;
    padding 10px;
    background var(--primary-color);
    color var(--text-light);
    border none;
    border-radius 4px;
    cursor pointer;
    transition background 0.3s ease;
}

.add-to-carthover {
    background #1a252f;
}

 About Section 
#about {
    padding 60px 20px;
    max-width 800px;
    margin 0 auto;
    text-align center;
}

#about h2 {
    color var(--primary-color);
    font-size 2.5rem;
    margin-bottom 30px;
}

#about p {
    font-size 1.1rem;
    line-height 1.8;
}

 Contact Section 
#contact {
    padding 60px 20px;
    max-width 800px;
    margin 0 auto;
}

#contact h2 {
    color var(--primary-color);
    font-size 2.5rem;
    text-align center;
    margin-bottom 30px;
}

#contact-form {
    background var(--light-color);
    padding 30px;
    border-radius 8px;
    box-shadow 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom 20px;
}

.form-group label {
    display block;
    margin-bottom 8px;
    font-weight 500;
}

.form-group input,
.form-group textarea {
    width 100%;
    padding 10px;
    border 1px solid #ddd;
    border-radius 4px;
    font-family inherit;
}

.form-group textarea {
    resize vertical;
}

#contact-form button {
    background var(--primary-color);
    color var(--text-light);
    border none;
    padding 12px 30px;
    border-radius 4px;
    cursor pointer;
    font-weight bold;
    transition background 0.3s ease;
}

#contact-form buttonhover {
    background #1a252f;
}

 Footer 
footer {
    background var(--dark-color);
    color var(--text-light);
    padding 40px 20px 20px;
    margin-top 60px;
}

.footer-content {
    display grid;
    grid-template-columns repeat(auto-fit, minmax(250px, 1fr));
    gap 40px;
    max-width 1200px;
    margin 0 auto;
}

.footer-section h3 {
    font-size 1.3rem;
    margin-bottom 20px;
    position relative;
    padding-bottom 10px;
}

.footer-section h3after {
    content '';
    position absolute;
    left 0;
    bottom 0;
    width 50px;
    height 2px;
    background var(--secondary-color);
}

.footer-section ul {
    list-style none;
    padding 0;
}

.footer-section ul li {
    margin-bottom 10px;
}

.footer-section ul li a {
    color var(--text-light);
    text-decoration none;
    transition color 0.3s ease;
}

.footer-section ul li ahover {
    color var(--secondary-color);
}

.footer-bottom {
    text-align center;
    padding-top 20px;
    margin-top 40px;
    border-top 1px solid rgba(255,255,255,0.1);
}

 Responsive Design 
@media (max-width 768px) {
    nav ul {
        flex-direction column;
        align-items center;
    }
    
    nav ul li {
        margin 10px 0;
    }
    
    #hero h1 {
        font-size 2.2rem;
    }
    
    #hero p {
        font-size 1.2rem;
    }
}