/* Product Card Widget */
.pcard-wrap {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    margin: -20px;
    box-sizing: content-box;
}

.pcard-swiper {
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.pcard-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

a.pcard-item:hover {
    text-decoration: none;
    color: inherit;
}

.pcard-image {
    width: 100%;
    overflow: hidden;
}

.pcard-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.pcard-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    flex: 1;
}

.pcard-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 16px 0;
    line-height: 1.4;
}

.pcard-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: auto;
}

a.pcard-item:hover .pcard-btn {
    opacity: 0.8;
}

.pcard-btn i {
    font-size: 14px;
    color: #333;
}

.pcard-btn svg {
    width: 14px;
    height: 14px;
    fill: #333;
}

.pcard-btn-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.pcard-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 20px;
}

.pcard-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    opacity: 1;
    cursor: pointer;
    transition: background 0.3s;
}

.pcard-pagination .swiper-pagination-bullet-active {
    background: #333;
}
