/* Category-Specific Product Page Styles */

/* Modern Category Filter System */
.category-filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.filter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.filter-title i {
    color: #007bff;
    font-size: 1.3rem;
}

.filter-count {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.modern-filter-form {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.filter-field {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 1rem;
    z-index: 2;
    color: #6c757d;
    font-size: 0.9rem;
    pointer-events: none;
}

.modern-input,
.modern-select {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #495057;
}

.modern-input:focus,
.modern-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.modern-input::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.modern-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 3px 12px rgba(0, 123, 255, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.secondary-btn {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
    color: white;
    box-shadow: 0 3px 12px rgba(108, 117, 125, 0.3);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #545b62 0%, #495057 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.secondary-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.action-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .filter-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .filter-actions {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 1rem;
    }

    .filter-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-filter-section {
        padding: 1.5rem 0;
    }

    .filter-wrapper {
        padding: 0 0.5rem;
    }

    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-actions {
        grid-column: 1;
        justify-content: stretch;
    }

    .action-btn {
        flex: 1;
        justify-content: center;
        padding: 1rem;
    }

    .modern-input,
    .modern-select {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 1rem;
    }

    .filter-title {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .category-filter-section {
        padding: 1rem 0;
    }

    .modern-filter-form {
        padding: 1rem;
    }

    .filter-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .action-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .filter-title {
        font-size: 1.2rem;
    }

    .filter-count {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Subcategories Section Styles */
.subcategories-section {
    padding: 20px 0;
    border-radius: 10px;
    border-bottom: 1px solid #e9ecef;
}

.subcategories-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 20px;
}

.subcategories-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.subcategories-header p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.subcategory-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subcategory-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
    text-decoration: none;
    color: inherit;
}

.subcategory-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subcategory-icon i {
    font-size: 20px;
    color: #ffffff;
}

.subcategory-content {
    flex: 1;
}

.subcategory-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.subcategory-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.subcategory-arrow {
    color: #6c757d;
    font-size: 16px;
    transition: all 0.3s ease;
}

.subcategory-card:hover .subcategory-arrow {
    color: #0066cc;
    transform: translateX(4px);
}

/* Responsive Design for Subcategories */
@media (max-width: 768px) {
    .subcategories-section {
        padding: 24px 0;
    }

    .subcategories-header h2 {
        font-size: 24px;
    }

    .subcategories-header p {
        font-size: 14px;
    }

    .subcategories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subcategory-card {
        padding: 20px;
    }

    .subcategory-icon {
        width: 40px;
        height: 40px;
    }

    .subcategory-icon i {
        font-size: 18px;
    }

    .subcategory-content h3 {
        font-size: 16px;
    }

    .subcategory-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .subcategories-section {
        padding: 20px 0;
    }

    .subcategories-header {
        margin-bottom: 24px;
    }

    .subcategories-header h2 {
        font-size: 22px;
    }

    .subcategory-card {
        padding: 16px;
        gap: 12px;
    }

    .subcategory-icon {
        width: 36px;
        height: 36px;
    }

    .subcategory-icon i {
        font-size: 16px;
    }

    .subcategory-content h3 {
        font-size: 15px;
    }
}

/* ===== SUBCATEGORY PAGE RESPONSIVE DESIGN ===== */

/* Base styles for all devices */
.subcategory-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Breadcrumb Section */
.breadcrumb {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #666666;
}

.breadcrumb-nav a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.breadcrumb-nav i {
    font-size: 12px;
    color: #999999;
}

/* Category Header Section */
.category-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 2rem 0;
}

.category-header .page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 1rem;

}

.category-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.category-info p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.subcategory-stats {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

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

.stat-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 4px 0;
}

.stat-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Filters Section - Responsive Design */
.filters-section {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.filters-form {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.filters-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-item {
    flex: 1;
    min-width: 180px;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
    color: #374151;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.filter-input::placeholder {
    color: #9ca3af;
}

.filter-btn {
    background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #05a8d8 0%, #06befc 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

/* Products Section - Responsive Design */
.products-section {
    margin-top: 2rem;
}

.products-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.products-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 0.5rem 0;
}

.products-header p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Products Grid - Responsive */
.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Base Card Styles */
.base-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.base-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.base-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.base-card .aspect-square {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
}

.base-card .aspect-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease;
}

.base-card:hover .aspect-square img {
    transform: scale(1.05);
}

.base-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    margin: 0.5rem 0;
    padding: 0 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.base-card .font-bold {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    padding: 0 1rem 0.5rem 1rem;
}

.base-card .s-text {
    font-size: 0.875rem;
    color: #666666;
    padding: 0 1rem 1rem 1rem;
}

/* Featured Badge */
.base-card .absolute {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ffc107;
    color: #212529;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.no-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 24px;
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffc107;
    color: #212529;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: #0066cc;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.product-price .price {
    font-size: 20px;
    font-weight: 700;
    color: #28a745;
}

.product-price .currency {
    font-size: 14px;
    color: #6c757d;
}

.product-meta {
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6c757d;
}

.meta-item i {
    width: 16px;
    text-align: center;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6c757d;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.no-products-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 16px;
}

.no-products h3 {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 8px 0;
}

.no-products p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 24px 0;
}

.subcategory-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 16px 0;
}

.category-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 18px;
    color: white;
}

.category-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 4px 0;
}

.category-details p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 8px 0;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.related-subcategories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: #e9ecef;
    text-decoration: none;
    color: inherit;
}

.related-icon {
    width: 32px;
    height: 32px;
    background: #0066cc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-icon i {
    font-size: 14px;
    color: white;
}

.related-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 2px 0;
}

.related-info p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #06befc 0%, #05a8d8 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(6, 190, 252, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #05a8d8 0%, #06befc 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(6, 190, 252, 0.4);
}

.btn-outline {
    background: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: white;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.page-info {
    font-size: 14px;
    color: #6c757d;
    padding: 0 16px;
}

/* Responsive Design for Subcategory Page */
@media (max-width: 768px) {
    .subcategory-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .subcategory-main {
        padding: 20px;
    }

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

    .filters-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header {
        padding: 24px 0;
    }

    .subcategory-main {
        padding: 16px;
    }

    .sidebar-section {
        padding: 16px;
    }
}

/* Construction Equipment (Category 3) */
.product-category-3 .product-specs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #ff6b35;
}

.product-category-3 .spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.product-category-3 .spec-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.product-category-3 .spec-icon {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 8px;
}

.product-category-3 .spec-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-3 .spec-value {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

/* Furniture (Category 4) */
.product-category-4 .product-specs-section {
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
    border-left: 4px solid #f59e0b;
}

.product-category-4 .furniture-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.product-category-4 .furniture-detail {
    background: #ffffff;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #fbbf24;
}

.product-category-4 .furniture-detail-label {
    font-size: 11px;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-4 .furniture-detail-value {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

/* Tourism (Category 5) */
.product-category-5 .product-specs-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
    border-left: 4px solid #10b981;
}

.product-category-5 .tourism-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.product-category-5 .tourism-highlight {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #6ee7b7;
    text-align: center;
}

.product-category-5 .tourism-icon {
    font-size: 20px;
    color: #10b981;
    margin-bottom: 8px;
}

.product-category-5 .tourism-label {
    font-size: 12px;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-5 .tourism-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Motorcycles (Category 6) */
.product-category-6 .product-specs-section {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-left: 4px solid #ef4444;
}

.product-category-6 .motorcycle-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.product-category-6 .motorcycle-spec {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #fca5a5;
    text-align: center;
}

.product-category-6 .motorcycle-icon {
    font-size: 22px;
    color: #ef4444;
    margin-bottom: 8px;
}

.product-category-6 .motorcycle-label {
    font-size: 11px;
    color: #991b1b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-6 .motorcycle-value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* Property/House (Categories 7 & 9) */
.product-category-7 .product-specs-section,
.product-category-9 .product-specs-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #bae6fd 100%);
    border-left: 4px solid #0ea5e9;
}

.product-category-7 .property-details,
.product-category-9 .property-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.product-category-7 .property-detail,
.product-category-9 .property-detail {
    background: #ffffff;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #7dd3fc;
    text-align: center;
}

.product-category-7 .property-icon,
.product-category-9 .property-icon {
    font-size: 18px;
    color: #0ea5e9;
    margin-bottom: 6px;
}

.product-category-7 .property-label,
.product-category-9 .property-label {
    font-size: 10px;
    color: #0c4a6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-7 .property-value,
.product-category-9 .property-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

/* Electronics (Category 8) */
.product-category-8 .product-specs-section {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-left: 4px solid #8b5cf6;
}

.product-category-8 .electronics-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.product-category-8 .electronics-spec {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #c4b5fd;
    text-align: center;
}

.product-category-8 .electronics-icon {
    font-size: 20px;
    color: #8b5cf6;
    margin-bottom: 8px;
}

.product-category-8 .electronics-label {
    font-size: 11px;
    color: #6b21a8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-8 .electronics-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Commercial Vehicles (Category 10) */
.product-category-10 .product-specs-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
    border-left: 4px solid #22c55e;
}

.product-category-10 .vehicle-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.product-category-10 .vehicle-spec {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #86efac;
    text-align: center;
}

.product-category-10 .vehicle-icon {
    font-size: 22px;
    color: #22c55e;
    margin-bottom: 8px;
}

.product-category-10 .vehicle-label {
    font-size: 11px;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-10 .vehicle-value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* Job/Work (Category 1) */
.product-category-1 .product-specs-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
}

.product-category-1 .job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.product-category-1 .job-detail {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #fbbf24;
    text-align: center;
}

.product-category-1 .job-icon {
    font-size: 20px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.product-category-1 .job-label {
    font-size: 11px;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-1 .job-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Rent A Car (Category 2) */
.product-category-2 .product-specs-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #bae6fd 100%);
    border-left: 4px solid #3b82f6;
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {

    .filters-container,
    .category-header .page-container,
    .breadcrumb .container {
        max-width: 1200px;
    }

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

    .filter-item {
        min-width: 200px;
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .filter-item {
        min-width: 180px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    .filters-container,
    .category-header .page-container,
    .breadcrumb .container {
        padding: 0 1.5rem;
    }

    .filters-row {
        gap: 0.75rem;
    }

    .filter-item {
        min-width: 160px;
    }

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

    .category-info h1 {
        font-size: 1.75rem;
    }

    .filters-form {
        padding: 1.25rem;
    }
}

/* Mobile Large (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {

    .filters-container,
    .category-header .page-container,
    .breadcrumb .container {
        padding: 0 1rem;
    }

    .filters-section {
        padding: 1rem 0;
    }

    .filters-form {
        padding: 1rem;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-item {
        min-width: auto;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

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

    .category-info h1 {
        font-size: 1.5rem;
    }

    .category-header {
        padding: 1.5rem 0;
    }

    .base-card h3 {
        font-size: 0.9rem;
    }

    .base-card .font-bold {
        font-size: 1rem;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {

    .filters-container,
    .category-header .page-container,
    .breadcrumb .container {
        padding: 0 0.75rem;
    }

    .filters-section {
        padding: 0.75rem 0;
    }

    .filters-form {
        padding: 0.75rem;
        border-radius: 6px;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .filter-item {
        min-width: auto;
    }

    .filter-input,
    .filter-select {
        padding: 0.625rem 0.75rem;
        font-size: 13px;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1rem;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .category-info h1 {
        font-size: 1.25rem;
    }

    .category-header {
        padding: 1rem 0;
    }

    .breadcrumb {
        padding: 0.75rem 0;
    }

    .breadcrumb-nav {
        font-size: 13px;
    }

    .base-card {
        border-radius: 6px;
    }

    .base-card h3 {
        font-size: 0.875rem;
        padding: 0 0.75rem;
    }

    .base-card .font-bold {
        font-size: 0.9rem;
        padding: 0 0.75rem 0.5rem 0.75rem;
    }

    .base-card .s-text {
        font-size: 0.8rem;
        padding: 0 0.75rem 0.75rem 0.75rem;
    }

    .products-header h2 {
        font-size: 1.25rem;
    }

    .products-header p {
        font-size: 0.875rem;
    }
}

.product-category-2 .rental-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.product-category-2 .rental-detail {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #93c5fd;
    text-align: center;
}

.product-category-2 .rental-icon {
    font-size: 20px;
    color: #3b82f6;
    margin-bottom: 8px;
}

.product-category-2 .rental-label {
    font-size: 11px;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-2 .rental-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Other (Category 11) */
.product-category-11 .product-specs-section {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    border-left: 4px solid #6b7280;
}

.product-category-11 .other-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.product-category-11 .other-detail {
    background: #ffffff;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    text-align: center;
}

.product-category-11 .other-icon {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 6px;
}

.product-category-11 .other-label {
    font-size: 10px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-category-11 .other-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

/* Responsive adjustments for category-specific layouts */
@media (max-width: 768px) {

    .product-category-3 .spec-grid,
    .product-category-4 .furniture-details,
    .product-category-5 .tourism-highlights,
    .product-category-6 .motorcycle-specs,
    .product-category-7 .property-details,
    .product-category-8 .electronics-specs,
    .product-category-9 .property-details,
    .product-category-10 .vehicle-specs,
    .product-category-1 .job-details,
    .product-category-2 .rental-details,
    .product-category-11 .other-details {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .product-category-3 .spec-card,
    .product-category-5 .tourism-highlight,
    .product-category-6 .motorcycle-spec,
    .product-category-8 .electronics-spec,
    .product-category-10 .vehicle-spec,
    .product-category-1 .job-detail,
    .product-category-2 .rental-detail {
        padding: 12px;
    }

    .product-category-4 .furniture-detail,
    .product-category-7 .property-detail,
    .product-category-9 .property-detail,
    .product-category-11 .other-detail {
        padding: 8px;
    }
}

@media (max-width: 480px) {

    .product-category-3 .spec-grid,
    .product-category-4 .furniture-details,
    .product-category-5 .tourism-highlights,
    .product-category-6 .motorcycle-specs,
    .product-category-7 .property-details,
    .product-category-8 .electronics-specs,
    .product-category-9 .property-details,
    .product-category-10 .vehicle-specs,
    .product-category-1 .job-details,
    .product-category-2 .rental-details,
    .product-category-11 .other-details {
        grid-template-columns: repeat(2, 1fr);
    }
}