/*============================================================================================*/
/* King Price branded workflow */
/*============================================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

body.kp-theme {
    background: #000;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}

.kp-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    text-align: center;
}

.kp-title {
    color: #b10f1f;
    font-size: 50px;
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 12px;
}

.kp-highlight {
    color: #b10f1f;
    font-weight: 700;
}

.kp-semi-title {
    color: #474747;
    font-weight: 600;
    font-size: 20px;
}

.kp-sub {
    color: #474747;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.kp-body {
    color: #474747;
    font-size: 16px;
    line-height: 1.6;
}

.kp-claim-block {
    margin: 40px auto 30px;
    max-width: 620px;
}

.kp-amount-value {
    color: #b10f1f;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.kp-label {
    color: #474747;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.kp-input-wrap {
    border: 1.5px solid #474747;
    border-radius: 14px;
    padding: 12px 18px;
    background: transparent;
}

.kp-claim-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #474747;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.kp-claim-input::placeholder {
    color: #858585;
    font-weight: 500;
}

.kp-hint {
    margin-top: 10px;
    color: #858585;
    font-size: 12px;
    font-weight: 600;
}

.kp-payment-section {
    margin-top: 40px;
}

.kp-card-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.kp-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.35);
    width: 280px;
    padding: 12px 16px 18px;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.kp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 24px 3px rgba(0, 0, 0, 0.3);
}

.kp-card input {
    display: none;
}

.kp-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 210px;
    justify-content: space-between;
}

.kp-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    position: relative;
    background: #f5f5f5;
}

.kp-card-icon.kp-icon-card { 
    background: url('/img/kingprice/kp-card.svg') center/contain no-repeat; 
}

.kp-card-icon.kp-icon-eft {
    background: url('/img/kingprice/kp-eft.svg') center/contain no-repeat;
}

.kp-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kp-card-title {
    font-weight: 700;
    font-size: 18px;
    color: #474747;
    text-align: center;
}

.kp-card-sub {
    font-size: 14px;
    color: #474747;
    text-align: center;
    line-height: 1.35;
}

.kp-card-radio {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 3px solid #474747;
}

.kp-card.selected {
    border: 3px solid rgba(0, 190, 76, 1);
}

.kp-card.selected .kp-card-radio {
    background: #00b86b;
    border-color: #00b86b;
}

.kp-card-radio-inner {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    margin: 7.5px;
    display: inline-block;
}

.kp-footnote {
    color: #858585;
    font-size: 12px;
    margin-top: 10px;
}

.kp-payfast-placeholder {
    background: url('/img/kingprice/kp-payfast.svg') center/contain no-repeat;
    width: 60px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.kp-continue {
    margin: 28px auto 0;
    display: block;
    min-width: 210px;
    padding: 12px 20px;
    height: 52px;
    border-radius: 14px;
    border: 0;
    background: #f0f0f0;
    color: #cecece;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kp-continue:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    display: block;
}

.kp-continue:not(:disabled) {
    background: #b10f1f;
    color: #ffffff;
    cursor: pointer;
}

.kp-select-wrap {
    max-width: 420px;
    margin: 0 auto;
}

.kp-select {
    width: 100%;
    background: #111111;
    border: 1.5px solid #e6e6e6;
    border-radius: 14px;
    color: #ffffff;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 600;
}

.kp-eft-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 26px;
    max-width: 780px;
    margin: 30px auto 10px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.35);
}

.kp-eft-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
}

.kp-eft-row:last-child {
    border-bottom: none;
}

.kp-eft-label {
    color: #474747;
    font-weight: 400;
}

.kp-eft-label-highlight {
    font-weight: 700;
}

.kp-eft-value {
    color: #2d2d2d;
    font-weight: 700;
}

.kp-eft-amount {
    color: #b10f1f;
    font-weight: 800;
}

.kp-proof-text {
    color: #474747;
    font-weight: 600;
    margin-top: 30px;
    font-size: 20px;
}

.kp-proof-text a {
    color: #b10f1f;
    font-weight: 700;
}

@media (max-width: 768px) {
    .kp-title {
        font-size: 36px;
    }

    .kp-shell {
        padding: 28px 16px 60px;
    }

    .kp-card {
        width: 100%;
    }
}
