/* Custom Product Card Styles */
.custom-product-card {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.custom-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05) !important;
    border-color: var(--color-primary) !important;
}

.custom-product-card .card-img-top {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-product-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.custom-product-card .card-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.custom-product-card .card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-product-card .card-title a:hover {
    color: var(--color-primary);
}

.custom-product-card .category-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.custom-product-card .card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.custom-product-card .price-tag {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.custom-product-card .card-footer {
    background-color: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 1.5rem;
}

.custom-product-card .btn-add-cart {
    padding: 13px 0 !important;
    width: 100%;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Empty state styling */
.empty-products {
    color: #fff;
}