/* ==========================================================================
   CG Sampler Bundle — Cart Notices
   ========================================================================== */

.cg-sampler-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--cg-radius-md);
    margin-bottom: 16px;
    font-size: 0.92rem;
    line-height: 1.4;
}

.cg-sampler-banner--savings {
    background: linear-gradient(135deg, rgba(79, 101, 88, 0.08), rgba(119, 156, 131, 0.08));
    border: 1px solid rgba(79, 101, 88, 0.2);
    color: var(--cg-green-700);
}

.cg-sampler-banner--nudge {
    background: linear-gradient(135deg, rgba(216, 180, 112, 0.1), rgba(223, 195, 150, 0.1));
    border: 1px solid rgba(216, 180, 112, 0.25);
    color: var(--cg-text-muted);
    flex-direction: column;
    align-items: stretch;
}

.cg-sampler-banner__icon {
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cg-sampler-banner__text {
    font-weight: 600;
}

.cg-sampler-banner__progress {
    height: 6px;
    background: rgba(216, 180, 112, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.cg-sampler-banner__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cg-gold), var(--cg-gold));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* ----- Cart drawer savings line ----- */

.cg-sampler-drawer-savings {
    padding: 8px 16px;
    background: rgba(79, 101, 88, 0.06);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--cg-green-700);
    margin-bottom: 10px;
    text-align: center;
}

.cg-sampler-drawer-savings__icon {
    font-weight: 700;
    margin-right: 4px;
}

/* ----- Strikethrough price in cart ----- */

.cart_item .product-price del {
    opacity: 0.5;
    font-size: 0.85em;
}

.cart_item .product-price ins {
    text-decoration: none;
    font-weight: 600;
    color: var(--cg-green-700);
}
