
.products-page {
    background-color: var(--bg-primary, #ffffff) !important;
    color: var(--text-color, #333333) !important;
}

.products-page .hero-section {
    padding: 140px 0 60px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%) !important;
    color: #ffffff !important;
}



.products-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') !important;
    opacity: 0.3;
    pointer-events: none;
}

[data-theme="dark"] .products-page .hero-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%) !important;
}

.products-page .hero-section h1 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
}

.products-page .hero-section p {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 800px;
    margin: 0 auto !important;
}

.products-page .hero-section {
    padding: 100px 0 70px !important; 
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%) !important;
    color: #ffffff !important;
}

.products-page .hero-section h1 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.3rem !important; 
}

.products-page .hero-section p {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 800px;
    margin: 0 auto 1.5rem !important; 
}

.products-page .quick-nav {
    background: #ffffff !important;
    padding: 25px 30px !important;
    border-radius: 16px !important;
    margin-bottom: 50px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.products-page .quick-nav h4 {
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.products-page .quick-nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.products-page .quick-nav-link {
    background: #e8f4ff !important;
    color: #3498db !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.products-page .quick-nav-link:hover {
    background: #3498db !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.products-page .category-section {
    margin-bottom: 80px !important;
}

.products-page .category-header {
    border-bottom: 2px solid #3498db !important;
    padding-bottom: 15px !important;
    margin-bottom: 40px !important;
    width: 100%;
}

.products-page .category-header h3 {
    color: #2c3e50 !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.products-page .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.products-page .product-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: none !important;
    border-left: 4px solid #3498db !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}

.products-page .product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}


.products-page .product-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #3498db, #1abc9c) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3) !important;
}

.products-page .product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg) !important;
}

.products-page .product-card h3 {
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
}

.products-page .product-card p {
    color: #333333 !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    font-size: 0.98rem !important;
}

[data-theme="dark"] .products-page .category-header h3,
[data-theme="dark"] .products-page .quick-nav h4 {
    color: #64b5f6 !important;
}

[data-theme="dark"] .products-page .category-header {
    border-bottom-color: #64b5f6 !important;
}

[data-theme="dark"] .products-page .product-card {
    background-color: #2d2d2d !important;
    border-left-color: #64b5f6 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .products-page .product-card h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .products-page .product-card p {
    color: #b0bec5 !important;
}

[data-theme="dark"] .products-page ul.features li.feature,
[data-theme="dark"] .products-page .feature {
    background: rgba(100, 181, 246, 0.15) !important;
    color: #64b5f6 !important;
}

[data-theme="dark"] .products-page .quick-nav {
    background: #2d2d2d !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .products-page .quick-nav-link {
    background: rgba(100, 181, 246, 0.15) !important;
    color: #64b5f6 !important;
}

[data-theme="dark"] .products-page .quick-nav-link:hover {
    background: #3498db !important;
    color: #ffffff !important;
}


[data-theme="dark"] .products-page .hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%) !important;
}

[data-theme="dark"] .products-page .hero-section h1,
[data-theme="dark"] .products-page .hero-section p {
    color: #ffffff !important;
}

.products-page ul.features,
.products-page .features {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    padding: 0 !important;
    margin: auto 0 0 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.products-page ul.features li.feature,
.products-page .feature {
    display: inline-block !important;
    list-style-type: none !important;
    background: rgba(52, 152, 219, 0.1) !important;
    color: #3498db !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

.products-page ul.features li.feature::before,
.products-page .feature::before {
    content: none !important;
    display: none !important;
}

.products-page .product-card:hover .feature {
    background: rgba(52, 152, 219, 0.18) !important;
    transform: translateY(-2px) !important;
}

.products-page .text-center {
    text-align: center !important;
    width: 100% !important;
    margin-top: 40px !important;
    margin-bottom: 50px !important;
}

.products-page .btn-back {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #3498db !important;
    color: #ffffff !important;
    padding: 12px 36px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.25) !important;
    transition: all 0.3s ease !important;
    margin: 0 auto !important;
}

.products-page .btn-back:hover {
    background-color: #1abc9c !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.35) !important;
}
@media (max-width: 992px) {
    .products-page .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-page .hero-section {
        padding: 120px 0 40px !important;
    }

    .products-page .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .products-page .products-grid {
        grid-template-columns: 1fr !important;
    }

    .products-page .quick-nav-links {
        flex-direction: column !important;
    }

    .products-page .quick-nav-link {
        text-align: center !important;
    }
}
.products-page .quick-nav {
    background: #ffffff !important;
    padding: 30px 35px !important;
    border-radius: 16px !important;
    margin-top: -45px !important;
    margin-bottom: 50px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important; 
}

.products-page .quick-nav h4 {
    color: #2c3e50 !important;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    display: block !important;
    width: 100% !important;
}

.products-page .quick-nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
}

.products-page .quick-nav-link {
    background: #e8f4ff !important;
    color: #3498db !important;
    padding: 9px 22px !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.products-page .quick-nav-link:hover {
    background: #3498db !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Responsive side-by-side option for smaller screens */
@media (max-width: 768px) {
    .products-page .quick-nav {
        margin-top: -30px !important;
        padding: 20px !important;
        text-align: center !important;
    }
    
    .products-page .quick-nav-links {
        justify-content: center !important;
    }
}
.products-page .category-section {
    margin-bottom: 80px !important;
}

.products-page .category-header {
    border-bottom: 2px solid #3498db !important;
    padding-bottom: 15px !important;
    margin-bottom: 40px !important;
    width: 100%;
}

.products-page .category-header h3 {
    color: #2c3e50 !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.products-page .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.products-page .product-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: none !important;
    border-left: 4px solid #3498db !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}

.products-page .product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.products-page .product-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #3498db, #1abc9c) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    transition: transform 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3) !important;
}

.products-page .product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg) !important;
}


.products-page .product-card h3 {
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
}

.products-page .product-card p {
    color: #333333 !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    font-size: 0.98rem !important;
}

.products-page ul.features,
.products-page .features {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    padding: 0 !important;
    margin: auto 0 0 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.products-page ul.features li.feature,
.products-page .feature {
    display: inline-block !important;
    list-style-type: none !important;
    background: rgba(52, 152, 219, 0.1) !important;
    color: #3498db !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

.products-page ul.features li.feature::before,
.products-page .feature::before {
    content: none !important;
    display: none !important;
}

.products-page .product-card:hover .feature {
    background: rgba(52, 152, 219, 0.18) !important;
    transform: translateY(-2px) !important;
}
.products-page .btn-back {
    background-color: #3498db !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    margin-top: 30px !important;
}

.products-page .btn-back:hover {
    background-color: #1abc9c !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 992px) {
    .products-page .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products-page .hero-section {
        padding: 120px 0 40px !important;
    }

    .products-page .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .products-page .products-grid {
        grid-template-columns: 1fr !important;
    }

    .products-page .quick-nav-links {
        flex-direction: column !important;
    }

    .products-page .quick-nav-link {
        text-align: center !important;
    }
}