/**
 * GmGiftcards - Theme GameWorld Design System UI/UX
 * Styled to perfectly match GameWorld theme:
 * Font: Inter, sans-serif
 * Primary: #0a6eff
 * Dark Text: #132e55
 * Muted Text: #536177
 * Border: #dce3ed
 * Light BG: #f2f5f9
 */

.gmgiftcards-delivery-pref-card {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    background: #ffffff;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 12px 0 16px 0;
    box-shadow: 0 4px 14px -3px rgba(19, 46, 85, 0.06), 0 2px 5px -2px rgba(19, 46, 85, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.gmgiftcards-delivery-pref-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f5f9;
}

.gmgiftcards-pref-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    color: #132e55;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

.gmgiftcards-pref-title svg {
    color: #0a6eff;
    flex-shrink: 0;
}

.gmgiftcards-pref-status {
    font-family: 'Inter', sans-serif !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-2px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.gmgiftcards-pref-status.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selectable Channel Cards */
.gmgiftcards-pref-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.gmgiftcards-channel-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #dce3ed;
    border-radius: 10px;
    cursor: pointer;
    margin: 0;
    user-select: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    position: relative;
}

.gmgiftcards-channel-card:hover {
    background: #f2f5f9;
    border-color: #cbd5e1;
}

/* Active States - Clean neutral card, no colored green or blue borders */
.gmgiftcards-channel-card.active {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px -2px rgba(19, 46, 85, 0.08);
}

/* Left Section: Radio + Icon + Text */
.gmgiftcards-channel-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

/* Custom Radio Appearance (Eliminates native browser black border ring) */
.gmgiftcards-channel-radio-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gmgiftcards-channel-radio {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 50% !important;
    outline: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    background-color: #ffffff !important;
    display: inline-block !important;
    vertical-align: middle !important;
    position: relative !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}

.gmgiftcards-channel-radio:hover {
    border-color: #94a3b8 !important;
}

.gmgiftcards-channel-radio:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(10, 110, 255, 0.15) !important;
}

.channel-email .gmgiftcards-channel-radio:checked {
    border-color: #0a6eff !important;
    background: radial-gradient(circle, #0a6eff 5px, transparent 5.5px), #ffffff !important;
}

.channel-whatsapp .gmgiftcards-channel-radio:checked {
    border-color: #25d366 !important;
    background: radial-gradient(circle, #25d366 5px, transparent 5.5px), #ffffff !important;
}

/* Channel Icon */
.gmgiftcards-channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.gmgiftcards-channel-card:hover .gmgiftcards-channel-icon {
    transform: scale(1.05);
}

.icon-email {
    background: #e6f0ff;
    color: #0a6eff;
}

.channel-email.active .icon-email {
    background: #0a6eff;
    color: #ffffff;
}

.icon-whatsapp {
    background: #dcfce7;
    color: #15803d;
}

.channel-whatsapp.active .icon-whatsapp {
    background: #25d366;
    color: #ffffff;
}

/* Channel Details */
.gmgiftcards-channel-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.gmgiftcards-channel-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    color: #132e55;
    letter-spacing: -0.1px;
    white-space: nowrap !important;
    line-height: 1.2;
}

.gmgiftcards-channel-val {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px;
    font-weight: 500;
    color: #536177;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-top: 3px;
    max-width: 100%;
}

.channel-email.active .gmgiftcards-channel-val {
    color: #132e55;
    font-weight: 600;
}

.channel-whatsapp.active .gmgiftcards-channel-val {
    color: #132e55;
    font-weight: 600;
}

.gmgiftcards-channel-val.is-empty {
    color: #e11d48;
    font-style: italic;
    font-size: 12px;
}

/* Right Section: Modifier Button */
.gmgiftcards-channel-right {
    flex-shrink: 0;
    margin-left: 12px;
}

.gmgiftcards-channel-edit {
    font-family: 'Inter', sans-serif !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #0a6eff !important;
    background: #ffffff;
    border: 1px solid #dce3ed;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.gmgiftcards-channel-edit:hover {
    color: #005ae0 !important;
    border-color: #0a6eff;
    background: #f2f5f9;
    box-shadow: 0 2px 6px rgba(10, 110, 255, 0.12);
}

.gmgiftcards-channel-edit svg {
    flex-shrink: 0;
}

/* Confirmation Checkbox */
.gmgiftcards-pref-confirm {
    background: #f2f5f9;
    border: 1px dashed #dce3ed;
    border-radius: 8px;
    padding: 10px 14px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gmgiftcards-pref-confirm:hover {
    background: #ebf0f7;
    border-color: #cbd5e1;
}

.gmgiftcards-confirm-label {
    font-family: 'Inter', sans-serif !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #132e55;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.gmgiftcards-confirm-checkbox {
    width: 17px;
    height: 17px;
    margin: 0;
    cursor: pointer;
    accent-color: #0a6eff;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .gmgiftcards-delivery-pref-card {
        padding: 14px 12px;
    }
    .gmgiftcards-channel-card {
        padding: 10px 10px;
    }
    .gmgiftcards-channel-left {
        gap: 8px;
    }
    .gmgiftcards-channel-icon {
        width: 32px;
        height: 32px;
    }
    .gmgiftcards-channel-val {
        font-size: 12px;
    }
    .gmgiftcards-channel-edit {
        padding: 4px 8px;
        font-size: 11px;
    }
}