/* Wrapper */
.ups-wrapper {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

/* Heading */
.ups-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Row (main card) */
.ups-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

/* Hide radio */
.ups-row input {
    display: none;
}

/* Hover */
.ups-row:hover {
    border-color: #4f46e5;
    background: #fafbff;
}

/* Selected state */
.ups-row input:checked ~ .ups-left .ups-radio {
    border-color: #4f46e5;
    background: #4f46e5;
}

.ups-row input:checked {
    outline: none;
}

.ups-row input:checked ~ .ups-right {
    color: #4f46e5;
    font-weight: 700;
}

/* Highlight selected row */
.ups-row.ups-active {
    border-color: #4f46e5;
    background: #f5f7ff;
    box-shadow: 0 6px 18px rgba(79,70,229,0.15);
}

/* Left section */
.ups-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Radio UI */
.ups-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    position: relative;
}

/* Inner dot */
.ups-row input:checked ~ .ups-left .ups-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
}

/* Text block */
.ups-text {
    display: flex;
    flex-direction: column;
}

/* Title */
.ups-title {
    font-size: 16px;
    font-weight: 600;
}

/* Description */
.ups-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Price (right side) */
.ups-right {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

/* Recommended badge */
.ups-pill {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #10b981;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

/* Bottom note */
.ups-note {
    margin-top: 12px;
    font-size: 13px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}
/* GRID FOR 2 COLUMN */
.ups-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .ups-row-grid {
        grid-template-columns: 1fr;
    }
}