/* ===== PRODUCT CARDS ===== */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card .product-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: #f9fafb;
}

.product-card .view-details-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 0.375rem;
    border: 1px solid #d1d5db;
    opacity: 0;
    transform: translateX(1rem);
    transition: all 0.3s;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    box-shadow: none;
}

.product-card:hover .view-details-btn {
    opacity: 1;
    transform: translateX(0);
}

.product-card .add-to-cart-btn {
    background: rgba(130, 75, 25, 0.2);
    color: white;
    padding: 0.375rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border: none;
    cursor: pointer;
}

.product-card .add-to-cart-btn:hover {
    background: rgba(130, 75, 25, 0.4);
}

.product-card .add-to-cart-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce .star-rating {
    color: #fbbf24 !important;
}

.added_to_cart,
.woocommerce-message .button.wc-forward {
    display: none !important;
}