/* PGB Woo Product Card Styles */
.pgb-woo-card-wrapper {
    border: 1px solid #e0e0e0;
    border-top: 4px solid #388e3c; /* Green top accent line */
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: inherit;
}

.pgb-woo-image-container {
    width: 100%;
    background-color: #dcedc8;
    /* Removed min-height to allow natural flow */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensures clean borders */
}

.pgb-woo-img {
    width: 100%;
    height: 220px; /* Standardize the height for a clean product grid */
    object-fit: cover;
    display: block;
    margin: 0;
    /* Removed position: absolute, top, and left */
}

.pgb-woo-image-placeholder {
    color: #2e7d32;
    font-weight: 600;
    font-size: 14px;
    padding: 80px 20px; /* Gives the placeholder intrinsic height */
    text-align: center;
}

.pgb-woo-content {
    padding: 24px;
}

.pgb-woo-title {
    margin: 0 0 10px;
    font-size: 20px;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
}

.pgb-woo-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}

.pgb-woo-desc p {
    margin: 0; /* Override default WP paragraph margins in the desc */
}

.pgb-woo-price {
    font-size: 18px;
    color: #00c853; /* Bright green price */
    font-weight: 800;
    margin-bottom: 15px;
}

.pgb-woo-price ins {
    text-decoration: none;
}

.pgb-woo-price del {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
}

.pgb-woo-link {
    display: inline-block;
    color: #2e7d32; /* Darker green link */
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.pgb-woo-link:hover {
    color: #1b5e20;
}