/* Archive Page Styles */
.spc-product-archive {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.spc-archive-header {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eeeeee;
}

.spc-archive-title {
    margin: 0 0 10px 0;
    color: #333;
}

.spc-archive-description {
    color: #666;
    line-height: 1.6;
}

/* Sidebar */
.spc-widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.spc-widget h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    border-bottom: 2px solid #dbdbdb;
    padding-bottom: 8px;
}

.spc-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spc-category-list li {
    margin-bottom: 8px;
}

.spc-category-list li a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    transition: color 0.3s;
}

.spc-category-list li a:hover {
    color: #3498db;
}

.spc-category-list li.active a {
    color: #3498db;
    font-weight: 600;
}

.spc-category-count {
    background: #eee;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.spc-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spc-tag {
    display: inline-block;
    background: #e0e0e0;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.spc-tag:hover {
    background: #3498db;
    color: white;
}

/* Product Grid */
.spc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.spc-product-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.spc-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spc-product-image {
    position: relative;
    overflow: hidden;
}

.spc-product-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.spc-product-item:hover .spc-product-thumb {
    transform: scale(1.05);
}

.spc-product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
}

.spc-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.spc-badge-outofstock {
    background: #e74c3c;
    color: white;
}

.spc-product-info {
    padding: 15px;
}

.spc-product-category {
    margin-bottom: 5px;
}

.spc-category-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.spc-category-link:hover {
    color: #3498db;
}

.spc-product-title {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.spc-product-title a {
    color: #333;
    text-decoration: none;
}

.spc-product-title a:hover {
    color: #3498db;
}

.spc-product-sku {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.spc-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    margin: 10px 0;
}

.spc-price-range {
    color: #666;
    font-size: 16px;
}

.spc-product-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 10px 0;
    height: 70px;
    overflow: hidden;
}

.spc-product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.spc-btn-view {
    flex: 1;
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

.spc-btn-view:hover {
    background: #2980b9;
}

.spc-btn-add-to-cart {
    flex: 1;
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.spc-btn-add-to-cart:hover {
    background: #219653;
}

/* Pagination */
.spc-pagination {
    margin-top: 40px;
    text-align: center;
}

.spc-no-products {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.spc-no-products p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .spc-product-archive {
        grid-template-columns: 1fr;
    }

    .spc-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .spc-product-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .spc-product-grid {
        grid-template-columns: 1fr;
    }
}