/* /Editors/CardView/ResponsiveCardView.razor.rz.scp.css */
.responsive-card-view[b-y8mk7eg3fs] {
    padding: 20px;
}

.card-grid[b-y8mk7eg3fs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

@media (min-width: 1600px) {
    .card-grid[b-y8mk7eg3fs] {
        grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    }
}

.product-card[b-y8mk7eg3fs] {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    background-color: white;
    cursor: default;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover[b-y8mk7eg3fs] {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12);
    border-color: #adb5bd;
}

.product-card.in-enquiry[b-y8mk7eg3fs] {
    background-color: #e8f5e8;
}

.product-card.in-enquiry:hover[b-y8mk7eg3fs] {
    background-color: #ddf0dd;
}


.card-image img[b-y8mk7eg3fs] {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.product-card *[b-y8mk7eg3fs] {
    cursor: default;
}

.card-image-link[b-y8mk7eg3fs] {
    cursor: pointer !important;
}

.card-image-link img[b-y8mk7eg3fs] {
    cursor: pointer !important;
}

.card-image .no-image-placeholder[b-y8mk7eg3fs] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 205px !important; /* Match exact height of image containers */
    width: 100% !important;
}

.card-image .no-image-box[b-y8mk7eg3fs] {
    width: 100% !important;
    height: 200px !important;
    background: #f0f0f0 !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #999 !important;
    font-size: 14px !important;
}

.card-header h6[b-y8mk7eg3fs] {
    color: #212529;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.info-items[b-y8mk7eg3fs] {
    font-size: 0.9rem;
}

.info-row[b-y8mk7eg3fs] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 2px 0;
}

.info-row:last-child[b-y8mk7eg3fs] {
    margin-bottom: 0;
}

.info-row span:first-child[b-y8mk7eg3fs] {
    flex: 0 0 40%;
    font-weight: 500;
}

.info-row span:last-child[b-y8mk7eg3fs] {
    flex: 1;
    text-align: right;
}

.card-footer[b-y8mk7eg3fs] {
    border-top: 2px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
    background-color: #f8f9fa;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    padding: 15px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.card-footer .price-value[b-y8mk7eg3fs] {
    color: #008000;
    font-weight: bold;
}

/* Mobile optimizations */
@media (max-width: 576px) {
    .responsive-card-view[b-y8mk7eg3fs] {
        padding: 5px;
    }

    .product-card[b-y8mk7eg3fs] {
        padding: 10px;
    }

    .info-items[b-y8mk7eg3fs] {
        font-size: 0.85rem;
    }
}
