.category-header {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.category-description p {
    margin-bottom: 20px;
}

.category-types h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-types p {
    color: #666;
    margin-bottom: 15px;
}

.types-list {
    list-style: none;
    padding: 0;
}

.types-list li {
    background: #f8f9fa;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #f15a2b;
    color: #333;
    font-weight: 500;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #666;
}

.breadcrumb-link {
    color: #f15a2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #d1481e;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #f15a2b;
}

/* Product Image */
.product-image-container {
    position: relative;
    background: #f8f9fa;
    padding: 30px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #f15a2b;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 120px;
}

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

.action-btn i {
    font-size: 1.2rem;
}

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

.quote-btn:hover {
    background: white;
    color: #f15a2b;
}

/* Product Info */
.product-info {
    padding: 30px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Product Meta */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-sku {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.product-category {
    background: linear-gradient(135deg, #f15a2b 0%, #d1481e 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Product Features */
.product-features {
    margin-bottom: 25px;
}

.product-features h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f15a2b;
    font-weight: bold;
}

.more-features {
    color: #f15a2b !important;
    font-weight: 500 !important;
}

/* Product Specifications */
.product-specs {
    margin-bottom: 25px;
}

.product-specs h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spec-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.spec-label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.spec-value {
    color: #666;
}

/* Product Footer */
.product-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.contact-options {
    display: flex;
    gap: 12px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn {
    background: #007bff;
    color: white;
}

.phone-btn:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

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

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

/* Category Footer */
.category-footer {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f15a2b 0%, #d1481e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(241, 90, 43, 0.3);
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 90, 43, 0.4);
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 80px 0;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-content i {
    font-size: 4rem;
    color: #f15a2b;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-container {
        height: 250px;
        padding: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        flex-direction: column;
    }
    .product-card {
        border: 1.5px solid #e9ecef;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
}

@media (max-width: 480px) {
    .category-header {
        margin-bottom: 30px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .action-btn {
        min-width: 100px;
        padding: 12px 16px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

/* Page Title Override for Category Pages */
.page-title {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-bottom: 1px solid #dee2e6;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumbs {
    color: #666;
    font-size: 14px;
}

.breadcrumbs a {
    color: #f15a2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #d1481e;
}

.breadcrumbs .current {
    color: #999;
}


