
   @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Syne:wght@400..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary-accent: #2D7DD2;
    --secondary-accent: #F0A500;
    --navbar-bg: #FFFFFF;
    --footer-bg: #0D1B2A;
    --hero-bg: #0D1B2A;
    --section-light: #FFFFFF;
    --section-alt: #F2F4F7;
    --page-bg: #F2F4F7;
    --card-bg: #FFFFFF;
    --text-dark: #111827;
    --text-muted: #64748B;
    --border-color: #DDE3ED;
    --success: #10B981;
    --warning: #F59E0B;
    --info: #3B82F6;
    --danger: #EF4444;
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* ============================================
   Base Styles
   ============================================ */
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--page-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1f5b9e;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background-color: var(--hero-bg);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-contact a,
.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover,
.top-bar-social a:hover {
    color: var(--secondary-accent);
}

.top-bar-social a {
    margin-right: 12px;
    margin-left: 0;
}

.top-bar-social a svg {
    fill: currentColor;
}

/* ============================================
   Main Navigation
   ============================================ */
.main-navbar {
    background-color: var(--navbar-bg);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.navbar-brand:hover {
    color: var(--primary-accent);
}

.logo-img {
    max-height: 45px;
    width: auto;
}

.brand-text {
    color: var(--primary-accent);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-accent);
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--section-alt);
    color: var(--primary-accent);
}

/* ============================================
   Mega Menu
   ============================================ */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-accent);
    margin-top: 0;
}

.mega-menu-inner {
    padding: 25px 30px;
    max-width: 1320px;
    margin: 0 auto;
}

.mega-col {
    padding: 10px 15px;
}

.mega-category {
    margin-bottom: 15px;
}

.mega-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    padding: 10px 12px;
    background: var(--section-alt);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.mega-category-title:hover {
    background: var(--primary-accent);
    color: #fff;
}

.mega-category-title:hover .mega-icon {
    color: #fff;
}

.mega-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    transition: color 0.2s;
}

.mega-icon svg {
    width: 20px;
    height: 20px;
}

.mega-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.mega-category-title:hover .mega-count {
    color: rgba(255,255,255,0.8);
}

.mega-subcategories {
    list-style: none;
    padding: 0 0 0 10px;
    margin: 0;
}

.mega-subcategories li {
    margin-bottom: 2px;
}

.mega-subcategories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.mega-subcategories a:hover {
    color: var(--primary-accent);
    background: rgba(45, 125, 210, 0.08);
    padding-left: 16px;
}

.sub-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--section-alt);
    padding: 2px 6px;
    border-radius: 10px;
}

.mega-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(45, 125, 210, 0.05) 0%, rgba(240, 165, 0, 0.05) 100%);
    margin: 20px -30px -25px -30px;
    padding: 18px 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mega-promo {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

.mega-footer .btn {
    margin-left: 10px;
}

/* Mega menu responsive */
@media (max-width: 991.98px) {
    .mega-menu {
        position: relative;
        width: 100%;
    }
    
    .mega-menu-inner {
        padding: 15px;
    }
    
    .mega-col {
        padding: 5px 10px;
    }
    
    .mega-footer {
        margin: 15px -15px -15px -15px;
        padding: 15px;
    }
    
    .mega-footer .btn {
        margin: 5px 5px 5px 0;
    }
}

.navbar-actions {
    gap: 16px;
}

.search-form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border-color: var(--border-color);
    font-size: 14px;
}

.search-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--section-alt);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.cart-link:hover {
    background-color: var(--primary-accent);
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -1px;
    right: -2px;
    background-color: var(--secondary-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    height: 18px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background-color: var(--hero-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.btn-primary:hover {
    background-color: #1f5b9e;
    border-color: #1f5b9e;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary-accent);
    border-color: var(--secondary-accent);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #d89400;
    border-color: #d89400;
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.btn-outline-primary:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--hero-bg);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background-color: var(--section-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    text-align: center;
    padding: 15px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--section-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
}

.trust-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.trust-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--section-light);
}

.section-alt {
    background-color: var(--section-alt);
}

.section-dark {
    background-color: var(--hero-bg);
    color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* ============================================
   Category Grid
   ============================================ */
.category-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 48px;
    height: 48px;
}

.category-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.category-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* Image-based Category Cards */
.category-card-img {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.category-card-img:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 60px 15px 15px;
    text-align: center;
}

.category-card-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.category-card-count {
    display: inline-block;
    background: var(--primary-accent);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.category-card-img:hover .category-card-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .category-card-image {
        height: 150px;
    }
    
    .category-card-title {
        font-size: 0.9rem;
    }
}

/* ============================================
   Product Cards
   ============================================ */
.machine-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.machine-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.machine-card-img {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.machine-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.machine-card:hover .machine-card-img img {
    transform: scale(1.05);
}

.machine-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.machine-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.machine-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.machine-category {
    font-size: 12px;
    color: var(--primary-accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.machine-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.machine-name a {
    color: var(--text-dark);
}

.machine-name a:hover {
    color: var(--primary-accent);
}

.machine-specs {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.machine-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-accent);
    margin-top: auto;
    margin-bottom: 15px;
}

.price-on-request {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.machine-card-actions {
    display: flex;
    gap: 10px;
}

.machine-card-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px 12px;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-card {
    text-align: center;
    padding: 40px 25px;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(45, 125, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.why-icon svg {
    width: 36px;
    height: 36px;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   Stats Banner
   ============================================ */
.stats-section {
    background-color: var(--primary-accent);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   About Page (Alibaba-Style)
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--hero-bg) 0%, #1a365d 100%);
    padding: 80px 0;
    color: #fff;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-accent);
}

.hero-stat .stat-text {
    font-size: 13px;
    opacity: 0.8;
}

/* About Image Grid */
.about-image-grid {
    position: relative;
}

.about-image-grid .img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-grid .img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 180px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--primary-accent);
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.experience-badge .exp-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Content */
.section-label {
    display: inline-block;
    color: var(--primary-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.key-highlights {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--section-alt);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}

.highlight-item svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .key-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-image-grid .img-secondary {
        right: 10px;
        width: 120px;
    }
    
    .experience-badge {
        left: 10px;
        padding: 15px 20px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-marker .year {
    display: block;
    background: var(--primary-accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.timeline-content {
    width: calc(50% - 60px);
    background: var(--card-bg);
    padding: 20px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
    }
}

/* Advantage Cards */
.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-accent);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 125, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    background: linear-gradient(180deg, var(--section-light) 50%, var(--section-alt) 50%);
}

.cert-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.2s;
}

.cert-card:hover {
    border-color: var(--primary-accent);
}

.cert-card svg {
    color: var(--primary-accent);
    margin-bottom: 12px;
}

.cert-card span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.partners-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-logo {
    padding: 12px 24px;
    background: var(--section-alt);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

/* Testimonials */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.author-info .location {
    font-size: 12px;
}

/* Global Section */
.global-section {
    background: var(--section-light);
}

.global-stats {
    margin-top: 30px;
}

.global-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.global-stat-item:last-child {
    border-bottom: none;
}

.global-stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 125, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.global-stat-item strong {
    display: block;
    font-size: 15px;
}

.global-stat-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.global-map {
    background: var(--section-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.world-map-svg {
    max-width: 100%;
    height: auto;
}

/* Team Section */
.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #1a365d 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.team-card h5 {
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 13px;
    color: var(--primary-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* About CTA */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #1a365d 100%);
    padding: 80px 0;
}

.about-cta-section .cta-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.about-cta-section .cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.about-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.about-cta-section .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--secondary-accent);
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background-color: var(--primary-accent);
}

.footer-heading {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary-accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-accent);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary-accent);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    margin-bottom: 0;
}

.payment-note {
    font-size: 13px;
    margin-bottom: 0;
    opacity: 0.7;
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    background-color: var(--hero-bg);
    padding: 40px 0;
    text-align: left;
}

.page-header h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.page-header .row {
    align-items: center;
}

.breadcrumb-nav {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a:hover {
    color: var(--secondary-accent);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav .current {
    color: var(--secondary-accent);
}

.results-summary {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .page-header {
        text-align: center;
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumb-nav {
        justify-content: center;
    }
    
    .page-header .text-lg-end {
        text-align: center !important;
    }
}

/* ============================================
   Enhanced Filter Sidebar (Alibaba-Style)
   ============================================ */
.filter-sidebar {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--section-alt);
    border-bottom: 1px solid var(--border-color);
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-count {
    background: var(--primary-accent);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

.clear-all-filters {
    font-size: 12px;
    color: var(--danger);
}

.clear-all-filters:hover {
    text-decoration: underline;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.filter-group-title:hover {
    background: rgba(0,0,0,0.02);
}

.filter-group-title svg {
    transition: transform 0.2s;
}

.filter-group-title[aria-expanded="false"] svg {
    transform: rotate(-90deg);
}

.filter-options {
    padding: 0 20px 15px 20px;
}

.filter-options.scrollable {
    max-height: 200px;
    overflow-y: auto;
}

.filter-checkbox,
.filter-radio {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.filter-checkbox .form-check-input,
.filter-radio .form-check-input {
    margin-right: 10px;
    cursor: pointer;
}

.filter-checkbox label,
.filter-radio label {
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    flex: 1;
}

.option-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--section-alt);
    padding: 2px 8px;
    border-radius: 10px;
}

.filter-link-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    margin: 0 -10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-dark);
    transition: all 0.15s;
}

.filter-link-option:hover {
    background: var(--section-alt);
    color: var(--primary-accent);
    padding-left: 14px;
}

/* Condition dots */
.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.badge-dot.new { background: var(--success); }
.badge-dot.refurbished { background: var(--info); }
.badge-dot.used { background: var(--warning); }
.badge-dot.aftermarket { background: var(--secondary-accent); }

/* Price inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.price-input-group {
    position: relative;
    flex: 1;
}

.price-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-muted);
}

.price-input-group .form-control {
    padding-left: 22px;
}

.price-separator {
    color: var(--text-muted);
}

.price-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.price-shortcut {
    padding: 4px 10px;
    font-size: 11px;
    border: 1px solid var(--border-color);
    background: var(--section-alt);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
}

.price-shortcut:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

/* Rating filter */
.rating-option label {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-option .rating-text {
    margin-left: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Filter actions */
.filter-actions {
    padding: 15px 20px;
    background: var(--section-alt);
    border-top: 1px solid var(--border-color);
}

.filter-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sort bar enhanced */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
    gap: 15px;
}

.sort-bar-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sort-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.results-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* Active filters tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(45, 125, 210, 0.1);
    border: 1px solid rgba(45, 125, 210, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-accent);
}

.filter-tag .remove-filter {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    color: var(--primary-accent);
    cursor: pointer;
    opacity: 0.7;
}

.filter-tag .remove-filter:hover {
    opacity: 1;
}

/* View toggle */
.view-toggle {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.view-btn {
    padding: 8px 12px;
    background: var(--section-alt);
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.15s;
}

.view-btn:hover {
    color: var(--primary-accent);
}

.view-btn.active {
    background: var(--primary-accent);
    color: #fff;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 13px;
    min-width: 160px;
}

/* Empty results */
.empty-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.empty-results svg {
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 20px;
}

.empty-results h4 {
    margin-bottom: 10px;
}

.empty-results p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Product card enhancements */
.card-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.machine-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.min-order-info {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* List view */
.products-grid.list-view .row {
    flex-direction: column;
}

.products-grid.list-view .product-item {
    max-width: 100%;
    flex: 0 0 100%;
}

.products-grid.list-view .product-card-ali {
    display: flex;
    flex-direction: row;
}

.products-grid.list-view .product-img-wrap {
    width: 220px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: 180px;
}

.products-grid.list-view .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-grid.list-view .product-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 25px;
}

.products-grid.list-view .product-title {
    font-size: 16px;
    height: auto;
    -webkit-line-clamp: 1;
    margin-bottom: 10px;
}

.products-grid.list-view .product-price {
    font-size: 20px;
    margin-bottom: 8px;
}

.products-grid.list-view .product-moq {
    margin-bottom: 10px;
}

.products-grid.list-view .product-meta-row {
    margin-bottom: 10px;
}

.products-grid.list-view .supplier-info {
    margin-top: auto;
}

@media (max-width: 767.98px) {
    .products-grid.list-view .product-card-ali {
        flex-direction: column;
    }
    .products-grid.list-view .product-img-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }
    .products-grid.list-view .product-card-info {
        padding: 15px;
    }
}

/* ============================================
   Product Detail Page (Alibaba-Style)
   ============================================ */
.product-gallery {
    margin-bottom: 30px;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.product-main-image img {
    width: 100%;
    height: auto;
}

.featured-badge,
.hot-deal-badge {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius);
    z-index: 2;
}

.featured-badge {
    left: 15px;
    background: var(--primary-accent);
    color: #fff;
}

.hot-deal-badge {
    right: 15px;
    background: var(--danger);
    color: #fff;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.product-thumbnail {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-accent);
}

.product-thumbnail img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Product Info Card */
.product-info-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    border: 1px solid var(--border-color);
}

.product-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.product-badges-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.product-rating-row .stars {
    display: flex;
    gap: 2px;
}

.product-rating-row .star {
    fill: #ddd;
    stroke: #ddd;
}

.product-rating-row .star.filled {
    fill: var(--secondary-accent);
    stroke: var(--secondary-accent);
}

.rating-value {
    font-weight: 600;
    color: var(--secondary-accent);
}

.separator {
    color: var(--border-color);
}

/* Key Info Grid */
.product-key-info {
    background: var(--section-alt);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 20px;
}

.key-info-item {
    display: flex;
    flex-direction: column;
}

.key-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.key-value {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

/* Bulk Pricing */
.product-pricing-section {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(45, 125, 210, 0.05) 0%, rgba(240, 165, 0, 0.1) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.bulk-pricing-table .pricing-header {
    margin-bottom: 12px;
}

.pricing-label {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-tiers {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.pricing-tier {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 12px 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-right: -1px;
}

.pricing-tier:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.pricing-tier:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-right: 0;
}

.tier-qty {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.tier-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-accent);
}

.single-price,
.price-on-request {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
}

.single-price .price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-accent);
}

.price-on-request .price-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-accent);
}

/* Quick Specs */
.product-quick-specs {
    margin-bottom: 20px;
}

.quick-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 14px;
}

.quick-spec svg {
    color: var(--primary-accent);
    flex-shrink: 0;
}

.quick-spec .spec-name {
    color: var(--text-muted);
}

.quick-spec .spec-val {
    font-weight: 600;
    margin-left: auto;
}

/* Certifications */
.product-certifications {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius);
}

.cert-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cert-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    background: var(--success);
    color: #fff;
    border-radius: 20px;
}

/* Quantity & Actions */
.product-actions-section {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.quantity-selector label {
    font-weight: 500;
    font-size: 14px;
}

.qty-controls {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    background: var(--section-alt);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--primary-accent);
    color: #fff;
    border-color: var(--primary-accent);
}

.qty-btn.minus {
    border-radius: var(--radius) 0 0 var(--radius);
}

.qty-btn.plus {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Supplier Card */
.supplier-info-card {
    margin-top: 20px;
    padding: 15px 20px;
    background: var(--section-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.supplier-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.supplier-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius);
    background: #fff;
    padding: 5px;
}

.supplier-details {
    flex: 1;
}

.supplier-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.supplier-location {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
}

.verified-badge svg {
    fill: var(--success);
}

/* Product Detail Tabs */
.product-detail-tabs .nav-tabs {
    border-bottom: 2px solid var(--border-color);
    background: var(--card-bg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 0 10px;
}

.product-detail-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-weight: 500;
    padding: 15px 20px;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.product-detail-tabs .nav-tabs .nav-link svg {
    opacity: 0.6;
}

.product-detail-tabs .nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-accent);
}

.product-detail-tabs .nav-tabs .nav-link:hover svg {
    opacity: 1;
}

.product-detail-tabs .nav-tabs .nav-link.active {
    border-bottom-color: var(--primary-accent);
    color: var(--primary-accent);
    background: transparent;
}

.product-detail-tabs .nav-tabs .nav-link.active svg {
    opacity: 1;
}

.product-detail-tabs .tab-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.tab-inner {
    padding: 30px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
    background: var(--section-alt);
    border-radius: var(--radius);
    font-size: 14px;
}

.features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Specs Table Enhanced */
.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 35%;
    background: var(--section-alt);
    font-weight: 600;
    color: var(--text-dark);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

/* Compatibility Grid */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.compat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--section-alt);
    border-radius: var(--radius);
    font-size: 14px;
}

.compat-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Shipping Cards */
.shipping-card {
    background: var(--section-alt);
    border-radius: var(--radius);
    padding: 25px;
    height: 100%;
}

.shipping-card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.shipping-card h5 svg {
    color: var(--primary-accent);
}

.shipping-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.shipping-card li {
    margin-bottom: 8px;
}

.lead-time-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius);
    font-size: 14px;
}

.lead-time-notice svg {
    color: var(--info);
}

/* Reviews */
.reviews-summary {
    padding: 20px;
    background: var(--section-alt);
    border-radius: var(--radius);
}

.avg-rating {
    margin-bottom: 10px;
}

.rating-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-accent);
}

.rating-max {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.stars-big {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.review-total {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.reviews-list {
    margin-top: 20px;
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.reviewer-name {
    display: block;
}

.reviewer-location {
    font-size: 12px;
    color: var(--text-muted);
}

.review-meta {
    text-align: right;
}

.review-stars {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.no-reviews svg {
    opacity: 0.3;
}

/* Old styles kept for backward compatibility */
.product-info {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-sku {
    font-size: 13px;
    color: var(--text-muted);
}

.product-specs-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.spec-item {
    font-size: 14px;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    font-weight: 600;
}

.product-price-box {
    background-color: var(--section-alt);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-accent);
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px 20px;
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-accent);
}

.nav-tabs .nav-link.active {
    border-bottom-color: var(--primary-accent);
    color: var(--primary-accent);
    background: transparent;
}

.tab-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    padding: 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.specs-table {
    width: 100%;
}

.specs-table tr:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 40%;
    color: var(--text-muted);
}

/* ============================================
   Cart Page
   ============================================ */
.cart-table {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-table th {
    background-color: var(--section-alt);
    font-weight: 600;
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 20px;
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.cart-product-name {
    font-weight: 600;
}

.cart-qty-input {
    width: 80px;
    text-align: center;
    padding: 8px;
}

.cart-remove {
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
}

.cart-remove:hover {
    opacity: 0.7;
}

.cart-summary {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.cart-summary-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    margin-top: 15px;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout-form {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.checkout-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-color: var(--border-color);
    border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(45, 125, 210, 0.1);
}

.payment-method {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.payment-method:hover {
    border-color: var(--primary-accent);
}

.payment-method.selected {
    border-color: var(--primary-accent);
    background-color: rgba(45, 125, 210, 0.05);
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--section-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.payment-method-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.payment-method-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.payment-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.crypto-wallet {
    background-color: var(--section-alt);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 15px;
}

.wallet-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-address input {
    flex: 1;
    font-size: 12px;
    font-family: monospace;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.copy-btn {
    background: var(--primary-accent);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.copy-btn:hover {
    background: #1f5b9e;
}

/* Order Summary */
.order-summary {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-img {
    width: 60px;
    height: 45px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 3px;
}

.order-item-qty {
    font-size: 13px;
    color: var(--text-muted);
}

.order-item-price {
    font-weight: 600;
}

/* ============================================
   Order Confirmation
   ============================================ */
.confirmation-box {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--success);
}

.confirmation-icon svg {
    width: 50px;
    height: 50px;
}

.reference-id {
    background-color: var(--section-alt);
    padding: 15px 30px;
    border-radius: var(--radius);
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: monospace;
    color: var(--primary-accent);
    margin: 20px 0;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-info-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 125, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 30px;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-accordion .accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: var(--radius) !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    background-color: var(--card-bg);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-accent);
    background-color: var(--card-bg);
}

.faq-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Policy Pages
   ============================================ */
.policy-content {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* ============================================
   About Page
   ============================================ */
.about-story {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.value-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    height: 100%;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(45, 125, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Admin Panel Styles
   ============================================ */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: var(--hero-bg);
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.admin-logo {
    padding: 0 25px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.admin-logo a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.admin-nav a svg {
    width: 20px;
    height: 20px;
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    background-color: var(--page-bg);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-title {
    font-size: 1.5rem;
    margin: 0;
}

.admin-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.admin-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.admin-stat-icon.blue {
    background-color: var(--primary-accent);
}

.admin-stat-icon.orange {
    background-color: var(--secondary-accent);
}

.admin-stat-icon.green {
    background-color: var(--success);
}

.admin-stat-icon.purple {
    background-color: #8B5CF6;
}

.admin-stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.admin-stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

.admin-table {
    width: 100%;
}

.admin-table th {
    background-color: var(--section-alt);
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table-thumb {
    width: 50px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.status-badge.processing {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.status-badge.completed {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-badge.cancelled {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hero-bg);
}

.admin-login-box {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 50px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.admin-login-title {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-title h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.admin-login-title p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    gap: 5px;
}

.page-link {
    border-radius: var(--radius) !important;
    padding: 10px 15px;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.page-link:hover {
    background-color: var(--section-alt);
    border-color: var(--border-color);
    color: var(--primary-accent);
}

.page-item.active .page-link {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* ============================================
   Alerts & Messages
   ============================================ */
.alert {
    border-radius: var(--radius);
    padding: 15px 20px;
    border: none;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

/* ============================================
   Modal Styles
   ============================================ */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 15px 25px;
}

/* ============================================
   Utilities
   ============================================ */
.text-primary {
    color: var(--primary-accent) !important;
}

.text-secondary {
    color: var(--secondary-accent) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-primary {
    background-color: var(--primary-accent) !important;
}

.bg-secondary {
    background-color: var(--secondary-accent) !important;
}

.border-primary {
    border-color: var(--primary-accent) !important;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991px) {
    .admin-sidebar {
        position: static;
        width: 100%;
        padding: 15px;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .about-story {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .search-form {
        display: none;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-specs-quick {
        grid-template-columns: 1fr;
    }
    
    .cart-product {
        flex-direction: column;
        text-align: center;
    }
    
    .confirmation-box {
        padding: 40px 20px;
    }
    
    .policy-content {
        padding: 25px;
    }
}

/* ============================================
   ALIBABA STYLE HOMEPAGE
   ============================================ */

/* Quick Categories Bar */
.quick-categories-bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
    position: sticky;
   
    z-index: 100;
}

.quick-cat-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.quick-cat-scroll::-webkit-scrollbar {
    display: none;
}

.quick-cat-item {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    transition: all 0.2s;
}

.quick-cat-item:hover {
    background: #ff6b35;
    color: #fff;
}

.quick-cat-more {
    background: #ff6b35;
    color: #fff;
}

/* Alibaba Main Area */
.alibaba-main {
    background: #f5f5f5;
    padding: 20px 0;
    min-height: 100vh;
}

/* Category Sidebar */
.category-sidebar {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.cat-sidebar-title {
    background: #1a1a2e;
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 14px;
}

.cat-sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.cat-sidebar-item:hover {
    background: #fff5f2;
    color: #ff6b35;
    padding-left: 20px;
}

/* Hero Banner */
.hero-banner {
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-banner-content {
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.hero-banner h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-banner p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.9;
}

/* Side Banners */
.side-banners {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.side-banner {
    flex: 1;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
}

.side-banner-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-bottom: 8px;
}

.side-banner h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.side-banner p {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}

/* Trust Strip */
/* Trust Section - Clean Modern Design */
.trust-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 28px 40px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s ease;
}

.trust-item:hover {
    color: #0f172a;
}

.trust-item svg {
    color: #64748b;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.trust-item:hover svg {
    color: #ff6b35;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
}

@media (max-width: 992px) {
    .trust-section {
        gap: 24px;
        padding: 24px 32px;
    }
    
    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-section {
        gap: 20px;
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-item {
        font-size: 13px;
    }
}

/* Product Section */
.product-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.product-section-compact {
    height: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.section-subtitle {
    font-size: 13px;
    color: #888;
    margin-top: 3px;
}

.view-more-link {
    font-size: 13px;
    color: #ff6b35;
    font-weight: 500;
}

.view-more-link:hover {
    color: #e55a25;
}

/* Product Grid */
.product-grid {
    display: grid;
    gap: 15px;
}

.product-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Alibaba Product Card */
.product-card-ali {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s;
}

.product-card-ali:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    border-color: #ff6b35;
}

.product-card-ali a {
    display: block;
    color: inherit;
}

.product-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f9f9f9;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card-ali:hover .product-card-img img {
    transform: scale(1.05);
}

.product-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #10b981;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.product-card-info {
    padding: 12px;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    font-family: var(--font-body);
}

.product-price-row {
    margin-bottom: 5px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

.product-price-max {
    font-size: 12px;
    color: #999;
}

.product-moq {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #ff6b35;
    background: #fff5f2;
    padding: 2px 6px;
    border-radius: 3px;
}

.shipping-badge {
    font-size: 10px;
    color: #10b981;
    background: #ecfdf5;
    padding: 2px 6px;
    border-radius: 3px;
}

.orders-count {
    font-size: 11px;
    color: #888;
}

/* Small Product Card */
.product-card-sm .product-card-info {
    padding: 10px;
}

.product-card-sm .product-title {
    font-size: 12px;
    height: 32px;
}

.product-card-sm .product-price {
    font-size: 14px;
}

/* Category Quick Section */
.category-quick-section {
    margin-top: 20px;
}

.category-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.category-quick-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #ff6b35;
}

.cat-quick-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cat-quick-icon svg {
    width: 32px;
    height: 32px;
}

.category-quick-card:hover .cat-quick-icon {
    color: #e55a25;
    transform: scale(1.1);
}

.cat-quick-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.cat-quick-count {
    font-size: 11px;
    color: #888;
}

/* Ranking List */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s;
    color: inherit;
}

.ranking-item:hover {
    background: #f8f8f8;
}

.ranking-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
}

.ranking-num.top-3 {
    background: #ff6b35;
    color: #fff;
}

.ranking-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-info h4 {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-price {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
}

.ranking-orders {
    font-size: 11px;
    color: #888;
    white-space: nowrap;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 30px 40px;
    color: #fff;
}

.cta-banner h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 5px;
}

.cta-banner p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Adjustments for Alibaba Layout */
@media (max-width: 1400px) {
    .product-grid-6 {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .product-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-banner {
        min-height: auto;
        padding: 30px;
    }
    
    .hero-banner h1 {
        font-size: 1.6rem;
    }
    
    .side-banners {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .product-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-categories-bar {
        top: 60px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-banner {
        padding: 25px;
        text-align: center;
    }
    
    .cta-banner .btn {
        margin: 5px;
    }
    
    .ranking-item {
        padding: 8px;
    }
    
    .ranking-orders {
        display: none;
    }
}

@media (max-width: 576px) {
    .alibaba-main {
        padding: 10px 0;
    }
    
    .product-section {
        padding: 5px;
        border-radius: 0;
    }
    
    .product-card-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 12px;
        height: 32px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .category-quick-card {
        padding: 15px 10px;
    }
    
    .cat-quick-icon {
        width: 40px;
        height: 40px;
    }
    
    .cat-quick-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .cat-quick-name {
        font-size: 11px;
    }
}

/* ======================================================
   ALIBABA-STYLE HEADER
   ====================================================== */

/* Promo Bar */
.ali-promo-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    margin-right: 10px;
}

.promo-text {
    color: rgba(255,255,255,0.9);
}

.promo-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-link:hover {
    color: #f7931e;
}

/* Main Header */
.ali-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ali-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo */
.ali-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ali-logo img {
    height: 40px;
    width: auto;
}

.ali-logo .logo-icon {
    font-size: 32px;
}

.ali-logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.ali-logo .logo-text span {
    color: #ff6b35;
}

/* Header Actions */
.ali-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.action-label {
    color: #888;
    font-size: 11px;
}

.action-value {
    color: #333;
    font-weight: 500;
}

.header-action-icon {
    position: relative;
    color: #333;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
}

.header-action-icon:hover {
    background: #f5f5f5;
    color: #ff6b35;
}

.cart-badge-ali {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff6b35;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-create-account {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-create-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Navigation Row */
.ali-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.ali-nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Categories Dropdown */
.ali-categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.ali-categories-btn::after {
    display: none !important;
}

.ali-categories-btn:hover {
    background: #f5f5f5;
}

.ali-cat-dropdown {
    min-width: 280px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.ali-cat-dropdown .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
}

.ali-cat-dropdown .dropdown-item:hover {
    background: #fff5f2;
    color: #ff6b35;
}

.cat-arrow {
    color: #ccc;
    font-size: 16px;
}

.ali-cat-dropdown .view-all {
    color: #ff6b35;
    font-weight: 600;
}

/* Nav Links */
.ali-nav-links {
    display: flex;
    gap: 25px;
}

.ali-nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.ali-nav-links a:hover {
    color: #ff6b35;
}

/* Search Row - Clean & Powerful */
.ali-search-row {
    display: flex;
    flex-direction: column;
    padding: 12px 0 18px;
    gap: 10px;
}

.header-search-form {
    width: 100%;
    max-width: 900px;
}

.header-search-wrapper {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.header-search-wrapper:focus-within {
    border-color: #e55a2b;
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.25);
}

/* Category Dropdown */
.search-category-select {
    position: relative;
    background: #f8f8f8;
    border-right: 1px solid #e5e5e5;
    min-width: 160px;
}

.category-dropdown {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    padding: 14px 35px 14px 16px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
}

.category-dropdown:hover {
    background: #f0f0f0;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

/* Search Input */
.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-search-input {
    width: 100%;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    outline: none;
    background: transparent;
}

.header-search-input::placeholder {
    color: #999;
}

/* Search Button */
.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-search-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d04a1b 100%);
}

.header-search-btn svg {
    flex-shrink: 0;
}

/* Popular Searches */
.search-suggestions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.suggestions-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.search-suggestions a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    transition: all 0.2s;
}

.search-suggestions a:hover {
    background: #ff6b35;
    color: #fff;
}

/* Sticky/Compact Search Form (in header-top) */
.sticky-search-form {
    display: none;
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.sticky-search-form .sticky-search-input {
    flex: 1;
    border: 2px solid #ff6b35;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    color: #333;
    width: 100%;
}

.sticky-search-form .sticky-search-input::placeholder {
    color: #999;
}

.sticky-search-form .sticky-search-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: all 0.2s;
}

.sticky-search-form .sticky-search-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d04a1b 100%);
}

/* Compact Header State (when scrolled) */
.ali-header.header-compact {
    padding: 0;
}

.ali-header.header-compact .ali-header-top {
    padding: 8px 0;
}

.ali-header.header-compact .ali-nav-row,
.ali-header.header-compact .ali-search-row {
    display: none;
}

.ali-header.header-compact .sticky-search-form {
    display: flex;
}

.ali-header.header-compact .ali-logo .logo-text {
    font-size: 20px;
}

.ali-header.header-compact .ali-logo .logo-icon {
    font-size: 26px;
}

.ali-header.header-compact .btn-create-account {
    padding: 8px 18px;
    font-size: 13px;
}

/* Responsive Header */
@media (max-width: 992px) {
    .ali-header-actions .header-action {
        display: none;
    }
    
    .ali-nav-links {
        display: none;
    }
    
    .search-category-select {
        display: none;
    }
    
    .header-search-wrapper {
        border-radius: 6px;
    }
    
    .sticky-search-form {
        max-width: 350px;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .ali-promo-bar .promo-text {
        display: none;
    }
    
    .ali-logo .logo-text {
        font-size: 18px;
    }
    
    .btn-create-account {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .header-search-btn {
        padding: 12px 18px;
    }
    
    .header-search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-suggestions {
        display: none;
    }
    
    .sticky-search-form {
        max-width: 200px;
        margin: 0 10px;
    }
    
    .sticky-search-form .sticky-search-input {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .sticky-search-form .sticky-search-btn {
        padding: 8px 14px;
    }
    
    .ali-header.header-compact .btn-create-account {
        display: none;
    }
    
    /* Mobile Header Fixes */
    .ali-header-top {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 0;
    }
    
    .ali-header-actions {
        gap: 8px;
    }
    
    .ali-header-actions .header-action-icon {
        padding: 6px;
    }
    
    .ali-header-actions .header-action-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ali-nav-row {
        display: none;
    }
    
    .ali-search-row {
        padding: 8px 0 12px;
    }
    
    .header-search-wrapper {
        border-radius: 6px;
    }
    
    .ali-logo .logo-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 576px) {
    .ali-promo-bar {
        display: none;
    }
    
    .ali-header .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .ali-header-top {
        padding: 8px 0;
    }
    
    .ali-logo .logo-text {
        font-size: 16px;
    }
    
    .ali-logo .logo-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .ali-header-actions {
        gap: 4px;
    }
    
    .ali-header-actions .header-action-icon {
        padding: 5px;
    }
    
    .ali-header-actions .header-action-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-create-account {
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 20px;
    }
    
    .cart-badge-ali {
        width: 15px;
        height: 15px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }
    
    .header-search-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .header-search-btn {
        padding: 10px 15px;
    }
    
    .header-search-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .sticky-search-form {
        max-width: 140px;
        margin: 0 8px;
    }
    
    .sticky-search-form .sticky-search-input {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .sticky-search-form .sticky-search-btn {
        padding: 6px 10px;
    }
    
    .sticky-search-form .sticky-search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .ali-header.header-compact .ali-logo .logo-text {
        font-size: 16px;
    }
}

/* FAQ Section Styles */
.faq-category {
    margin-bottom: 35px;
}

.faq-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b35;
    display: inline-block;
}

.faq-category .accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-category .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-category .accordion-button {
    font-weight: 500;
    color: #333;
    padding: 16px 20px;
    background: #fff;
}

.faq-category .accordion-button:not(.collapsed) {
    background: #fff5f2;
    color: #ff6b35;
    box-shadow: none;
}

.faq-category .accordion-button:focus {
    box-shadow: none;
    border-color: #ff6b35;
}

.faq-category .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-category .accordion-body {
    padding: 15px 20px 20px;
    color: #555;
    line-height: 1.7;
}

.faq-cta {
    background: linear-gradient(135deg, #fff5f2 0%, #fff 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ffe5dd;
}

.faq-cta h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-cta .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 25px;
}

.faq-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}


/* ============================================
   Search Results Page
   ============================================ */
.search-results-header {
    background: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.search-form-inline .input-group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.search-form-inline .form-control {
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 10px 16px;
    font-size: 14px;
}

.search-form-inline .form-control:focus {
    border-color: #ff6b35;
    box-shadow: none;
}

.search-form-inline .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 10px 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-form-inline .btn-primary:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.page-title-ali {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.empty-state-ali {
    background: #fff;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.empty-state-icon {
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state-ali h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.empty-state-ali p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 0;
}

.ali-toolbar {
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ali-results-count {
    font-size: 14px;
    color: #4a5568;
}

.ali-results-count strong {
    color: #2d3748;
    font-weight: 600;
}

.ali-sort-select {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    padding: 6px 32px 6px 12px;
    background-color: #fff;
    cursor: pointer;
}

.ali-sort-select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.ali-pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.ali-pagination .pagination {
    gap: 6px;
}

.ali-pagination .page-link {
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.ali-pagination .page-link:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
}

.ali-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: #ff6b35;
    color: #fff;
}

/* Product badges for search results */
.product-featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-hot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.brand-badge {
    background: #edf2f7;
    color: #4a5568;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-results-header {
        padding: 16px;
    }
    
    .page-title-ali {
        font-size: 22px;
    }
    
    .search-form-inline .form-control {
        min-width: 100% !important;
    }
    
    .search-results-header .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .search-form-inline {
        width: 100%;
    }
    
    .empty-state-ali {
        padding: 60px 20px;
    }
}


/* Smooth header transition — add to style.css */
.ali-header {
    transition: box-shadow 0.25s ease;
}

.ali-nav-row,
.ali-search-row {
    transition: opacity 0.2s ease, max-height 0.25s ease;
    overflow: hidden;
    max-height: 200px;
    opacity: 1;
}

.ali-header.header-compact .ali-nav-row,
.ali-header.header-compact .ali-search-row {
    display: flex !important; /* override the display:none */
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    margin: 0;
}

/* ============================================
   COMPACT HEADER - FULLY RESPONSIVE
   ============================================ */

.ali-header-compact {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ali-header-compact .header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 6px;
}

/* Logo */
.ali-logo-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.ali-logo-compact img {
    height: 38px;
    width: auto;
}

.ali-logo-compact .logo-icon svg {
    width: 32px;
    height: 32px;
}

.ali-logo-compact .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0D1B2A;
    font-family: 'Poppins', sans-serif;
}

/* Categories Dropdown */
.categories-dropdown-compact {
    flex-shrink: 0;
}

.categories-btn-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.categories-btn-compact::after {
    display: none !important;
}

.categories-btn-compact:hover {
    background: #ebebeb;
    border-color: #d0d0d0;
}

.categories-menu-compact {
    min-width: 260px;
    padding: 8px 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    margin-top: 4px;
}

.categories-menu-compact .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
}

.categories-menu-compact .dropdown-item:hover {
    background: #fff5f2;
    color: #ff6b35;
}

/* Nav Links */
.header-nav-compact {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.header-nav-compact a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav-compact a:hover {
    color: #ff6b35;
}

/* Desktop Search Bar */
.desktop-search {
    flex: 1;
    max-width: 600px;
    display: flex;
    margin: 0 auto;
}

.search-input-compact {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input-compact:focus {
    border-color: #ff6b35;
}

.search-btn-compact {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-compact:hover {
    background: #ff5722;
}

/* Mobile Search Toggle & Bar */
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 6px;
}

.mobile-search-bar {
    display: none;
    padding: 12px 0;
    border-top: 1px solid #e8e8e8;
}

.mobile-search-bar.active {
    display: block;
}

.mobile-search-bar form {
    display: flex;
    width: 100%;
}

.mobile-search-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
}

.mobile-search-input:focus {
    border-color: #ff6b35;
}

.mobile-search-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* Right Actions */
.header-actions-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.action-icon-compact {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.action-icon-compact:hover {
    color: #ff6b35;
}

.cart-badge-compact {
    position: absolute;
    top: -2px;
    right: -6px;
    background: #ff6b35;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.btn-quote-compact {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    white-space: nowrap;
}

.btn-quote-compact:hover {
    background: #ff5722;
    color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-section {
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-label {
    padding: 0 20px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}

.mobile-menu-item:hover {
    background: #f5f5f5;
    color: #ff6b35;
}

.mobile-menu-all {
    color: #ff6b35;
    font-weight: 600;
}

.mobile-menu-footer {
    padding: 20px;
}

.btn-quote-mobile {
    display: block;
    width: 100%;
    text-align: center;
    background: #ff6b35;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-quote-mobile:hover {
    background: #ff5722;
    color: #fff;
}

/* Visibility Helpers */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Tablets & Small Desktops (1200px) */
@media (max-width: 1200px) {
    .header-nav-compact {
        gap: 16px;
    }
    
    .ali-logo-compact .logo-text {
        font-size: 18px;
    }
}

/* Tablets (992px) */
@media (max-width: 992px) {
    .header-nav-compact {
        display: none !important;
    }
    
    .desktop-search {
        max-width: 350px;
    }
    
    .categories-btn-compact {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn-quote-compact {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .ali-header-compact .header-content {
        gap: 12px;
    }
    
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .mobile-search-toggle {
        display: block !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Hide desktop elements */
    .desktop-only {
        display: none !important;
    }
    
    .desktop-search {
        display: none !important;
    }
    
    /* Adjust logo */
    .ali-logo-compact .logo-text {
        font-size: 16px;
    }
    
    .ali-logo-compact img {
        height: 32px;
    }
    
    /* Simplify actions */
    .header-actions-compact {
        gap: 8px;
    }
    
    .action-icon-compact svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .ali-logo-compact .logo-text {
        display: none;
    }
    
    .ali-logo-compact .logo-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .help-icon {
        display: none !important;
    }
    
    .mobile-menu-content {
        width: 100%;
        max-width: 100%;
    }
}