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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333333;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #FF7A00;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #E66A00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #dddddd;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF7A00;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF7A00;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666666;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.product-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666666;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #FF7A00;
    margin-bottom: 10px;
}

.product-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

/* Features Section */
.features {
    background-color: #f5f5f5;
    padding: 80px 0;
}

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

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: #FF7A00;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF7A00;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.payment-icons i {
    font-size: 24px;
    color: #cccccc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #cccccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FF7A00;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555555;
    color: #cccccc;
}

/* Products Page */
.products-page {
    padding: 120px 0 80px;
}

.products-page-content {
    display: flex;
    gap: 40px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.category-nav {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

.category-nav h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.category-links {
    list-style: none;
}

.category-links li {
    margin-bottom: 15px;
}

.category-links a {
    text-decoration: none;
    color: #333333;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-links a:hover, .category-links a.active {
    background-color: #FF7A00;
    color: #ffffff;
}

.main-content {
    flex: 1;
}

.filter-bar {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options {
    display: flex;
    gap: 20px;
}

.filter-options select {
    padding: 8px 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination-btn {
    padding: 8px 15px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    color: #333333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover, .pagination-btn.active {
    background-color: #FF7A00;
    color: #ffffff;
    border-color: #FF7A00;
}

/* Product Detail Page */
.product-detail {
    padding: 120px 0 80px;
}

/* Product Detail Layout */
.product-detail-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Images */
.product-images {
    flex: 1;
    max-width: 600px;
}

.main-image {
    width: 100%;
    height: 500px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: zoom-in;
}

/* Image Zoom Feature */
.main-image .zoom-container {
    position: absolute;
    right: -50%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.main-image:hover .zoom-container {
    display: block;
}

.main-image .zoom-lens {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 122, 0, 0.2);
    border: 2px solid rgba(255, 122, 0, 0.5);
    border-radius: 50%;
    display: none;
    cursor: move;
}

.main-image:hover .zoom-lens {
    display: block;
}

.main-image .zoom-image {
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 0;
    object-fit: contain;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 100px;
    background-color: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    border: 2px solid #FF7A00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Information */
.product-info {
    flex: 1;
    max-width: 500px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333333;
}

/* Price Section */
.product-price {
    margin-bottom: 25px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #FF7A00;
    margin-right: 15px;
}

.original-price {
    font-size: 20px;
    color: #999999;
    text-decoration: line-through;
    vertical-align: middle;
}

.discount-badge {
    display: inline-block;
    background-color: #FF7A00;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Rating Section */
.product-rating {
    margin-bottom: 25px;
}

.stars {
    color: #FFD700;
    margin-bottom: 5px;
}

.stars i {
    font-size: 18px;
    margin-right: 2px;
}

.rating-text {
    font-size: 14px;
    color: #666666;
}

/* MOQ Section */
.product-moq {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.product-moq h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333333;
}

.moq-info {
    margin-bottom: 5px;
}

.moq-value {
    font-size: 32px;
    font-weight: 700;
    color: #FF7A00;
}

.moq-unit {
    font-size: 18px;
    color: #333333;
    margin-left: 5px;
}

.moq-note {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Quick Info */
.quick-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666666;
}

.info-item i {
    color: #FF7A00;
    margin-right: 8px;
    font-size: 16px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.action-buttons .btn {
    flex: 1;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 600;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

/* Additional Action Buttons */
.additional-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.additional-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.additional-actions .btn i {
    margin-right: 8px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Product Gallery */
.product-gallery {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    height: 180px;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Specifications */
.product-specs {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.specs-table tr:hover {
    background-color: #f9f9f9;
}

.specs-table td {
    padding: 18px 20px;
    vertical-align: top;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #333333;
    width: 35%;
    background-color: #fafafa;
    border-right: 1px solid #f0f0f0;
    white-space: nowrap;
}

.specs-table td:last-child {
    color: #666666;
    text-align: left;
}

/* Responsive table */
@media (max-width: 768px) {
    .specs-table {
        display: block;
        overflow-x: auto;
    }
    
    .specs-table td:first-child {
        width: 40%;
    }
}

/* Customization Information */
.customization-info {
    margin-bottom: 60px;
}

.customization-content {
    margin-top: 30px;
}

.customization-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.customization-item i {
    color: #FF7A00;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.customization-details h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.customization-details p {
    margin: 0;
    color: #666666;
}

/* Logistics Information */
.logistics-info {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

.logistics-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333333;
}

.logistics-item p {
    margin: 0;
    color: #666666;
}

/* Payment Security */
.payment-security {
    margin-bottom: 60px;
}

.payment-content {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.payment-methods h3, .security-features h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333333;
}

.payment-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 32px;
    color: #666666;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #FF7A00;
}

.security-features ul {
    list-style: none;
}

.security-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666666;
}

.security-features li i {
    color: #FF7A00;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 16px;
}

/* Related Products */
.related-products {
    margin-top: 80px;
    padding: 40px 0;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.related-products h2 {
    margin-bottom: 30px;
}

/* About Page */
.about-page {
    padding: 120px 0 80px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666666;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.about-image {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666666;
}

.about-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.about-advantage {
    text-align: center;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.about-advantage i {
    font-size: 40px;
    color: #FF7A00;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-page {
    padding: 120px 0 80px;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-form {
    flex: 1;
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

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

.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: 12px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.contact-info {
    flex: 1;
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-item p {
    margin-bottom: 10px;
    color: #666666;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .products-page-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .category-nav {
        overflow-x: auto;
    }
    
    .category-links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    /* Product Detail Responsive */
    .product-detail-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .product-images {
        max-width: 100%;
    }
    
    .product-info {
        max-width: 100%;
        width: 100%;
    }
    
    .quick-info {
        flex-wrap: wrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: #ffffff;
        flex-direction: column;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        padding: 20px 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .additional-actions {
        flex-direction: column;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .filter-options {
        flex-wrap: wrap;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-advantages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-images {
        flex-wrap: wrap;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .contact-form, .contact-info {
        padding: 30px 20px;
    }
    
    /* Product Detail Responsive for Small Mobile */
    .current-price {
        font-size: 28px;
    }
    
    .original-price {
        font-size: 18px;
    }
    
    .moq-value {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .gallery-item {
        height: 120px;
    }
    
    .specs-table td {
        padding: 12px 15px;
    }
}