#wh-shipping-selection-wrapper {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    direction: rtl;
    text-align: right;
    font-family: inherit;
}

.wh-selection-title {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: bold;
}

.wh-selection-desc {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.wh-inline-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wh-inline-opt {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.wh-inline-opt:hover {
    border-color: #cbd5e0;
}

.wh-inline-opt input[type="radio"] {
    margin-top: 5px;
    margin-left: 12px;
    width: 18px;
    height: 18px;
}

.wh-inline-opt.selected {
    border-color: #3182ce;
    background-color: #ebf8ff;
}

.wh-opt-content strong {
    display: block;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 4px;
}

.wh-opt-content span {
    display: block;
    font-size: 12px;
    color: #718096;
    line-height: 1.5;
}