/* PGB Woo Product Card Styles */
.elementor-widget-pgb-woo-product-box .elementor-widget-container {
    height: 100%;
}

.pgb-woo-card-wrapper {
    border: 1px solid #e0e0e0;
    /*border-top: 4px solid #388e3c; */
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    height: 100%;
}

.pgb-woo-image-container {
    position: relative; 
    width: 100%;
    background-color: #dcedc8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.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;
    border-top: 1px solid #f1f1f1;
}

.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;
}


/* NEW: Top Badge (Black label over image) */
.pgb-woo-top-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #111; /* Default background */
    color: #fff;            /* Default text color */
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

/* NEW: Sub Badge (Light green label above title) */
.pgb-woo-sub-badge {
    display: inline-block;
    background-color: #eaf3e5; /* Default background */
    color: #2e7d32;            /* Default text color */
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}


/*-----------------------------------------------
  PGB ICON WIDGET STYLES
-----------------------------------------------*/
.pgb-icon-container {
    display: flex;
    /* Optional: Change to center or flex-end if you want alignment controls later */
    align-items: flex-start; 
}

.pgb-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 1;
}

.pgb-icon-wrapper img {
    display: block;
    object-fit: contain;
}

.pgb-icon-wrapper svg {
    display: block;
}