/* ---------- Delivery Card ---------- */
.ringomize-delivery-card {
    background: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;   /* left aur right ko edges par le jayega */
    gap: 10px;
    margin: 2px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- Left side (icon + guaranteed) ----- */
.rdc-left {
    display: flex;
    align-items: center;
    gap: 7px;               /* icon aur text ke beech ka gap */
}

.rdc-icon {
    font-size: 20px;         /* aapka chhota icon */
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* background hata diya, sirf emoji */
}

img.emoji {
    border-radius: 0px !important;
}

.rdc-guaranteed {
    font-weight: 600;
    color: #166534;
    font-size: 13px;         /* chhota font size */
    line-height: 1.2;
    width: 60%;
}

/* ----- Right side (method + cost stacked) ----- */
.rdc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;    /* right align */
    text-align: right;
    gap: 3px;
    width: 40%;
}

.rdc-method {
    color: #121212;
    font-size: 10px !important;
    line-height: 1.3;
    font-weight: 600 !important;
}

.rdc-cost {
    color: #0f172a;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 480px) {
    .ringomize-delivery-card {
        padding: 5px 7px;
        gap: 6px;
    }
    .rdc-left {
        gap: 5px;
    }
    .rdc-guaranteed {
        font-size: 11px;
    }
    .rdc-method {
        font-size: 12px;
    }
    .rdc-cost {
        font-size: 12px;
    }
}