.woo-ai-grid-bc2653c9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.woo-ai-card-bc2653c9 {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.woo-ai-card-bc2653c9:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.woo-ai-img-wrap-bc2653c9 {
    position: relative;
    overflow: hidden;
    background: #000;
    border-bottom: 2px solid #0056b3;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woo-ai-img-wrap-bc2653c9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.woo-ai-card-bc2653c9:hover .woo-ai-img-wrap-bc2653c9 img {
    transform: scale(1.08);
}

.woo-ai-content-bc2653c9 {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.woo-ai-title-bc2653c9 {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 36px;
}

.woo-ai-title-bc2653c9 a {
    color: #111;
    text-decoration: none;
}

.woo-ai-price-wrap-bc2653c9 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.woo-ai-price-bc2653c9 .amount {
    font-size: 18px;
    font-weight: 700;
    color: #E96125;
}

/* Ensure no regular price styling appears */
.woo-ai-price-bc2653c9 del {
    display: none !important;
}

.woo-ai-price-bc2653c9 ins {
    text-decoration: none;
    background: transparent;
}

.woo-ai-discount-bc2653c9 {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.woo-ai-rating-bc2653c9 {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 12px;
    color: #999;
}

.woo-ai-rating-bc2653c9 .star-rating {
    font-size: 11px;
    margin-right: 4px;
    width: 54px;
}

/* Base styling for empty stars */
.woo-ai-rating-bc2653c9 .star-rating::before {
    color: #E0E0E0 !important;
}

/* Override styling for filled stars */
.woo-ai-rating-bc2653c9 .star-rating span::before {
    color: #FFC107 !important;
}

.woo-ai-rating-count-bc2653c9 {
    font-size: 11px;
    color: #999;
}

.woo-ai-cart-bc2653c9 {
    margin-top: auto;
}

.woo-ai-cart-bc2653c9 .button {
    display: block;
    width: 100%;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.woo-ai-cart-bc2653c9 .button:hover {
    background: #333;
}

/* Hide View Cart link completely */
.woo-ai-cart-bc2653c9 .added_to_cart {
    display: none !important;
}

/* Hide WooCommerce Added status message/icon on the button */
.woo-ai-cart-bc2653c9 .button.added::after {
    display: none !important;
}

/* Add loading state styling */
.woo-ai-cart-bc2653c9 .button.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woo-ai-grid-bc2653c9 {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .woo-ai-grid-bc2653c9 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .woo-ai-content-bc2653c9 {
        padding: 10px;
    }
    
    .woo-ai-title-bc2653c9 {
        font-size: 13px;
        height: 34px;
    }
    
    .woo-ai-price-bc2653c9 .amount {
        font-size: 16px;
    }
}
