#bsp-shop-container { 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
	background:#fff;
	padding-top:30px;
	padding-bottom:30px;
}
#bsp-shop-container .row .col{margin-bottom:20px}
.bsp-product-image-wrapper {
            /* Defines the fixed aspect ratio for the image area */
            height: 0;
            padding-bottom: 75%; /* 4:3 aspect ratio (3/4 * 100) */
            position: relative;
            overflow: hidden;
            background-color: #f8f9fa; /* Light background for placeholders */
        }
        .bsp-card-img, .bsp-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Important: crops and covers the area without distorting */
        }
        .bsp-placeholder {
            font-size: 1.2rem;
            display: flex; /* Centers text vertically */
            align-items: center;
            justify-content: center;
			text-align:center
        }
        .card-footer {
            /* Padding adjustment for a cleaner look */
            padding-top: 0.5rem;
            padding-bottom: 0.75rem;
        }
        /* Style for the out-of-stock card border */
        .card.border-danger {
            border-width: 2px !important;
        }
        /* Ensures the title is fixed height, though h3 usually handles this fine */
        .card-title.bsp-name {
            min-height: 2.5rem; /* Or whatever height is appropriate for a single/two-line title */
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

.bsp-product-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}
.bsp-description {color:#999999; font-size:20px;}
.bsp-product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}
.bsp-price {
    font-size: 1.2em;
    color: #285A9B; /* A nice blue color */
    margin: 10px 0;
}
.bsp-checkout-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 1em;
}
.bsp-checkout-button:hover {
    background-color: #0056b3;
}
.in-stock {
    color: green;
}
.out-of-stock {
    color: red;
    font-weight: bold;
}
.status-completed { color: green; font-weight: bold; }
.status-pending { color: orange; font-weight: bold; }
.bsp-complete-order-btn[disabled] { background: #5cb85c; border-color: #4cae4c; }
.payment-details{ } 