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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Warm Color Variables */
:root {
    --primary-bg: #F5F0E6;
    --secondary-bg: #FFFFFF;
    --accent-brown: #5C4033;
    --accent-orange: #FF7A00;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-radius: 8px;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

.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;
}

/* Service Entrance Buttons */
.service-entrance {
    margin: 64px 0;
    padding: 32px;
    background-color: #f9f9f9;
    text-align: center;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 15px 30px;
    font-size: 18px;
    min-width: 180px;
}

@media (max-width: 768px) {
    .service-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-btn {
        width: 80%;
        max-width: 250px;
    }
}

/* Podcast Section */
.podcast-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.podcast-card h3 {
    margin-bottom: 10px;
    color: #333333;
}

.podcast-card p {
    margin-bottom: 20px;
    color: #666666;
    line-height: 1.6;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* 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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* PRODUCTS PAGE STYLES */
/* Products Page Background */
.main-content {
    background-color: var(--primary-bg);
    padding: 0 0 40px;
}

/* Drawer Navigation */
.drawer-toggle {
    position: fixed;
    left: 20px;
    top: 100px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-bg);
    border: 2px solid var(--accent-brown);
    border-radius: 50%;
    font-size: 24px;
    color: var(--accent-brown);
    cursor: pointer;
    z-index: 1001;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.drawer-toggle:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

.drawer-navigation {
    position: fixed;
    left: -300px;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: rgba(245, 240, 230, 0.95);
    backdrop-filter: blur(10px);
    border-right: 2px solid var(--accent-brown);
    z-index: 1002;
    padding: 20px;
    transition: var(--transition);
    overflow-y: auto;
}

.drawer-navigation.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-brown);
}

.drawer-header h3 {
    color: var(--accent-brown);
    font-size: 20px;
    font-weight: 700;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent-brown);
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

.drawer-categories {
    list-style: none;
}

.category-item {
    margin-bottom: 10px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    font-size: 16px;
}

.category-link i {
    width: 20px;
    text-align: center;
    color: var(--accent-brown);
}

.category-item.active .category-link,
.category-item:hover .category-link {
    background-color: var(--accent-orange);
    color: white;
}

.category-item.active .category-link i,
.category-item:hover .category-link i {
    color: white;
}

.subcategory-list {
    list-style: none;
    margin-left: 42px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.category-item:hover .subcategory-list {
    max-height: 200px;
}

.subcategory-list li {
    margin: 5px 0;
}

.subcategory-list a {
    display: block;
    padding: 8px 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.subcategory-list a:hover {
    background-color: rgba(255, 122, 0, 0.1);
    color: var(--accent-orange);
    padding-left: 15px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Products Section */
.products-section {
    position: relative;
    margin: 64px 0;
    padding: 32px;
    background-color: #f9f5f0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--accent-orange);
}

.breadcrumb-nav .current {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Page-specific Section Titles */
/* Homepage */
.section-title-homepage {
    background-image: url('../images/homepage_banner01.jpg');
}

/* Products Page */
.section-title-products {
    background-image: url('../images/homepage_banner02.jpg');
}

/* About Page */
.section-title-about {
    background-image: url('../images/homepage_banner03.jpg');
}

/* Contact Page */
.section-title-contact {
    background-image: url('../images/homepage_banner01.jpg');
}

/* Product Detail Page */
.section-title-product-detail {
    background-image: url('../images/homepage_banner02.jpg');
}

/* Wholesale Page */
.section-title-wholesale {
    background-image: url('../images/homepage_banner03.jpg');
}

.section-title h1,
.section-title p {
    position: relative;
    z-index: 2;
    color: white;
}

.section-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p {
    font-size: 16px;
}

/* Filter Bar */
.filter-bar {
    background-color: var(--secondary-bg);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.filter-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    color: var(--text-primary);
    font-weight: 500;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius);
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

/* Category Buttons */
.category-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 15px;
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius);
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.category-btn:hover:not(.active) {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.category-btn.active {
    background-color: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.category-btn:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-top: 40px;
    justify-content: center;
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }
    
    .product-image {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-image {
        height: 250px;
    }
}

/* Product Card */
.product-card {
    background-color: var(--secondary-bg);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 280px;
    background-color: var(--primary-bg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 20px;
}



/* Product Tags */
.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-card:hover .product-tag {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.product-tag.hot {
    background-color: #FF3B30;
    color: white;
}

.product-tag.new {
    background-color: #34C759;
    color: white;
}

.product-tag.best-seller {
    background-color: var(--accent-orange);
    color: white;
    top: 15px;
    right: 15px;
    left: auto;
}

.product-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    display: none;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price .original-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.product-rating .stars {
    color: #FFD700;
    font-size: 14px;
}

.product-rating .review-count {
    color: var(--text-light);
    font-size: 12px;
}

/* Product Card Buttons */
.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.product-buttons .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
}

.product-buttons .btn-primary {
    background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%);
    color: white;
}

.product-buttons .btn-secondary {
    background-color: #F5F5F5;
    color: var(--text-primary);
    border: 1px solid #E0E0E0;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: translateY(2px);
}

.btn-primary {
    background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E66A00 0%, #FF7A00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 122, 0, 0.4);
}

/* Product card Add to Inquiry button */
.product-card .add-to-inquiry {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 4px 8px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card .add-to-inquiry:hover {
    background: linear-gradient(135deg, #E66A00 0%, #FF7A00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #E0E0E0 0%, #F5F5F5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Product Card Sell Points (Hidden by default, shown on hover) */
.product-sell-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card:hover .product-sell-points {
    opacity: 1;
    visibility: visible;
}

.sell-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sell-points-list li {
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sell-points-list li:last-child {
    margin-bottom: 0;
}

.sell-points-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

/* RESPONSIVE DESIGN */
/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
    }
    
    .section-title h1 {
        font-size: 32px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title h1 {
        font-size: 28px;
    }
    
    .drawer-toggle {
        left: 15px;
        top: 80px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .drawer-navigation {
        width: 250px;
        left: -250px;
    }
    
    .filter-bar {
        padding: 12px 15px;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-buttons {
        margin-left: 0;
        width: 100%;
    }
    
    .category-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title h1 {
        font-size: 24px;
    }
    
    .main-content {
        padding: 70px 0 30px;
    }
    
    .product-buttons {
        flex-direction: column;
    }
}

/* Ensure images load efficiently */
.product-img {
    loading: lazy;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

/* Hero Slider */
.hero-slider {
    background-color: #f5f5f5;
    margin-top: 0;
    margin-bottom: 64px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-text {
    flex: 1;
    padding: 0 40px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 30px;
}

.slide-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

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

.slide-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.slide-cta .btn {
    font-size: 16px;
    padding: 15px 30px;
    min-width: 150px;
    text-align: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #FF7A00;
}

/* Responsive Hero Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-text {
        padding: 20px;
        margin: 20px;
    }
    
    .slide-text h1 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 10px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

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

.hero-banner {
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

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

.hero-image {
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-cta .btn {
    font-size: 16px;
    padding: 15px 30px;
    min-width: 150px;
    text-align: center;
}

/* Products Section */


/* Drawer Navigation */
.drawer-toggle {
    position: fixed;
    left: 20px;
    top: 100px;
    background-color: #d4a76a;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.drawer-toggle:hover {
    background-color: #b8860b;
    transform: scale(1.1);
}

.drawer-navigation {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: rgba(245, 239, 229, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    transition: left 0.3s ease;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.drawer-navigation.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a76a;
}

.drawer-header h3 {
    margin: 0;
    color: #8b4513;
    font-size: 24px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #8b4513;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 10px;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #8b4513;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover {
    background-color: #d4a76a;
    color: #fff;
}

.category-item.active .category-link {
    background-color: #ff7a00;
    color: #fff;
}

.category-link i {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 5px 45px;
    display: none;
}

.category-item:hover .subcategory-list {
    display: block;
}

.subcategory-list li {
    margin-bottom: 5px;
}

.subcategory-list a {
    display: block;
    padding: 8px 15px;
    color: #8b4513;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.subcategory-list a:hover {
    background-color: #d4a76a;
    color: #fff;
    padding-left: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 30px;
    font-size: 14px;
    color: #8b4513;
}

.breadcrumb-nav a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ff7a00;
}

.breadcrumb-nav .current {
    font-weight: 600;
    color: #ff7a00;
}

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

.section-title p {
    color: #6b5b49;
}

/* Products Grid - Duplicate definition removed */

/* Product Card */
.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e0d5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #ff7a00;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666666;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    background-color: #f5f5f5;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 20px;
}

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

.product-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-description {
    font-size: 13px;
    color: #666666;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    color: #FFD700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .rating-text {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price .old-price {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 500;
}

/* Product Card Buttons */
.product-buttons {
    display: flex;
    gap: 8px;
}

.product-buttons .btn {
    flex: 1;
    padding: 12px 8px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

.product-buttons .btn:hover {
    transform: translateY(-2px);
}

.product-buttons .btn:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-view {    
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #333;
}

.btn-inquiry {
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #fff;
}

/* Product Highlights */
.product-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.product-card:hover .product-highlights {
    opacity: 1;
    visibility: visible;
}

.product-highlights h4 {
    color: #8b4513;
    margin-bottom: 15px;
}

.product-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-highlights li {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.product-highlights li i {
    color: #ff7a00;
    margin-right: 8px;
}



/* Filter Bar */
.filter-bar {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-bar select {
    border: 2px solid #8b4513;
    border-radius: 8px;
    padding: 8px 15px;
    background-color: #fff;
    color: #8b4513;
    font-weight: 500;
}

.filter-bar select:focus {
    outline: none;
    border-color: #ff7a00;
}



/* Product Meta Info */
.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin: 8px 0;
}

/* Product Image Container */
.product-image {
    position: relative;
}

/* View All Products Button */
.view-all-products {
    text-align: center;
    margin-top: 40px;
}

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

.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;
}

/* 内容引流区 */
.content-drainage {
    margin: 64px 0;
    padding: 32px;
    background-color: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* 博客内容展示区 */
.blog-section {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.blog-item {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.blog-thumbnail {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.blog-content {
    flex: 1;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333333;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.publish-time {
    font-size: 12px;
    color: #999999;
}

/* 播客内容展示区 */
.podcast-section {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.podcast-item {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.podcast-cover {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.podcast-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333333;
    line-height: 1.4;
}

.podcast-meta {
    margin-bottom: 10px;
}

.duration {
    font-size: 12px;
    color: #FF7A00;
    font-weight: 600;
}

.podcast-content p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.play-btn {
    background-color: #FF7A00;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
}

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

.subscribe-podcast {
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-item {
        flex-direction: column;
    }
    
    .blog-thumbnail {
        width: 100%;
        height: 180px;
    }
    
    .podcast-item {
        flex-direction: column;
    }
    
    .podcast-cover {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .blog-section,
    .podcast-section {
        padding: 20px;
    }
    
    .blog-content h3,
    .podcast-content h3 {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background-color: #333333;
    color: #ffffff;
    margin-top: 64px;
    padding: 32px;
}

.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;
}

.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;
}



/* 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;
    }
    


@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 {
        margin-top: 0;
    }
    
    .hero-banner {
        height: 350px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        font-size: 16px;
        padding: 15px 30px;
        width: 100%;
        max-width: 250px;
    }
    
    .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;
    }
    
    /* Hero Slider Responsive */
    .slider-container {
        height: 400px;
    }
    
    .slide-text {
        padding: 20px;
        max-width: 100%;
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .slide-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 10px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@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;
    }
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 60px 0;
}

.overall-rating {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.rating-summary {
    display: flex;
    gap: 60px;
    align-items: center;
}

.total-rating {
    text-align: center;
}

.rating-number {
    font-size: 64px;
    font-weight: 700;
    color: #FF7A00;
    line-height: 1;
}

.rating-stars {
    font-size: 24px;
    color: #FFD700;
    margin: 10px 0;
}

.rating-count {
    font-size: 16px;
    color: #666666;
}

.rating-distribution {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-label {
    width: 80px;
    font-size: 16px;
    color: #333333;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 0 15px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #FFD700;
    border-radius: 5px;
}

.rating-percentage {
    width: 50px;
    text-align: right;
    font-size: 16px;
    color: #333333;
}

.review-list {
    margin-bottom: 30px;
}

.review-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.review-date {
    font-size: 14px;
    color: #999999;
    margin-top: 5px;
}

.review-stars {
    font-size: 18px;
    color: #FFD700;
}

.review-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.review-content {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.review-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.write-review {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design for Customer Reviews */
@media (max-width: 992px) {
    .rating-summary {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .rating-distribution {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .customer-reviews {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .rating-number {
        font-size: 48px;
    }
    
    .rating-stars {
        font-size: 20px;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .review-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .rating-number {
        font-size: 36px;
    }
    
    .rating-label {
        width: 60px;
        font-size: 14px;
    }
    
    .rating-percentage {
        width: 40px;
        font-size: 14px;
    }
    
    .review-title {
        font-size: 18px;
    }
    
    .review-content {
        font-size: 14px;
    }
    
    .review-img {
        width: 60px;
        height: 60px;
    }
}