 WC Bestsellers – Frontend Styles

.wc-bestsellers-front-block {
    margin: 2em 0;
}

.wc-bestsellers-cat-title {
    font-size: 1.3em;
    margin-bottom: 0.6em;
    padding-bottom: 0.4em;
    border-bottom: 2px solid #e2e2e2;
}

.wc-bestsellers-front-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    table-layout: fixed;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

/* Column widths */
.wc-bestsellers-front-table th:nth-child(1) { width: 60px;  } /* # */
.wc-bestsellers-front-table th:nth-child(2) { width: 45%;  } /* Product */
.wc-bestsellers-front-table th:nth-child(3) { width: 110px; } /* SKU */
.wc-bestsellers-front-table th:nth-child(4) { width: 100px; } /* Price */

.wc-bestsellers-front-table th,
.wc-bestsellers-front-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
    word-wrap: break-word;
}

.wc-bestsellers-front-table thead th {
    background: #f5f5f5;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #555;
    border-bottom: 2px solid #ddd;
    white-space: nowrap;
}

.wc-bestsellers-front-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.wc-bestsellers-front-table tbody tr:hover {
    background: #f0f4ff;
}

.wc-bestsellers-front-table tbody tr:last-child td {
    border-bottom: none;
}

/* Rank column */
.wc-bestsellers-front-table td:nth-child(1) {
    text-align: center;
    font-weight: 600;
    color: #999;
}

/* Image column */
.wc-bestsellers-front-table td:nth-child(2) {
    padding: 6px 8px;
}

.wc-bestsellers-front-table td img {
    border-radius: 4px;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    width: 44px;
    height: 44px;
}

/* Product name */
.wc-bestsellers-front-table td:nth-child(3) {
    font-weight: 500;
    line-height: 1.4;
}

.wc-bestsellers-front-table td a {
    text-decoration: none;
    color: inherit;
}

.wc-bestsellers-front-table td a:hover {
    text-decoration: underline;
    color: #0073aa;
}

/* SKU column */
.wc-bestsellers-front-table td:nth-child(4) {
    font-family: monospace;
    font-size: 0.9em;
    color: #666;
}

/* Price column */
.wc-bestsellers-front-table td:nth-child(5) {
    white-space: nowrap;
    font-weight: 500;
}

/* Total Sales column */
.wc-bestsellers-front-table td:nth-child(6) {
    text-align: center;
    font-weight: 600;
}

.wc-bestsellers-front-table thead th:nth-child(6) {
    text-align: center;
}

.wc-bestsellers-empty {
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-bestsellers-front-table {
        table-layout: auto;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wc-bestsellers-front-table th,
    .wc-bestsellers-front-table td {
        padding: 8px 10px;
        font-size: 0.85em;
    }
}