.woocommerce-checkout .woocommerce-shipping-totals.shipping {
    display: none;
}

.rcep-checkout-box {
    margin: 18px 0;
    padding: 14px;
    border: 1px solid #ece7fb;
    border-radius: 8px;
    background: #fff;
}

.rcep-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #25212e;
}

.rcep-title-icon,
.rcep-map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #6f3df4;
}

.rcep-title-icon {
    width: 20px;
    height: 20px;
}

.rcep-title-icon svg,
.rcep-map-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.rcep-options {
    display: grid;
    gap: 8px;
}

.rcep-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 0;
    color: #25212e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
}

.rcep-section-title::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #6f3df4;
    box-shadow: 0 0 0 4px rgba(111, 61, 244, .10);
}

.rcep-shipping-dropdown {
    display: grid;
    gap: 6px;
    padding: 11px;
    border: 1px solid #ece7fb;
    border-radius: 8px;
    background: linear-gradient(135deg, #fbf8ff 0%, #ffffff 100%);
}

.rcep-shipping-dropdown label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #25212e;
}

.rcep-shipping-select {
    width: 100%;
    min-height: 42px;
    padding: 0 38px 0 12px;
    border: 1px solid #d9d2f7;
    border-radius: 8px;
    background-color: #fff;
    color: #24212b;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.rcep-shipping-select:hover,
.rcep-shipping-select:focus {
    border-color: #7c4dff;
    box-shadow: 0 0 0 3px rgba(124, 77, 255, .12);
}

.rcep-use-shipping-dropdown .rcep-option.rcep-shipping-choice {
    display: none;
}

.rcep-option {
    display: grid;
    grid-template-columns: 18px 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    margin: 0;
    padding: 9px 11px;
    border: 1px solid #ececf3;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.rcep-option:hover,
.rcep-option.is-selected {
    border-color: #7c4dff;
    background: #fbf8ff;
    box-shadow: 0 0 0 1px rgba(124, 77, 255, .12);
}

.rcep-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rcep-radio {
    width: 16px;
    height: 16px;
    border: 1px solid #c5c2cf;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 4px #fff;
}

.rcep-option.is-selected .rcep-radio {
    border-color: #6f3df4;
    background: #6f3df4;
}

.rcep-map-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 7px;
    background: #f2ecff;
}

.rcep-option-body {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.rcep-option-body strong,
.rcep-option-body small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rcep-option-body strong {
    font-size: 13px;
    line-height: 1.2;
    color: #24212b;
}

.rcep-option-body small {
    font-size: 11px;
    line-height: 1.25;
    color: #777280;
}

.rcep-price {
    font-size: 13px;
    font-weight: 700;
    color: #6f3df4;
}

.rcep-price-free {
    color: #1b9a59;
}

.rcep-province-fields {
    display: none;
    padding: 10px 2px 2px;
}

.rcep-province-fields .form-row {
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .rcep-option {
        grid-template-columns: 18px 30px minmax(0, 1fr);
    }

    .rcep-price {
        grid-column: 3;
        justify-self: start;
    }
}

