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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

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

.nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #f39c12;
}

.hero {    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("images/006/IMG_20260616_104241.jpg");    background-size: cover;    background-position: center;    color: white;    padding: 100px 0;    text-align: center;}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.section {
    padding: 60px 0;
}

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

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.product-card .product-info {
    padding: 20px;
}

.product-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-card p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.product-card .price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.product-detail {
    padding: 50px 0;
}

.product-detail .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product-info .price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.product-info .description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.product-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-info ul li i {
    color: #27ae60;
}

.keywords-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.keywords-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

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

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

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer {
    background: #1a252f;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

.about-section {
    padding: 60px 0;
}

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

.about-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-content h3 {
    color: #2c3e50;
    margin: 30px 0 15px;
}

.about-content ul {
    list-style: none;
}

.about-content ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content ul li i {
    color: #27ae60;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-detail .container {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: static;
    }
}

.hero-banner {    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("images/006/IMG_20260616_104241.jpg");    background-size: cover;    background-position: center;    background-repeat: no-repeat;    min-height: 500px;    display: flex;    align-items: center;    justify-content: center;    color: white;    text-align: center;    padding: 20px;}

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

.hero-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.factory-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.factory-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .factory-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-banner h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .factory-gallery {
        grid-template-columns: 1fr;
    }
    .hero-banner h2 {
        font-size: 1.8rem;
    }
.hero-banner {    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("images/006/IMG_20260616_104241.jpg");    background-size: cover;    background-position: center;    background-repeat: no-repeat;    min-height: 500px;    display: flex;    align-items: center;    justify-content: center;    color: white;    text-align: center;    padding: 20px;}
