/* Growth Green cart popup */
.added_to_cart.wc-forward,
.woocommerce a.added_to_cart.wc-forward,
.rs-product-card__actions > .added_to_cart,
.card-actions-row > .added_to_cart {
    display: none !important;
}

body.rs-modal-open { overflow: hidden; }

#rs-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(24, 39, 27, .48);
    backdrop-filter: blur(5px) saturate(125%);
    -webkit-backdrop-filter: blur(5px) saturate(125%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}

#rs-cart-overlay.is-visible { opacity: 1; visibility: visible; }

#rs-cart-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100001;
    width: min(92vw, 590px);
    max-height: min(88vh, 760px);
    padding: 20px 20px 17px;
    overflow: hidden;
    border: 1px solid rgba(121, 162, 6, .2);
    border-radius: 22px;
    color: #26342b;
    background: #fff;
    box-shadow: 0 28px 80px rgba(24, 54, 33, .28);
    direction: rtl;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -46%) scale(.965);
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
}

#rs-cart-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

#rs-cart-popup * { box-sizing: border-box; }

.rs-ctp-close {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #657068;
    background: #f0f4ee;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.rs-ctp-close:hover { color: #fff; background: #2f6f43; transform: rotate(6deg); }

.rs-ctp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding-left: 42px;
    margin-bottom: 13px;
}

.rs-ctp-icon {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, #79a206, #2f6f43);
    box-shadow: 0 9px 22px rgba(47, 111, 67, .2);
}

.rs-ctp-title { margin: 0; color: #24472f; font-size: 17px; font-weight: 800; line-height: 1.5; }
.rs-ctp-sub { margin: 2px 0 0; color: #68756c; font-size: 12px; }

.rs-ctp-product {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 13px;
    padding: 10px 12px;
    border: 1px solid #e3ebdf;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fbf6, #f0f6ed);
}

.rs-ctp-product[hidden] { display: none !important; }
.rs-ctp-product img { width: 62px; height: 62px; object-fit: contain; border: 1px solid #e6ece3; border-radius: 12px; background: #fff; }
.rs-ctp-product-name { display: block; color: #263c2d; font-size: 13px; font-weight: 800; line-height: 1.65; text-decoration: none; }
.rs-ctp-product-price { margin-top: 4px; color: #598126; font-size: 11px; font-weight: 700; }

.rs-ctp-mini {
    overflow: hidden;
    margin-bottom: 13px;
    border: 1px solid #e3eadf;
    border-radius: 14px;
    background: #fff;
}

.rs-ctp-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 9px 12px;
    border-bottom: 1px solid #edf1eb;
    color: #4f5e53;
    background: #f8faf7;
    font-size: 12px;
}

.rs-ctp-mini-head strong { color: #2f6f43; font-size: 13px; }
.rs-ctp-mini-wrap { max-height: min(37vh, 285px); overflow: auto; overscroll-behavior: contain; }
.rs-ctp-list { margin: 0; padding: 0; list-style: none; }

.rs-ctp-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    min-height: 94px;
    padding: 10px 12px;
    border-bottom: 1px solid #eff2ed;
}
.rs-ctp-item:last-child { border-bottom: 0; }
.rs-ctp-thumb { width: 76px; height: 76px; overflow: hidden; border: 1px solid #e5ebe2; border-radius: 11px; background: #f4f7f1; }
.rs-ctp-thumb img { display: block; width: 100%; height: 100%; object-fit: contain; }
.rs-ctp-body { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.rs-ctp-name { display: block; overflow: hidden; color: #293c2f; font-size: 12px; font-weight: 750; line-height: 1.65; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.rs-ctp-unit { margin-top: 3px; color: #6a776e; font-size: 10px; }
.rs-ctp-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 7px; }
.rs-ctp-qty { color: #58665d; font-size: 10px; }
.rs-ctp-remove { padding: 0; border: 0; color: #ca4e4e; background: transparent; font-size: 10px; cursor: pointer; }
.rs-ctp-remove:hover { text-decoration: underline; }
.rs-ctp-remove:disabled { opacity: .55; cursor: wait; }

.rs-ctp-empty { padding: 32px 15px; color: #738078; text-align: center; font-size: 12px; }

.rs-ctp-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 45px;
    padding: 10px 12px;
    border-top: 1px solid #e9eee6;
    color: #2c4633;
    background: #f7faf5;
    font-size: 12px;
    font-weight: 800;
}
.rs-ctp-total .woocommerce-Price-amount { color: #6f951f; }

.rs-ctp-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.rs-ctp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.rs-ctp-btn:hover { transform: translateY(-1px); }
.rs-ctp-btn--ghost { border-color: #dfe7db; color: #455249; background: #f3f6f1; }
.rs-ctp-btn--cart { color: #fff; background: #2f6f43; }
.rs-ctp-btn--checkout { color: #fff; background: #79a206; }
.rs-ctp-btn--ghost:hover { color: #2f6f43; background: #eaf2e6; }
.rs-ctp-btn--cart:hover { color: #fff; background: #245936; }
.rs-ctp-btn--checkout:hover { color: #fff; background: #668c05; }

.rs-ctp-loading { display: grid; place-items: center; min-height: 190px; color: #6d7a70; font-size: 12px; }
.rs-ctp-spinner { width: 30px; height: 30px; margin-bottom: 10px; border: 3px solid #e3eadf; border-top-color: #79a206; border-radius: 50%; animation: rsCtpSpin .75s linear infinite; }
@keyframes rsCtpSpin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
    #rs-cart-popup { width: calc(100vw - 20px); max-height: calc(100dvh - 24px); padding: 16px 13px 13px; border-radius: 18px; }
    .rs-ctp-header { padding-left: 36px; }
    .rs-ctp-title { font-size: 15px; }
    .rs-ctp-sub { font-size: 10px; }
    .rs-ctp-product img { width: 54px; height: 54px; }
    .rs-ctp-mini-wrap { max-height: 39dvh; }
    .rs-ctp-item { grid-template-columns: 62px minmax(0, 1fr); min-height: 80px; gap: 9px; padding: 9px; }
    .rs-ctp-thumb { width: 62px; height: 62px; }
    .rs-ctp-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .rs-ctp-btn { min-height: 38px; padding: 8px 9px; }
    .rs-ctp-btn--ghost { grid-column: 1 / -1; order: 3; }
}
