/**
 * 社務所 - 背包樣式
 */

/* 背包標題 */
.inventory-title {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Yuji Syuku', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3e2723;
    z-index: 10;
}

/* 背包容器（繼承商店樣式） */
.inventory-container {
    /* 共用 shop-container 樣式 */
}

/* 持有數量顯示 */
.inventory-count {
    font-size: 1.1rem;
    color: #1565c0;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* 出售價格顯示 */
.inventory-sell-price {
    font-size: 1rem;
    color: #e65100;
    font-weight: bold;
    margin-top: 0.25rem;
}

/* 出售按鈕樣式 */
.inventory-sell-btn {
    background: linear-gradient(135deg, #ef6c00, #e65100) !important;
    color: white !important;
    font-family: 'Yuji Syuku', serif;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.4);
}

.inventory-sell-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 81, 0, 0.5);
}

.inventory-sell-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #9e9e9e, #757575) !important;
}

/* 物品格子中的數量徽章 */
.inventory-item-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #1565c0;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* 空背包提示 */
.inventory-empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #78716c;
    font-family: 'Yuji Syuku', serif;
}

.inventory-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.inventory-empty-text {
    font-size: 1.2rem;
}

/* 響應式 */
@media (max-width: 768px) {
    .inventory-title {
        font-size: 1.2rem;
        top: 15px;
    }
    
    .inventory-sell-btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
    
    .inventory-count {
        font-size: 0.95rem;
    }
    
    .inventory-sell-price {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .inventory-title {
        font-size: 1rem;
        top: 10px;
    }
    
    .inventory-sell-btn {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .inventory-item-badge {
        font-size: 0.65rem;
        padding: 1px 4px;
        bottom: 3px;
        right: 3px;
    }
}
