.gift-selection-section {
    background: #ffffff;
}

.gift-selection-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 44px;
    border: 1px solid #e7ecf2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(19, 33, 68, 0.08);
}

.gift-selection-header {
    max-width: 760px;
    margin: 0 auto 34px;
}

.gift-selection-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #0d2a63;
    font-family: "Heebo", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gift-selection-header h2,
.gift-selection-block h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.gift-selection-header h2 {
    margin-bottom: 18px;
    color: #1a2230;
    font-size: clamp(2rem, 3vw, 3rem);
}

.gift-selection-header p,
.gift-choice-text,
.gift-field-input {
    color: #616c7c;
    font-family: "Heebo", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.gift-selection-block h3 {
    margin-bottom: 18px;
    color: #1a2230;
    font-size: 24px;
}

.gift-choice {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 18px 20px;
    border: 1px solid #dce3ec;
    border-radius: 18px;
    background: #fdfefe;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-choice:hover {
    border-color: #8aa0c8;
    box-shadow: 0 10px 30px rgba(13, 42, 99, 0.08);
}

.gift-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gift-choice-indicator {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 2px solid #a6b3c7;
    border-radius: 50%;
    background: #ffffff;
}

.gift-choice input:checked + .gift-choice-indicator {
    border-color: #0d2a63;
    background: #0d2a63;
}

.gift-choice input:checked + .gift-choice-indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.gift-choice-text {
    font-weight: 700;
}

.gift-selection-divider {
    height: 1px;
    margin: 30px 0;
    background: #e7ecf2;
}

.gift-field-label {
    display: block;
    margin-bottom: 10px;
    color: #1a2230;
    font-family: "Heebo", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.gift-field-input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #dce3ec;
    border-radius: 14px;
    background: #ffffff;
}

.gift-field-input:focus {
    outline: none;
    border-color: #0d2a63;
}

.gift-submit-button {
    min-width: 280px;
    margin-top: 28px;
    padding: 15px 28px;
    font-family: "Heebo", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.gift-success-modal .modal-content {
    border: 0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(18, 40, 76, 0.18);
}

.gift-success-modal .modal-header {
    align-items: center;
    padding: 28px 28px 18px;
    border-bottom: 0;
}

.gift-success-modal .modal-title {
    color: #12284c;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}

.gift-success-modal .btn-close {
    margin: 0 0 0 auto;
    padding: 10px;
    border-radius: 999px;
    background-color: rgba(18, 40, 76, 0.06);
    opacity: 1;
}

.gift-success-modal .modal-body {
    padding: 0 28px 18px;
    color: #4f5f78;
    font-family: "Heebo", sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

.gift-success-modal .modal-footer {
    justify-content: flex-start;
    padding: 0 28px 28px;
    border-top: 0;
}

.gift-success-modal .modal-footer .btn {
    min-width: 140px;
    padding: 12px 24px;
    border: 0;
    border-radius: 12px;
    background: #183f84;
    color: #ffffff;
    font-family: "Heebo", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(24, 63, 132, 0.18);
}

@media (max-width: 767px) {
    .gift-selection-wrapper {
        padding: 24px;
    }

    .gift-choice {
        align-items: flex-start;
    }

    .gift-submit-button {
        width: 100%;
        min-width: 0;
    }

    .gift-success-modal .modal-dialog {
        margin: 18px;
    }

    .gift-success-modal .modal-header {
        padding: 22px 20px 14px;
    }

    .gift-success-modal .modal-title {
        font-size: 22px;
    }

    .gift-success-modal .modal-body {
        padding: 0 20px 16px;
        font-size: 15px;
    }

    .gift-success-modal .modal-footer {
        padding: 0 20px 20px;
    }

    .gift-success-modal .modal-footer .btn {
        width: 100%;
    }

}
