/* ──────────────────────────────────────────────────────────
   WoW 아이템 툴팁 스타일
   .wow-tooltip 컨테이너 기준
   ────────────────────────────────────────────────────────── */

#wow-tooltip-container {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    top: 0;
    left: 0;
    display: none;
}

.wow-tooltip {
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
    border: 1px solid #4a3a1e;
    border-radius: 3px;
    box-shadow:
        0 0 0 1px #1a0e00,
        0 4px 24px rgba(0,0,0,0.85),
        inset 0 1px 0 rgba(255,220,100,0.08);
    min-width: 200px;
    max-width: 320px;
    padding: 10px 12px 10px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #fff;
    white-space: normal;
    word-break: break-word;
}

/* 아이템 이름 */
.wow-tt-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* 등급 색상 */
.wow-tt-name.q0 { color: #9d9d9d; }
.wow-tt-name.q1 { color: #ffffff; }
.wow-tt-name.q2 { color: #1eff00; }
.wow-tt-name.q3 { color: #0070dd; }
.wow-tt-name.q4 { color: #a335ee; }
.wow-tt-name.q5 { color: #ff8000; }
.wow-tt-name.q6 { color: #e6cc80; }
.wow-tt-name.q7 { color: #00ccff; }

/* 구분선 */
.wow-tt-sep {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 5px 0;
}

/* 아이템레벨 */
.wow-tt-ilevel {
    color: #ffd100;
    font-size: 12px;
    margin-bottom: 3px;
}

/* 귀속 형태 */
.wow-tt-binding {
    color: #c8c8c8;
    font-size: 12px;
    margin-bottom: 2px;
}

/* 부위 + 재질 행 */
.wow-tt-slot-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #c8c8c8;
    margin-bottom: 2px;
}

/* 데미지/방어도 */
.wow-tt-dps {
    color: #c8c8c8;
    font-size: 12px;
}
.wow-tt-armor {
    color: #c8c8c8;
    font-size: 12px;
}
.wow-tt-dmg {
    color: #c8c8c8;
    font-size: 12px;
}

/* 스탯 */
.wow-tt-stat {
    color: #c8c8c8;
    font-size: 12px;
}
.wow-tt-stat .plus { color: #2ecc71; }
.wow-tt-stat .minus { color: #e74c3c; }

/* 소켓 */
.wow-tt-socket-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #c8c8c8;
    margin: 2px 0;
}
.wow-tt-gem-square {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    flex-shrink: 0;
    border-radius: 2px;
}
.wow-tt-socket-bonus {
    font-size: 11px;
    color: #888;
    margin-top: 1px;
}
.wow-tt-socket-bonus.active {
    color: #1eff00;
}

/* 마부 */
.wow-tt-enchant {
    color: #1eff00;
    font-size: 12px;
    margin: 2px 0;
}

/* 착용효과 */
.wow-tt-equip {
    color: #1eff00;
    font-size: 12px;
    margin: 2px 0;
}
.wow-tt-equip::before {
    content: '착용 효과: ';
    color: #1eff00;
}

/* 내구도 */
.wow-tt-durability {
    color: #c8c8c8;
    font-size: 12px;
}

/* 직업 제한 */
.wow-tt-class {
    color: #ffffff;
    font-size: 12px;
}

/* 요구레벨 */
.wow-tt-req-level {
    color: #c8c8c8;
    font-size: 12px;
}
.wow-tt-req-level.not-met {
    color: #e74c3c;
}

/* 세트 */
.wow-tt-set-name {
    color: #ffd100;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 2px;
}
.wow-tt-set-item {
    color: #6b7280;
    font-size: 11px;
    padding-left: 6px;
}
.wow-tt-set-item.equipped {
    color: #ffe480;
}
.wow-tt-set-bonus {
    color: #4b5563;
    font-size: 11px;
    margin-top: 2px;
    line-height: 1.4;
}
.wow-tt-set-bonus.active {
    color: #4ade80;
}
.wow-tt-set-req {
    font-weight: bold;
}

/* 획득처 */
.wow-tt-source {
    color: #c8c8c8;
    font-size: 12px;
    line-height: 1.4;
}

/* 스펠 이름 */
.wow-tt-spell-name {
    color: #a78bfa;
}

/* 스펠 설명 */
.wow-tt-spell-desc {
    color: #c8c8c8;
    font-size: 12px;
    line-height: 1.5;
}

/* 고유 아이템 */
.wow-tt-unique {
    color: #ffd100;
    font-size: 12px;
    margin-bottom: 2px;
}

/* 아이템 설명 */
.wow-tt-desc {
    color: #ffd100;
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
}

/* 빈 줄 구분 */
.wow-tt-gap {
    height: 4px;
}

/* 방패 막기 */
.wow-tt-block {
    color: #c8c8c8;
    font-size: 12px;
}

/* 속성 저항력 */
.wow-tt-resist {
    color: #c8c8c8;
    font-size: 12px;
}

/* 사용 효과 */
.wow-tt-use {
    color: #1eff00;
    font-size: 12px;
    margin: 2px 0;
}
.wow-tt-use::before {
    content: '사용 효과: ';
    color: #1eff00;
}

/* 발동 효과 */
.wow-tt-proc {
    color: #1eff00;
    font-size: 12px;
    margin: 2px 0;
}
.wow-tt-proc::before {
    content: '발동 효과: ';
    color: #1eff00;
}

/* 판매가격 */
.wow-tt-sell-price {
    color: #c8c8c8;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 1px;
    flex-wrap: wrap;
}
.wow-tt-gold   { color: #c8c8c8; font-weight: bold; margin-left: 4px; }
.wow-tt-silver { color: #c8c8c8; font-weight: bold; margin-left: 4px; }
.wow-tt-copper { color: #c8c8c8; font-weight: bold; margin-left: 4px; }

/* 보석 아이템: 보석 종류 표시 */
.wow-tt-gem-type {
    color: #c8c8c8;
    font-size: 12px;
    margin-bottom: 2px;
}

/* 보석 효과 (장착 효과처럼 초록) */
.wow-tt-gem-effect {
    color: #1eff00;
    font-size: 12px;
    margin: 2px 0;
}

/* 메타 보석 요건 (주황) */
.wow-tt-meta-req {
    color: #ff9900;
    font-size: 11px;
    margin-top: 2px;
}

/* 동전 아이콘 (원형 CSS) */
.wow-tt-coin {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 2px;
    margin-right: 3px;
    position: relative;
    top: -1px;
    box-shadow: inset -2px -2px 3px rgba(0,0,0,0.5), inset 1px 1px 2px rgba(255,255,255,0.3);
}
.wow-tt-coin-gold   { background: radial-gradient(circle at 35% 35%, #ffe566, #c8920a); }
.wow-tt-coin-silver { background: radial-gradient(circle at 35% 35%, #f0f0f0, #8a8a8a); }
.wow-tt-coin-copper { background: radial-gradient(circle at 35% 35%, #f0956a, #8b4010); }
