/* استایل‌های مشترک */
.wcc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(231,76,60,0.25);
}

.wcc-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.wcc-product-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.wcc-product-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: #f8f9fb;
    padding: 20px;
    overflow: hidden;
}

.wcc-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.wcc-product-card:hover .wcc-product-img {
    transform: scale(1.05);
}

.wcc-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.wcc-product-card:hover .wcc-product-overlay {
    opacity: 1;
}

.wcc-product-overlay span {
    background: #fff;
    color: #1e272e;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.wcc-product-content {
    padding: 16px;
}

.wcc-product-cat {
    font-size: 11px;
    color: #636e72;
    margin-bottom: 6px;
}

.wcc-product-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.wcc-product-title a {
    color: #1e272e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wcc-product-price {
    font-weight: 700;
    font-size: 17px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wcc-price-current {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
}

.wcc-price-old {
    font-size: 14px;
    color: #b2bec3;
    text-decoration: line-through;
    font-weight: 400;
}

.wcc-price-sale {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
}

.wcc-pagination {
    margin-top: 32px;
    text-align: center;
}

.wcc-pagination-inner {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.wcc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f1f2f6;
    color: #2d3436;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.wcc-pagination .page-numbers:hover {
    background: #dfe6e9;
    border-color: #b2bec3;
}

.wcc-pagination .page-numbers.current {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
    box-shadow: 0 4px 12px rgba(10,102,194,0.25);
}