/* Badge overlay on product images */
li.product {
    position: relative; /* allow absolute positioning inside li */
}

.coming-soon-badge-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

/* Ribbon-style badge */
.coming-soon-badge {
    background: #5e8b63; /* softer green gradient */
    color: #fff;
    padding: 6px 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Optional: add folded ribbon edge effect */
.coming-soon-badge::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 0;
    width: 13px;
    height: 100%;
    background: inherit;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Product page notice */
.coming-soon-notice {
    margin-top: 18px;
    padding: 14px 16px;
    background: #eef6f1;
    color: #2f7a4f;
    font-size: 16px;
    font-weight: 500;
    border-left: 4px solid #2f7a4f;
}