/* ==========================================================================
   Elixer Water Booster – Inline Product Card
   ========================================================================== */

.ewb-product {
    --ewb-blue: #002653;
    --ewb-cyan: #05BBD0;
    --ewb-radius: 14px;

    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fafb 0%, #fff 100%);
    border: 2px solid var(--ewb-cyan);
    border-radius: var(--ewb-radius);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(5, 187, 208, .12);
    transition: box-shadow .25s ease, transform .25s ease;
}

.ewb-product:hover {
    box-shadow: 0 8px 32px rgba(5, 187, 208, .18);
    transform: translateY(-2px);
}

/* ----- Image (vierkant, altijd inline) ----- */

.ewb-product__image {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    overflow: hidden;
}

.ewb-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ewb-product:hover .ewb-product__image img {
    transform: scale(1.06);
}

.ewb-product__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
}

/* ----- Body ----- */

.ewb-product__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    gap: 4px;
}

.ewb-product__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ewb-blue);
    text-decoration: none;
    line-height: 1.3;
}

.ewb-product__title:hover {
    color: var(--ewb-cyan);
}

/* ----- Price ----- */

.ewb-product__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--ewb-blue);
    line-height: 1.2;
}

.ewb-product__price del {
    color: #b0b0b0;
    font-weight: 400;
    font-size: 13px;
    margin-right: 4px;
}

.ewb-product__price ins {
    text-decoration: none;
    color: var(--ewb-cyan);
}

/* ----- Trust Items ----- */

.ewb-product__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 12px;
    margin-top: 2px;
}

.ewb-product__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #556;
}

.ewb-product__trust-item svg {
    color: var(--ewb-cyan);
    flex-shrink: 0;
}

/* ----- CTA Button ----- */

.ewb-product__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    white-space: nowrap;
    background: var(--ewb-cyan);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
    box-shadow: 0 4px 12px rgba(5, 187, 208, .3);
}

.ewb-product__btn:hover {
    background: var(--ewb-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 38, 83, .25);
}

.ewb-product__btn:active {
    transform: scale(.97);
}

/* ----- Out of Stock ----- */

.ewb-product__out-of-stock {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    margin-top: 6px;
}

/* ==========================================================================
   USP Block – [elixer_usps]
   ========================================================================== */

.ewb-usps {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ewb-blue, #002653);
    border-radius: 14px;
    padding: 32px;
    margin: 32px 0;
    color: #fff;
}

.ewb-usps__heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #fff;
    line-height: 1.3;
}

.ewb-usps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ewb-usps__grid--single {
    grid-template-columns: 1fr;
}

.ewb-usp {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 16px;
    transition: background .2s ease;
}

.ewb-usp:hover {
    background: rgba(255, 255, 255, .12);
}

.ewb-usp__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(5, 187, 208, .2);
    border-radius: 10px;
    color: #05BBD0;
}

.ewb-usp__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ewb-usp__title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.ewb-usp__text {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
}

.ewb-usps__closing {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 600;
    color: #05BBD0;
    line-height: 1.5;
}

/* ----- Mobiel: afbeelding blijft inline ----- */

@media (max-width: 600px) {
    .ewb-product {
        flex-wrap: wrap;
    }

    .ewb-product__image {
        width: 90px;
        height: 90px;
        border-radius: 10px;
        margin: 12px 0 12px 12px;
    }

    .ewb-product__body {
        flex: 1;
        padding: 12px 14px;
        gap: 2px;
    }

    .ewb-product__title {
        font-size: 14px;
    }

    .ewb-product__price {
        font-size: 17px;
    }

    .ewb-product__trust-item {
        font-size: 10px;
    }

    .ewb-product__btn {
        align-self: stretch;
        justify-content: center;
        padding: 11px 20px;
        font-size: 14px;
    }

    /* USP grid mobiel */
    .ewb-usps {
        padding: 20px 16px;
    }

    .ewb-usps__heading {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .ewb-usps__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ewb-usp {
        padding: 12px;
    }

    .ewb-usp__icon {
        width: 34px;
        height: 34px;
    }

    .ewb-usp__icon svg {
        width: 18px;
        height: 18px;
    }
}
