/* ============================================================
   INTEK — Free Fire & Gift Cards USA
   Brand: #E8A030 gold · #1a1a1a dark · FF accent: #FF4B00
   ============================================================ */

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */
.intek-wallet-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(232,160,48,.08);
    border: 1px solid rgba(232,160,48,.3);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 20px;
}
.intek-wallet-icon { font-size: 20px; }
.intek-wallet-label { font-size: 13px; color: #888; flex: 1; }
.intek-wallet-amount {
    font-size: 18px;
    font-weight: 800;
    color: #E8A030;
}
.intek-login-notice {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}
.intek-login-notice a { color: #E8A030; text-decoration: none; font-weight: 600; }

/* ============================================================
   FREE FIRE
   ============================================================ */
.intek-ff-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f0f0f0;
    max-width: 680px;
    margin: 0 auto;
}

/* Hero */
.intek-ff-hero {
    background: linear-gradient(135deg, #1a0800 0%, #3d0f00 50%, #1a0800 100%);
    border: 1px solid rgba(255,75,0,.35);
    border-radius: 18px;
    padding: 32px 28px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.intek-ff-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,75,0,.2) 0%, transparent 70%);
    pointer-events: none;
}
.intek-ff-logo { font-size: 48px; line-height: 1; margin-bottom: 10px; }
.intek-ff-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
}
.intek-ff-sub { margin: 0; font-size: 13px; color: rgba(255,255,255,.55); }

/* Steps */
.intek-ff-step {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: opacity .3s, transform .3s;
}
.intek-ff-step-hidden {
    display: none;
}
.intek-step-badge {
    display: inline-block;
    background: rgba(255,75,0,.15);
    color: #FF4B00;
    border: 1px solid rgba(255,75,0,.3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.intek-step-title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.intek-step-hint { margin: 0 0 18px; font-size: 13px; color: #666; }

/* ID input */
.intek-ff-id-form { display: flex; flex-direction: column; gap: 12px; }
.intek-ff-input-wrap {
    display: flex;
    align-items: center;
    background: #242424;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 0 16px;
    transition: border-color .2s;
}
.intek-ff-input-wrap:focus-within { border-color: #FF4B00; }
.intek-ff-input-icon { font-size: 20px; margin-right: 10px; }
.intek-ff-input {
    flex: 1;
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 16px;
    padding: 14px 0;
    outline: none;
}
.intek-ff-input::placeholder { color: #555; }

.intek-ff-btn-verify {
    background: linear-gradient(135deg, #FF4B00, #E8A030);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}
.intek-ff-btn-verify:hover { opacity: .9; transform: translateY(-1px); }
.intek-ff-btn-verify:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Verify result */
.intek-ff-verify-result {
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    margin-top: 4px;
}
.intek-ff-verify-result.success {
    background: rgba(76,175,80,.1);
    border: 1px solid rgba(76,175,80,.3);
    color: #81c784;
}
.intek-ff-verify-result.error {
    background: rgba(244,67,54,.1);
    border: 1px solid rgba(244,67,54,.3);
    color: #e57373;
}
.intek-ff-verify-result.warning {
    background: rgba(255,152,0,.1);
    border: 1px solid rgba(255,152,0,.3);
    color: #ffb74d;
}

/* Player confirmed banner */
.intek-ff-player-confirmed {
    background: rgba(255,75,0,.08);
    border: 1px solid rgba(255,75,0,.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.intek-ff-player-confirmed strong { color: #FF4B00; }

/* Offers grid */
.intek-ff-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}
.intek-ff-offer-card {
    background: #242424;
    border: 2px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, transform .15s, background .2s;
}
.intek-ff-offer-card:hover {
    border-color: #FF4B00;
    transform: translateY(-2px);
    background: rgba(255,75,0,.05);
}
.intek-ff-offer-card.selected {
    border-color: #FF4B00;
    background: rgba(255,75,0,.1);
}
.intek-ff-offer-diamonds {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.intek-ff-offer-diamond-icon { font-size: 18px; margin-bottom: 6px; }
.intek-ff-offer-name { font-size: 12px; color: #888; margin-bottom: 8px; }
.intek-ff-offer-price {
    font-size: 14px;
    font-weight: 700;
    color: #E8A030;
}

.intek-ff-loading { text-align:center; padding:30px; color:#666; font-size:14px; }

/* Step 3 summary */
.intek-ff-summary {
    background: #242424;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.intek-ff-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.intek-ff-summary-row:last-child { border-bottom: none; }
.intek-ff-summary-row span { color: #888; }
.intek-ff-summary-row strong { color: #f0f0f0; }
.intek-ff-summary-total strong { color: #E8A030; font-size: 18px; }

.intek-ff-btn-confirm {
    display: block; width: 100%;
    background: linear-gradient(135deg, #FF4B00, #E8A030);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 10px;
    transition: opacity .2s;
}
.intek-ff-btn-confirm:hover { opacity: .9; }
.intek-ff-btn-confirm:disabled { opacity: .45; cursor: not-allowed; }

.intek-ff-btn-back {
    display: block; width: 100%;
    background: none;
    border: 1px solid rgba(255,255,255,.1);
    color: #888;
    border-radius: 10px;
    padding: 11px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.intek-ff-btn-back:hover { border-color: #555; color: #ccc; }

/* Toast FF */
.intek-ff-toast {
    position: fixed; bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(60px);
    background: #1a1a1a;
    border: 1px solid #E8A030;
    color: #f0f0f0;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    z-index: 100000;
    max-width: 90vw;
    text-align: center;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
.intek-ff-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.intek-ff-toast.success { border-color: #4caf50; }
.intek-ff-toast.error   { border-color: #f44336; color: #f88; }

/* ============================================================
   GIFT CARDS USA
   ============================================================ */
.intek-gc-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.intek-gc-header {
    text-align: center;
    margin-bottom: 20px;
}
.intek-gc-title { margin: 0 0 6px; font-size: 26px; font-weight: 800; }
.intek-gc-sub { margin: 0; font-size: 13px; color: #666; }

/* Brand filters */
.intek-gc-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.intek-gc-filter {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,.1);
    color: #888;
    padding: 7px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
}
.intek-gc-filter:hover  { border-color: #E8A030; color: #E8A030; }
.intek-gc-filter.active {
    background: #E8A030;
    border-color: #E8A030;
    color: #1a1a1a;
    font-weight: 700;
}

/* Gift card grid */
.intek-gc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.intek-gc-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.intek-gc-spinner {
    width: 28px; height: 28px;
    border: 3px solid rgba(232,160,48,.2);
    border-top-color: #E8A030;
    border-radius: 50%;
    animation: gc-spin .7s linear infinite;
}
@keyframes gc-spin { to { transform: rotate(360deg); } }

/* Individual gift card tile */
.intek-gc-tile {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: transform .18s, border-color .18s, box-shadow .18s;
    position: relative;
    overflow: hidden;
}
.intek-gc-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gc-brand-color, #E8A030);
}
.intek-gc-tile:hover {
    transform: translateY(-3px);
    border-color: var(--gc-brand-color, #E8A030);
    box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.intek-gc-tile-icon { font-size: 36px; margin-bottom: 10px; }
.intek-gc-tile-name {
    font-size: 13px;
    font-weight: 600;
    color: #f0f0f0;
    line-height: 1.3;
    margin-bottom: 6px;
}
.intek-gc-tile-cta {
    font-size: 12px;
    color: var(--gc-brand-color, #E8A030);
    font-weight: 600;
}

/* Modal */
.intek-gc-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    backdrop-filter: blur(6px);
}
.intek-gc-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    max-width: 540px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.intek-gc-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .15s;
}
.intek-gc-modal-close:hover { color: #f0f0f0; }

/* Detail inside modal */
.intek-gc-detail-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid;
}
.intek-gc-detail-icon { font-size: 40px; }
.intek-gc-detail-title { margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.intek-gc-detail-sub { margin: 0; font-size: 13px; color: #666; }

/* Card amount options */
.intek-gc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}
.intek-gc-card-option {
    background: #242424;
    border: 2px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .18s;
}
.intek-gc-card-option:not(.intek-gc-oos):hover,
.intek-gc-card-option.intek-gc-selected {
    border-color: var(--gc-accent, #E8A030);
    background: rgba(232,160,48,.08);
}
.intek-gc-card-value {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}
.intek-gc-card-name { font-size: 11px; color: #666; margin-bottom: 6px; }
.intek-gc-card-price { font-size: 13px; font-weight: 700; color: #E8A030; }
.intek-gc-card-stock { font-size: 11px; color: #555; margin-top: 4px; }
.intek-gc-oos { opacity: .4; cursor: not-allowed; }
.intek-gc-oos-badge {
    font-size: 10px;
    background: rgba(255,80,80,.15);
    color: #ff6060;
    border-radius: 4px;
    padding: 2px 6px;
    margin-top: 4px;
    display: inline-block;
}

/* Order summary */
.intek-gc-order-summary {
    background: #242424;
    border-radius: 14px;
    padding: 20px;
}
.intek-gc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.intek-gc-summary-row:last-of-type { border-bottom: none; }
.intek-gc-summary-row span { color: #888; }
.intek-gc-total-row { margin-top: 4px; padding-top: 12px; }
.intek-gc-total-row strong { font-size: 18px; }

/* Qty control */
.intek-gc-qty-ctrl {
    display: flex; align-items: center; gap: 12px;
}
.intek-gc-qty-btn {
    width: 30px; height: 30px;
    background: #2e2e2e;
    border: 1px solid rgba(255,255,255,.12);
    color: #f0f0f0;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.intek-gc-qty-btn:hover { background: #3a3a3a; }
#intek-gc-qty-val { font-size: 16px; font-weight: 700; min-width: 24px; text-align: center; }

.intek-gc-btn-order {
    display: block; width: 100%;
    margin-top: 16px;
    background: #E8A030;
    color: #1a1a1a;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s;
}
.intek-gc-btn-order:hover { background: #c8891f; }
.intek-gc-btn-order:disabled { opacity: .45; cursor: not-allowed; }

/* Toast GC */
.intek-gc-toast {
    position: fixed; bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(60px);
    background: #1a1a1a;
    border: 1px solid #E8A030;
    color: #f0f0f0;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    z-index: 100000;
    max-width: 90vw;
    text-align: center;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
.intek-gc-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.intek-gc-toast.success { border-color: #4caf50; }
.intek-gc-toast.error   { border-color: #f44336; color: #f88; }

/* Responsive */
@media (max-width: 600px) {
    .intek-ff-offers-grid { grid-template-columns: repeat(2, 1fr); }
    .intek-gc-grid { grid-template-columns: repeat(2, 1fr); }
    .intek-gc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .intek-ff-hero { padding: 24px 18px; }
    .intek-gc-modal { padding: 20px 16px; }
}

/* ============================================================
   HISTORIQUE COMMANDES + TRANSACTIONS
   ============================================================ */
.intek-hist-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f0f0f0;
    max-width: 960px;
    margin: 0 auto;
}

/* Balance card */
.intek-hist-balance-card {
    background: linear-gradient(135deg, rgba(232,160,48,.15), rgba(232,160,48,.05));
    border: 1px solid rgba(232,160,48,.35);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.intek-hist-balance-label { font-size: 14px; color: #888; flex: none; }
.intek-hist-balance-amount { font-size: 28px; font-weight: 900; color: #E8A030; flex: 1; }
.intek-hist-topup-btn {
    background: #E8A030; color: #1a1a1a;
    padding: 8px 18px; border-radius: 10px;
    font-size: 13px; font-weight: 700;
    text-decoration: none; transition: background .18s;
}
.intek-hist-topup-btn:hover { background: #c8891f; color: #1a1a1a; }

/* Tabs */
.intek-hist-tabs {
    display: flex; gap: 8px; margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 12px; flex-wrap: wrap;
}
.intek-hist-tab {
    background: #242424; border: 1px solid rgba(255,255,255,.08);
    color: #888; padding: 9px 18px; border-radius: 30px;
    cursor: pointer; font-size: 14px; font-weight: 500; transition: all .2s;
}
.intek-hist-tab:hover { color: #E8A030; border-color: #E8A030; }
.intek-hist-tab.active { background: #E8A030; color: #1a1a1a; border-color: #E8A030; font-weight: 700; }

/* Panels */
.intek-hist-panel { display: none; }
.intek-hist-panel.active { display: block; }

/* Empty state */
.intek-hist-empty {
    text-align: center; padding: 60px 20px; color: #555;
}
.intek-hist-empty-icon { font-size: 48px; margin-bottom: 12px; }
.intek-hist-empty p { font-size: 15px; margin: 0; }

/* Table */
.intek-hist-table-wrap { overflow-x: auto; }
.intek-hist-table {
    width: 100%; border-collapse: collapse;
    font-size: 14px;
}
.intek-hist-table thead tr {
    background: #242424;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.intek-hist-table th {
    padding: 12px 14px; text-align: left;
    font-size: 12px; font-weight: 600;
    color: #888; text-transform: uppercase; letter-spacing: .5px;
}
.intek-hist-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .15s;
}
.intek-hist-table tbody tr:hover { background: rgba(255,255,255,.03); }
.intek-hist-table td { padding: 13px 14px; vertical-align: middle; }

.intek-hist-ref {
    font-family: monospace; font-size: 13px;
    color: #E8A030; font-weight: 600;
    display: block;
}
.intek-hist-sub { font-size: 11px; color: #666; display: block; margin-top: 2px; }

.intek-hist-status {
    display: inline-block;
    padding: 3px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
    text-transform: capitalize;
}
.intek-hist-tx-type {
    display: inline-block; padding: 3px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
}
.intek-hist-tx-type.credit { background: rgba(76,175,80,.12); color: #4CAF50; }
.intek-hist-tx-type.debit  { background: rgba(244,67,54,.12);  color: #F44336; }

/* FF region tabs */
.intek-ff-region-tabs {
    display: flex; gap: 8px; margin-bottom: 16px;
}
.intek-ff-region {
    flex: 1; padding: 10px 16px;
    background: #242424; border: 1px solid rgba(255,255,255,.1);
    color: #888; border-radius: 10px;
    cursor: pointer; font-size: 14px; font-weight: 600; transition: all .2s;
}
.intek-ff-region:hover { border-color: #FF4B00; color: #FF4B00; }
.intek-ff-region.active {
    background: rgba(255,75,0,.1); border-color: #FF4B00; color: #FF4B00;
}

@media (max-width: 600px) {
    .intek-hist-balance-card { flex-direction: column; align-items: flex-start; gap: 10px; }
    .intek-hist-balance-amount { font-size: 22px; }
    .intek-hist-table { font-size: 12px; }
    .intek-hist-table th, .intek-hist-table td { padding: 9px 8px; }
}

/* ============================================================
   ORDER CARDS v2 + RÉCLAMATION MODAL
   ============================================================ */

/* Kòmand card */
.intek-hist-order-card {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
    transition: border-color .2s;
}
.intek-hist-order-card:hover { border-color: rgba(232,160,48,.2); }

.intek-hist-order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.intek-hist-order-left { display: flex; flex-direction: column; gap: 3px; }
.intek-hist-ref {
    font-family: monospace; font-size: 14px;
    color: #E8A030; font-weight: 700;
}
.intek-hist-date { font-size: 12px; color: #555; }

.intek-hist-status-badge {
    display: inline-block;
    padding: 4px 12px; border-radius: 20px;
    font-size: 12px; font-weight: 700;
    white-space: nowrap;
    transition: background .3s, color .3s;
}

.intek-hist-order-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.intek-hist-order-info { flex: 1; }
.intek-hist-order-name { font-size: 15px; font-weight: 600; color: #f0f0f0; margin-bottom: 4px; }
.intek-hist-order-meta { font-size: 12px; color: #666; margin-top: 3px; }
.intek-hist-order-amount {
    font-size: 18px; font-weight: 800; color: #E8A030;
    white-space: nowrap;
}
.intek-hist-claim-badge {
    display: inline-block;
    margin-top: 6px;
    background: rgba(255,152,0,.1);
    color: #FFA500;
    border: 1px solid rgba(255,152,0,.3);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 12px;
}

/* Actions */
.intek-hist-order-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.intek-hist-btn-sync {
    background: none;
    border: 1px solid rgba(255,255,255,.1);
    color: #888;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all .18s;
}
.intek-hist-btn-sync:hover { border-color: #E8A030; color: #E8A030; }
.intek-hist-btn-sync:disabled { opacity: .5; cursor: not-allowed; }

.intek-hist-btn-claim {
    background: rgba(255,152,0,.1);
    border: 1px solid rgba(255,152,0,.3);
    color: #FFA500;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all .18s;
}
.intek-hist-btn-claim:hover { background: rgba(255,152,0,.2); border-color: #FFA500; }
.intek-hist-claim-pending { font-size: 12px; color: #666; padding: 6px 0; }

/* Modal réclamation */
.intek-claim-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    backdrop-filter: blur(6px);
}
.intek-claim-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255,152,0,.3);
    border-radius: 18px;
    padding: 28px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.intek-claim-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: #666;
    font-size: 20px; cursor: pointer;
}
.intek-claim-modal h3 { margin: 0 0 16px; font-size: 18px; color: #f0f0f0; }
.intek-claim-order-info {
    background: #242424; border-radius: 10px;
    padding: 12px 14px; margin-bottom: 16px;
    font-size: 13px; color: #888; line-height: 1.7;
}
.intek-claim-order-info strong { color: #f0f0f0; }
.intek-claim-modal label { display: block; font-size: 13px; color: #888; margin-bottom: 6px; }
.intek-claim-textarea {
    width: 100%; box-sizing: border-box;
    background: #242424; border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; color: #f0f0f0;
    padding: 12px 14px; font-size: 14px;
    resize: vertical; min-height: 100px;
    transition: border-color .2s;
}
.intek-claim-textarea:focus { outline: none; border-color: #FFA500; }
.intek-claim-btn-submit {
    display: block; width: 100%; margin-top: 14px;
    background: rgba(255,152,0,.9); color: #fff;
    border: none; border-radius: 10px;
    padding: 13px; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: background .18s;
}
.intek-claim-btn-submit:hover { background: #FFA500; }
.intek-claim-btn-submit:disabled { opacity: .5; cursor: not-allowed; }

@media (max-width: 600px) {
    .intek-hist-order-body { flex-direction: column; }
    .intek-hist-order-amount { font-size: 16px; }
    .intek-claim-modal { padding: 20px 16px; }
}
