/* Mecanum Wheels - Custom Styles */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .logo-link {
    display: block;
}

.logo .site-logo {
    max-height: 60px;
    width: auto;
}

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

.main-navigation li {
    margin-right: 30px;
}

.main-navigation li:last-child {
    margin-right: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #1a73e8;
}

.header-contact .contact-btn {
    background: #1a73e8;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.header-contact .contact-btn:hover {
    background: #1557b0;
}

/* Hero Banner (slider version - see bottom for full styles) */

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #fbbc04;
    color: #333;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a73e8;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

/* Core Advantages */
.core-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.advantage-card i {
    font-size: 48px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: #1a73e8;
    box-shadow: 0 5px 20px rgba(26,115,232,0.2);
}

.category-icon {
    font-size: 64px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.btn-link {
    display: inline-block;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.product-card:hover .btn-link {
    color: #0d47a1;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

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

.product-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-image.placeholder {
    background: #f8f9fa;
    color: #ccc;
    font-size: 48px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.product-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-widgets h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fbbc04;
}

.footer-widgets p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widgets i {
    color: #fbbc04;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.cert-badge-small {
    background: #333;
    color: #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 5px;
    color: #999;
}

.footer-bottom a {
    color: #fbbc04;
    text-decoration: none;
}

/* Certifications Home Section */
.certifications-home {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications-home .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.certifications-home .cert-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.certifications-home .cert-badge {
    background: linear-gradient(135deg, #fbbc04, #f9a825);
    color: #333;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
}

.certifications-home .cert-item p {
    color: #666;
    font-size: 14px;
}

/* Applications Home Section */
.applications-home {
    padding: 80px 0;
}

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

.applications-home .application-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.applications-home .application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.applications-home .application-card i {
    font-size: 50px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.applications-home .application-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.applications-home .application-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* ============================================
   PAGE HERO (Shared)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-hero .breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero .breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.section {
    padding: 80px 0;
}

.section.alt-bg {
    background: #f8f9fa;
}

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

.section-header.left {
    text-align: left;
}

.section-header span {
    display: inline-block;
    background: #1a73e8;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 40px;
    color: #666;
    font-size: 18px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.company-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.company-profile-text {
    padding-top: 0;
}

.company-profile-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.company-profile-text p:last-child {
    margin-bottom: 0;
}

.company-profile-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.company-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.overview-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #1a73e8;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 50%;
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(odd) .timeline-year {
    text-align: left;
    padding-left: 40px;
    padding-right: 20px;
}

.timeline-content {
    width: 50%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding-left: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-left: 20px;
    padding-right: 40px;
}

.timeline-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Advantages Grid */
.advantages-section .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantages-section .advantage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.advantages-section .advantage-card:hover {
    transform: translateY(-10px);
}

.advantages-section .advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantages-section .advantage-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.advantages-section .advantage-card h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.advantages-section .advantage-card p {
    text-align: center;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.advantages-section .advantage-card ul {
    list-style: none;
    padding: 0;
}

.advantages-section .advantage-card li {
    padding: 5px 0;
    color: #555;
    font-size: 14px;
}

.advantages-section .advantage-card li::before {
    content: '✓ ';
    color: #1a73e8;
    font-weight: bold;
}

/* Home Video */
.home-video {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.home-video video {
    width: 100%;
    display: block;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.cert-badge {
    background: linear-gradient(135deg, #fbbc04, #f9a825);
    color: #333;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
}

.cert-item p {
    color: #666;
    line-height: 1.6;
}

/* Culture */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.culture-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1a73e8;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.culture-card h3 {
    font-size: 20px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.culture-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.category-nav-item:hover,
.category-nav-item.active {
    background: #1a73e8;
    color: white;
    border-color: #1a73e8;
}

.category-nav-item i {
    font-size: 20px;
}

/* Product Category Sections */
.product-category {
    border-bottom: 1px solid #eee;
}

.category-header {
    margin-bottom: 50px;
}

.category-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.category-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

/* Product Advantages */
.product-advantages {
    margin: 50px 0;
}

.product-advantages h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.advantages-list.three-col {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.advantage-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.advantage-item .advantage-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.advantage-item .advantage-icon i {
    color: #1a73e8;
    font-size: 20px;
}

.advantage-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Products Table */
.product-models {
    margin: 50px 0;
}

.product-models h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.products-table th,
.products-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.products-table th {
    background: #1a73e8;
    color: white;
    font-weight: 600;
}

.products-table tr:hover {
    background: #f8f9fa;
}

.products-table td strong {
    color: #1a73e8;
}

/* Applications */
.applications-section {
    margin: 50px 0;
}

.applications-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

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

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

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

.application-card i {
    font-size: 40px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.application-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.application-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Accessories Grid */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.accessory-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.accessory-card i {
    font-size: 40px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.accessory-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.accessory-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   FACTORY PAGE
   ============================================ */
.factory-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.intro-content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.intro-content p {
    text-align: left;
}

.intro-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.intro-video video {
    width: 100%;
    display: block;
}
.intro-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.zone-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.zone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.zone-item i {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.zone-item span {
    font-weight: 500;
    color: #333;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.equipment-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.equipment-card .equipment-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.equipment-card .equipment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.equipment-card:hover .equipment-photo img {
    transform: scale(1.05);
}

.equipment-card .equipment-info {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    padding: 30px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-card .equipment-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.equipment-card .equipment-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.equipment-card .equipment-info li {
    padding: 8px 0;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.equipment-card .equipment-info li:last-child {
    border-bottom: none;
}

.equipment-card .precision-note {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: auto 0 0 0;
}

@media (max-width: 768px) {
    .equipment-card .equipment-photo {
        height: 160px;
    }
    .equipment-card .equipment-info {
        padding: 24px 18px;
    }
}

/* Testing Grid */
.testing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.testing-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.testing-card .equipment-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testing-card .equipment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.testing-card:hover .equipment-photo img {
    transform: scale(1.05);
}

.testing-card .equipment-info {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    padding: 30px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testing-card .equipment-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.testing-card .equipment-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.testing-card .equipment-info li {
    padding: 8px 0;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.testing-card .equipment-info li:last-child {
    border-bottom: none;
}

.testing-card .precision-note {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: auto 0 0 0;
}

@media (max-width: 768px) {
    .testing-card .equipment-photo {
        height: 160px;
    }
    .testing-card .equipment-info {
        padding: 24px 18px;
    }
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1a73e8, #0d47a1);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.quality-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.quality-card h3 {
    font-size: 18px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.quality-card h3 i {
    margin-right: 10px;
}

.quality-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Team Section */
.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-block {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.team-block h3 {
    font-size: 20px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.team-block h3 i {
    margin-right: 10px;
}

.team-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-block ul {
    list-style: none;
    padding: 0;
}

.team-block li {
    padding: 8px 0;
    color: #555;
}

.team-block li::before {
    content: '✓ ';
    color: #1a73e8;
    font-weight: bold;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 20px;
}

.info-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.info-content p.sub {
    color: #999;
    font-size: 12px;
}

.info-content a {
    color: #1a73e8;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Online Contact */
.online-contact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.online-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.online-contact > p {
    color: #666;
    margin-bottom: 15px;
}

.contact-platforms {
    display: flex;
    gap: 15px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

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

.platform-btn.wechat {
    background: #07C160;
    color: white;
}

.platform-btn.skype {
    background: #00AFF0;
    color: white;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Form Card */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.form-card .form-note {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.inquiry-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form .full-width {
    grid-column: 1 / -1;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.inquiry-form input.error,
.inquiry-form select.error,
.inquiry-form textarea.error {
    border-color: #dc3545;
}

.success-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.tip-card i {
    font-size: 40px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.tip-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Map Section */
.map-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 60px;
    text-align: center;
}

.map-placeholder i {
    font-size: 60px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #333;
    margin-bottom: 10px;
}

.map-placeholder .btn {
    margin-top: 20px;
}

/* CTA Buttons in Pages */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .company-profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-profile-text {
        order: 1;
    }

    .company-profile-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .company-profile-text p {
        font-size: 16px;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 35px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year,
    .timeline-item:nth-child(odd) .timeline-year {
        width: auto;
        text-align: left;
        padding-left: 0;
        padding-right: 30px;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: auto;
        padding-left: 30px;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .content-text {
        padding: 0 10px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    .content-text img {
        border-radius: 8px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .process-step {
        gap: 15px;
    }
    
    .zone-icons {
        gap: 20px;
    }
    
    .zone-item i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .categories-nav {
        gap: 10px;
    }
    
    .category-nav-item {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .products-table {
        font-size: 12px;
    }
    
    .products-table th,
    .products-table td {
        padding: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-platforms {
        flex-direction: column;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-hero {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.product-gallery .main-image {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.product-gallery .main-image.placeholder i {
    font-size: 120px;
    color: #ccc;
}

.product-info .product-category {
    display: inline-block;
    background: #1a73e8;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-info h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.product-info .product-excerpt {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.why-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.why-item i {
    font-size: 32px;
    color: #1a73e8;
    margin-bottom: 15px;
}

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

.why-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.why-choose-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.why-choose-video video {
    width: 100%;
    display: block;
}

.page-content-section {
    padding: 60px 0;
}

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

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

.content-text figure {
    margin: 20px 0;
}

.content-text figure img {
    margin: 0;
}

.product-specs h2,
.product-applications h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.specs-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.specs-table th,
.specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    width: 200px;
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
}

.specs-table td {
    color: #666;
}

.product-applications .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.product-applications .application-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.product-applications .application-item i {
    font-size: 40px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.product-applications .application-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-applications .application-item p {
    color: #666;
    font-size: 14px;
}

/* ============================================
   PRODUCT SHOWCASE ON PRODUCTS PAGE
   ============================================ */
.product-showcase {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.product-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.product-image-card .image-caption {
    padding: 15px 20px;
    text-align: center;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .product-hero-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery .main-image {
        max-width: 100%;
    }
    
    .product-gallery .main-image img {
        max-height: 350px;
        object-fit: contain;
    }
    
    .product-info h1 {
        font-size: 28px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-images-grid {
        grid-template-columns: 1fr;
    }

    .factory-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-content {
        text-align: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HERO BANNER SLIDER
   ============================================ */
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: none;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    cursor: pointer;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-slide .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: white;
}

/* Responsive Hero Banner */
@media (max-width: 992px) {
    .hero-banner {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content .subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-dots {
        bottom: 20px;
    }
}

/* ============================================
   SINGLE PRODUCT GALLERY
   ============================================ */
.single-product-page .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

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

.single-product-page .gallery-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.single-product-page .gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.single-product-page .gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.single-product-page .gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s;
    opacity: 0.6;
}

.single-product-page .gallery-thumb:hover,
.single-product-page .gallery-thumb.active {
    border-color: #1a73e8;
    opacity: 1;
}

.single-product-page .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-page .product-info h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.single-product-page .cat-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1a73e8;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 8px;
}

.single-product-page .product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 20px 0 30px;
}

.single-product-page .product-cta {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .single-product-page .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .single-product-page .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .single-product-page .product-info h2 {
        font-size: 24px;
    }

    .single-product-page .product-cta {
        flex-direction: column;
    }

    .single-product-page .gallery-thumb {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   PRODUCT TABS (Page Products)
   ============================================ */
.product-tabs-section {
    background: #fff;
}

.product-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 2px solid #eee;
    padding-bottom: 0;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: -2px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover {
    color: #1a73e8;
}

.tab-btn.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

.product-tabs-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInTab 0.4s ease-in-out;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-desc.editable-content {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

.category-desc.editable-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .product-tabs-nav {
        gap: 5px;
    }

    .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .tab-btn i {
        display: none;
    }
}

/* ============================================
   PRODUCTS LIST PAGE LAYOUT (Left Sidebar + Right Grid)
   Reference: Alibaba-style layout
   ============================================ */
.products-archive {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 600px;
}

.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar Styles */
.products-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.sidebar-title {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

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

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.category-list li a:hover {
    background: #f8f9fa;
    color: #1a73e8;
}

.category-list li.active a {
    background: #e3f2fd;
    color: #1a73e8;
    font-weight: 600;
}

.category-list .cat-name {
    flex: 1;
}

.category-list .cat-count {
    background: #e0e0e0;
    color: #666;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
}

.category-list li.active .cat-count,
.category-list li a:hover .cat-count {
    background: #1a73e8;
    color: white;
}

/* Products Main Content */
.products-main {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 25px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.results-count {
    color: #666;
    font-size: 14px;
    margin: 0;
}

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

.product-card {
    display: block;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

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

.product-card .product-image {
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-card .product-image.placeholder {
    color: #ccc;
    font-size: 48px;
}

.product-card .product-card-body {
    padding: 15px;
}

.product-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.pagination {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #1a73e8;
    border-color: #1a73e8;
    color: white;
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-products i {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.no-products p {
    font-size: 18px;
}

/* Header Menu Dropdown */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.menu-item-has-children > .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.menu-item-has-children > .sub-menu li a:hover {
    background: #f8f9fa;
    color: #1a73e8;
}

/* Responsive */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .products-main {
        padding: 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card .product-image {
        height: 150px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .category-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0;
    }

    .category-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .category-list li a {
        padding: 12px 15px;
    }
}
