/* ==========================================================================
   PRODUCTS WOO GRID - Project Style
   ========================================================================== */

.products-woo-page .product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.products-woo-page .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.products-woo-page .pc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b99d63;
    margin: 16px 0;
}

.products-woo-page .pc-price del {
    font-size: 1rem;
    color: #999;
    margin-right: 8px;
}

.products-woo-page .pc-price ins {
    text-decoration: none;
    color: #e74c3c;
}

.products-woo-page .pc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.products-woo-page .pc-rating .star-rating {
    font-size: 14px;
}

.products-woo-page .rating-count {
    font-size: 0.875rem;
    color: #666;
}

.products-woo-page .pc-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin: 12px 0;
    line-height: 1.6;
}

.products-woo-page .pc-actions-bottom {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.products-woo-page .pc-actions-bottom .btn {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.products-woo-page .badge-sale {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

.products-woo-page .badge-gallery {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .products-woo-page .pc-actions-bottom {
        flex-direction: column;
    }
    
    .products-woo-page .pc-actions-bottom .btn {
        width: 100%;
    }
}
