/* WooCommerce Product Showcase - b81b6a83 */

.ps-showcase-b81b6a83 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

.ps-grid-b81b6a83 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ps-showcase-b81b6a83[data-columns="2"] .ps-grid-b81b6a83 {
    grid-template-columns: repeat(2, 1fr);
}

.ps-showcase-b81b6a83[data-columns="4"] .ps-grid-b81b6a83 {
    grid-template-columns: repeat(4, 1fr);
}

.ps-card-b81b6a83 {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.ps-card-b81b6a83:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.ps-card-image-b81b6a83 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

.ps-card-image-b81b6a83 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ps-card-b81b6a83:hover .ps-card-image-b81b6a83 img {
    transform: scale(1.08);
}

/* Sale Badge */
.ps-badge-sale-b81b6a83 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Overlay */
.ps-overlay-b81b6a83 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.ps-card-b81b6a83:hover .ps-overlay-b81b6a83 {
    opacity: 1;
}

.ps-btn-view-b81b6a83 {
    background: #ffffff;
    color: #333;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.ps-card-b81b6a83:hover .ps-btn-view-b81b6a83 {
    transform: translateY(0);
}

.ps-btn-view-b81b6a83:hover {
    background: #2d3436;
    color: #fff;
}

/* Card Body */
.ps-card-body-b81b6a83 {
    padding: 18px 20px 22px;
}

.ps-card-title-b81b6a83 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.ps-card-title-b81b6a83 a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ps-card-title-b81b6a83 a:hover {
    color: #6c5ce7;
}

.ps-card-excerpt-b81b6a83 {
    margin: 0 0 14px;
    font-size: 13px;
    color: #636e72;
    line-height: 1.6;
}

/* Pricing */
.ps-card-price-b81b6a83 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ps-price-old-b81b6a83 {
    font-size: 13px;
    color: #b2bec3;
    text-decoration: line-through;
}

.ps-price-current-b81b6a83 {
    font-size: 18px;
    font-weight: 800;
    color: #6c5ce7;
}

/* Responsive */
@media (max-width: 992px) {
    .ps-grid-b81b6a83 {
        grid-template-columns: repeat(2, 1fr);
    }
    .ps-showcase-b81b6a83[data-columns="4"] .ps-grid-b81b6a83 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ps-grid-b81b6a83 {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .ps-showcase-b81b6a83[data-columns="2"] .ps-grid-b81b6a83,
    .ps-showcase-b81b6a83[data-columns="4"] .ps-grid-b81b6a83 {
        grid-template-columns: 1fr;
    }
    .ps-showcase-b81b6a83 {
        padding: 0 12px;
    }
}
