/* Custom Product Card */
.custom-product-card {
    background: #fff;
    padding: 15px;
    border: 1px solid #858585;
    margin-bottom: 20px;
}

/* Product Image */
.product-image {
    text-align: center;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Product Details */
.product-details {
    margin-top: 15px;
}

.product-title {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.stock-status {
    display: block;
    margin-bottom: 10px;
}

.short-description {
    margin-bottom: 10px;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

/* Bottom Section */
.product-bottom-section {
    text-align: center;
}

/* POA Text */
.poa-text {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    margin: 10px 0;
}

/* More Details Button */
.more-details-wrapper {
    margin-top: 10px;
    text-align: center;
}

.more-details.button {
    margin: 0 auto;
}
